|
@@ -135,7 +135,6 @@
|
|
|
<el-select
|
|
|
v-model="queryParams.fWarehouseid"
|
|
|
filterable
|
|
|
- :disabled="browseStatus"
|
|
|
remote
|
|
|
clearable
|
|
|
style="width: 80%"
|
|
@@ -2752,10 +2751,16 @@ export default {
|
|
|
},
|
|
|
// 查询作业费信息
|
|
|
getWhgenlegListt() {
|
|
|
- this.queryParams.fLineno = this.form.fCorpid;
|
|
|
+ // this.queryParams.fLineno = this.form.fCorpid;
|
|
|
console.log(this.dataList[0].fGoodsid)
|
|
|
- console.log(this.queryParams)
|
|
|
- operationAgreement(this.queryParams).then((response) => {
|
|
|
+ let data = {
|
|
|
+ pageNum:1,
|
|
|
+ pageSize:10,
|
|
|
+ fLineno:this.form.fCorpid,
|
|
|
+ fFeeid:this.dataList[0].fGoodsid
|
|
|
+ }
|
|
|
+ console.log(data)
|
|
|
+ operationAgreement(data).then((response) => {
|
|
|
this.tasklegList = response.rows;
|
|
|
this.whgenlegTotal = response.total;
|
|
|
});
|