Merge branch 'master' of http://47.109.37.87:3000/by2025/admin-vben5
Some checks failed
/ Explore-Gitea-Actions (push) Failing after 5m19s
Some checks failed
/ Explore-Gitea-Actions (push) Failing after 5m19s
This commit is contained in:
commit
3d934e2e51
@ -65,6 +65,9 @@ export interface Resident_unitVO {
|
|||||||
* 权限组名称
|
* 权限组名称
|
||||||
*/
|
*/
|
||||||
authGroupName?: string;
|
authGroupName?: string;
|
||||||
|
// 授权期限
|
||||||
|
authBegDate?:string;//开始
|
||||||
|
authEndDate?:string;//结束
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,11 +62,13 @@ export const modalSchema: FormSchemaGetter = () => [
|
|||||||
label: '区域',
|
label: '区域',
|
||||||
fieldName: 'area',
|
fieldName: 'area',
|
||||||
component: 'Input',
|
component: 'Input',
|
||||||
|
rules: 'required',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '摄像机',
|
label: '摄像机',
|
||||||
fieldName: 'deviceManageId',
|
fieldName: 'deviceManageId',
|
||||||
component: 'ApiSelect',
|
component: 'ApiSelect',
|
||||||
|
rules: 'required',
|
||||||
componentProps: {
|
componentProps: {
|
||||||
api: async () => {
|
api: async () => {
|
||||||
const res = await deviceManageList({
|
const res = await deviceManageList({
|
||||||
|
@ -92,7 +92,7 @@ async function handleEdit(row: Required<PaymentReviewForm>) {
|
|||||||
<ghost-button
|
<ghost-button
|
||||||
:disabled="row.state!=='0'"
|
:disabled="row.state!=='0'"
|
||||||
@click.stop="handleEdit(row)"
|
@click.stop="handleEdit(row)"
|
||||||
v-access:code="['property:payFeeAudit:query']"
|
v-access:code="['property:payFeeAudit:edit']"
|
||||||
>
|
>
|
||||||
{{ '审核' }}
|
{{ '审核' }}
|
||||||
</ghost-button>
|
</ghost-button>
|
||||||
|
@ -175,8 +175,7 @@ async function handleDelete(row: Required<QuestionnaireForm>) {
|
|||||||
</ghost-button>
|
</ghost-button>
|
||||||
</Popconfirm>
|
</Popconfirm>
|
||||||
<ghost-button
|
<ghost-button
|
||||||
v-access:code="['property:questionnaire:statistics']"
|
:disabled="row.status=='1'"
|
||||||
@click.stop="handleEdit(row)"
|
|
||||||
>
|
>
|
||||||
统计分析
|
统计分析
|
||||||
</ghost-button>
|
</ghost-button>
|
||||||
|
@ -47,7 +47,7 @@ export const columns: VxeGridProps['columns'] = [
|
|||||||
{
|
{
|
||||||
title: '订单号',
|
title: '订单号',
|
||||||
field: 'orderNo',
|
field: 'orderNo',
|
||||||
width: 100
|
minWidth: 180
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '客户名称',
|
title: '客户名称',
|
||||||
@ -134,7 +134,7 @@ export const columns: VxeGridProps['columns'] = [
|
|||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
slots: {default: 'action'},
|
slots: {default: 'action'},
|
||||||
title: '操作',
|
title: '操作',
|
||||||
minWidth: 180,
|
width: 180,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ const [BasicModal, modalApi] = useVbenModal({
|
|||||||
await initLocationOptions();
|
await initLocationOptions();
|
||||||
if (isUpdate.value && id) {
|
if (isUpdate.value && id) {
|
||||||
const record = await resident_unitInfo(id);
|
const record = await resident_unitInfo(id);
|
||||||
await formApi.setValues(record);
|
await formApi.setValues({...record,authTime:[record.authBegDate,record.authEndDate]});
|
||||||
}
|
}
|
||||||
await markInitialized();
|
await markInitialized();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user