|
@@ -959,6 +959,7 @@ export default {
|
|
|
width: 150,
|
|
|
},
|
|
|
],
|
|
|
+ handleKey:0,
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -1145,29 +1146,20 @@ export default {
|
|
|
this.dialogWhgenlegList = [];
|
|
|
this.whgenlegTotal = 0;
|
|
|
this.warehousingagreements = true;
|
|
|
- this.getWhgenlegList(key);
|
|
|
+ this.handleKey = key
|
|
|
+ this.getWhgenlegList();
|
|
|
}
|
|
|
},
|
|
|
// 查询作业费信息
|
|
|
- getWhgenlegList(key) {
|
|
|
+ getWhgenlegList() {
|
|
|
let data = {};
|
|
|
- if (key == 1) {
|
|
|
- this.Navigation = true;
|
|
|
+ this.Navigation = true;
|
|
|
data = {
|
|
|
pageNum: this.pageNum,
|
|
|
pageSize: this.pageSize,
|
|
|
- fTaskType: 1,
|
|
|
+ fTaskType:this.handleKey,
|
|
|
fFleet: this.form.fFleet,
|
|
|
};
|
|
|
- } else if (key == 2) {
|
|
|
- this.Navigation = true;
|
|
|
- data = {
|
|
|
- pageNum: this.pageNum,
|
|
|
- pageSize: this.pageSize,
|
|
|
- fTaskType: 2,
|
|
|
- fLabour: this.form.fLabour,
|
|
|
- };
|
|
|
- }
|
|
|
operationAgreement(data).then((response) => {
|
|
|
response.rows.map((e) => {
|
|
|
if (e.fFeeUnitid) {
|