|
@@ -756,7 +756,7 @@ export default {
|
|
|
date: []
|
|
|
}
|
|
|
if (this.nowTab === 'charts') {
|
|
|
- this.searchForm = { ...this.searchForm, rqmtOrntIds: [], name: '', statusList: [] }
|
|
|
+ this.searchForm = { ...this.searchForm, name: '', statusList: [] }
|
|
|
}
|
|
|
if (this.nowTab === 'charts') {
|
|
|
this.get_charts()
|
|
@@ -783,11 +783,11 @@ export default {
|
|
|
},
|
|
|
getToRequirementDetails(id) { // table点击跳转
|
|
|
const bizId_id = EncryptId(`${this.bizId}_${id}`)
|
|
|
- if (localStorage.getItem('openPageHandle') === 'blank') {
|
|
|
+ if (localStorage.getItem('openPageHandle') === 'self') {
|
|
|
+ this.$router.push({ name: '需求详情', query: { bizId_id: bizId_id }})
|
|
|
+ } else {
|
|
|
const newTab = this.$router.resolve({ name: '需求详情', query: { bizId_id: bizId_id }})
|
|
|
window.open(newTab.href, '_blank')
|
|
|
- } else {
|
|
|
- this.$router.push({ name: '需求详情', query: { bizId_id: bizId_id }})
|
|
|
}
|
|
|
},
|
|
|
chartSearchFormChange(key, value) {
|