|
@@ -108,7 +108,9 @@
|
|
<el-form-item :label="$t('申请时间')" prop="creattime">
|
|
<el-form-item :label="$t('申请时间')" prop="creattime">
|
|
<el-input v-model="dataForm.creattime" disabled></el-input>
|
|
<el-input v-model="dataForm.creattime" disabled></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
-
|
|
|
|
|
|
+ <el-form-item :label="$t('审批意见')">
|
|
|
|
+ <p v-html="dataForm.content" />
|
|
|
|
+ </el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
<div>
|
|
<div>
|
|
<span>{{$t('流转详情')}}</span>
|
|
<span>{{$t('流转详情')}}</span>
|
|
@@ -320,12 +322,13 @@
|
|
getStapproveInfo(id).then(response => {
|
|
getStapproveInfo(id).then(response => {
|
|
this.taskForm.businessKey = response.data.id
|
|
this.taskForm.businessKey = response.data.id
|
|
this.dataForm.creattime = response.data.creattime
|
|
this.dataForm.creattime = response.data.creattime
|
|
|
|
+ this.dataForm.content = response.data.content
|
|
this.planList = response.data.planList
|
|
this.planList = response.data.planList
|
|
this.yearplanList = [response.data.yearplan]
|
|
this.yearplanList = [response.data.yearplan]
|
|
this.setrowspans() // 设置合并
|
|
this.setrowspans() // 设置合并
|
|
this.getChartTitle() // 渲染的信息
|
|
this.getChartTitle() // 渲染的信息
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
- this.$refs.planTable.doLayout(); // 解决表格错位
|
|
|
|
|
|
+ // this.$refs.planTable.doLayout(); // 解决表格错位
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
|
|
@@ -430,7 +433,6 @@
|
|
this.setrowspans() // 设置合并
|
|
this.setrowspans() // 设置合并
|
|
this.getChartTitle() // 渲染的信息
|
|
this.getChartTitle() // 渲染的信息
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
- this.$refs.planTable.doLayout(); // 解决表格错位
|
|
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|