From 77afd2507a4a79c781df8e417a79568e117ac6ae Mon Sep 17 00:00:00 2001
From: dearlin <1261008090@qq.com>
Date: Thu, 16 Nov 2023 16:57:34 +0800
Subject: [PATCH 1/8] =?UTF-8?q?=E7=9B=91=E7=AE=A1=E7=AB=AF,=E9=87=8D?=
=?UTF-8?q?=E7=82=B9=E5=B7=A5=E7=A8=8B=E8=BF=9B=E5=85=A5=E5=90=8E=E3=80=82?=
=?UTF-8?q?=E5=8F=AA=E6=9C=89"=E7=A7=A6=E6=B8=AF=E8=82=A1=E4=BB=BD?=
=?UTF-8?q?=E6=9C=89=E9=99=90=E5=85=AC=E5=8F=B8"=E8=BF=99=E4=B8=AA?=
=?UTF-8?q?=E4=BC=81=E4=B8=9A=E5=8F=AF=E4=BB=A5=E6=96=B0=E5=A2=9E=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/keyprojects/outsourced/components/list.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/keyprojects/outsourced/components/list.vue b/src/views/keyprojects/outsourced/components/list.vue
index fcf3c44..6ed636c 100644
--- a/src/views/keyprojects/outsourced/components/list.vue
+++ b/src/views/keyprojects/outsourced/components/list.vue
@@ -154,7 +154,7 @@
- 新增
+ 新增
From 4270d8e78f16d262caabc65a493fa51427993f95 Mon Sep 17 00:00:00 2001
From: dearlin <1261008090@qq.com>
Date: Wed, 22 Nov 2023 16:14:15 +0800
Subject: [PATCH 2/8] =?UTF-8?q?fix=EF=BC=9A=20=E9=87=8D=E7=82=B9=E5=B7=A5?=
=?UTF-8?q?=E7=A8=8B=E8=A7=86=E9=A2=91=E7=9B=91=E6=8E=A7=E5=A4=96=E5=B1=82?=
=?UTF-8?q?=E6=96=B0=E5=8A=A0=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/OutSourced/index.vue | 11 ++++++++++-
.../corpinfodept/components/indexList.vue | 8 ++++----
.../corpinfouser/components/indexList.vue | 8 ++++----
.../retrieval/components/indexList.vue | 16 ++++++++--------
.../videomanager/components/list.vue | 9 ++++++++-
src/views/keyprojects/videomanager/index.vue | 10 ++++++++--
.../risk/corpinfo/components/corpInfo.vue | 18 ++++++++----------
7 files changed, 50 insertions(+), 30 deletions(-)
diff --git a/src/components/OutSourced/index.vue b/src/components/OutSourced/index.vue
index 76c4676..3f4723c 100644
--- a/src/components/OutSourced/index.vue
+++ b/src/components/OutSourced/index.vue
@@ -61,7 +61,12 @@
-
+
+
+
+
+
+
查看
@@ -87,6 +92,10 @@ export default {
activeName: {
type: String,
default: ''
+ },
+ otherShow: {
+ type: Boolean,
+ default: false
}
},
diff --git a/src/views/corpInfo/corpinfodept/components/indexList.vue b/src/views/corpInfo/corpinfodept/components/indexList.vue
index 8d5e2d4..4cd733a 100644
--- a/src/views/corpInfo/corpinfodept/components/indexList.vue
+++ b/src/views/corpInfo/corpinfodept/components/indexList.vue
@@ -62,10 +62,10 @@
-
-
- {{ translate(industryList,row.INDUSTRY) }}
-
+
+
+
+
diff --git a/src/views/corpInfo/corpinfouser/components/indexList.vue b/src/views/corpInfo/corpinfouser/components/indexList.vue
index b4eb127..fc59d65 100644
--- a/src/views/corpInfo/corpinfouser/components/indexList.vue
+++ b/src/views/corpInfo/corpinfouser/components/indexList.vue
@@ -48,10 +48,10 @@
-- {{ row.villageName }}
-
-
- {{ translate(industryList,row.INDUSTRY) }}
-
+
+
+
+
diff --git a/src/views/corpInfo/retrieval/components/indexList.vue b/src/views/corpInfo/retrieval/components/indexList.vue
index 5052401..f6dae83 100644
--- a/src/views/corpInfo/retrieval/components/indexList.vue
+++ b/src/views/corpInfo/retrieval/components/indexList.vue
@@ -7,13 +7,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -496,7 +496,7 @@
-- {{ row.villageName }}
-
+
diff --git a/src/views/keyprojects/videomanager/components/list.vue b/src/views/keyprojects/videomanager/components/list.vue
index 4d5a01d..2f6f420 100644
--- a/src/views/keyprojects/videomanager/components/list.vue
+++ b/src/views/keyprojects/videomanager/components/list.vue
@@ -1,5 +1,7 @@
+
+
@@ -102,6 +104,10 @@ export default {
getRowKey(row) {
return row.OUTSOURCED_ID
},
+ goBack() {
+ this.$parent.activeName = 'OutSourced'
+ this.$parent.OUTSOURCED_ID = ''
+ },
// 搜索
getQuery() {
this.$refs.multipleTable.clearSelection()
@@ -117,7 +123,8 @@ export default {
requestFN(
'/outsourced/list?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
{
- KEYWORDS: this.KEYWORDS
+ KEYWORDS: this.KEYWORDS,
+ CORPINFO_ID: this.$parent.CORPINFO_ID
}
).then((data) => {
this.listLoading = false
diff --git a/src/views/keyprojects/videomanager/index.vue b/src/views/keyprojects/videomanager/index.vue
index 1c43ae1..8fc303d 100644
--- a/src/views/keyprojects/videomanager/index.vue
+++ b/src/views/keyprojects/videomanager/index.vue
@@ -1,21 +1,27 @@
-
+
+
+
+