diff --git a/.env.production b/.env.production index 484f76f..9d04805 100644 --- a/.env.production +++ b/.env.production @@ -16,7 +16,7 @@ VITE_APP_SNAILJOB_ADMIN = '/snail-job' # 生产环境 # VITE_APP_BASE_API = 'https://wuyeapi.bugtc.com' -VITE_APP_BASE_API = 'http://wuyeapi.ckdzkj.com' +VITE_APP_BASE_API = 'https://wuyeapi.ckdzkj.com' # 登录成功跳转地址 # VITE_LOGIN_BACK_URL = '/equipment/WaterDevice' diff --git a/src/api/system/ComplainType/type.ts b/src/api/system/ComplainType/type.ts index 965a747..7ff88d5 100644 --- a/src/api/system/ComplainType/type.ts +++ b/src/api/system/ComplainType/type.ts @@ -2,7 +2,7 @@ export interface ComplaintTypeVO { /** * 投诉类型管理表id */ - id: string | number; + id: string; /** * 投诉类型名称 @@ -13,43 +13,21 @@ export interface ComplaintTypeVO { * 状态 0 启用 1停用 */ status: string; - - /** - * 创建人名称 - */ - createNam: string; - - /** - * 创建时间 - */ - creaateTime: string; } export interface ComplaintTypeForm extends BaseEntity { /** * 投诉类型管理表id */ - id?: string | number; - - /** - * 投诉类型名称 - */ - name?: string; - + id?: string; /** * 状态 0 启用 1停用 */ status?: string; - /** - * 创建人名称 + * 投诉类型名称 */ - createNam?: string; - - /** - * 创建时间 - */ - creaateTime?: string; + name?: string; } export interface ComplaintTypeQuery extends PageQuery { @@ -62,19 +40,4 @@ export interface ComplaintTypeQuery extends PageQuery { * 状态 0 启用 1停用 */ status?: string; - - /** - * 创建人名称 - */ - createNam?: string; - - /** - * 创建时间 - */ - creaateTime?: string; - - /** - * 日期范围参数 - */ - params?: any; } diff --git a/src/api/system/RepairProject/type.ts b/src/api/system/RepairProject/type.ts index a74d9f8..04ae9e4 100644 --- a/src/api/system/RepairProject/type.ts +++ b/src/api/system/RepairProject/type.ts @@ -23,7 +23,7 @@ export interface RepairProjectVO { * 项目层级 0,1 */ projectLevel: number; - children?: []; + children?: RepairProjectVO[]; /** * 排序 (数越小越靠前) */ @@ -33,6 +33,9 @@ export interface RepairProjectVO { * 状态 0启用 1停用 */ status: string; + + disabled?: boolean; + // children?: RepairProjectVO[]; } export interface RepairProjectForm extends BaseEntity { diff --git a/src/assets/logo/备案图标.png b/src/assets/logo/备案图标.png new file mode 100644 index 0000000..2a13ba2 Binary files /dev/null and b/src/assets/logo/备案图标.png differ diff --git a/src/views/login.vue b/src/views/login.vue index a6ecff4..cf27183 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -27,7 +27,7 @@