|
@@ -959,7 +959,7 @@ export default {
|
|
|
width: 150,
|
|
|
},
|
|
|
],
|
|
|
- handleKey:0,
|
|
|
+ handleKey: 0,
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -1153,13 +1153,23 @@ export default {
|
|
|
// 查询作业费信息
|
|
|
getWhgenlegList() {
|
|
|
let data = {};
|
|
|
- this.Navigation = true;
|
|
|
+ if (this.handleKey == 1) {
|
|
|
+ this.Navigation = true;
|
|
|
data = {
|
|
|
pageNum: this.pageNum,
|
|
|
pageSize: this.pageSize,
|
|
|
- fTaskType:this.handleKey,
|
|
|
+ fTaskType: 1,
|
|
|
fFleet: this.form.fFleet,
|
|
|
};
|
|
|
+ } else if (this.handleKey == 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) {
|