A-0类型只能分发

master
飘泊客 12 months ago
parent 1a50b24d69
commit e7e385994c

@ -69,14 +69,14 @@
<div v-if="title !== '详情'"> <div v-if="title !== '详情'">
<a-button v-if="title !== '审核'" @click="visible = false"></a-button> <a-button v-if="title !== '审核'" @click="visible = false"></a-button>
<a-button <a-button
v-if="formModel.enrollStatus == 1" v-if="formModel.enrollStatus == 1 && formModel.customType == 1"
type="primary" type="primary"
html-type="submit" html-type="submit"
style="margin-left: 10px" style="margin-left: 10px"
@click="toExamine(0)" @click="toExamine(0)"
>重审</a-button >重审</a-button
> >
<a-button <a-button
v-if="formModel.enrollStatus == 1" v-if="formModel.enrollStatus == 1"
type="primary" type="primary"
html-type="submit" html-type="submit"
@ -125,6 +125,7 @@ interface SysUserPageVO {
comprehensiveAddress?: string comprehensiveAddress?: string
enrollStatus?: number enrollStatus?: number
remark?: string remark?: string
customType: number
customStoreVOList: ReservationShop[] customStoreVOList: ReservationShop[]
} }
@ -132,6 +133,7 @@ const formModel = reactive<SysUserPageVO>({
customId: undefined, customId: undefined,
customName: '', customName: '',
customNid: '', customNid: '',
customType: 0,
comprehensiveAddress: '', comprehensiveAddress: '',
remark: '', remark: '',
customStoreVOList: [], customStoreVOList: [],

Loading…
Cancel
Save