修改bug
This commit is contained in:
parent
a98a56c6c3
commit
2921f53f77
|
|
@ -19,13 +19,20 @@
|
|||
<div v-html="formData.content"></div>
|
||||
</a-col> -->
|
||||
|
||||
<a-col :span="12">
|
||||
<a-col :span="24">
|
||||
<a-form-item label="机构名称" v-bind="validateInfos.orgName" id="NuIssueInfoForm-orgName"
|
||||
name="orgName">
|
||||
<j-dict-select-tag type='list' v-model:value="formData.orgName" dictCode="sys_depart,depart_name,depart_name"
|
||||
placeholder="请选择机构名称" disabled/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="发版类型" v-bind="validateInfos.issueType_dictText"
|
||||
id="NuEmployeesAdvisoryInfoForm-issueType_dictText" name="issueType_dictText">
|
||||
<a-input v-model:value="formData.issueType_dictText" placeholder="请输入发版类型" disabled></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-col :span="24">
|
||||
<a-form-item label="发版日期" v-bind="validateInfos.createTime" id="NuEmployeesAdvisoryInfoForm-createTime"
|
||||
name="createTime">
|
||||
<a-input v-model:value="formData.createTime" placeholder="请输入发版日期" disabled></a-input>
|
||||
|
|
@ -33,7 +40,7 @@
|
|||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="发版内容:" v-bind="validateInfos.content" id="NuEmployeesAdvisoryInfoForm-content"
|
||||
name="content" :labelCol="labelCol2" :wrapperCol="wrapperCol2">
|
||||
name="content">
|
||||
<div v-html="formData.content" style="background:#f9f9fa;padding:8px;"></div>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
import JModal from '/@/components/Modal/src/JModal/JModal.vue';
|
||||
|
||||
const title = ref<string>('');
|
||||
const width = ref<string>('70%');
|
||||
const width = ref<string>('900');
|
||||
const visible = ref<boolean>(false);
|
||||
const disableSubmit = ref<boolean>(false);
|
||||
const registerForm = ref();
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ export const columns: BasicColumn[] = [
|
|||
// customRender: render.renderImage,
|
||||
},
|
||||
{
|
||||
title: '选中图片',
|
||||
title: '焦点图片',
|
||||
align: "center",
|
||||
dataIndex: 'checkPicPath',
|
||||
// customRender: render.renderImage,
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
<j-upload :fileMax="1" v-model:value="formData.filePath" ></j-upload>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-col :span="24" hidden>
|
||||
<a-form-item label="备注" v-bind="validateInfos.content" id="NuResourcesManagementForm-content" name="content">
|
||||
<a-textarea v-model:value="formData.content" maxlength="50" show-count :rows="4" placeholder="请输入备注" />
|
||||
</a-form-item>
|
||||
|
|
|
|||
Loading…
Reference in New Issue