机构统计、机构审核bug

This commit is contained in:
1378012178@qq.com 2026-02-26 08:57:36 +08:00
parent 1695b6a5be
commit da18e62a49
2 changed files with 39 additions and 7 deletions

View File

@ -135,7 +135,7 @@ img, video {
html[data-theme='light'] {
.jeecg-form-detail-effect {
*:not(.ant-select-selection-placeholder){
color: #606266!important;
color: #606266;
}
.ant-row label {
color: #797c81 !important;

View File

@ -182,7 +182,8 @@
<a-col :span="24">
<a-form-item label="有效结束日期" v-bind="validateInfos.endTime" id="OrgApplyInfoForm-endTime"
name="endTime">
<a-input v-if="formData.endTime == '9999-12-31' || formData.endTime == '9999-12-31 00:00:00'"
<a-input
v-if="formData.endTime == '9999.12.31' || formData.endTime == '9999-12-31' || formData.endTime == '9999-12-31 00:00:00'"
:value="'长期'" suffix-icon=""></a-input>
<a-date-picker v-else v-model:value="formData.endTime" disabled value-format="YYYY-MM-DD"
style="width: 100%" suffix-icon="" />
@ -202,7 +203,27 @@
</a-row>
</a-col>
</a-row>
<a-row class="card-class" v-show="formData.izHistory == 'Y'">
<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="审核状态" v-bind="validateInfos.status" id="OrgApplyInfoForm-status" name="status">
<a-select v-model:value="formData.status" style="width: 200px" placeholder="请选择审核状态"
:disabled="sfsh != '1'">
<a-select-option value="2">审核通过</a-select-option>
<a-select-option value="3">审核驳回</a-select-option>
<a-select-option value="5">审核驳回</a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :span="12" v-show="formData.status == '3' || formData.status == '5'">
<a-form-item label="驳回原因" v-bind="validateInfos.content" id="OrgApplyInfoForm-content" name="content">
<a-textarea :autosize="{ minRows: 3 }" maxlength="50" show-count v-model:value="formData.content"
:disabled="formData.status != '3'" allow-clear placeholder="请输入驳回原因"></a-textarea>
</a-form-item>
</a-col>
</a-row>
<a-row class="card-class" v-show="!disabled">
<a-col :span="24" style="border-bottom: 2px solid #f7f7f7; margin-bottom: 14px;">
<SectionDivider :title="'加盟审核'" />
@ -252,7 +273,8 @@
</a-form-item>
</a-col>
</a-row>
<a-row v-show="formData.workOrderStatus != '0' && !izApplyAudit && formData.izHistory == 'N'" 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>
@ -288,8 +310,12 @@
<a-col :span="22" style="border-bottom: 2px solid #f7f7f7; margin-bottom: 14px;">
<SectionDivider :title="'平台信息'" />
</a-col>
<a-col :span="2" style="margin-bottom: 14px;">
<a @click="handleCopyPlatInfo" class="noDisabled" style="color: white;">复制</a>
<a-col :span="2" style="margin-bottom: 14px; ">
<a @click="handleCopyPlatInfo" class="noDisabled aclk">
<!-- <a-button class="noDisabled" type="primary" :disabled="false"> -->
复制
<!-- </a-button> -->
</a>
</a-col>
<a-col :span="12">
<a-form-item label="访问地址">
@ -358,7 +384,7 @@ const formData = reactive<Record<string, any>>({
updateTime: '',
izEntry: '',
name: '',
izHistory:'',
izHistory: '',
sex: '',
national: '',
birthDate: '',
@ -461,6 +487,7 @@ const izApplyAudit = ref(true)
* 编辑
*/
function edit(record) {
console.log("🌊 ~ edit ~ record:", record)
if (record.optType == 'rz' && record.status == '1') {
izApplyAudit.value = true;
} else {
@ -540,6 +567,7 @@ async function submitForm() {
}
function handleCopyPlatInfo() {
alert(11111)
const { netUrl, accountNo, passwordText } = formData;
let copyText = '';
@ -582,5 +610,9 @@ defineExpose({
.noDisabled {
pointer-events: auto !important;
cursor: pointer !important;
*:not(.ant-select-selection-placeholder) {
color: #fff !important;
}
}
</style>