diff --git a/src/views/emis/emisCommissionQuote/index.vue b/src/views/emis/emisCommissionQuote/index.vue index 0671bc1d..4b2babfd 100644 --- a/src/views/emis/emisCommissionQuote/index.vue +++ b/src/views/emis/emisCommissionQuote/index.vue @@ -256,10 +256,10 @@ @@ -365,6 +365,15 @@ export default { created() { this.getList(); }, + //watch 监听blOpen + watch: { + 'queryParams.blOpen': { + handler(newVal, oldVal) { + this.getList(); + }, + immediate: true + } + }, methods: { /** 查询员工提成方案报价列表 */ getList() { diff --git a/src/views/emis/emisWarehouseIn/panel/WarehouseInPanel.vue b/src/views/emis/emisWarehouseIn/panel/WarehouseInPanel.vue index c42b1224..a9ba661e 100644 --- a/src/views/emis/emisWarehouseIn/panel/WarehouseInPanel.vue +++ b/src/views/emis/emisWarehouseIn/panel/WarehouseInPanel.vue @@ -234,12 +234,12 @@ - + - + @@ -848,6 +848,12 @@ export default { if (j === 'waybillDetail.paymentType') { return this.selectDictLabel(this.dict.type.emis_payment_type,v['waybillDetail']['paymentType']); } + if(j === 'waybillDetail.transLineTypeName'){ + return v['waybillDetail']['transLineTypeName']; + } + if(j === 'waybillDetail.productTypeName'){ + return v['waybillDetail']['productTypeName']; + } return v[j] })) }, diff --git a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue index 9635f0b4..81e8c248 100644 --- a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue +++ b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue @@ -347,7 +347,7 @@ - + newValue this.form==>",this.form); console.log("====>newValue this.form.packType==>",this.form.packType); @@ -1599,6 +1600,7 @@ export default { this.form.payee=item.payee; this.form.salesmen=item.salesmen; } + this.calcBillFee() }, initData(){ diff --git a/src/views/emis/salesCommissionRatio/editForm.vue b/src/views/emis/salesCommissionRatio/editForm.vue index 7cbd0a30..176cecf7 100644 --- a/src/views/emis/salesCommissionRatio/editForm.vue +++ b/src/views/emis/salesCommissionRatio/editForm.vue @@ -51,6 +51,7 @@ type="datetime" value-format="yyyy-MM-dd HH:mm:ss" placeholder="选择结束时间" + @change="changeEndDate" /> @@ -147,6 +148,9 @@ export default { }); } }, + changeEndDate(val){ + this.form.endDate = val.split(' ')[0] + ' 23:59:59'; + }, // 取消按钮 cancel() { this.reset(); diff --git a/src/views/emis/salesCommissionRatio/index.vue b/src/views/emis/salesCommissionRatio/index.vue index c2d1fd75..2983019b 100644 --- a/src/views/emis/salesCommissionRatio/index.vue +++ b/src/views/emis/salesCommissionRatio/index.vue @@ -260,6 +260,15 @@ export default { return '停用'; } } + if(j === 'salesExecutiveRatio'){ + return v[j] + '%'; + } + if(j === 'salesmenRatio'){ + return v[j] + '%'; + } + if(j === 'salesSupportRatio'){ + return v[j] + '%'; + } return v[j] })) }, diff --git a/src/views/emis/salesMonthlyReview/draftSubmitReview.vue b/src/views/emis/salesMonthlyReview/draftSubmitReview.vue index e6d34d6f..5fed38e3 100644 --- a/src/views/emis/salesMonthlyReview/draftSubmitReview.vue +++ b/src/views/emis/salesMonthlyReview/draftSubmitReview.vue @@ -2,8 +2,8 @@
@@ -69,7 +69,7 @@ href="/static/tpl/imp_trans_quote.xls">下载导入Excel模板
{{ - fileName }} {{ uploadExcelDataInfo }}
+ fileName }} {{ uploadExcelDataInfo }} @@ -110,7 +110,7 @@ export default { // 总条数 total: 0, // 报价列表表格数据 - emisQuotePriceList: [], + list: [], tmpDataList: [], selectionList: [], selectionIndexList: [], @@ -211,7 +211,7 @@ export default { let loadingInstance = this.$loading({ text: '正在解析 ' + _index + ' 数据...' }) - this.emisQuotePriceList = []; + this.list = []; this.tmpDataList = []; // 组装提交的数据 for (let index = 0; index < results.length; index++) { @@ -277,7 +277,7 @@ export default { return; } - this.emisQuotePriceList = this.emisQuotePriceList.concat(this.tmpDataList); + this.list = this.list.concat(this.tmpDataList); this.tmpDataList = []; @@ -310,9 +310,9 @@ export default { let that = this; this.$modal.confirm('是否确认删除').then(function () { that.selectionList.forEach((item, index) => { - that.emisQuotePriceList.forEach((v, i) => { + that.list.forEach((v, i) => { if (item.index === v.index) { - that.emisQuotePriceList.splice(i, 1) + that.list.splice(i, 1) } }) })