|
@@ -655,7 +655,7 @@ Handling Information |
|
@@ -655,7 +655,7 @@ Handling Information |
655
|
</span>
|
655
|
</span>
|
656
|
</el-col>
|
656
|
</el-col>
|
657
|
<el-col :span="7">
|
657
|
<el-col :span="7">
|
658
|
- <el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.rtd.rtd_charge_weight" auto-complete="off" placeholder="计费重量" size="mini"></el-input>
|
658
|
+ <el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_weight_amount" auto-complete="off" placeholder="计费重量" size="mini"></el-input>
|
659
|
</el-col>
|
659
|
</el-col>
|
660
|
</el-row>
|
660
|
</el-row>
|
661
|
</el-col>
|
661
|
</el-col>
|
|
@@ -1847,12 +1847,12 @@ Handling Information |
|
@@ -1847,12 +1847,12 @@ Handling Information |
1847
|
</template>
|
1847
|
</template>
|
1848
|
|
1848
|
|
1849
|
<script>
|
1849
|
<script>
|
1850
|
- import {fhl,fwb,selectawabByid} from '../../api/remote_interface/byont_import';
|
1850
|
+ import {fhl, fwb, selectawabByid, selectByKey, selectList} from '../../api/remote_interface/byont_import';
|
1851
|
import Consigner from "../consigner/consigner"
|
1851
|
import Consigner from "../consigner/consigner"
|
1852
|
import Consignee from "../consigner/consignee"
|
1852
|
import Consignee from "../consigner/consignee"
|
1853
|
import {loginedUserInfo} from "../../api/user";
|
1853
|
import {loginedUserInfo} from "../../api/user";
|
1854
|
import {getList} from "../../api/consigner/consigner";
|
1854
|
import {getList} from "../../api/consigner/consigner";
|
1855
|
-
|
1855
|
+ import jsutil from "@/common/js/util";
|
1856
|
|
1856
|
|
1857
|
export default {
|
1857
|
export default {
|
1858
|
components: {
|
1858
|
components: {
|
|
@@ -2075,7 +2075,7 @@ Handling Information |
|
@@ -2075,7 +2075,7 @@ Handling Information |
2075
|
hbs_pieces:'',
|
2075
|
hbs_pieces:'',
|
2076
|
hbs_serial_number:'',
|
2076
|
hbs_serial_number:'',
|
2077
|
hbs_weight:'',
|
2077
|
hbs_weight:'',
|
2078
|
- hbs_weight_code:'',
|
2078
|
+ hbs_weight_code:'K',
|
2079
|
hbs_slac:''
|
2079
|
hbs_slac:''
|
2080
|
},
|
2080
|
},
|
2081
|
txt:{
|
2081
|
txt:{
|
|
@@ -2128,7 +2128,8 @@ Handling Information |
|
@@ -2128,7 +2128,8 @@ Handling Information |
2128
|
for (let key in circle) { //把第一个对象的属性都赋值给新对象newObj 然后每个属性的值都设置为空;
|
2128
|
for (let key in circle) { //把第一个对象的属性都赋值给新对象newObj 然后每个属性的值都设置为空;
|
2129
|
newObj[key] = '';
|
2129
|
newObj[key] = '';
|
2130
|
}
|
2130
|
}
|
2131
|
- this.gridData.splice(this.gridData.length - 1, 0, newObj);
|
2131
|
+ // this.gridData.splice(this.gridData.length - 1, 0, newObj);
|
|
|
2132
|
+ this.gridData.push(newObj);
|
2132
|
},
|
2133
|
},
|
2133
|
//删除行
|
2134
|
//删除行
|
2134
|
deleteRows(scope) {
|
2135
|
deleteRows(scope) {
|
|
@@ -2136,6 +2137,7 @@ Handling Information |
|
@@ -2136,6 +2137,7 @@ Handling Information |
2136
|
},
|
2137
|
},
|
2137
|
//求体积
|
2138
|
//求体积
|
2138
|
handleEdit(index, row) {
|
2139
|
handleEdit(index, row) {
|
|
|
2140
|
+ console.log("index="+index)
|
2139
|
if(row.long && row.wide && row.height && row.pic){
|
2141
|
if(row.long && row.wide && row.height && row.pic){
|
2140
|
row.vol = Number(row.long)*Number(row.wide)*Number(row.height)*Number(row.pic)/1000000
|
2142
|
row.vol = Number(row.long)*Number(row.wide)*Number(row.height)*Number(row.pic)/1000000
|
2141
|
let measurement_info = {
|
2143
|
let measurement_info = {
|
|
@@ -2145,10 +2147,13 @@ Handling Information |
|
@@ -2145,10 +2147,13 @@ Handling Information |
2145
|
dim_weight:'',
|
2147
|
dim_weight:'',
|
2146
|
dim_weightcode:'',
|
2148
|
dim_weightcode:'',
|
2147
|
};
|
2149
|
};
|
2148
|
-
|
|
|
2149
|
this.form.rtd.dimensions[index] = measurement_info;
|
2150
|
this.form.rtd.dimensions[index] = measurement_info;
|
2150
|
- console.log(this.form.rtd.dimensions)
|
2151
|
+ // console.log(this.form.rtd.dimensions);
|
|
|
2152
|
+ console.log("DIM数组加入了新的行数据>>"+JSON.stringify(this.form.rtd.dimensions))
|
|
|
2153
|
+ }else {
|
|
|
2154
|
+ console.error("DIM数组没加数据-ERRRRRR")
|
2151
|
}
|
2155
|
}
|
|
|
2156
|
+
|
2152
|
},
|
2157
|
},
|
2153
|
//合计体积
|
2158
|
//合计体积
|
2154
|
getSummaries(param) {
|
2159
|
getSummaries(param) {
|
|
@@ -2216,9 +2221,9 @@ Handling Information |
|
@@ -2216,9 +2221,9 @@ Handling Information |
2216
|
this.form.shp.shp_adr = row.conAddress;
|
2221
|
this.form.shp.shp_adr = row.conAddress;
|
2217
|
this.shp_oci.oci_csrc_info=row.conAeo;
|
2222
|
this.shp_oci.oci_csrc_info=row.conAeo;
|
2218
|
this.shp_oci.oci_country_code=row.country;
|
2223
|
this.shp_oci.oci_country_code=row.country;
|
2219
|
- this.form.oci.push(this.shp_oci);
|
2224
|
+ // this.form.oci.push(this.shp_oci);
|
2220
|
this.shp_contact.contact_number=row.conPhone;
|
2225
|
this.shp_contact.contact_number=row.conPhone;
|
2221
|
- this.form.shp.shp_contacts.push(this.shp_contact);
|
2226
|
+ // this.form.shp.shp_contacts.push(this.shp_contact);
|
2222
|
this.dialogVisible = false;
|
2227
|
this.dialogVisible = false;
|
2223
|
}
|
2228
|
}
|
2224
|
else if(this.activeName=='second'){
|
2229
|
else if(this.activeName=='second'){
|
|
@@ -2230,7 +2235,7 @@ Handling Information |
|
@@ -2230,7 +2235,7 @@ Handling Information |
2230
|
this.addForm.shp.shp_adr_street = row.conAddress;
|
2235
|
this.addForm.shp.shp_adr_street = row.conAddress;
|
2231
|
this.shp_aeo.oci_supplementary=row.conAeo;
|
2236
|
this.shp_aeo.oci_supplementary=row.conAeo;
|
2232
|
this.shp_aeo.oci_country_code=row.country;
|
2237
|
this.shp_aeo.oci_country_code=row.country;
|
2233
|
- this.addForm.oci.push(this.shp_aeo);
|
2238
|
+ // this.addForm.oci.push(this.shp_aeo);
|
2234
|
this.dialogVisible = false;
|
2239
|
this.dialogVisible = false;
|
2235
|
}
|
2240
|
}
|
2236
|
else{
|
2241
|
else{
|
|
@@ -2248,9 +2253,9 @@ Handling Information |
|
@@ -2248,9 +2253,9 @@ Handling Information |
2248
|
this.form.cne.cne_adr = row.conAddress;
|
2253
|
this.form.cne.cne_adr = row.conAddress;
|
2249
|
this.cne_oci.oci_csrc_info=row.conAeo;
|
2254
|
this.cne_oci.oci_csrc_info=row.conAeo;
|
2250
|
this.cne_oci.oci_country_code=row.country;
|
2255
|
this.cne_oci.oci_country_code=row.country;
|
2251
|
- this.form.oci.push(this.cne_oci);
|
2256
|
+ // this.form.oci.push(this.cne_oci);
|
2252
|
this.cne_contact.contact_number=row.conPhone;
|
2257
|
this.cne_contact.contact_number=row.conPhone;
|
2253
|
- this.form.cne.cne_contacts.push(this.cne_contact);
|
2258
|
+ // this.form.cne.cne_contacts.push(this.cne_contact);
|
2254
|
this.dialogVisible1 = false;
|
2259
|
this.dialogVisible1 = false;
|
2255
|
}
|
2260
|
}
|
2256
|
else if(this.activeName=='second'){
|
2261
|
else if(this.activeName=='second'){
|
|
@@ -2262,7 +2267,7 @@ Handling Information |
|
@@ -2262,7 +2267,7 @@ Handling Information |
2262
|
this.addForm.cne.cne_adr_street = row.conAddress;
|
2267
|
this.addForm.cne.cne_adr_street = row.conAddress;
|
2263
|
this.cne_aeo.oci_supplementary=row.conAeo;
|
2268
|
this.cne_aeo.oci_supplementary=row.conAeo;
|
2264
|
this.cne_aeo.oci_country_code=row.country;
|
2269
|
this.cne_aeo.oci_country_code=row.country;
|
2265
|
- this.addForm.oci.push(this.cne_aeo);
|
2270
|
+ // this.addForm.oci.push(this.cne_aeo);
|
2266
|
this.dialogVisible1 = false;
|
2271
|
this.dialogVisible1 = false;
|
2267
|
}
|
2272
|
}
|
2268
|
else{
|
2273
|
else{
|
|
@@ -2271,6 +2276,8 @@ Handling Information |
|
@@ -2271,6 +2276,8 @@ Handling Information |
2271
|
},
|
2276
|
},
|
2272
|
//新增分运单
|
2277
|
//新增分运单
|
2273
|
addFhl() {
|
2278
|
addFhl() {
|
|
|
2279
|
+ this.addForm.oci.push(this.shp_aeo);
|
|
|
2280
|
+ this.addForm.oci.push(this.cne_aeo);
|
2274
|
/*进行表单的预验证*/
|
2281
|
/*进行表单的预验证*/
|
2275
|
this.$refs.apply_addFormRef.validate(valid => {
|
2282
|
this.$refs.apply_addFormRef.validate(valid => {
|
2276
|
// 未通过,表单预校验
|
2283
|
// 未通过,表单预校验
|
|
@@ -2351,7 +2358,17 @@ Handling Information |
|
@@ -2351,7 +2358,17 @@ Handling Information |
2351
|
this.form.rtd.rtd_number_pieces=this.form.bill.quantity_picecs;
|
2358
|
this.form.rtd.rtd_number_pieces=this.form.bill.quantity_picecs;
|
2352
|
this.form.rtd.rtd_volume=this.form.bill.quantity_volume;
|
2359
|
this.form.rtd.rtd_volume=this.form.bill.quantity_volume;
|
2353
|
this.form.ppd.ppd_weight_amount=this.form.ppd.ppd_charge_summary_total;
|
2360
|
this.form.ppd.ppd_weight_amount=this.form.ppd.ppd_charge_summary_total;
|
|
|
2361
|
+ this.form.acc=[];
|
|
|
2362
|
+ this.form.oci=[];
|
|
|
2363
|
+ this.form.shp.shp_contacts=[];
|
|
|
2364
|
+ this.form.cne.cne_contacts=[];
|
|
|
2365
|
+ this.shp_oci.oci_country_code=this.form.shp.shp_country;
|
|
|
2366
|
+ this.cne_oci.oci_country_code=this.form.cne.cne_country;
|
2354
|
this.form.acc.push(this.acc_info);
|
2367
|
this.form.acc.push(this.acc_info);
|
|
|
2368
|
+ this.form.oci.push(this.shp_oci);
|
|
|
2369
|
+ this.form.shp.shp_contacts.push(this.shp_contact);
|
|
|
2370
|
+ this.form.oci.push(this.cne_oci);
|
|
|
2371
|
+ this.form.cne.cne_contacts.push(this.cne_contact);
|
2355
|
/*进行表单的预验证*/
|
2372
|
/*进行表单的预验证*/
|
2356
|
this.$refs.apply_formRef.validate(valid => {
|
2373
|
this.$refs.apply_formRef.validate(valid => {
|
2357
|
// 未通过,表单预校验
|
2374
|
// 未通过,表单预校验
|
|
@@ -2363,6 +2380,138 @@ Handling Information |
|
@@ -2363,6 +2380,138 @@ Handling Information |
2363
|
return this.$message.error('新增主运单,失败');
|
2380
|
return this.$message.error('新增主运单,失败');
|
2364
|
}
|
2381
|
}
|
2365
|
this.$message.success('新增主运单,成功');
|
2382
|
this.$message.success('新增主运单,成功');
|
|
|
2383
|
+ this.form = {
|
|
|
2384
|
+ acc:[],
|
|
|
2385
|
+ agt:{
|
|
|
2386
|
+ agt_ADR:'',
|
|
|
2387
|
+ agt_IATA_number:'',
|
|
|
2388
|
+ agt_account_number:'',
|
|
|
2389
|
+ agt_name:'',
|
|
|
2390
|
+ agt_participant_id:'',
|
|
|
2391
|
+ },
|
|
|
2392
|
+ bill:{
|
|
|
2393
|
+ destination:'',
|
|
|
2394
|
+ origin:'',
|
|
|
2395
|
+ quantity_density:'',
|
|
|
2396
|
+ quantity_picecs:'',
|
|
|
2397
|
+ //体积
|
|
|
2398
|
+ quantity_volume:'',
|
|
|
2399
|
+ quantity_volume_code:'MC',
|
|
|
2400
|
+ quantity_weight:'',
|
|
|
2401
|
+ quantity_weight_code:'K',
|
|
|
2402
|
+ waybillNum:'',
|
|
|
2403
|
+ },
|
|
|
2404
|
+ cne:{
|
|
|
2405
|
+ cne_contacts:[],
|
|
|
2406
|
+ cne_account_number:'',
|
|
|
2407
|
+ cne_adr:'',
|
|
|
2408
|
+ cne_country:'',
|
|
|
2409
|
+ cne_loc_place:'',
|
|
|
2410
|
+ cne_loc_province:'',
|
|
|
2411
|
+ cne_name:'',
|
|
|
2412
|
+ cne_postcode:'',
|
|
|
2413
|
+ },
|
|
|
2414
|
+ cvd:{
|
|
|
2415
|
+ cvd_amount_of_insurance:'XXX',
|
|
|
2416
|
+ cvd_charge_code:'',
|
|
|
2417
|
+ cvd_charge_prepaid:'PP',
|
|
|
2418
|
+ cvd_currency_code:'',
|
|
|
2419
|
+ cvd_value_for_carriage:'NVD',
|
|
|
2420
|
+ cvd_value_for_customs:'NCV',
|
|
|
2421
|
+ },
|
|
|
2422
|
+ flt:{
|
|
|
2423
|
+ cariier:'',
|
|
|
2424
|
+ day:'',
|
|
|
2425
|
+ flightNumber:'',
|
|
|
2426
|
+ },
|
|
|
2427
|
+ isu:{
|
|
|
2428
|
+ isu_day_mounth_year:'',
|
|
|
2429
|
+ isu_place_or_airport_code:'',
|
|
|
2430
|
+ isu_signature:'',
|
|
|
2431
|
+ },
|
|
|
2432
|
+ nfy:{
|
|
|
2433
|
+ nfy_contacts:[],
|
|
|
2434
|
+ nfy_ADR:'',
|
|
|
2435
|
+ nfy_LOC_city:'',
|
|
|
2436
|
+ nfy_LOC_province:'',
|
|
|
2437
|
+ nfy_country:'',
|
|
|
2438
|
+ nfy_name:'',
|
|
|
2439
|
+ nfy_postcode:''
|
|
|
2440
|
+ },
|
|
|
2441
|
+ oci:[
|
|
|
2442
|
+ // {
|
|
|
2443
|
+ // oci_country_code:'',
|
|
|
2444
|
+ // oci_csrc_id:'',
|
|
|
2445
|
+ // oci_csrc_info:'',
|
|
|
2446
|
+ // oci_information_id:''
|
|
|
2447
|
+ // }
|
|
|
2448
|
+ ],
|
|
|
2449
|
+ osi:[{
|
|
|
2450
|
+ osi_text:[],
|
|
|
2451
|
+ }],
|
|
|
2452
|
+ oth:{
|
|
|
2453
|
+ oth_amount:'',
|
|
|
2454
|
+ oth_charge_code:'',
|
|
|
2455
|
+ oth_charges:'',
|
|
|
2456
|
+ oth_entitlement_code:''
|
|
|
2457
|
+ },
|
|
|
2458
|
+ ppd:{
|
|
|
2459
|
+ ppd_charge_summary_total:'',
|
|
|
2460
|
+ ppd_other_charges_due_agent:'',
|
|
|
2461
|
+ ppd_other_charges_due_carrier:'',
|
|
|
2462
|
+ ppd_taxes_amount:'',
|
|
|
2463
|
+ ppd_valuation_amount:'',
|
|
|
2464
|
+ ppd_weight_amount:'',
|
|
|
2465
|
+ },
|
|
|
2466
|
+ ref:{
|
|
|
2467
|
+ ref_address:'CGOFDEE',
|
|
|
2468
|
+ ref_file_reference:'',
|
|
|
2469
|
+ ref_participant_airport:'',
|
|
|
2470
|
+ ref_participant_code:'',
|
|
|
2471
|
+ ref_participant_id:'',
|
|
|
2472
|
+ },
|
|
|
2473
|
+ rtd:
|
|
|
2474
|
+ {
|
|
|
2475
|
+ dimensions:[],
|
|
|
2476
|
+ rtd_charge_weight:'',
|
|
|
2477
|
+ rtd_combination_point:'',
|
|
|
2478
|
+ rtd_commodity_NUM:'',
|
|
|
2479
|
+ rtd_goods_DES:'',
|
|
|
2480
|
+ rtd_goods_consol_DES:'',
|
|
|
2481
|
+ rtd_gross_weight:'',
|
|
|
2482
|
+ rtd_number_pieces:'',
|
|
|
2483
|
+ rtd_rate_charge:'',
|
|
|
2484
|
+ rtd_rate_class:'Q',
|
|
|
2485
|
+ rtd_total:'',
|
|
|
2486
|
+ //体积
|
|
|
2487
|
+ rtd_volume:'',
|
|
|
2488
|
+ rtd_volume_code:'MC',
|
|
|
2489
|
+ }
|
|
|
2490
|
+ ,
|
|
|
2491
|
+ rtg:{
|
|
|
2492
|
+ destinationAirport:'',
|
|
|
2493
|
+ destinationCarrier:'',
|
|
|
2494
|
+ onwardAirport:'',
|
|
|
2495
|
+ onwardCarrier:'',
|
|
|
2496
|
+ },
|
|
|
2497
|
+ shp:{
|
|
|
2498
|
+ shp_contacts:[],
|
|
|
2499
|
+ shp_account_number:'',
|
|
|
2500
|
+ shp_adr:'',
|
|
|
2501
|
+ shp_country:'',
|
|
|
2502
|
+ shp_loc_place:'',
|
|
|
2503
|
+ shp_loc_province:'',
|
|
|
2504
|
+ shp_name:'',
|
|
|
2505
|
+ shp_postcode:'',
|
|
|
2506
|
+ },
|
|
|
2507
|
+ ssr:{
|
|
|
2508
|
+ ssr_request_content:[],
|
|
|
2509
|
+ },
|
|
|
2510
|
+ cer:{
|
|
|
2511
|
+ cer_signature:''
|
|
|
2512
|
+ }
|
|
|
2513
|
+ };
|
|
|
2514
|
+
|
2366
|
}).catch(error => {
|
2515
|
}).catch(error => {
|
2367
|
this.$message.error(error.toString());
|
2516
|
this.$message.error(error.toString());
|
2368
|
});
|
2517
|
});
|
|
@@ -2372,8 +2521,6 @@ Handling Information |
|
@@ -2372,8 +2521,6 @@ Handling Information |
2372
|
blur(){
|
2521
|
blur(){
|
2373
|
selectawabByid({id: this.addForm.fhl.waybillNum}).then((res) => {
|
2522
|
selectawabByid({id: this.addForm.fhl.waybillNum}).then((res) => {
|
2374
|
if (res.data.code == '200'){
|
2523
|
if (res.data.code == '200'){
|
2375
|
- console.log(res)
|
|
|
2376
|
-
|
|
|
2377
|
if(res.data.data != null&& res.data.data !=''){
|
2524
|
if(res.data.data != null&& res.data.data !=''){
|
2378
|
this.addForm.fhl.quantity_weight = res.data.data.quantity_weight;
|
2525
|
this.addForm.fhl.quantity_weight = res.data.data.quantity_weight;
|
2379
|
this.addForm.fhl.quantity_picecs = res.data.data.quantity_picecs;
|
2526
|
this.addForm.fhl.quantity_picecs = res.data.data.quantity_picecs;
|
|
@@ -2387,7 +2534,73 @@ Handling Information |
|
@@ -2387,7 +2534,73 @@ Handling Information |
2387
|
alert(error);
|
2534
|
alert(error);
|
2388
|
});
|
2535
|
});
|
2389
|
},
|
2536
|
},
|
|
|
2537
|
+ getAWBA(){
|
|
|
2538
|
+ const _this = this
|
|
|
2539
|
+ selectByKey({id:this.$route.query.id}).then((response) => {
|
|
|
2540
|
+ const res = response.data
|
|
|
2541
|
+ // console.log(response.data)
|
|
|
2542
|
+ if (res.code !== '200') {
|
|
|
2543
|
+ return _this.$message.error('获取消息收发记录,失败!')
|
|
|
2544
|
+ }
|
|
|
2545
|
+ // 获取列表数据
|
|
|
2546
|
+ _this.form = res.data
|
|
|
2547
|
+ for (const i of res.data.shp.shp_contacts) {
|
|
|
2548
|
+ _this.shp_contact=i
|
|
|
2549
|
+ }
|
|
|
2550
|
+ for (const i of res.data.cne.cne_contacts) {
|
|
|
2551
|
+ _this.cne_contact=i
|
|
|
2552
|
+ }
|
|
|
2553
|
+ for (const i of res.data.oci) {
|
|
|
2554
|
+ if(i.oci_information_id=="SHP"){
|
|
|
2555
|
+ _this.shp_oci=i;
|
|
|
2556
|
+ }else{
|
|
|
2557
|
+ _this.cne_oci=i;
|
|
|
2558
|
+ }
|
|
|
2559
|
+ }
|
|
|
2560
|
+ for (const i of res.data.acc) {
|
|
|
2561
|
+ _this.acc_info=i
|
|
|
2562
|
+ }
|
|
|
2563
|
+ _this.$message.success(res.msg)
|
|
|
2564
|
+ }).catch(error => {
|
|
|
2565
|
+ // 关闭加载
|
|
|
2566
|
+ _this.$message.error(error.toString())
|
|
|
2567
|
+ })
|
|
|
2568
|
+ },
|
|
|
2569
|
+ getAWBH(){
|
|
|
2570
|
+ const _this = this
|
|
|
2571
|
+ selectByKey({id:this.$route.query.id}).then((response) => {
|
|
|
2572
|
+ const res = response.data
|
|
|
2573
|
+ if (res.code !== '200') {
|
|
|
2574
|
+ return _this.$message.error('获取消息收发记录,失败!')
|
|
|
2575
|
+ }
|
|
|
2576
|
+ // 获取列表数据
|
|
|
2577
|
+ _this.addForm = res.data
|
|
|
2578
|
+ for (const i of res.data.oci) {
|
|
|
2579
|
+ if(i.oci_information_id=="SHP"){
|
|
|
2580
|
+ _this.shp_aeo=i;
|
|
|
2581
|
+ }else{
|
|
|
2582
|
+ _this.cne_aeo=i;
|
|
|
2583
|
+ }
|
|
|
2584
|
+ }
|
|
|
2585
|
+ _this.$message.success(res.msg)
|
|
|
2586
|
+ }).catch(error => {
|
|
|
2587
|
+ // 关闭加载
|
|
|
2588
|
+ _this.$message.error(error.toString())
|
|
|
2589
|
+ })
|
|
|
2590
|
+ // console.log("获取分单的方法执行了")
|
|
|
2591
|
+ }
|
2390
|
},
|
2592
|
},
|
|
|
2593
|
+ activated(){
|
|
|
2594
|
+ if(jsutil.checkNull(this.$route.query.id)){
|
|
|
2595
|
+ if(this.$route.query.id.indexOf("AWBA")==0){
|
|
|
2596
|
+ this.activeName='first';
|
|
|
2597
|
+ this.getAWBA();
|
|
|
2598
|
+ }else{
|
|
|
2599
|
+ this.activeName='second';
|
|
|
2600
|
+ this.getAWBH();
|
|
|
2601
|
+ }
|
|
|
2602
|
+ }
|
|
|
2603
|
+ }
|
2391
|
}
|
2604
|
}
|
2392
|
</script>
|
2605
|
</script>
|
2393
|
|
2606
|
|