Merge branch 'master' of http://47.109.37.87:3000/by2025/admin-vben5
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
commit
63c3a8b550
@ -65,7 +65,6 @@ export interface OrderChargeVO {
|
|||||||
* 收费状态
|
* 收费状态
|
||||||
*/
|
*/
|
||||||
chargeStatus: number;
|
chargeStatus: number;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface OrderChargeForm extends BaseEntity {
|
export interface OrderChargeForm extends BaseEntity {
|
||||||
@ -133,7 +132,6 @@ export interface OrderChargeForm extends BaseEntity {
|
|||||||
* 收费状态
|
* 收费状态
|
||||||
*/
|
*/
|
||||||
chargeStatus?: number;
|
chargeStatus?: number;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface OrderChargeQuery extends PageQuery {
|
export interface OrderChargeQuery extends PageQuery {
|
||||||
@ -202,3 +200,70 @@ export interface OrderChargeQuery extends PageQuery {
|
|||||||
*/
|
*/
|
||||||
params?: any;
|
params?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface orderChargeDetailForm extends BaseEntity {
|
||||||
|
/**
|
||||||
|
* 主键
|
||||||
|
*/
|
||||||
|
id?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单id
|
||||||
|
*/
|
||||||
|
orderId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 租赁人id(系统用户)
|
||||||
|
*/
|
||||||
|
userId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 租赁人名称
|
||||||
|
*/
|
||||||
|
userName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 租金
|
||||||
|
*/
|
||||||
|
rent?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 押金
|
||||||
|
*/
|
||||||
|
deposit?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 违约金
|
||||||
|
*/
|
||||||
|
penalty?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 总金额
|
||||||
|
*/
|
||||||
|
totalAmount?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 收费日期
|
||||||
|
*/
|
||||||
|
chargeDate?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 支付方式
|
||||||
|
*/
|
||||||
|
paymentMethod?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 开票状态
|
||||||
|
*/
|
||||||
|
invoiceStatus?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发票类型
|
||||||
|
*/
|
||||||
|
invoiceType?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 收费状态
|
||||||
|
*/
|
||||||
|
chargeStatus?: number;
|
||||||
|
}
|
||||||
|
@ -0,0 +1,59 @@
|
|||||||
|
import type { OrderMaintainVO, OrderMaintainForm, OrderMaintainQuery } from './model';
|
||||||
|
import type { ID, IDS } from '#/api/common';
|
||||||
|
import type { PageResult } from '#/api/common';
|
||||||
|
import { commonExport } from '#/api/helper';
|
||||||
|
import { requestClient } from '#/api/request';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询绿植租赁-订单养护管理列表
|
||||||
|
* @param params
|
||||||
|
* @returns 绿植租赁-订单养护管理列表
|
||||||
|
*/
|
||||||
|
export function orderMaintainList(params?: OrderMaintainQuery) {
|
||||||
|
return requestClient.get<PageResult<OrderMaintainVO>>('/property/orderMaintain/list', { params });
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导出绿植租赁-订单养护管理列表
|
||||||
|
* @param params
|
||||||
|
* @returns 绿植租赁-订单养护管理列表
|
||||||
|
*/
|
||||||
|
export function orderMaintainExport(params?: OrderMaintainQuery) {
|
||||||
|
return commonExport('/property/orderMaintain/export', params ?? {});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询绿植租赁-订单养护管理详情
|
||||||
|
* @param id id
|
||||||
|
* @returns 绿植租赁-订单养护管理详情
|
||||||
|
*/
|
||||||
|
export function orderMaintainInfo(id: ID) {
|
||||||
|
return requestClient.get<OrderMaintainVO>(`/property/orderMaintain/${id}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增绿植租赁-订单养护管理
|
||||||
|
* @param data
|
||||||
|
* @returns void
|
||||||
|
*/
|
||||||
|
export function orderMaintainAdd(data: OrderMaintainForm) {
|
||||||
|
return requestClient.postWithMsg<void>('/property/orderMaintain', data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新绿植租赁-订单养护管理
|
||||||
|
* @param data
|
||||||
|
* @returns void
|
||||||
|
*/
|
||||||
|
export function orderMaintainUpdate(data: OrderMaintainForm) {
|
||||||
|
return requestClient.putWithMsg<void>('/property/orderMaintain', data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除绿植租赁-订单养护管理
|
||||||
|
* @param id id
|
||||||
|
* @returns void
|
||||||
|
*/
|
||||||
|
export function orderMaintainRemove(id: ID | IDS) {
|
||||||
|
return requestClient.deleteWithMsg<void>(`/property/orderMaintain/${id}`);
|
||||||
|
}
|
247
apps/web-antd/src/api/property/conservationManagement/model.d.ts
vendored
Normal file
247
apps/web-antd/src/api/property/conservationManagement/model.d.ts
vendored
Normal file
@ -0,0 +1,247 @@
|
|||||||
|
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||||
|
|
||||||
|
export interface OrderMaintainVO {
|
||||||
|
/**
|
||||||
|
* 主键
|
||||||
|
*/
|
||||||
|
id: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 养护名称
|
||||||
|
*/
|
||||||
|
maintainName: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 小区id
|
||||||
|
*/
|
||||||
|
communityId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 建筑id
|
||||||
|
*/
|
||||||
|
buildingId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 楼层id
|
||||||
|
*/
|
||||||
|
floorId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 服务类型
|
||||||
|
*/
|
||||||
|
serveType: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 养护周期类型
|
||||||
|
*/
|
||||||
|
periodType: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 养护周期频次
|
||||||
|
*/
|
||||||
|
periodFrequency: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单id
|
||||||
|
*/
|
||||||
|
orderId: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计划执行时间
|
||||||
|
*/
|
||||||
|
startTime: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计划完成时间
|
||||||
|
*/
|
||||||
|
endTime: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 巡检结果
|
||||||
|
*/
|
||||||
|
inspectResult: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理措施
|
||||||
|
*/
|
||||||
|
measure: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 客户评分
|
||||||
|
*/
|
||||||
|
customerScore: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 客户反馈
|
||||||
|
*/
|
||||||
|
customerAdvice: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理状态
|
||||||
|
*/
|
||||||
|
state: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface OrderMaintainForm extends BaseEntity {
|
||||||
|
/**
|
||||||
|
* 主键
|
||||||
|
*/
|
||||||
|
id?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 养护名称
|
||||||
|
*/
|
||||||
|
maintainName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 小区id
|
||||||
|
*/
|
||||||
|
communityId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 建筑id
|
||||||
|
*/
|
||||||
|
buildingId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 楼层id
|
||||||
|
*/
|
||||||
|
floorId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 服务类型
|
||||||
|
*/
|
||||||
|
serveType?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 养护周期类型
|
||||||
|
*/
|
||||||
|
periodType?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 养护周期频次
|
||||||
|
*/
|
||||||
|
periodFrequency?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单id
|
||||||
|
*/
|
||||||
|
orderId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计划执行时间
|
||||||
|
*/
|
||||||
|
startTime?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计划完成时间
|
||||||
|
*/
|
||||||
|
endTime?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 巡检结果
|
||||||
|
*/
|
||||||
|
inspectResult?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理措施
|
||||||
|
*/
|
||||||
|
measure?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 客户评分
|
||||||
|
*/
|
||||||
|
customerScore?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 客户反馈
|
||||||
|
*/
|
||||||
|
customerAdvice?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理状态
|
||||||
|
*/
|
||||||
|
state?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface OrderMaintainQuery extends PageQuery {
|
||||||
|
/**
|
||||||
|
* 养护名称
|
||||||
|
*/
|
||||||
|
maintainName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 小区id
|
||||||
|
*/
|
||||||
|
communityId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 建筑id
|
||||||
|
*/
|
||||||
|
buildingId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 楼层id
|
||||||
|
*/
|
||||||
|
floorId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 服务类型
|
||||||
|
*/
|
||||||
|
serveType?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 养护周期类型
|
||||||
|
*/
|
||||||
|
periodType?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 养护周期频次
|
||||||
|
*/
|
||||||
|
periodFrequency?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单id
|
||||||
|
*/
|
||||||
|
orderId?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计划执行时间
|
||||||
|
*/
|
||||||
|
startTime?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计划完成时间
|
||||||
|
*/
|
||||||
|
endTime?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 巡检结果
|
||||||
|
*/
|
||||||
|
inspectResult?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理措施
|
||||||
|
*/
|
||||||
|
measure?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 客户评分
|
||||||
|
*/
|
||||||
|
customerScore?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 客户反馈
|
||||||
|
*/
|
||||||
|
customerAdvice?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理状态
|
||||||
|
*/
|
||||||
|
state?: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期范围参数
|
||||||
|
*/
|
||||||
|
params?: any;
|
||||||
|
}
|
@ -19,7 +19,7 @@ export interface PropertyVO {
|
|||||||
/**
|
/**
|
||||||
* 产品分类
|
* 产品分类
|
||||||
*/
|
*/
|
||||||
plantType: number;
|
plantType: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 产品图片
|
* 产品图片
|
||||||
@ -44,7 +44,7 @@ export interface PropertyVO {
|
|||||||
/**
|
/**
|
||||||
* 状态(0下架 1上架 )
|
* 状态(0下架 1上架 )
|
||||||
*/
|
*/
|
||||||
state: number;
|
state: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
@ -72,8 +72,7 @@ export interface PropertyForm extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 产品分类
|
* 产品分类
|
||||||
*/
|
*/
|
||||||
plantType?: number;
|
plantType?: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 产品图片
|
* 产品图片
|
||||||
*/
|
*/
|
||||||
@ -97,7 +96,7 @@ export interface PropertyForm extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 状态(0下架 1上架 )
|
* 状态(0下架 1上架 )
|
||||||
*/
|
*/
|
||||||
state?: number;
|
state?: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
@ -120,7 +119,7 @@ export interface PropertyQuery extends PageQuery {
|
|||||||
/**
|
/**
|
||||||
* 产品分类
|
* 产品分类
|
||||||
*/
|
*/
|
||||||
plantType?: number;
|
plantType?: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 产品图片
|
* 产品图片
|
||||||
@ -145,7 +144,7 @@ export interface PropertyQuery extends PageQuery {
|
|||||||
/**
|
/**
|
||||||
* 状态(0下架 1上架 )
|
* 状态(0下架 1上架 )
|
||||||
*/
|
*/
|
||||||
state?: number;
|
state?: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 日期范围参数
|
* 日期范围参数
|
||||||
@ -172,7 +171,7 @@ export interface plantsProduct extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 产品分类
|
* 产品分类
|
||||||
*/
|
*/
|
||||||
plantType?: number;
|
plantType?: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 产品图片
|
* 产品图片
|
||||||
@ -182,7 +181,7 @@ export interface plantsProduct extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 规格
|
* 规格
|
||||||
*/
|
*/
|
||||||
specification?: string;
|
specification?: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 租金
|
* 租金
|
||||||
@ -197,7 +196,7 @@ export interface plantsProduct extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 状态(0下架 1上架 )
|
* 状态(0下架 1上架 )
|
||||||
*/
|
*/
|
||||||
state?: number;
|
state?: number|string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
|
@ -1,18 +1,20 @@
|
|||||||
import type { PersonLibVO, PersonLibForm, PersonLibQuery } from './model';
|
import type { PersonLibForm, PersonLibQuery, PersonLibVO } from './model';
|
||||||
|
|
||||||
import type { ID, IDS } from '#/api/common';
|
import type { ID, IDS, PageResult } from '#/api/common';
|
||||||
import type { PageResult } from '#/api/common';
|
|
||||||
|
|
||||||
import { commonExport } from '#/api/helper';
|
import { commonExport } from '#/api/helper';
|
||||||
import { requestClient } from '#/api/request';
|
import { requestClient } from '#/api/request';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询人像库列表
|
查询人像库列表
|
||||||
* @param params
|
@param params
|
||||||
* @returns 人像库列表
|
@returns 人像库列表
|
||||||
*/
|
* @param params
|
||||||
|
*/
|
||||||
export function personLibList(params?: PersonLibQuery) {
|
export function personLibList(params?: PersonLibQuery) {
|
||||||
return requestClient.get<PageResult<PersonLibVO>>('/sis/personLib/list', { params });
|
return requestClient.get<PageResult<PersonLibVO>>('/sis/personLib/list', {
|
||||||
|
params,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -39,7 +41,7 @@ export function personLibInfo(id: ID) {
|
|||||||
* @returns void
|
* @returns void
|
||||||
*/
|
*/
|
||||||
export function personLibAdd(data: PersonLibForm) {
|
export function personLibAdd(data: PersonLibForm) {
|
||||||
return requestClient.postWithMsg<void>('/sis/personLib', data);
|
return requestClient.postWithMsg<void>('/sis/personLib/add', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2,18 +2,14 @@ import type { FormSchemaGetter } from '#/adapter/form';
|
|||||||
import type { VxeGridProps } from '#/adapter/vxe-table';
|
import type { VxeGridProps } from '#/adapter/vxe-table';
|
||||||
import { getDictOptions } from '#/utils/dict';
|
import { getDictOptions } from '#/utils/dict';
|
||||||
import { renderDict } from '#/utils/render';
|
import { renderDict } from '#/utils/render';
|
||||||
|
import {orderChargeList} from "#/api/property/chargeManagement";
|
||||||
|
|
||||||
export const querySchema: FormSchemaGetter = () => [
|
export const querySchema: FormSchemaGetter = () => [
|
||||||
{
|
{
|
||||||
component: 'Input',
|
component: 'Select',
|
||||||
fieldName: 'orderId',
|
fieldName: 'orderId',
|
||||||
label: '订单号',
|
label: '订单号',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
component: 'Input',
|
|
||||||
fieldName: 'userId',
|
|
||||||
label: '租赁人id',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
component: 'Select',
|
component: 'Select',
|
||||||
componentProps: {
|
componentProps: {
|
||||||
@ -27,16 +23,19 @@ export const querySchema: FormSchemaGetter = () => [
|
|||||||
fieldName: 'userName',
|
fieldName: 'userName',
|
||||||
label: '租赁人',
|
label: '租赁人',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
component: 'DatePicker',
|
// component: 'RangePicker',
|
||||||
componentProps: {
|
// componentProps: {
|
||||||
showTime: true,
|
// showTime: {
|
||||||
format: 'YYYY-MM-DD HH:mm:ss',
|
// format: 'HH:mm:ss'
|
||||||
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
// },
|
||||||
},
|
// format: 'YYYY-MM-DD HH:mm:ss',
|
||||||
fieldName: 'chargeDate',
|
// valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||||
label: '收费日期',
|
// placeholder: ['开始时间', '结束时间']
|
||||||
},
|
// },
|
||||||
|
// fieldName: 'chargeDate',
|
||||||
|
// label: '收费日期',
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
component: 'Select',
|
component: 'Select',
|
||||||
componentProps: {
|
componentProps: {
|
||||||
@ -71,7 +70,7 @@ export const columns: VxeGridProps['columns'] = [
|
|||||||
field: 'orderId',
|
field: 'orderId',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '租赁人id',
|
title: '租赁合同编号',
|
||||||
field: 'userId',
|
field: 'userId',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -129,6 +128,10 @@ export const columns: VxeGridProps['columns'] = [
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '创建时间',
|
||||||
|
field: 'createTime',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
field: 'action',
|
field: 'action',
|
||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
@ -148,16 +151,21 @@ export const modalSchema: FormSchemaGetter = () => [
|
|||||||
triggerFields: [''],
|
triggerFields: [''],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// label: '订单号',
|
||||||
|
// fieldName: 'orderId',
|
||||||
|
// component: 'Input',
|
||||||
|
// rules: 'required',
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
label: '订单号',
|
label: '订单号',
|
||||||
fieldName: 'orderId',
|
fieldName: 'orderId',
|
||||||
component: 'Input',
|
component: 'ApiSelect',
|
||||||
rules: 'required',
|
componentProps: {
|
||||||
},
|
api: orderChargeList,
|
||||||
{
|
resultField: 'rows',
|
||||||
label: '租赁人id',
|
valueField: 'orderId',
|
||||||
fieldName: 'userId',
|
},
|
||||||
component: 'Input',
|
|
||||||
rules: 'required',
|
rules: 'required',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -8,13 +8,12 @@ import {
|
|||||||
type VxeGridProps
|
type VxeGridProps
|
||||||
} from '#/adapter/vxe-table';
|
} from '#/adapter/vxe-table';
|
||||||
import {
|
import {
|
||||||
orderChargeExport,
|
|
||||||
orderChargeList,
|
orderChargeList,
|
||||||
orderChargeRemove,
|
orderChargeRemove,
|
||||||
} from '#/api/property/chargeManagement';
|
} from '#/api/property/chargeManagement';
|
||||||
import type { OrderChargeForm } from '#/api/property/chargeManagement/model';
|
import type { OrderChargeForm } from '#/api/property/chargeManagement/model';
|
||||||
import { commonDownloadExcel } from '#/utils/file/download';
|
|
||||||
import orderChargeModal from './orderCharge-modal.vue';
|
import orderChargeModal from './orderCharge-modal.vue';
|
||||||
|
import orderChargeDetail from './orderCharge-detail.vue';
|
||||||
import { columns, querySchema } from './data';
|
import { columns, querySchema } from './data';
|
||||||
|
|
||||||
const formOptions: VbenFormProps = {
|
const formOptions: VbenFormProps = {
|
||||||
@ -63,6 +62,15 @@ const [OrderChargeModal, modalApi] = useVbenModal({
|
|||||||
connectedComponent: orderChargeModal,
|
connectedComponent: orderChargeModal,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const [orderChargeDetailModal, orderChargeDetailApi] = useVbenModal({
|
||||||
|
connectedComponent: orderChargeDetail,
|
||||||
|
});
|
||||||
|
|
||||||
|
async function handleInfo(row: Required<OrderChargeForm>) {
|
||||||
|
orderChargeDetailApi.setData({ id: row.id });
|
||||||
|
orderChargeDetailApi.open();
|
||||||
|
}
|
||||||
|
|
||||||
function handleAdd() {
|
function handleAdd() {
|
||||||
modalApi.setData({});
|
modalApi.setData({});
|
||||||
modalApi.open();
|
modalApi.open();
|
||||||
@ -91,12 +99,6 @@ function handleMultiDelete() {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleDownloadExcel() {
|
|
||||||
commonDownloadExcel(orderChargeExport, '绿植租赁-订单收费数据', tableApi.formApi.form.values, {
|
|
||||||
fieldMappingTime: formOptions.fieldMappingTime,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -104,12 +106,6 @@ function handleDownloadExcel() {
|
|||||||
<BasicTable table-title="绿植租赁-订单收费列表">
|
<BasicTable table-title="绿植租赁-订单收费列表">
|
||||||
<template #toolbar-tools>
|
<template #toolbar-tools>
|
||||||
<Space>
|
<Space>
|
||||||
<a-button
|
|
||||||
v-access:code="['property:orderCharge:export']"
|
|
||||||
@click="handleDownloadExcel"
|
|
||||||
>
|
|
||||||
{{ $t('pages.common.export') }}
|
|
||||||
</a-button>
|
|
||||||
<a-button
|
<a-button
|
||||||
:disabled="!vxeCheckboxChecked(tableApi)"
|
:disabled="!vxeCheckboxChecked(tableApi)"
|
||||||
danger
|
danger
|
||||||
@ -129,6 +125,11 @@ function handleDownloadExcel() {
|
|||||||
</template>
|
</template>
|
||||||
<template #action="{ row }">
|
<template #action="{ row }">
|
||||||
<Space>
|
<Space>
|
||||||
|
<ghost-button
|
||||||
|
@click.stop="handleInfo(row)"
|
||||||
|
>
|
||||||
|
{{ $t('pages.common.info') }}
|
||||||
|
</ghost-button>
|
||||||
<ghost-button
|
<ghost-button
|
||||||
v-access:code="['property:orderCharge:edit']"
|
v-access:code="['property:orderCharge:edit']"
|
||||||
@click.stop="handleEdit(row)"
|
@click.stop="handleEdit(row)"
|
||||||
@ -153,5 +154,6 @@ function handleDownloadExcel() {
|
|||||||
</template>
|
</template>
|
||||||
</BasicTable>
|
</BasicTable>
|
||||||
<OrderChargeModal @reload="tableApi.query()" />
|
<OrderChargeModal @reload="tableApi.query()" />
|
||||||
|
<orderChargeDetailModal/>
|
||||||
</Page>
|
</Page>
|
||||||
</template>
|
</template>
|
||||||
|
@ -0,0 +1,83 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import type {orderChargeDetailForm} from '#/api/property/chargeManagement/model';
|
||||||
|
import {shallowRef} from 'vue';
|
||||||
|
import {useVbenModal} from '@vben/common-ui';
|
||||||
|
import {Descriptions, DescriptionsItem} from 'ant-design-vue';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
import duration from 'dayjs/plugin/duration';
|
||||||
|
import relativeTime from 'dayjs/plugin/relativeTime';
|
||||||
|
import {orderChargeInfo} from '#/api/property/chargeManagement';
|
||||||
|
import {renderDict} from "#/utils/render";
|
||||||
|
dayjs.extend(duration);
|
||||||
|
dayjs.extend(relativeTime);
|
||||||
|
|
||||||
|
const [BasicModal, modalApi] = useVbenModal({
|
||||||
|
onOpenChange: handleOpenChange,
|
||||||
|
onClosed() {
|
||||||
|
orderChargeDetail.value = null;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const orderChargeDetail = shallowRef<null | orderChargeDetailForm>(null);
|
||||||
|
|
||||||
|
async function handleOpenChange(open: boolean) {
|
||||||
|
if (!open) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
modalApi.modalLoading(true);
|
||||||
|
const {id} = modalApi.getData() as { id: number | string };
|
||||||
|
const response = await orderChargeInfo(id);
|
||||||
|
orderChargeDetail.value = response;
|
||||||
|
modalApi.modalLoading(false);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<BasicModal :footer="false" :fullscreen-button="false" title="查看收费" class="w-[70%]">
|
||||||
|
<Descriptions v-if="orderChargeDetail" size="small" :column="2" bordered :labelStyle="{width:'100px'}">
|
||||||
|
<DescriptionsItem label="订单号">
|
||||||
|
{{ orderChargeDetail.orderId }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="租赁合同编号">
|
||||||
|
{{ orderChargeDetail.orderId }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="租赁人">
|
||||||
|
{{ orderChargeDetail.userName}}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="租金">
|
||||||
|
{{ orderChargeDetail.rent }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="押金">
|
||||||
|
{{ orderChargeDetail.deposit }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="违约金">
|
||||||
|
{{ orderChargeDetail.penalty }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="开票状态" v-if="orderChargeDetail.invoiceStatus!=null">
|
||||||
|
<component
|
||||||
|
:is="renderDict(orderChargeDetail.invoiceStatus,'pro_invoice_status')"
|
||||||
|
/>
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="发票类型">
|
||||||
|
{{ orderChargeDetail.invoiceType }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="收费状态" v-if="orderChargeDetail.chargeStatus!=null">
|
||||||
|
<component
|
||||||
|
:is="renderDict(orderChargeDetail.chargeStatus,'pro_charging_status')"
|
||||||
|
/>
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="产品编号">
|
||||||
|
{{ orderChargeDetail.createTime }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="购买植物">
|
||||||
|
{{ orderChargeDetail.createTime }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="价格">
|
||||||
|
{{ orderChargeDetail.createTime }}
|
||||||
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="产品图片">
|
||||||
|
<img :src="orderChargeDetail.imgPath" alt="">
|
||||||
|
</DescriptionsItem>
|
||||||
|
</Descriptions>
|
||||||
|
</BasicModal>
|
||||||
|
</template>
|
@ -0,0 +1,229 @@
|
|||||||
|
import type { FormSchemaGetter } from '#/adapter/form';
|
||||||
|
import type { VxeGridProps } from '#/adapter/vxe-table';
|
||||||
|
import { getDictOptions } from '#/utils/dict';
|
||||||
|
import { renderDict } from '#/utils/render';
|
||||||
|
import {h} from "vue";
|
||||||
|
import {Rate} from "ant-design-vue";
|
||||||
|
|
||||||
|
export const querySchema: FormSchemaGetter = () => [
|
||||||
|
{
|
||||||
|
component: 'Input',
|
||||||
|
fieldName: 'maintainName',
|
||||||
|
label: '养护名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
component: 'Select',
|
||||||
|
componentProps: {
|
||||||
|
},
|
||||||
|
fieldName: 'state',
|
||||||
|
label: '处理状态',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export const columns: VxeGridProps['columns'] = [
|
||||||
|
{ type: 'checkbox', width: 60 },
|
||||||
|
{
|
||||||
|
title: '养护名称',
|
||||||
|
field: 'maintainName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '小区id',
|
||||||
|
field: 'communityId',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '建筑id',
|
||||||
|
field: 'buildingId',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '楼层id',
|
||||||
|
field: 'floorId',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '服务类型',
|
||||||
|
field: 'serveType',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '养护周期类型',
|
||||||
|
field: 'periodType',
|
||||||
|
slots: {
|
||||||
|
default: ({ row }) => {
|
||||||
|
// 可选从DictEnum中获取 DictEnum.WY_TIME_UNIT 便于维护
|
||||||
|
return renderDict(row.periodType, 'wy_time_unit');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '养护周期频次',
|
||||||
|
field: 'periodFrequency',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '订单id',
|
||||||
|
field: 'orderId',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '计划执行时间',
|
||||||
|
field: 'startTime',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '计划完成时间',
|
||||||
|
field: 'endTime',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '巡检结果',
|
||||||
|
field: 'inspectResult',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '处理措施',
|
||||||
|
field: 'measure',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '客户评分',
|
||||||
|
field: 'customerScore',
|
||||||
|
slots: {
|
||||||
|
default: ({ row }) => {
|
||||||
|
return h(Rate, {
|
||||||
|
value: row.customerScore || 0,
|
||||||
|
disabled: true,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
width:200
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '客户反馈',
|
||||||
|
field: 'customerAdvice',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '处理状态',
|
||||||
|
field: 'state',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'action',
|
||||||
|
fixed: 'right',
|
||||||
|
slots: { default: 'action' },
|
||||||
|
title: '操作',
|
||||||
|
width: 180,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export const modalSchema: FormSchemaGetter = () => [
|
||||||
|
{
|
||||||
|
label: '主键',
|
||||||
|
fieldName: 'id',
|
||||||
|
component: 'Input',
|
||||||
|
dependencies: {
|
||||||
|
show: () => false,
|
||||||
|
triggerFields: [''],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '养护名称',
|
||||||
|
fieldName: 'maintainName',
|
||||||
|
component: 'Input',
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '小区id',
|
||||||
|
fieldName: 'communityId',
|
||||||
|
component: 'Input',
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '建筑id',
|
||||||
|
fieldName: 'buildingId',
|
||||||
|
component: 'Input',
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '楼层id',
|
||||||
|
fieldName: 'floorId',
|
||||||
|
component: 'Input',
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '服务类型',
|
||||||
|
fieldName: 'serveType',
|
||||||
|
component: 'Select',
|
||||||
|
componentProps: {
|
||||||
|
},
|
||||||
|
rules: 'selectRequired',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '养护周期类型',
|
||||||
|
fieldName: 'periodType',
|
||||||
|
component: 'Select',
|
||||||
|
componentProps: {
|
||||||
|
// 可选从DictEnum中获取 DictEnum.WY_TIME_UNIT 便于维护
|
||||||
|
options: getDictOptions('wy_time_unit'),
|
||||||
|
},
|
||||||
|
rules: 'selectRequired',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '养护周期频次',
|
||||||
|
fieldName: 'periodFrequency',
|
||||||
|
component: 'Input',
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '订单id',
|
||||||
|
fieldName: 'orderId',
|
||||||
|
component: 'Input',
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '计划执行时间',
|
||||||
|
fieldName: 'startTime',
|
||||||
|
component: 'DatePicker',
|
||||||
|
componentProps: {
|
||||||
|
showTime: true,
|
||||||
|
format: 'YYYY-MM-DD HH:mm:ss',
|
||||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||||
|
},
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '计划完成时间',
|
||||||
|
fieldName: 'endTime',
|
||||||
|
component: 'DatePicker',
|
||||||
|
componentProps: {
|
||||||
|
showTime: true,
|
||||||
|
format: 'YYYY-MM-DD HH:mm:ss',
|
||||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||||
|
},
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '巡检结果',
|
||||||
|
fieldName: 'inspectResult',
|
||||||
|
component: 'Input',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '处理措施',
|
||||||
|
fieldName: 'measure',
|
||||||
|
component: 'Input',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '客户评分',
|
||||||
|
fieldName: 'customerScore',
|
||||||
|
component: 'Rate',
|
||||||
|
componentProps: {
|
||||||
|
allowHalf: false,
|
||||||
|
count: 5,
|
||||||
|
tooltips: ['1星', '2星', '3星', '4星', '5星'],
|
||||||
|
defaultValue: 0
|
||||||
|
},
|
||||||
|
rules: 'required',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '客户反馈',
|
||||||
|
fieldName: 'customerAdvice',
|
||||||
|
component: 'Textarea',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '处理状态',
|
||||||
|
fieldName: 'state',
|
||||||
|
component: 'Select',
|
||||||
|
componentProps: {
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
@ -1,5 +1,143 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
|
||||||
|
import { getVxePopupContainer } from '@vben/utils';
|
||||||
|
import { Modal, Popconfirm, Space } from 'ant-design-vue';
|
||||||
|
import {
|
||||||
|
useVbenVxeGrid,
|
||||||
|
vxeCheckboxChecked,
|
||||||
|
type VxeGridProps
|
||||||
|
} from '#/adapter/vxe-table';
|
||||||
|
import {
|
||||||
|
orderMaintainList,
|
||||||
|
orderMaintainRemove,
|
||||||
|
} from '#/api/property/conservationManagement';
|
||||||
|
import type { OrderMaintainForm } from '#/api/property/conservationManagement/model';
|
||||||
|
import orderMaintainModal from './orderMaintain-modal.vue';
|
||||||
|
import { columns, querySchema } from './data';
|
||||||
|
|
||||||
|
const formOptions: VbenFormProps = {
|
||||||
|
commonConfig: {
|
||||||
|
labelWidth: 80,
|
||||||
|
componentProps: {
|
||||||
|
allowClear: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
schema: querySchema(),
|
||||||
|
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
|
||||||
|
};
|
||||||
|
|
||||||
|
const gridOptions: VxeGridProps = {
|
||||||
|
checkboxConfig: {
|
||||||
|
highlight: true,
|
||||||
|
reserve: true,
|
||||||
|
},
|
||||||
|
columns,
|
||||||
|
height: 'auto',
|
||||||
|
keepSource: true,
|
||||||
|
pagerConfig: {},
|
||||||
|
proxyConfig: {
|
||||||
|
ajax: {
|
||||||
|
query: async ({ page }, formValues = {}) => {
|
||||||
|
return await orderMaintainList({
|
||||||
|
pageNum: page.currentPage,
|
||||||
|
pageSize: page.pageSize,
|
||||||
|
...formValues,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
rowConfig: {
|
||||||
|
keyField: 'id',
|
||||||
|
},
|
||||||
|
id: 'property-orderMaintain-index'
|
||||||
|
};
|
||||||
|
|
||||||
|
const [BasicTable, tableApi] = useVbenVxeGrid({
|
||||||
|
formOptions,
|
||||||
|
gridOptions,
|
||||||
|
});
|
||||||
|
|
||||||
|
const [OrderMaintainModal, modalApi] = useVbenModal({
|
||||||
|
connectedComponent: orderMaintainModal,
|
||||||
|
});
|
||||||
|
|
||||||
|
function handleAdd() {
|
||||||
|
modalApi.setData({});
|
||||||
|
modalApi.open();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleEdit(row: Required<OrderMaintainForm>) {
|
||||||
|
modalApi.setData({ id: row.id });
|
||||||
|
modalApi.open();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleDelete(row: Required<OrderMaintainForm>) {
|
||||||
|
await orderMaintainRemove(row.id);
|
||||||
|
await tableApi.query();
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleMultiDelete() {
|
||||||
|
const rows = tableApi.grid.getCheckboxRecords();
|
||||||
|
const ids = rows.map((row: Required<OrderMaintainForm>) => row.id);
|
||||||
|
Modal.confirm({
|
||||||
|
title: '提示',
|
||||||
|
okType: 'danger',
|
||||||
|
content: `确认删除选中的${ids.length}条记录吗?`,
|
||||||
|
onOk: async () => {
|
||||||
|
await orderMaintainRemove(ids);
|
||||||
|
await tableApi.query();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<Page :auto-content-height="true">
|
||||||
养护管理
|
<BasicTable table-title="绿植租赁-订单养护管理列表">
|
||||||
</div>
|
<template #toolbar-tools>
|
||||||
</template>
|
<Space>
|
||||||
|
<a-button
|
||||||
|
:disabled="!vxeCheckboxChecked(tableApi)"
|
||||||
|
danger
|
||||||
|
type="primary"
|
||||||
|
v-access:code="['property:orderMaintain:remove']"
|
||||||
|
@click="handleMultiDelete">
|
||||||
|
{{ $t('pages.common.delete') }}
|
||||||
|
</a-button>
|
||||||
|
<a-button
|
||||||
|
type="primary"
|
||||||
|
v-access:code="['property:orderMaintain:add']"
|
||||||
|
@click="handleAdd"
|
||||||
|
>
|
||||||
|
{{ $t('pages.common.add') }}
|
||||||
|
</a-button>
|
||||||
|
</Space>
|
||||||
|
</template>
|
||||||
|
<template #action="{ row }">
|
||||||
|
<Space>
|
||||||
|
<ghost-button
|
||||||
|
v-access:code="['property:orderMaintain:edit']"
|
||||||
|
@click.stop="handleEdit(row)"
|
||||||
|
>
|
||||||
|
{{ $t('pages.common.edit') }}
|
||||||
|
</ghost-button>
|
||||||
|
<Popconfirm
|
||||||
|
:get-popup-container="getVxePopupContainer"
|
||||||
|
placement="left"
|
||||||
|
title="确认删除?"
|
||||||
|
@confirm="handleDelete(row)"
|
||||||
|
>
|
||||||
|
<ghost-button
|
||||||
|
danger
|
||||||
|
v-access:code="['property:orderMaintain:remove']"
|
||||||
|
@click.stop=""
|
||||||
|
>
|
||||||
|
{{ $t('pages.common.delete') }}
|
||||||
|
</ghost-button>
|
||||||
|
</Popconfirm>
|
||||||
|
</Space>
|
||||||
|
</template>
|
||||||
|
</BasicTable>
|
||||||
|
<OrderMaintainModal @reload="tableApi.query()" />
|
||||||
|
</Page>
|
||||||
|
</template>
|
||||||
|
@ -0,0 +1,93 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { computed, ref } from 'vue';
|
||||||
|
import { useVbenModal } from '@vben/common-ui';
|
||||||
|
import { $t } from '@vben/locales';
|
||||||
|
import { cloneDeep } from '@vben/utils';
|
||||||
|
import { useVbenForm } from '#/adapter/form';
|
||||||
|
import { orderMaintainAdd, orderMaintainInfo, orderMaintainUpdate } from '#/api/property/conservationManagement';
|
||||||
|
import { defaultFormValueGetter, useBeforeCloseDiff } from '#/utils/popup';
|
||||||
|
import { modalSchema } from './data';
|
||||||
|
|
||||||
|
const emit = defineEmits<{ reload: [] }>();
|
||||||
|
const isUpdate = ref(false);
|
||||||
|
|
||||||
|
const title = computed(() => {
|
||||||
|
return isUpdate.value ? $t('pages.common.edit') : $t('pages.common.add');
|
||||||
|
});
|
||||||
|
|
||||||
|
const [BasicForm, formApi] = useVbenForm({
|
||||||
|
commonConfig: {
|
||||||
|
formItemClass: 'col-span-2',
|
||||||
|
labelWidth: 80,
|
||||||
|
componentProps: {
|
||||||
|
class: 'w-full',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
schema: modalSchema(),
|
||||||
|
showDefaultActions: false,
|
||||||
|
wrapperClass: 'grid-cols-2',
|
||||||
|
});
|
||||||
|
|
||||||
|
const { onBeforeClose, markInitialized, resetInitialized } = useBeforeCloseDiff(
|
||||||
|
{
|
||||||
|
initializedGetter: defaultFormValueGetter(formApi),
|
||||||
|
currentGetter: defaultFormValueGetter(formApi),
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
const [BasicModal, modalApi] = useVbenModal({
|
||||||
|
class: 'w-[550px]',
|
||||||
|
fullscreenButton: false,
|
||||||
|
onBeforeClose,
|
||||||
|
onClosed: handleClosed,
|
||||||
|
onConfirm: handleConfirm,
|
||||||
|
onOpenChange: async (isOpen) => {
|
||||||
|
if (!isOpen) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
modalApi.modalLoading(true);
|
||||||
|
|
||||||
|
const { id } = modalApi.getData() as { id?: number | string };
|
||||||
|
isUpdate.value = !!id;
|
||||||
|
|
||||||
|
if (isUpdate.value && id) {
|
||||||
|
const record = await orderMaintainInfo(id);
|
||||||
|
await formApi.setValues(record);
|
||||||
|
}
|
||||||
|
await markInitialized();
|
||||||
|
|
||||||
|
modalApi.modalLoading(false);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
async function handleConfirm() {
|
||||||
|
try {
|
||||||
|
modalApi.lock(true);
|
||||||
|
const { valid } = await formApi.validate();
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const data = cloneDeep(await formApi.getValues());
|
||||||
|
await (isUpdate.value ? orderMaintainUpdate(data) : orderMaintainAdd(data));
|
||||||
|
resetInitialized();
|
||||||
|
emit('reload');
|
||||||
|
modalApi.close();
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
} finally {
|
||||||
|
modalApi.lock(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleClosed() {
|
||||||
|
await formApi.resetForm();
|
||||||
|
resetInitialized();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<BasicModal :title="title">
|
||||||
|
<BasicForm />
|
||||||
|
</BasicModal>
|
||||||
|
</template>
|
||||||
|
|
@ -46,6 +46,11 @@ export const columns: VxeGridProps['columns'] = [
|
|||||||
{
|
{
|
||||||
title: '产品分类',
|
title: '产品分类',
|
||||||
field: 'plantType',
|
field: 'plantType',
|
||||||
|
slots: {
|
||||||
|
default: ({ row }) => {
|
||||||
|
return renderDict(row.plantType, 'pro_product_classification');
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '图片',
|
title: '图片',
|
||||||
@ -120,11 +125,6 @@ export const modalSchema: FormSchemaGetter = () => [
|
|||||||
},
|
},
|
||||||
rules: 'required',
|
rules: 'required',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: '图片',
|
|
||||||
fieldName: 'imgPath',
|
|
||||||
component: 'Input',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: '规格',
|
label: '规格',
|
||||||
fieldName: 'specification',
|
fieldName: 'specification',
|
||||||
@ -152,6 +152,15 @@ export const modalSchema: FormSchemaGetter = () => [
|
|||||||
},
|
},
|
||||||
rules: 'selectRequired',
|
rules: 'selectRequired',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: '产品图片',
|
||||||
|
fieldName: 'imgPath',
|
||||||
|
component: 'ImageUpload',
|
||||||
|
componentProps: {
|
||||||
|
maxCount: 1,
|
||||||
|
},
|
||||||
|
formItemClass: 'col-span-2',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: '备注',
|
label: '备注',
|
||||||
fieldName: 'remark',
|
fieldName: 'remark',
|
||||||
|
@ -1,23 +1,21 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
|
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
|
||||||
import { getVxePopupContainer } from '@vben/utils';
|
import { getVxePopupContainer } from '@vben/utils';
|
||||||
import { Modal, Popconfirm, Space } from 'ant-design-vue';
|
import { Modal, Popconfirm, Space } from 'ant-design-vue';
|
||||||
import {
|
import {
|
||||||
useVbenVxeGrid,
|
useVbenVxeGrid,
|
||||||
vxeCheckboxChecked,
|
vxeCheckboxChecked,
|
||||||
type VxeGridProps
|
type VxeGridProps
|
||||||
} from '#/adapter/vxe-table';
|
} from '#/adapter/vxe-table';
|
||||||
import {
|
import {
|
||||||
plantsProductExport,
|
|
||||||
plantsProductList,
|
plantsProductList,
|
||||||
plantsProductRemove,
|
plantsProductRemove,
|
||||||
} from '#/api/property/productManagement';
|
} from '#/api/property/productManagement';
|
||||||
import type { PropertyForm } from '#/api/property/productManagement/model';
|
import type { PropertyForm } from '#/api/property/productManagement/model';
|
||||||
import { commonDownloadExcel } from '#/utils/file/download';
|
|
||||||
import PlantsProductModal from './plantsProduct-modal.vue';
|
import PlantsProductModal from './plantsProduct-modal.vue';
|
||||||
import PlantsProductDetail from './plantsProduct-detail.vue';
|
import PlantsProductDetail from './plantsProduct-detail.vue';
|
||||||
import { columns, querySchema } from './data';
|
import { columns, querySchema } from './data';
|
||||||
|
import { ref } from 'vue';
|
||||||
const formOptions: VbenFormProps = {
|
const formOptions: VbenFormProps = {
|
||||||
commonConfig: {
|
commonConfig: {
|
||||||
labelWidth: 80,
|
labelWidth: 80,
|
||||||
@ -101,12 +99,6 @@ function handleMultiDelete() {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleDownloadExcel() {
|
|
||||||
commonDownloadExcel(plantsProductExport, '绿植租赁-绿植产品数据', tableApi.formApi.form.values, {
|
|
||||||
fieldMappingTime: formOptions.fieldMappingTime,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -114,12 +106,6 @@ function handleDownloadExcel() {
|
|||||||
<BasicTable table-title="绿植租赁-绿植产品列表">
|
<BasicTable table-title="绿植租赁-绿植产品列表">
|
||||||
<template #toolbar-tools>
|
<template #toolbar-tools>
|
||||||
<Space>
|
<Space>
|
||||||
<a-button
|
|
||||||
v-access:code="['property:property:export']"
|
|
||||||
@click="handleDownloadExcel"
|
|
||||||
>
|
|
||||||
{{ $t('pages.common.export') }}
|
|
||||||
</a-button>
|
|
||||||
<a-button
|
<a-button
|
||||||
:disabled="!vxeCheckboxChecked(tableApi)"
|
:disabled="!vxeCheckboxChecked(tableApi)"
|
||||||
danger
|
danger
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
import type {plantsProduct} from '#/api/property/productManagement/model';
|
import type {plantsProduct} from '#/api/property/productManagement/model';
|
||||||
import {shallowRef} from 'vue';
|
import {shallowRef} from 'vue';
|
||||||
import {useVbenModal} from '@vben/common-ui';
|
import {useVbenModal} from '@vben/common-ui';
|
||||||
import {Descriptions, DescriptionsItem} from 'ant-design-vue';
|
import {Descriptions, DescriptionsItem, Rate} from 'ant-design-vue';
|
||||||
import {visitorManagementInfo} from '#/api/property/visitorManagement';
|
import {plantsProductInfo} from '#/api/property/productManagement';
|
||||||
import {renderDict} from "#/utils/render";
|
import {renderDict} from "#/utils/render";
|
||||||
|
|
||||||
const [BasicModal, modalApi] = useVbenModal({
|
const [BasicModal, modalApi] = useVbenModal({
|
||||||
@ -21,7 +21,7 @@ async function handleOpenChange(open: boolean) {
|
|||||||
}
|
}
|
||||||
modalApi.modalLoading(true);
|
modalApi.modalLoading(true);
|
||||||
const {id} = modalApi.getData() as { id: number | string };
|
const {id} = modalApi.getData() as { id: number | string };
|
||||||
const response = await visitorManagementInfo(id);
|
const response = await plantsProductInfo(id);
|
||||||
plantsProductDetail.value = response;
|
plantsProductDetail.value = response;
|
||||||
modalApi.modalLoading(false);
|
modalApi.modalLoading(false);
|
||||||
}
|
}
|
||||||
@ -41,9 +41,6 @@ async function handleOpenChange(open: boolean) {
|
|||||||
:is="renderDict(plantsProductDetail.plantType,'pro_product_classification')"
|
:is="renderDict(plantsProductDetail.plantType,'pro_product_classification')"
|
||||||
/>
|
/>
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
<DescriptionsItem label="图片">
|
|
||||||
{{ plantsProductDetail.imgPath }}
|
|
||||||
</DescriptionsItem>
|
|
||||||
<DescriptionsItem label="规格">
|
<DescriptionsItem label="规格">
|
||||||
{{ plantsProductDetail.specification }}
|
{{ plantsProductDetail.specification }}
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
@ -58,6 +55,9 @@ async function handleOpenChange(open: boolean) {
|
|||||||
:is="renderDict(plantsProductDetail.state,'product_management_status')"
|
:is="renderDict(plantsProductDetail.state,'product_management_status')"
|
||||||
/>
|
/>
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="产品图片">
|
||||||
|
<img :src="plantsProductDetail.imgPath" alt="">
|
||||||
|
</DescriptionsItem>
|
||||||
<DescriptionsItem label="备注">
|
<DescriptionsItem label="备注">
|
||||||
{{ plantsProductDetail.remark }}
|
{{ plantsProductDetail.remark }}
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
|
@ -17,7 +17,7 @@ const title = computed(() => {
|
|||||||
|
|
||||||
const [BasicForm, formApi] = useVbenForm({
|
const [BasicForm, formApi] = useVbenForm({
|
||||||
commonConfig: {
|
commonConfig: {
|
||||||
formItemClass: 'col-span-2',
|
formItemClass: 'col-span-1',
|
||||||
labelWidth: 80,
|
labelWidth: 80,
|
||||||
componentProps: {
|
componentProps: {
|
||||||
class: 'w-full',
|
class: 'w-full',
|
||||||
@ -36,7 +36,7 @@ const { onBeforeClose, markInitialized, resetInitialized } = useBeforeCloseDiff(
|
|||||||
);
|
);
|
||||||
|
|
||||||
const [BasicModal, modalApi] = useVbenModal({
|
const [BasicModal, modalApi] = useVbenModal({
|
||||||
class: 'w-[550px]',
|
class: 'w-[60%]',
|
||||||
fullscreenButton: false,
|
fullscreenButton: false,
|
||||||
onBeforeClose,
|
onBeforeClose,
|
||||||
onClosed: handleClosed,
|
onClosed: handleClosed,
|
||||||
@ -50,6 +50,10 @@ const [BasicModal, modalApi] = useVbenModal({
|
|||||||
isUpdate.value = !!id;
|
isUpdate.value = !!id;
|
||||||
if (isUpdate.value && id) {
|
if (isUpdate.value && id) {
|
||||||
const record = await plantsProductInfo(id);
|
const record = await plantsProductInfo(id);
|
||||||
|
record.state = record.state?.toString()
|
||||||
|
record.plantType = record.state?.toString()
|
||||||
|
|
||||||
|
record.specification = record.specification?.toString()
|
||||||
await formApi.setValues(record);
|
await formApi.setValues(record);
|
||||||
}
|
}
|
||||||
await markInitialized();
|
await markInitialized();
|
||||||
|
@ -27,33 +27,9 @@ export const querySchema: FormSchemaGetter = () => [
|
|||||||
fieldName: 'serveStatus',
|
fieldName: 'serveStatus',
|
||||||
label: '预约状态',
|
label: '预约状态',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
component: 'RangePicker',
|
|
||||||
componentProps: {
|
|
||||||
showTime: {
|
|
||||||
format: 'HH:mm:ss'
|
|
||||||
},
|
|
||||||
format: 'YYYY-MM-DD HH:mm:ss',
|
|
||||||
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
||||||
placeholder: ['开始时间', '结束时间']
|
|
||||||
},
|
|
||||||
fieldName: 'visitingTimeRange',
|
|
||||||
label: '拜访时间',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
component: 'DatePicker',
|
|
||||||
componentProps: {
|
|
||||||
showTime: true,
|
|
||||||
format: 'YYYY-MM-DD HH:mm:ss',
|
|
||||||
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
|
||||||
},
|
|
||||||
fieldName: 'createTime',
|
|
||||||
label: '提交时间',
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export const columns: VxeGridProps['columns'] = [
|
export const columns: VxeGridProps['columns'] = [
|
||||||
{ type: 'checkbox', width: 60 },
|
|
||||||
{
|
{
|
||||||
title: '序号',
|
title: '序号',
|
||||||
field: 'id',
|
field: 'id',
|
||||||
|
@ -27,33 +27,32 @@ export const querySchema: FormSchemaGetter = () => [
|
|||||||
fieldName: 'serveStatus',
|
fieldName: 'serveStatus',
|
||||||
label: '预约状态',
|
label: '预约状态',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
component: 'RangePicker',
|
// component: 'RangePicker',
|
||||||
componentProps: {
|
// componentProps: {
|
||||||
showTime: {
|
// showTime: {
|
||||||
format: 'HH:mm:ss'
|
// format: 'HH:mm:ss'
|
||||||
},
|
// },
|
||||||
format: 'YYYY-MM-DD HH:mm:ss',
|
// format: 'YYYY-MM-DD HH:mm:ss',
|
||||||
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
// valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||||
placeholder: ['开始时间', '结束时间']
|
// placeholder: ['开始时间', '结束时间']
|
||||||
},
|
// },
|
||||||
fieldName: 'visitingTimeRange',
|
// fieldName: 'visitingTimeRange',
|
||||||
label: '拜访时间',
|
// label: '拜访时间',
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
component: 'DatePicker',
|
// component: 'DatePicker',
|
||||||
componentProps: {
|
// componentProps: {
|
||||||
showTime: true,
|
// showTime: true,
|
||||||
format: 'YYYY-MM-DD HH:mm:ss',
|
// format: 'YYYY-MM-DD HH:mm:ss',
|
||||||
valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
// valueFormat: 'YYYY-MM-DD HH:mm:ss',
|
||||||
},
|
// },
|
||||||
fieldName: 'updateTime',
|
// fieldName: 'updateTime',
|
||||||
label: '提交时间',
|
// label: '提交时间',
|
||||||
},
|
// },
|
||||||
];
|
];
|
||||||
|
|
||||||
export const columns: VxeGridProps['columns'] = [
|
export const columns: VxeGridProps['columns'] = [
|
||||||
{ type: 'checkbox', width: 60 },
|
|
||||||
{
|
{
|
||||||
title: '序号',
|
title: '序号',
|
||||||
field: 'id',
|
field: 'id',
|
||||||
|
Loading…
Reference in New Issue
Block a user