From edc9fbfd43c55a8fcbbef3d9157ee416aa63700f Mon Sep 17 00:00:00 2001
From: lcc <805383944@qq.com>
Date: Fri, 24 Oct 2025 15:18:10 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BD=A3=E9=87=91=E5=88=97?=
=?UTF-8?q?=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pingan/src/views/user/cmmssn/index.vue | 16 +++++++++++++++-
.../src/views/user/team/components/commssn.vue | 15 ++++++++++++++-
2 files changed, 29 insertions(+), 2 deletions(-)
diff --git a/pingan/src/views/user/cmmssn/index.vue b/pingan/src/views/user/cmmssn/index.vue
index 66ff8a9..f35505d 100644
--- a/pingan/src/views/user/cmmssn/index.vue
+++ b/pingan/src/views/user/cmmssn/index.vue
@@ -24,6 +24,11 @@
:datasource="datasource"
cache-key="userCmmssn"
>
+
+
+ {{ row.from.text }}
+
+
@@ -46,7 +51,8 @@
prop: 'cluesCid',
label: '线索编号',
showOverflowTooltip: true,
- align: 'center'
+ align: 'center',
+ slot: 'fromCn'
},
{
prop: 'brandSeries',
@@ -99,6 +105,14 @@
handleOptionChange() {
console.log(this.tabPosition);
this.reload();
+ },
+ goDetail(row) {
+ const path = row.from.url;
+ if (path) {
+ this.$router.push({
+ path
+ });
+ }
}
}
};
diff --git a/pingan/src/views/user/team/components/commssn.vue b/pingan/src/views/user/team/components/commssn.vue
index 4cee923..6870f20 100644
--- a/pingan/src/views/user/team/components/commssn.vue
+++ b/pingan/src/views/user/team/components/commssn.vue
@@ -16,6 +16,11 @@
:datasource="datasource"
cache-key="userCmmssn"
>
+
+
+ {{ row.from.text }}
+
+
@@ -48,7 +53,7 @@
prop: 'fromCn',
label: '佣金来源',
showOverflowTooltip: true,
- slot: 'username',
+ slot: 'fromCn',
align: 'center',
minWidth: 100
},
@@ -96,6 +101,14 @@
/* 刷新表格 */
reload(where) {
this.$refs.table.reload({ page: 1, where: where });
+ },
+ goDetail(row) {
+ const path = row.from.url;
+ if (path) {
+ this.$router.push({
+ path
+ });
+ }
}
},
watch: {