From 855f79033f2de00145a6db3e34e0573a5b8b7d6c Mon Sep 17 00:00:00 2001
From: xzg <4727863@qq.com>
Date: Mon, 3 Mar 2025 17:42:47 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=88=B7=E5=88=97=E8=A1=A8=E5=A2=9E?=
=?UTF-8?q?=E5=8A=A0=E4=B8=BB=E4=BD=93?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/basicdata/brand/basicClient.vue | 414 +++++++---------------
1 file changed, 130 insertions(+), 284 deletions(-)
diff --git a/src/views/basicdata/brand/basicClient.vue b/src/views/basicdata/brand/basicClient.vue
index e6389640..0cea2cd1 100644
--- a/src/views/basicdata/brand/basicClient.vue
+++ b/src/views/basicdata/brand/basicClient.vue
@@ -10,21 +10,12 @@
-
+
-
+
{{ data.label }}
({{ data.children.length }})
@@ -33,18 +24,9 @@
-
+
@@ -61,9 +43,7 @@
新 增
- 删 除
+ 删 除
导 入
@@ -74,25 +54,12 @@
-
+
- 查看
- 编辑
+ 查看
+ 编辑
删除
@@ -138,27 +105,13 @@
-
+
-
+
@@ -256,73 +178,41 @@
-
+
-
+
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
{{
item.dictValue
}}
@@ -330,29 +220,15 @@
-
+
-
+
-
+
{{ data.label }}
({{ data.children.length }})
@@ -360,80 +236,43 @@
-
+
-
+
-
+
上传
大小不超过500KB的jpg/png文件。
-
+
-
+
-
+
- 提 交
+ 提 交
取 消
@@ -442,36 +281,16 @@
-
-
+
+
-
+
-
+
默认系统初始化密码
@@ -480,24 +299,14 @@
-
+
@@ -512,15 +321,8 @@
-
+
@@ -540,6 +342,7 @@ import {
$_getListlistName,
getClientLogList,
$_exportclientTemplate,
+ $_mainList,
} from '@/api/basicdata/basicClient';
import option from '@/option/basicdata/basicClient';
import { mapGetters } from 'vuex';
@@ -561,6 +364,8 @@ export default {
data() {
return {
excelForm: {},
+ clientloading: false,
+ dictList: [],
fromloading: true,
excelBox: false,
Fileverification: false,
@@ -682,6 +487,17 @@ export default {
sortable: true,
head: false,
},
+ {
+ prop: 'mainName',
+ label: '客户主体',
+ type: 2,
+ values: '',
+ width: '130',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
{
prop: 'linkman',
label: '联系人',
@@ -1013,7 +829,6 @@ export default {
logData: [],
};
},
- created() {},
mounted() {
this.init();
},
@@ -1257,9 +1072,31 @@ export default {
downloadLink(row) {
window.open(
'http://192.168.10.100:8012/onlinePreview?url=' +
- encodeURIComponent(Base64.encode(row.leaseAccessories))
+ encodeURIComponent(Base64.encode(row.leaseAccessories))
);
},
+
+ async changeclientId() {
+ $_mainList(
+ {
+ current: 1,
+ size: 1,
+ }
+ )
+ .then(res => {
+ console.log(res, '客户');
+ if (res.data.code == 200 && res.data.data?.length) {
+ this.dictList = res.data.data
+ } else {
+ this.dictList = [];
+ }
+ })
+ .catch(error => {
+ console.log(error);
+ })
+ },
+
+
//控制控货
makeCargo(row) {
console.log('控货操作!!', row);
@@ -1348,8 +1185,7 @@ export default {
},
handleExceed(files, fileList) {
this.$message.warning(
- `当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${
- files.length + fileList.length
+ `当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length
} 个文件`
);
},
@@ -1416,7 +1252,7 @@ export default {
// 此处可以处理验证失败的逻辑,比如显示错误消息
return;
}
- } catch (error) {}
+ } catch (error) { }
if (!this.form.typeServiceList.includes('3')) {
delete this.form.businessType;
}
@@ -1470,6 +1306,10 @@ export default {
});
return;
}
+ if(this.form.mainId){
+ this.form.mainName = this.dictList.find(item=>item.id == this.form.mainId).name;//客户主体名称
+ }
+
await add(this.form);
this.box = false;
this.onLoad(this.page);
@@ -1510,6 +1350,9 @@ export default {
});
return;
}
+ if(this.form.mainId){
+ this.form.mainName = this.dictList.find(item=>item.id == this.form.mainId).name;//客户主体名称
+ }
await update(this.form);
this.box = false;
this.onLoad(this.page);
@@ -1569,7 +1412,7 @@ export default {
getDetail(row.id).then(res => {
console.log(res.data.data, 'res.data.data');
this.form = res.data.data;
-
+ this.form.mainId = res.data.data.mainId
if (this.form.detailedly == '0' || this.form.detailedly == '-1') {
this.form.detailedly = '';
}
@@ -1953,6 +1796,9 @@ export default {
}
},
},
+ created() {
+ this.changeclientId()
+ },
};