|
@@ -74,28 +74,28 @@
|
|
<el-form-item label="明细表" prop="detailOpinion"
|
|
<el-form-item label="明细表" prop="detailOpinion"
|
|
>
|
|
>
|
|
<!-- <el-input type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.detailOpinion" placeholder="请填写明细表" ></el-input>-->
|
|
<!-- <el-input type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.detailOpinion" placeholder="请填写明细表" ></el-input>-->
|
|
- <WangEditor :disabled="true" ref="contents1Editor" v-model="inputForm.detailOpinion"/>
|
|
|
|
|
|
+ <WangEditor ref="contents1Editor" v-model="inputForm.detailOpinion"/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<el-form-item label="评估报告" prop="reportOpinion"
|
|
<el-form-item label="评估报告" prop="reportOpinion"
|
|
>
|
|
>
|
|
<!-- <el-input type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.reportOpinion" placeholder="请填写评估报告" ></el-input>-->
|
|
<!-- <el-input type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.reportOpinion" placeholder="请填写评估报告" ></el-input>-->
|
|
- <WangEditor :disabled="formReadOnly" ref="contents2Editor" v-model="inputForm.reportOpinion"/>
|
|
|
|
|
|
+ <WangEditor ref="contents2Editor" v-model="inputForm.reportOpinion"/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<el-form-item label="技术说明" prop="remarksOpinion"
|
|
<el-form-item label="技术说明" prop="remarksOpinion"
|
|
>
|
|
>
|
|
<!-- <el-input type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.remarksOpinion" placeholder="请填写技术说明" ></el-input>-->
|
|
<!-- <el-input type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.remarksOpinion" placeholder="请填写技术说明" ></el-input>-->
|
|
- <WangEditor :disabled="formReadOnly" ref="contents3Editor" v-model="inputForm.remarksOpinion"/>
|
|
|
|
|
|
+ <WangEditor ref="contents3Editor" v-model="inputForm.remarksOpinion"/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<el-form-item label="工作底稿" prop="workOpinion"
|
|
<el-form-item label="工作底稿" prop="workOpinion"
|
|
>
|
|
>
|
|
<!-- <el-input type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.workOpinion" placeholder="请填写工作底稿" ></el-input>-->
|
|
<!-- <el-input type="textarea" style="width:100%" maxlength="1000" v-model="inputForm.workOpinion" placeholder="请填写工作底稿" ></el-input>-->
|
|
- <WangEditor :disabled="formReadOnly" ref="contents4Editor" v-model="inputForm.workOpinion"/>
|
|
|
|
|
|
+ <WangEditor ref="contents4Editor" v-model="inputForm.workOpinion"/>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
<el-form size="middle" :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''"
|
|
<el-form size="middle" :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''"
|
|
@@ -132,7 +132,7 @@
|
|
import SelectUserTree from '@/views/modules/utils/treeUserSelect'
|
|
import SelectUserTree from '@/views/modules/utils/treeUserSelect'
|
|
import RosterSelectForm from '@/views/common/RosterSelectForm'
|
|
import RosterSelectForm from '@/views/common/RosterSelectForm'
|
|
import ProgramProjectListInfoService from '@/api/program/ProgramProjectListInfoService'
|
|
import ProgramProjectListInfoService from '@/api/program/ProgramProjectListInfoService'
|
|
- import WangEditor from '@/components/editor/WangEditor'
|
|
|
|
|
|
+ import WangEditor from '@/components/editor/WangEditorNoMenu'
|
|
export default {
|
|
export default {
|
|
props: {
|
|
props: {
|
|
businessId: {
|
|
businessId: {
|
|
@@ -269,7 +269,7 @@
|
|
this.$refs.contents1Editor.init(this.inputForm.detailOpinion)
|
|
this.$refs.contents1Editor.init(this.inputForm.detailOpinion)
|
|
}
|
|
}
|
|
if (this.commonJS.isNotEmpty(this.inputForm.reportOpinion)) {
|
|
if (this.commonJS.isNotEmpty(this.inputForm.reportOpinion)) {
|
|
- this.$refs.contents2Editor.init(this.inputForm.reportOpinion)
|
|
|
|
|
|
+ this.$refs.contents2Editor.init(this.inputForm.reportOpinion, false)
|
|
}
|
|
}
|
|
if (this.commonJS.isNotEmpty(this.inputForm.remarksOpinion)) {
|
|
if (this.commonJS.isNotEmpty(this.inputForm.remarksOpinion)) {
|
|
this.$refs.contents3Editor.init(this.inputForm.remarksOpinion)
|
|
this.$refs.contents3Editor.init(this.inputForm.remarksOpinion)
|