|
@@ -202,7 +202,8 @@ import {
|
|
|
configShowTaskEnum,
|
|
|
memberQueryMemberInfoByIDAPorName,
|
|
|
configShowRequirementVersionEnum,
|
|
|
- projectListProject
|
|
|
+ projectListProject,
|
|
|
+ showTaskListEnum
|
|
|
} from '@/api/taskIndex' // ajax
|
|
|
import { settingQueryBizModuleList } from '@/api/defectManage'
|
|
|
import openDialog from '@/views/projectManage/dialog_vue'
|
|
@@ -368,12 +369,14 @@ export default {
|
|
|
get_taskSelect() {
|
|
|
// 下拉菜单数据
|
|
|
configShowTaskEnum().then(res => {
|
|
|
- this.daStatus = res.data.taskStatus
|
|
|
this.healthStage = res.data.taskStage
|
|
|
this.noTest = res.data.noTest // 是否免测
|
|
|
this.taskSource = res.data.taskSource // 归属需求
|
|
|
this.appClient = res.data.appClient // 涉及客户端
|
|
|
})
|
|
|
+ showTaskListEnum().then(res => {
|
|
|
+ this.daStatus = res.data.taskStatus
|
|
|
+ })
|
|
|
projectListProject({ bizId: Number(localStorage.getItem('bizId')) }).then(res => {
|
|
|
this.projectList = res.data
|
|
|
})
|