修复:机构审核详情页审核结果显示不正确问题
This commit is contained in:
parent
c882821092
commit
ea5d0eb111
|
|
@ -206,8 +206,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="0" v-if="disabled">历史数据</a-select-option>
|
||||
<a-select-option value="1" v-if="disabled">待审核</a-select-option>
|
||||
<a-select-option value="2">审核通过</a-select-option>
|
||||
<a-select-option value="3">审核驳回</a-select-option>
|
||||
<a-select-option value="4" v-if="disabled">待审核</a-select-option>
|
||||
<a-select-option value="5" v-if="disabled">审核驳回</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
|
@ -435,8 +439,7 @@ function edit(record) {
|
|||
}
|
||||
})
|
||||
var lsbl = tmpData.status;
|
||||
console.log("🚀 ~ edit ~ lsbl:", lsbl)
|
||||
if (tmpData.status != '2' && tmpData.status != '3') {
|
||||
if (!props.formData.disabled && tmpData.status == 1) {
|
||||
tmpData.status = null
|
||||
}
|
||||
cityViewValue.value = record.orgProvince_dictText
|
||||
|
|
|
|||
Loading…
Reference in New Issue