@@ -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)
}
})
})
From 202bc576f5d375fb7f27e51a720ba93558ce1bb1 Mon Sep 17 00:00:00 2001
From: wuteng <419274783@qq.com>
Date: Thu, 31 Jul 2025 11:21:19 +0800
Subject: [PATCH 5/5] =?UTF-8?q?=E9=94=80=E5=94=AE=E8=AE=A1=E6=8F=90?=
=?UTF-8?q?=E6=AF=94=E4=BE=8B=E9=85=8D=E7=BD=AE=E6=97=B6=E9=97=B4=E3=80=81?=
=?UTF-8?q?=E7=99=BE=E5=88=86=E6=AF=94=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/emis/salesCommissionRatio/editForm.vue | 4 ++++
src/views/emis/salesCommissionRatio/index.vue | 9 +++++++++
2 files changed, 13 insertions(+)
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"
/>