diff --git a/src/main.js b/src/main.js index bbfabb5ec..52edb3920 100644 --- a/src/main.js +++ b/src/main.js @@ -168,6 +168,8 @@ router.beforeEach(function (to, from, next) { if ((token === null || token === '' ) && toName !== 'Login') { if(toName !== 'phoneIndex'){ if(toName === 'phoneHome'){ + // 手机端 首页 首次进入系统 清除 缓存, 防止 跳转 oa 的页面, 问题追溯 #55852 + window.sessionStorage.clear() next('/loginVerifyPhone') }else { if(fromName === 'phoneHome'){ diff --git a/src/pages/personal/pages/my-questions/components/questionItemInfo.vue b/src/pages/personal/pages/my-questions/components/questionItemInfo.vue index bc31a6c57..7d622fa11 100644 --- a/src/pages/personal/pages/my-questions/components/questionItemInfo.vue +++ b/src/pages/personal/pages/my-questions/components/questionItemInfo.vue @@ -24,7 +24,7 @@
- 归档 + 归档
@@ -40,6 +40,8 @@ export default { data(){ return{ checked: '', + answererNowUserId: this.$store.getters.userInfo.userId, + answererNowUserName: this.$store.getters.userInfo.userName, } }, methods:{ diff --git a/src/pages/personal/pages/my-questions/index.vue b/src/pages/personal/pages/my-questions/index.vue index f78f4caae..3e2e90fb7 100644 --- a/src/pages/personal/pages/my-questions/index.vue +++ b/src/pages/personal/pages/my-questions/index.vue @@ -872,7 +872,6 @@ @@ -1454,6 +1453,7 @@ export default { }, //选择标准的查询按钮 searchLawBtn(){ + this.lawNumberSearch() this.lawInfoTableLoading = true if (this.handleSelectForm.dataSource === 'INLAND'){ this.$http.get('sarStandardsInfo/sar-standards-info/getSarStandardsInfoPageByWk1',this.handleSelectForm,{ @@ -1842,6 +1842,17 @@ export default { this.activeName = "myQue" this.activeType = this.standType this.searchBtn() + this.queSearch() + this.handleSelectForm.lawNumber = '' + this.handleSelectForm.textStatus = '' + this.handleSelectForm.isRelateAccess = '' + this.handleSelectForm.standNumber = '' + this.handleSelectForm.lawsNumber = '' + this.handleSelectForm.standCode = '' + //清空标准名称/政策名称的查询 + this.handleSelectForm.lawName = '' + this.handleSelectForm.standName = '' + this.handleSelectForm.numberName = '' }, e => { })