feat: 首页标准发布

This commit is contained in:
super_liu
2021-07-19 16:28:09 +08:00
parent b925bc6f3e
commit 41cd49ee03
2 changed files with 22 additions and 5 deletions
+3 -4
View File
@@ -46,12 +46,11 @@ export default {
//获取数据
getAdvice() {
let obj = {}
obj.msgType = 'RESOURCE'
obj.rowLimit = 8
this.$http.get('sarStandardsInfo/sar-standards-info/getSarStandardsInfoPage', obj, {
obj.limit = 8
this.$http.get('sarStandardsInfo/sar-standards-info/getStandInfoByList', obj, {
_this: this
}, res => {
this.standardReleaseList = res.data.list
this.standardReleaseList = res.data
}, e => {
})
},
+19 -1
View File
@@ -110,7 +110,25 @@ export default {
})
},
MORE() {
this.$router.push({name: 'standardForComments'})
switch (this.activeName) {
case 'solicitOpinions':
this.$router.push({name: 'standardForComments'})
break
case 'release':
this.$confirm('请选择国内/海外标准', {
confirmButtonText: '国内标准',
cancelButtonText: '海外标准',
type: 'warning',
center: true
}).then(() => {
this.$router.push({name: 'domesticStandardsAndRegulations'})
}).catch(() => {
this.$router.push({name: 'foreignStandardsAndRegulations'})
});
break
default:
break
}
}
},
}