This commit is contained in:
parent
375dcc0114
commit
1b207e2a17
@ -133,6 +133,7 @@ function handleDownloadExcel() {
|
|||||||
type="primary"
|
type="primary"
|
||||||
v-access:code="['property:inspectionItem:export']"
|
v-access:code="['property:inspectionItem:export']"
|
||||||
@click="handleDownloadExcel"
|
@click="handleDownloadExcel"
|
||||||
|
disabled="disabled"
|
||||||
>
|
>
|
||||||
{{ '文档' }}
|
{{ '文档' }}
|
||||||
</a-button>
|
</a-button>
|
||||||
|
@ -185,6 +185,12 @@ export const modalSchema: FormSchemaGetter = () => [
|
|||||||
label: '车牌号',
|
label: '车牌号',
|
||||||
fieldName: 'licensePlate',
|
fieldName: 'licensePlate',
|
||||||
component: 'Input',
|
component: 'Input',
|
||||||
|
rules: 'required',
|
||||||
|
dependencies: {
|
||||||
|
// 类型不为按钮时显示
|
||||||
|
show: (values) => values.bookingParkingSpace === '0',
|
||||||
|
triggerFields: ['bookingParkingSpace'],
|
||||||
|
},
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// label: '人脸图片',
|
// label: '人脸图片',
|
||||||
|
@ -91,6 +91,7 @@ async function handleDelete(row: Required<VisitorManagementForm>) {
|
|||||||
placement="left"
|
placement="left"
|
||||||
title="确认审核状态?"
|
title="确认审核状态?"
|
||||||
@confirm="handleDelete(row)"
|
@confirm="handleDelete(row)"
|
||||||
|
v-if="row.serveStatus === '0'"
|
||||||
>
|
>
|
||||||
<ghost-button
|
<ghost-button
|
||||||
@click.stop=""
|
@click.stop=""
|
||||||
|
Loading…
Reference in New Issue
Block a user