|
|
@@ -15,6 +15,20 @@
|
|
|
/>
|
|
|
</template>
|
|
|
</tips-custom>
|
|
|
+ <div class="mb-20" v-if="detail.report_type === 4">
|
|
|
+ <el-card shadow="hover" style="background-color: #e2eaf5">
|
|
|
+ <div class="flex flex-center flex-justify-start">
|
|
|
+ <el-icon color="#409eff" :size="30">
|
|
|
+ <WarningFilled />
|
|
|
+ </el-icon>
|
|
|
+ <span class="ml-10"
|
|
|
+ >{{ detail.report_type_name }} 审核意见:{{
|
|
|
+ detail.receipt_msg
|
|
|
+ }}</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
<!-- content-->
|
|
|
<div style="margin-bottom: 65px">
|
|
|
<div v-if="[1, 2].includes(currentStage)">
|
|
|
@@ -41,41 +55,46 @@
|
|
|
<!-- 年度投资情况-->
|
|
|
<info6 v-if="currentStage === 4" :project-id="projectId" />
|
|
|
<!-- 其他信息-->
|
|
|
- <info7 v-if="[2, 4, 5].includes(currentStage)" :info="detail" />
|
|
|
+ <info7 v-if="[1, 2, 4, 5].includes(currentStage)" :info="detail" />
|
|
|
<!-- 任务列表-->
|
|
|
<info8 v-if="user.info.type === 4" :project-id="projectId" />
|
|
|
</div>
|
|
|
<!-- buttom-->
|
|
|
<div
|
|
|
class="bottom flex flex-center flex-justify-end"
|
|
|
- v-if="user.info.type === 3"
|
|
|
+ v-if="user.info.type === 3 && currentStage < 6"
|
|
|
>
|
|
|
<div class="padding">
|
|
|
- <el-button type="primary" plain @click="projectCancel">退 库</el-button>
|
|
|
+ <el-button type="primary" plain @click="projectCancel"
|
|
|
+ >退 库
|
|
|
+ </el-button>
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
v-if="[0, 1, 4].includes(detail.report_type)"
|
|
|
@click="projectReport"
|
|
|
plain
|
|
|
- >上报审核</el-button
|
|
|
- >
|
|
|
+ >上报审核
|
|
|
+ </el-button>
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
plain
|
|
|
v-if="detail.report_type === 2"
|
|
|
@click="$refs.approval.show()"
|
|
|
- >审 核</el-button
|
|
|
- >
|
|
|
+ >审 核
|
|
|
+ </el-button>
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
plain
|
|
|
v-if="detail.report_type === 3"
|
|
|
@click="projectReportFormal"
|
|
|
- >上报到固定资产</el-button
|
|
|
+ >上报到固定资产
|
|
|
+ </el-button>
|
|
|
+ <el-button type="primary" @click="nextStage" v-if="currentStage < 6"
|
|
|
+ >下一阶段</el-button
|
|
|
>
|
|
|
- <el-button type="primary" @click="nextStage">下一阶段</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
<approval ref="approval" :project-id="projectId" @success="getInfo" />
|
|
|
</div>
|
|
|
</template>
|