|
|
@@ -257,6 +257,17 @@
|
|
|
>导入
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="info"
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ :disabled="single"
|
|
|
+ @click="handleUpdate(null,2)"
|
|
|
+ v-hasPermi="['agreement:agreementStorage:export']"
|
|
|
+ >复制新增
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
<div class="tabSetting">
|
|
|
<right-toolbar
|
|
|
:showSearch.sync="showSearch"
|
|
|
@@ -3121,6 +3132,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ idCopy:'',
|
|
|
//全屏放大
|
|
|
dialogFull:false,
|
|
|
//自定义列宽属性
|
|
|
@@ -4577,42 +4589,28 @@ export default {
|
|
|
if (this.form.fDriverIdCar) {
|
|
|
fDriverIdCar = this.form.fDriverIdCar
|
|
|
}
|
|
|
- console.log(this.goodsOptions)
|
|
|
- for (let item in this.goodsOptions){
|
|
|
- if (this.form.fGoodsid == this.goodsOptions[item].fId){
|
|
|
- this.dataList.push({
|
|
|
- fBsdate: this.form.fBsdate,
|
|
|
- fGoodsid: this.form.fGoodsid,
|
|
|
- fGoodsids:this.goodsOptions[item].fName,
|
|
|
- fCntrtype: null,
|
|
|
- fCntqty: 1,
|
|
|
- fNetweight: this.planningList.fPlannetweight,
|
|
|
- fPlanvolumn: 0,
|
|
|
- fGrossweight: this.planningList.fPlangrossweight,
|
|
|
- fQty: this.planningList.fPlanqty,
|
|
|
- fPackagespecs: null,
|
|
|
- fWarehouselocid: null,
|
|
|
- fBoxno: null,
|
|
|
- fMarks: null,
|
|
|
- fGoodsval: null,
|
|
|
- fTruckno: fTruckno,
|
|
|
- fDriverTel: fDriverTel,
|
|
|
- fDriverName: fDriverName,
|
|
|
- fDriverIdCar: fDriverIdCar,
|
|
|
- remark: null,
|
|
|
- fBillstatus: 10,
|
|
|
- fMblno:this.form.fMblno
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
- if(this.dataList[0].fGoodsid){
|
|
|
- for(let item in this.goodsOptions){
|
|
|
- if(this.goodsOptions[item].fId == this.dataList[0].fGoodsid){
|
|
|
- console.log("111")
|
|
|
- this.form.fProductName = this.goodsOptions[item].fName
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ this.dataList.push({
|
|
|
+ fBsdate: this.form.fBsdate,
|
|
|
+ fGoodsid: this.form.fGoodsid,
|
|
|
+ fCntrtype: null,
|
|
|
+ fCntqty: 1,
|
|
|
+ fNetweight: this.planningList.fPlannetweight,
|
|
|
+ fPlanvolumn: 0,
|
|
|
+ fGrossweight: this.planningList.fPlangrossweight,
|
|
|
+ fQty: this.planningList.fPlanqty,
|
|
|
+ fPackagespecs: null,
|
|
|
+ fWarehouselocid: null,
|
|
|
+ fBoxno: null,
|
|
|
+ fMarks: null,
|
|
|
+ fGoodsval: null,
|
|
|
+ fTruckno: fTruckno,
|
|
|
+ fDriverTel: fDriverTel,
|
|
|
+ fDriverName: fDriverName,
|
|
|
+ fDriverIdCar: fDriverIdCar,
|
|
|
+ remark: null,
|
|
|
+ fBillstatus: 10,
|
|
|
+ fMblno:this.form.fMblno
|
|
|
+ });
|
|
|
this.weightList = false;
|
|
|
// this.contrOl = true
|
|
|
// 查询库区下 所有库位
|
|
|
@@ -4628,7 +4626,9 @@ export default {
|
|
|
} else {
|
|
|
for (let zhgen in this.dialogWhgenlegList) {
|
|
|
let feeId = this.dialogWhgenlegList[zhgen].feeFId;
|
|
|
+
|
|
|
getFees(feeId).then((response) => {
|
|
|
+ console.log(response)
|
|
|
this.fWbuOptions = []
|
|
|
let queryParams = { pageNum: 1, fDc:'C'};
|
|
|
listFees(queryParams).then((response) => {
|
|
|
@@ -4638,7 +4638,6 @@ export default {
|
|
|
listFees(query).then((response) => {
|
|
|
this.fDNameOptions = response.rows;
|
|
|
});
|
|
|
-
|
|
|
});
|
|
|
let qty = 1;
|
|
|
if (this.dialogWhgenlegList[zhgen].fFeeUnitid == 1) {
|
|
|
@@ -4670,6 +4669,7 @@ export default {
|
|
|
fSrcTypeId:this.dialogWhgenlegList[zhgen].fId
|
|
|
})
|
|
|
}else{
|
|
|
+ console.log(this.dialogWhgenlegList[zhgen])
|
|
|
this.warehouseCrList.push({
|
|
|
fQty: qty,
|
|
|
fCorpid: this.dialogWhgenlegList[zhgen].fCorpid,
|
|
|
@@ -4827,6 +4827,7 @@ export default {
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
this.ids = selection.map((item) => item.fId);
|
|
|
+ this.idCopy = this.ids[0]
|
|
|
this.single = selection.length !== 1 || selection.map((item) => item.fBillstatus) == 6 || selection.map((item) => item.fBillstatus) == 4;
|
|
|
this.multiple = !selection.length;
|
|
|
},
|
|
|
@@ -4914,105 +4915,197 @@ export default {
|
|
|
listFees(query).then((response) => {
|
|
|
this.fDNameOptions = response.rows;
|
|
|
});
|
|
|
- this.dataList = []
|
|
|
- this.reset()
|
|
|
- this.browseStatus = status;
|
|
|
- this.detailsHidden = false;
|
|
|
- this.formBrowseStatus = false;
|
|
|
- const fId = row.fId || this.ids;
|
|
|
- this.goodsRemoteMethod()
|
|
|
- getWarehousebills(fId).then((response) => {
|
|
|
- if(response.data.enclosures){
|
|
|
- for(let item in response.data.enclosures){
|
|
|
- this.fUrl = response.data.enclosures[item].fUrl
|
|
|
+ if(status === 2){
|
|
|
+ this.goodsRemoteMethod()
|
|
|
+ getWarehousebills(this.idCopy).then((response) => {
|
|
|
+ if(response.data.enclosures){
|
|
|
+ for(let item in response.data.enclosures){
|
|
|
+ this.fUrl = response.data.enclosures[item].fUrl
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
- if (response.data.warehousebills) {
|
|
|
- this.form = response.data.warehousebills;
|
|
|
- this.before = this.form.createBy
|
|
|
- if (this.form.fBillstatus > 2) {
|
|
|
- this.approvalStatus = false;
|
|
|
- } else {
|
|
|
- this.fMblno = true;
|
|
|
+ if (response.data.warehousebills) {
|
|
|
+ this.form = response.data.warehousebills
|
|
|
+ queryUserVal().then((response)=>{
|
|
|
+ this.userVal = response.user;
|
|
|
+ this.current = response.user.userName
|
|
|
+ this.form.fStorekeeper = response.user.nickName
|
|
|
+ this.form.createBy = response.user.userName
|
|
|
+ this.before = this.form.createBy
|
|
|
+ })
|
|
|
+ this.form.fId = null
|
|
|
+ this.form.fBillstatus = 1
|
|
|
+ this.$set(this.form, "fEta", Date.parse(this.form.fEta));
|
|
|
+ this.$set(this.form, "fStltypeid", this.form.fStltypeid + "");
|
|
|
+ this.$set(this.form, "fFeeUnitid", this.form.fFeeunitid + "");
|
|
|
+ this.$set(this.form, "fBsdate", Date.parse(this.form.fBsdate));
|
|
|
+ this.$set(this.form, "fTrademodeid", this.form.fTrademodeid + "");
|
|
|
+ this.$set(this.form, "createTime", Date.parse(this.form.createTime));
|
|
|
+ this.$set(this.form, "fChargedate", Date.parse(this.form.fChargedate));
|
|
|
+ this.$set(this.form, "fPlannetweight", this.form.fPlannetweight.toFixed(2));
|
|
|
+ this.$set(this.form, "fBillno", null);
|
|
|
+ this.$set(this.form, "fBscorpno", null);
|
|
|
+ this.$set(this.form, "fPlangrossweight", this.form.fPlangrossweight.toFixed(2));
|
|
|
}
|
|
|
- this.$set(this.form, "fEta", Date.parse(this.form.fEta));
|
|
|
- this.$set(this.form, "fStltypeid", this.form.fStltypeid + "");
|
|
|
- this.$set(this.form, "fFeeUnitid", this.form.fFeeunitid + "");
|
|
|
- this.$set(this.form, "fBsdate", Date.parse(this.form.fBsdate));
|
|
|
- this.$set(this.form, "fTrademodeid", this.form.fTrademodeid + "");
|
|
|
- this.$set(this.form, "createTime", Date.parse(this.form.createTime));
|
|
|
- this.$set(this.form, "fChargedate", Date.parse(this.form.fChargedate));
|
|
|
- this.$set(this.form, "fPlannetweight", this.form.fPlannetweight.toFixed(2));
|
|
|
- this.$set(this.form, "fPlangrossweight", this.form.fPlangrossweight.toFixed(2));
|
|
|
- }
|
|
|
- if (response.data.warehouseBillsItem) {
|
|
|
- this.dataList = response.data.warehouseBillsItem;
|
|
|
- for (let list in this.dataList) {
|
|
|
- this.$set(this.dataList[list], 'fBusinessType', this.dataList[list].fBusinessType + '')
|
|
|
- if (this.dataList[list].fBillstatus > 10) {
|
|
|
- this.formBrowseStatus = true;
|
|
|
- this.$set(this.dataList[list], "fBusinessType", this.dataList[list].fBusinessType + '')
|
|
|
- }else{
|
|
|
- this.formBrowseStatus = false;
|
|
|
+ if (response.data.warehouseBillsItem) {
|
|
|
+ this.dataList = response.data.warehouseBillsItem;
|
|
|
+ for (let list in this.dataList) {
|
|
|
+ this.$set(this.dataList[list], 'fBillstatus', 10)
|
|
|
+ this.$set(this.dataList[list], 'fBusinessType', this.dataList[list].fBusinessType + '')
|
|
|
+ this.$set(this.dataList[list], "fBsdate", Date.parse(this.dataList[list].fBsdate));
|
|
|
+ this.$set(this.dataList[list], 'fSerialNumber', null)
|
|
|
+ this.$set(this.dataList[list], 'fId', null)
|
|
|
}
|
|
|
- if(this.dataList[list].fBillstatus === 40){
|
|
|
- this.contrOl = true
|
|
|
- }else{
|
|
|
- this.contrOl = false
|
|
|
+ }
|
|
|
+ if (response.data.corps) {
|
|
|
+ this.fMblnoOptions = response.data.corps;
|
|
|
+ this.KHblnoOptions = response.data.corps;
|
|
|
+ this.fCompanyOptIons = response.data.corps;
|
|
|
+ this.fleetOptions = response.data.corps;
|
|
|
+ }
|
|
|
+ if (response.data.feesList) {
|
|
|
+ this.fWbuOptions = response.data.feesList;
|
|
|
+ }
|
|
|
+ if (response.data.warehouse) {
|
|
|
+ this.warehouseOptions = response.data.warehouse;
|
|
|
+ }
|
|
|
+ this.warehouseDrList = response.data.warehousebillsfeesDr;
|
|
|
+ for (let dr in this.warehouseDrList) {
|
|
|
+ this.$set(this.warehouseDrList[dr], "fBillstatus", 1);
|
|
|
+ if(this.warehouseDrList[dr].fFeeunitid !== null){
|
|
|
+ this.$set(this.warehouseDrList[dr], "fFeeUnitid", this.warehouseDrList[dr].fFeeunitid + '');
|
|
|
}
|
|
|
+ this.$set(this.warehouseDrList[dr], "fQty", this.warehouseDrList[dr].fQty.toFixed(2));
|
|
|
+ this.$set(this.warehouseDrList[dr], "fAmount", this.warehouseDrList[dr].fAmount.toFixed(2));
|
|
|
+ this.$set(this.warehouseDrList[dr], "fId", null);
|
|
|
+
|
|
|
}
|
|
|
- }
|
|
|
- if (response.data.corps) {
|
|
|
- this.fMblnoOptions = response.data.corps;
|
|
|
- this.KHblnoOptions = response.data.corps;
|
|
|
- this.fCompanyOptIons = response.data.corps;
|
|
|
- this.fleetOptions = response.data.corps;
|
|
|
- }
|
|
|
- if (response.data.feesList) {
|
|
|
- this.fWbuOptions = response.data.feesList;
|
|
|
- }
|
|
|
- if (response.data.warehouse) {
|
|
|
- this.warehouseOptions = response.data.warehouse;
|
|
|
- }
|
|
|
- if (response.data.warehouseBillsItem) {
|
|
|
- this.dataList = response.data.warehouseBillsItem;
|
|
|
- for(let list in this.dataList){
|
|
|
- if (this.dataList[list].fBillstatus > 10) {
|
|
|
- this.formBrowseStatus = true;
|
|
|
+ this.warehouseCrList = response.data.warehousebillsfeesCr;
|
|
|
+ for (let cr in this.warehouseCrList) {
|
|
|
+ this.$set(this.warehouseCrList[cr], "fBillstatus", 1);
|
|
|
+ if(this.warehouseCrList[cr].fFeeunitid !== null){
|
|
|
+ this.$set(this.warehouseCrList[cr], "fFeeUnitid", this.warehouseCrList[cr].fFeeunitid + "");
|
|
|
}
|
|
|
+ this.$set(this.warehouseCrList[cr], "fId", null);
|
|
|
}
|
|
|
- }
|
|
|
- if (response.data.enclosures) {
|
|
|
- this.relevantAttachments = response.data.enclosures;
|
|
|
- }
|
|
|
- for (let list in this.dataList) {
|
|
|
- this.$set(this.dataList[list], "fBsdate", Date.parse(this.dataList[list].fBsdate));
|
|
|
- }
|
|
|
- // this.kqhouseOptions = response.data.warehouseAreas;
|
|
|
- this.warehouseDrList = response.data.warehousebillsfeesDr;
|
|
|
- for (let dr in this.warehouseDrList) {
|
|
|
- this.$set(this.warehouseDrList[dr], "fFeeUnitid", this.warehouseDrList[dr].fFeeunitid + '');
|
|
|
- this.$set(this.warehouseDrList[dr], "fQty", this.warehouseDrList[dr].fQty.toFixed(2));
|
|
|
- this.$set(this.warehouseDrList[dr], "fAmount", this.warehouseDrList[dr].fAmount.toFixed(2));
|
|
|
- }
|
|
|
- this.warehouseCrList = response.data.warehousebillsfeesCr;
|
|
|
- for (let cr in this.warehouseCrList) {
|
|
|
- this.$set(this.warehouseCrList[cr], "fFeeUnitid", this.warehouseCrList[cr].fFeeunitid + "");
|
|
|
- }
|
|
|
- this.userOptions = response.data.sysUser;
|
|
|
- // this.warehouseDrList[0].fBusinessType = this.form.fBusinessType
|
|
|
- this.open = true;
|
|
|
- this.title = "修改仓入库";
|
|
|
- this.warehousesssMethod()
|
|
|
- this.fWbuOptions = []
|
|
|
- let queryParams = { pageNum: 1,};
|
|
|
- listFees(queryParams).then((response) => {
|
|
|
- this.fWbuOptions = response.rows;
|
|
|
+ this.userOptions = response.data.sysUser;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改仓入库";
|
|
|
+ this.warehousesssMethod()
|
|
|
+ this.fWbuOptions = []
|
|
|
+ let queryParams = { pageNum: 1,};
|
|
|
+ listFees(queryParams).then((response) => {
|
|
|
+ this.fWbuOptions = response.rows;
|
|
|
+ });
|
|
|
});
|
|
|
- });
|
|
|
- queryUserVal().then((response)=>{
|
|
|
- this.current = response.user.userName
|
|
|
- })
|
|
|
+ }else{
|
|
|
+ this.dataList = []
|
|
|
+ this.reset()
|
|
|
+ this.browseStatus = status;
|
|
|
+ this.detailsHidden = false;
|
|
|
+ this.formBrowseStatus = false;
|
|
|
+ const fId = row.fId || this.ids;
|
|
|
+ this.goodsRemoteMethod()
|
|
|
+ getWarehousebills(fId).then((response) => {
|
|
|
+ if(response.data.enclosures){
|
|
|
+ for(let item in response.data.enclosures){
|
|
|
+ this.fUrl = response.data.enclosures[item].fUrl
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (response.data.warehousebills) {
|
|
|
+ this.form = response.data.warehousebills;
|
|
|
+ this.before = this.form.createBy
|
|
|
+ if (this.form.fBillstatus > 2) {
|
|
|
+ this.approvalStatus = false;
|
|
|
+ } else {
|
|
|
+ this.fMblno = true;
|
|
|
+ }
|
|
|
+ this.$set(this.form, "fEta", Date.parse(this.form.fEta));
|
|
|
+ this.$set(this.form, "fStltypeid", this.form.fStltypeid + "");
|
|
|
+ this.$set(this.form, "fFeeUnitid", this.form.fFeeunitid + "");
|
|
|
+ this.$set(this.form, "fBsdate", Date.parse(this.form.fBsdate));
|
|
|
+ this.$set(this.form, "fTrademodeid", this.form.fTrademodeid + "");
|
|
|
+ this.$set(this.form, "createTime", Date.parse(this.form.createTime));
|
|
|
+ this.$set(this.form, "fChargedate", Date.parse(this.form.fChargedate));
|
|
|
+ this.$set(this.form, "fPlannetweight", this.form.fPlannetweight.toFixed(2));
|
|
|
+ this.$set(this.form, "fPlangrossweight", this.form.fPlangrossweight.toFixed(2));
|
|
|
+ }
|
|
|
+ if (response.data.warehouseBillsItem) {
|
|
|
+ this.dataList = response.data.warehouseBillsItem;
|
|
|
+ for (let list in this.dataList) {
|
|
|
+ this.$set(this.dataList[list], 'fBusinessType', this.dataList[list].fBusinessType + '')
|
|
|
+ if (this.dataList[list].fBillstatus > 10) {
|
|
|
+ this.formBrowseStatus = true;
|
|
|
+ this.$set(this.dataList[list], "fBusinessType", this.dataList[list].fBusinessType + '')
|
|
|
+ }else{
|
|
|
+ this.formBrowseStatus = false;
|
|
|
+ }
|
|
|
+ if(this.dataList[list].fBillstatus === 40){
|
|
|
+ this.contrOl = true
|
|
|
+ }else{
|
|
|
+ this.contrOl = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (response.data.corps) {
|
|
|
+ this.fMblnoOptions = response.data.corps;
|
|
|
+ this.KHblnoOptions = response.data.corps;
|
|
|
+ this.fCompanyOptIons = response.data.corps;
|
|
|
+ this.fleetOptions = response.data.corps;
|
|
|
+ }
|
|
|
+ if (response.data.feesList) {
|
|
|
+ this.fWbuOptions = response.data.feesList;
|
|
|
+ }
|
|
|
+ if (response.data.warehouse) {
|
|
|
+ this.warehouseOptions = response.data.warehouse;
|
|
|
+ }
|
|
|
+ if (response.data.warehouseBillsItem) {
|
|
|
+ this.dataList = response.data.warehouseBillsItem;
|
|
|
+ for(let list in this.dataList){
|
|
|
+ if (this.dataList[list].fBillstatus > 10) {
|
|
|
+ this.formBrowseStatus = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (response.data.enclosures) {
|
|
|
+ this.relevantAttachments = response.data.enclosures;
|
|
|
+ }
|
|
|
+ for (let list in this.dataList) {
|
|
|
+ this.$set(this.dataList[list], "fBsdate", Date.parse(this.dataList[list].fBsdate));
|
|
|
+ }
|
|
|
+ // this.kqhouseOptions = response.data.warehouseAreas;
|
|
|
+ this.warehouseDrList = response.data.warehousebillsfeesDr;
|
|
|
+ for (let dr in this.warehouseDrList) {
|
|
|
+ if(this.warehouseDrList[dr].fFeeunitid !== null){
|
|
|
+ this.$set(this.warehouseDrList[dr], "fFeeUnitid", this.warehouseDrList[dr].fFeeunitid + '');
|
|
|
+ }
|
|
|
+ this.$set(this.warehouseDrList[dr], "fQty", this.warehouseDrList[dr].fQty.toFixed(2));
|
|
|
+ this.$set(this.warehouseDrList[dr], "fAmount", this.warehouseDrList[dr].fAmount.toFixed(2));
|
|
|
+ }
|
|
|
+ this.warehouseCrList = response.data.warehousebillsfeesCr;
|
|
|
+ for (let cr in this.warehouseCrList) {
|
|
|
+ if(this.warehouseCrList[cr].fFeeunitid !== null){
|
|
|
+ this.$set(this.warehouseCrList[cr], "fFeeUnitid", this.warehouseCrList[cr].fFeeunitid + "");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.userOptions = response.data.sysUser;
|
|
|
+ // this.warehouseDrList[0].fBusinessType = this.form.fBusinessType
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改仓入库";
|
|
|
+ this.warehousesssMethod()
|
|
|
+ this.fWbuOptions = []
|
|
|
+ let queryParams = { pageNum: 1,};
|
|
|
+ listFees(queryParams).then((response) => {
|
|
|
+ this.fWbuOptions = response.rows;
|
|
|
+ });
|
|
|
+ });
|
|
|
+ queryUserVal().then((response)=>{
|
|
|
+ this.current = response.user.userName
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ bugadd(res){
|
|
|
+ this.form.createBy = res
|
|
|
},
|
|
|
// 库存总账多选框
|
|
|
whgenlegSelectionChange(selection) {
|
|
|
@@ -5650,19 +5743,13 @@ export default {
|
|
|
let fMarks = []
|
|
|
let fGoodsid = []
|
|
|
for (let li in this.dataList) {
|
|
|
- console.log(this.dataList)
|
|
|
if (this.dataList[li].fMarks) {
|
|
|
fMarks.push(this.dataList[li].fMarks)
|
|
|
}
|
|
|
- if (this.dataList[li].fGoodsids){
|
|
|
- fGoodsid.push(this.dataList[li].fGoodsids)
|
|
|
- console.log(fGoodsid)
|
|
|
- }
|
|
|
- console.log(this.dataList[li])
|
|
|
+ fGoodsid.push(this.dataList[li].fGoodsids)
|
|
|
}
|
|
|
this.$set(this.form, 'fMarks', Array.from(new Set(fMarks)).join(","))
|
|
|
this.$set(this.form, 'fProductName', Array.from(new Set(fGoodsid)).join(","))
|
|
|
- console.log(fGoodsid)
|
|
|
},
|
|
|
//作业类型校验
|
|
|
educationChange() {
|
|
|
@@ -5703,6 +5790,7 @@ export default {
|
|
|
let formDatae = new window.FormData()
|
|
|
// 附件数据
|
|
|
this.form.fBillingway = this.form.fFeetunit
|
|
|
+ console.log(this.warehouseCrList)
|
|
|
// this.form.fBstime = JSON.stringify(this.form.fBstime)
|
|
|
formDatae.append('tWarehouseBills', JSON.stringify(this.form))
|
|
|
// 库存明细
|
|
|
@@ -5992,6 +6080,7 @@ export default {
|
|
|
listCorps(queryParams).then((response) => {
|
|
|
this.fMblnoOptions = response.rows;
|
|
|
this.KHblnoOptions = response.rows;
|
|
|
+ console.log(this.KHblnoOptions)
|
|
|
});
|
|
|
},
|
|
|
/* 远程模糊查询质押银行 */
|
|
|
@@ -6033,11 +6122,13 @@ export default {
|
|
|
if (name == null || name === "") {
|
|
|
return false;
|
|
|
}
|
|
|
- let queryParams = { pageNum: 1, fName: name };
|
|
|
+ let queryParams = { pageNum: 1, fDc:'C',fName:name};
|
|
|
listFees(queryParams).then((response) => {
|
|
|
- this.fDNameOptions = response.rows;
|
|
|
this.fCNameOptions = response.rows;
|
|
|
- this.fWbuOptions = response.rows
|
|
|
+ });
|
|
|
+ let query = { pageNum: 1, fDc:'D',fName:name};
|
|
|
+ listFees(query).then((response) => {
|
|
|
+ this.fDNameOptions = response.rows;
|
|
|
});
|
|
|
},
|
|
|
/* 远程模糊查询劳务公司 */
|