From 57981cf8bc5c461eb0e8ffea657406b4e2fe8e69 Mon Sep 17 00:00:00 2001 From: zyn Date: Tue, 7 Nov 2023 15:04:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E7=AB=AF-=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../phone/components/standardSystemPopup.vue | 15 +++++++++++++-- .../phone/components/standardSystemTree.vue | 2 +- src/pages/phone/domesticStand.vue | 16 ++++++++++++++-- src/pages/phone/phoneHome.vue | 8 ++++++++ 4 files changed, 36 insertions(+), 5 deletions(-) diff --git a/src/pages/phone/components/standardSystemPopup.vue b/src/pages/phone/components/standardSystemPopup.vue index cd5c6d868..e2eeab1bb 100644 --- a/src/pages/phone/components/standardSystemPopup.vue +++ b/src/pages/phone/components/standardSystemPopup.vue @@ -10,6 +10,14 @@
-
{{item.standName && item.standName !== '' ? item.standName : item.standEnName}}
+
{{item.standName && item.standName !== '' ? item.standName : item.standEnName !== '' ? item.standEnName : item.nameshow }}
@@ -102,7 +102,7 @@
点击加载更多
加载中...
- + @@ -131,6 +131,7 @@ export default { textStatusMap: {},// 文本状态id与name对应 natureMap:{}, lawsMap:{}, + textStatusName: '全部', standSystemKeys: [] } }, @@ -190,6 +191,7 @@ export default { selectIndex: 'stand', selectValue: this.searchKey, standSystem: this.standSystemKeys, + textStatusName: this.textStatusName, selectType: 'titleSearch', standType: 'INLAND', page: this.page, @@ -227,6 +229,7 @@ export default { selectIndex: 'stand', selectValue: this.searchKey, standSystem: this.standSystemKeys, + textStatusName: this.textStatusName, selectType: 'titleSearch', standType: 'FOREIGN', page: this.page, @@ -249,6 +252,7 @@ export default { selectIndex: 'bussstand', selectValue: this.searchKey, standSystem: this.standSystemKeys, + textStatusBussName: this.textStatusName, selectType: 'titleSearch', standType: 'bussstand', page: this.page, @@ -355,6 +359,7 @@ export default { selectIndex: 'stand', selectValue: this.searchKey, standSystem: this.standSystemKeys, + textStatusName: this.textStatusName, selectType: 'titleSearch', standType: 'INLAND', page: this.page, @@ -410,6 +415,7 @@ export default { selectIndex: 'stand', selectValue: this.searchKey, standSystem: this.standSystemKeys, + textStatusName: this.textStatusName, selectType: 'titleSearch', standType: 'FOREIGN', page: this.page, @@ -440,6 +446,7 @@ export default { selectIndex: 'bussstand', selectValue: this.searchKey, standSystem: this.standSystemKeys, + textStatusBussName: this.textStatusName, selectType: 'titleSearch', standType: 'bussstand', page: this.page, @@ -572,6 +579,11 @@ export default { onChoose () { this.$refs.standardSystemPopupRef.open() }, + setSearchQuery (searchQuery) { + this.standSystemKeys = searchQuery.checkedKeys + this.textStatusName = searchQuery.textStatusName + this.onSearch() + }, setStandSystemKeys (standSystemKeys) { this.standSystemKeys = standSystemKeys this.onSearch() diff --git a/src/pages/phone/phoneHome.vue b/src/pages/phone/phoneHome.vue index 0c66fc044..0d15d352c 100644 --- a/src/pages/phone/phoneHome.vue +++ b/src/pages/phone/phoneHome.vue @@ -40,6 +40,7 @@ 标准化动态 + @@ -199,5 +200,12 @@ export default { font-weight: 500; } } + .footer{ + color: #3170A7; + position: absolute; + bottom: 10px; + left: 50%; + transform: translateX(-50%); + } }