|
@@ -280,7 +280,7 @@
|
|
|
<create-children v-if="createChildren" :visible.sync="createChildren" :data="form_query" :new-add="true" @change="reloadList" />
|
|
|
<Test-report v-if="dialogTest" ref="TestReport" />
|
|
|
<Daily-report v-if="dialogDaily" ref="DailyReport" />
|
|
|
- <Client-report v-if="dialogClient" ref="ClientReport" />
|
|
|
+ <ReleaseReport v-if="dialogClient" ref="ClientReport" />
|
|
|
<!-- 新建 -->
|
|
|
<!-- 编辑 -->
|
|
|
<open-dialog v-if="updateVisible" ref="task_createdUpdata" />
|
|
@@ -346,9 +346,9 @@ import childrenList from './childrenTask/childrenList'
|
|
|
import scheduleList from './components/scheduleList'
|
|
|
import reportList from './components/reportList'
|
|
|
import dataStatistics from './components/dataStatistics'
|
|
|
-import TestReport from '@/views/Platform/presentation/Templates/TestReport' // 提测
|
|
|
+import TestReport from '@/views/reportManagement/components/TestingReport' // 提测
|
|
|
import DailyReport from '@/views/reportManagement/components/DailyReport' // 日报
|
|
|
-import ClientReport from '@/views/Platform/presentation/Templates/ClientReport' // 准出
|
|
|
+import ReleaseReport from '@/views/reportManagement/components/ReleaseReport' // 准出
|
|
|
import stage from '@/assets/detailPage/风险状态.png'
|
|
|
import stage1 from '@/assets/detailPage/正常状态.png'
|
|
|
import stage2 from '@/assets/detailPage/延期状态.png'
|
|
@@ -373,7 +373,7 @@ export default {
|
|
|
dataStatistics,
|
|
|
TestReport,
|
|
|
DailyReport,
|
|
|
- ClientReport,
|
|
|
+ ReleaseReport,
|
|
|
taskDialog,
|
|
|
bugTableDialog,
|
|
|
schedule,
|
|
@@ -673,7 +673,7 @@ export default {
|
|
|
switch (e) {
|
|
|
case 1: // 提测
|
|
|
this.dialogTest = true
|
|
|
- this.$nextTick(() => { this.$refs.TestReport.init(1, ele) })
|
|
|
+ this.$nextTick(() => { this.$refs.TestReport.init(7, [this.taskId]) })
|
|
|
break
|
|
|
case 2: // 日报
|
|
|
this.dialogDaily = true
|
|
@@ -683,7 +683,7 @@ export default {
|
|
|
break
|
|
|
case 3:
|
|
|
this.dialogClient = true
|
|
|
- this.$nextTick(() => { this.$refs.ClientReport.init(1, ele) })
|
|
|
+ this.$nextTick(() => { this.$refs.ClientReport.init(7, [this.taskId]) })
|
|
|
break
|
|
|
}
|
|
|
},
|