|
@@ -929,9 +929,8 @@ export default {
|
|
|
this.listDataGoods.goodsId = [];
|
|
|
}
|
|
|
this.$api
|
|
|
- .inquirepayservelistGoods({ businessId: value })
|
|
|
+ .inquirepayservelistGoods({ businessId: value, goodsType: 1 })
|
|
|
.then((res) => {
|
|
|
- console.log(1121, res.rows);
|
|
|
this.goodsList = res.rows;
|
|
|
});
|
|
|
}
|
|
@@ -948,7 +947,10 @@ export default {
|
|
|
.inquirepayservegoodsInfo({ applyId: row.applyId })
|
|
|
.then((res) => {
|
|
|
this.$api
|
|
|
- .inquirepayservelistGoods({ businessId: res.data.businessId })
|
|
|
+ .inquirepayservelistGoods({
|
|
|
+ businessId: res.data.businessId,
|
|
|
+ goodsType: 1,
|
|
|
+ })
|
|
|
.then((result) => {
|
|
|
this.goodsList = result.rows;
|
|
|
});
|
|
@@ -1277,7 +1279,6 @@ export default {
|
|
|
this.search();
|
|
|
},
|
|
|
watchs(v) {
|
|
|
- console.log(v);
|
|
|
this.$api.obtainsystemapply(v.applyId).then((res) => {
|
|
|
if (res.data.applyStatus) {
|
|
|
res.data.applyStatus = res.data.applyStatus.split(",").map(Number);
|
|
@@ -1310,7 +1311,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- console.log(res.data);
|
|
|
this.infoData = res.data;
|
|
|
this.dialoginfoWatch = true;
|
|
|
});
|