@@ -4471,6 +4471,11 @@ export default {
},
// 点击导入标准
addImportModal(flag) {
+ if(this.selectSarMenu.id === undefined){
+ this.importFailed = true;
+ this.importForm.content = '请选择需要导入的目录'
+ return
+ }
this.importModalshowflag = true
this.showUploadlist = true
this.importExcelUrl = '/api/lawss/sarBussionessStand/importSarBussionessStandFile?menuId=' + this.selectSarMenu.id + '&userId=' + this.$store.getters.userInfo.userId
diff --git a/src/pages/regulatoryRepository/standQA/index.vue b/src/pages/regulatoryRepository/standQA/index.vue
index ccf4c45b0..b79eeb03c 100644
--- a/src/pages/regulatoryRepository/standQA/index.vue
+++ b/src/pages/regulatoryRepository/standQA/index.vue
@@ -1073,6 +1073,27 @@ export default {
this.dialogVisible = false
this.isSubmit = false
this.searchBtn()
+ this.$http.post('lawss/activiti/startProcessRollBack',{
+ json: JSON.stringify(res.data),
+ type: '27',
+ createUser: this.$store.getters.userInfo.userId,
+ createUserName: this.$store.getters.userInfo.userName,
+ },
+ {
+ _this: this
+ }, val => {
+ this.$http.post('lawss/activiti/completeTask',{
+ taskIds: val.data,
+ userId : this.$store.getters.userInfo.userId,
+ json: JSON.stringify(res.data),
+ },
+ {
+ _this: this
+ }, res => {
+ }, e => {
+ })
+ }, e => {
+ })
}, e => {
})
diff --git a/src/pages/searchCenter/pages/standardSearch.vue b/src/pages/searchCenter/pages/standardSearch.vue
index 95c032033..f093e2848 100644
--- a/src/pages/searchCenter/pages/standardSearch.vue
+++ b/src/pages/searchCenter/pages/standardSearch.vue
@@ -30,7 +30,7 @@
首页
-
+
标准需求(翻译)申请流程
diff --git a/src/router/index.js b/src/router/index.js
index fa6658dbd..7299ca608 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -338,6 +338,15 @@ const routes = [
requireAuth: false,
title: '我的问答'
}
+ },
+ {
+ path: '/questions3',
+ name: 'MyQuestions3',
+ component: resolve => require(['@/pages/personal/pages/my-questions/index3.vue'], resolve),
+ meta: {
+ requireAuth: false,
+ title: '我的问答'
+ }
},
{
path: '/questionDetail',