修改bug
This commit is contained in:
parent
640fd14852
commit
b7687e034b
|
|
@ -8,7 +8,7 @@ export const columns: BasicColumn[] = [
|
|||
{
|
||||
title: '机构名称',
|
||||
align: "center",
|
||||
dataIndex: 'orgName',
|
||||
dataIndex: 'orgName_dictText',
|
||||
width: 240,
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<a-col :lg="6">
|
||||
<a-form-item name="orgName">
|
||||
<template #label><span title="机构名称">机构名称</span></template>
|
||||
<j-dict-select-tag type='list' v-model:value="queryParam.orgName" dictCode="sys_depart,depart_name,depart_name"
|
||||
<j-dict-select-tag type='list' v-model:value="queryParam.orgName" dictCode="sys_depart,depart_name,id"
|
||||
placeholder="请选择机构名称" allow-clear />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<a-col :span="24" style="text-align: center;">
|
||||
<p>
|
||||
<span>机构名称:</span>
|
||||
<span>{{ formData.orgName }}</span>
|
||||
<span>{{ formData.orgName_dictText }}</span>
|
||||
</p>
|
||||
<p>
|
||||
<span>发版类型:</span>
|
||||
|
|
@ -51,6 +51,7 @@ const formData = reactive<Record<string, any>>({
|
|||
createTime:'',
|
||||
issueType: '',
|
||||
orgName:'',
|
||||
orgName_dictText:'',
|
||||
issueType_dictText: '',
|
||||
content: '',
|
||||
});
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="机构名称" v-bind="validateInfos.comName" id="OrgApplyInfoForm-comName" name="comName">
|
||||
<a-input v-model:value="formData.comName" placeholder="请输入机构名称" disabled allow-clear></a-input>
|
||||
<a-input v-model:value="formData.departName" placeholder="请输入机构名称" disabled allow-clear></a-input>
|
||||
<!-- {{ formData.comName }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
@ -289,6 +289,7 @@ const formData = reactive<Record<string, any>>({
|
|||
workOrderStatus_dictText: '',
|
||||
auditBy: '',
|
||||
auditTime: '',
|
||||
departName: '',
|
||||
|
||||
});
|
||||
const tempNullVal = ref('');
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ export const columns: BasicColumn[] = [
|
|||
{
|
||||
title: '机构名称',
|
||||
align: 'center',
|
||||
dataIndex: 'comName',
|
||||
dataIndex: 'departName',
|
||||
},
|
||||
{
|
||||
title: '机构负责人',
|
||||
|
|
|
|||
|
|
@ -189,6 +189,7 @@ function handleUpAudit(record) {
|
|||
* 详情
|
||||
*/
|
||||
function handleDetail(record: Recordable) {
|
||||
record.isHistory = "N";
|
||||
registerModal.value.disableSubmit = true;
|
||||
registerModal.value.edit(record);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,6 +18,12 @@
|
|||
</JImageUpload>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="机构名称" v-bind="validateInfos.comName" id="OrgApplyInfoForm-comName" name="comName">
|
||||
<a-input v-model:value="formData.comName" placeholder="请输入机构名称" disabled allow-clear></a-input>
|
||||
<!-- {{ formData.comName }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="信用代码" v-bind="validateInfos.comCreditCode" id="OrgApplyInfoForm-comCreditCode"
|
||||
name="comCreditCode">
|
||||
|
|
@ -26,12 +32,6 @@
|
|||
<!-- {{ formData.comCreditCode }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="机构名称" v-bind="validateInfos.comName" id="OrgApplyInfoForm-comName" name="comName">
|
||||
<a-input v-model:value="formData.comName" placeholder="请输入机构名称" disabled allow-clear></a-input>
|
||||
<!-- {{ formData.comName }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="24">
|
||||
<a-form-item label="机构法人" v-bind="validateInfos.comLegalPerson" id="OrgApplyInfoForm-comLegalPerson"
|
||||
name="comLegalPerson">
|
||||
|
|
@ -252,20 +252,18 @@
|
|||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row v-show="formData.workOrderStatus != '0' && !izApplyAudit" class="card-class">
|
||||
<a-row v-show="formData.workOrderStatus != '0' && !izApplyAudit && formData.izHistory == 'N'" class="card-class">
|
||||
<a-col :span="24" style="border-bottom: 2px solid #f7f7f7; margin-bottom: 14px;">
|
||||
<SectionDivider :title="'工单回执'" />
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item label="工单状态">
|
||||
<a-input v-model:value="formData.workOrderStatus_dictText" disabled allow-clear></a-input>
|
||||
<!-- {{ formData.workOrderStatus_dictText }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item label="处理人">
|
||||
<a-input v-model:value="formData.handleBy" disabled allow-clear></a-input>
|
||||
<!-- {{ formData.handleBy }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
|
|
@ -277,14 +275,12 @@
|
|||
<a-form-item label="反馈时间">
|
||||
<a-date-picker v-model:value="formData.replyTime" disabled value-format="YYYY-MM-DD" style="width: 100%"
|
||||
allow-clear />
|
||||
<!-- {{ formData.replyTime ? formData.replyTime.substring(0, 10) : "" }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item label="反馈内容">
|
||||
<a-textarea :autosize="{ minRows: 1 }" maxlength="50" disabled v-model:value="formData.replyContent"
|
||||
allow-clear></a-textarea>
|
||||
<!-- {{ formData.replyContent }} -->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
|
|
@ -362,6 +358,7 @@ const formData = reactive<Record<string, any>>({
|
|||
updateTime: '',
|
||||
izEntry: '',
|
||||
name: '',
|
||||
izHistory:'',
|
||||
sex: '',
|
||||
national: '',
|
||||
birthDate: '',
|
||||
|
|
|
|||
|
|
@ -150,6 +150,7 @@ function submitContract() {
|
|||
*/
|
||||
function showAuditHis(record) {
|
||||
auditHisVisible.value = true
|
||||
record.isHis = true
|
||||
nextTick(() => {
|
||||
auditHisRef.value.init(record);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -148,6 +148,7 @@ const wrapperCol = reactive({
|
|||
* 详情
|
||||
*/
|
||||
function handleRzDetail(record: Recordable) {
|
||||
record.izHistory = "Y";
|
||||
registerModal.value.disableSubmit = true;
|
||||
registerModal.value.edit(record);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue