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%); + } }