|
|
@@ -216,12 +216,12 @@
|
|
|
>
|
|
|
</van-row>
|
|
|
</van-collapse-item>
|
|
|
- <div class="contentContainer" v-if="reportTargetAll.isHistory == '0'">
|
|
|
+ <div class="contentContainer" v-if="reportTarget.isHistory == '0'">
|
|
|
<!-- isHistory 是否为历史汇报:0-新汇报 1-历史汇报 -->
|
|
|
<reportCustom
|
|
|
ref="reportCustom"
|
|
|
:disabled="true"
|
|
|
- :reportCustomData="reportTargetAll.customTaskList"></reportCustom>
|
|
|
+ :reportCustomData="reportTarget.customTaskList"></reportCustom>
|
|
|
</div>
|
|
|
<template v-else>
|
|
|
<van-collapse-item title="上期工作成果" name="7">
|
|
|
@@ -402,6 +402,7 @@ export default {
|
|
|
managerRemarkContent: '',
|
|
|
isDiy: false,
|
|
|
type: '-1',
|
|
|
+ JZQuota: false,
|
|
|
//
|
|
|
};
|
|
|
},
|
|
|
@@ -564,6 +565,10 @@ export default {
|
|
|
});
|
|
|
getDetailById({ reportId: this.$route.query.reportId }).then((res) => {
|
|
|
loading1.clear();
|
|
|
+ this.JZQuota = false;
|
|
|
+ if (res.data.postType == 'JZ') {
|
|
|
+ this.JZQuota = true;
|
|
|
+ }
|
|
|
this.title =
|
|
|
res.data.deptName + '-' + res.data.postName + '-' + res.data.nickName + '的半月报';
|
|
|
this.ptitle = res.data.pdeptName + '-' + res.data.ppostName + '-' + res.data.pnickName;
|