From c06192a4148fb059f5c8bebb96d3f9bd55e50fb1 Mon Sep 17 00:00:00 2001 From: tanzhisong Date: Fri, 21 Feb 2025 18:04:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 4 ++-- src/locales/lang/zh-CN/sys.ts | 4 ++-- src/views/miniapp/order/AppOrder.data.ts | 17 +++++------------ 3 files changed, 9 insertions(+), 16 deletions(-) diff --git a/.env b/.env index 621a5f9..af0d37f 100644 --- a/.env +++ b/.env @@ -2,10 +2,10 @@ VITE_PORT = 3100 # 网站标题 -VITE_GLOB_APP_TITLE = JeecgBoot 企业级低代码平台 +VITE_GLOB_APP_TITLE = 盛创云控后台管理 # 简称,此变量只能是字符/下划线 -VITE_GLOB_APP_SHORT_NAME = JeecgBoot_Pro +VITE_GLOB_APP_SHORT_NAME = contract # 单点登录服务端地址 VITE_GLOB_APP_CAS_BASE_URL=http://cas.test.com:8443/cas diff --git a/src/locales/lang/zh-CN/sys.ts b/src/locales/lang/zh-CN/sys.ts index b0c1dc6..8c81eb4 100644 --- a/src/locales/lang/zh-CN/sys.ts +++ b/src/locales/lang/zh-CN/sys.ts @@ -67,8 +67,8 @@ export default { signUpFormTitle: '注册', forgetFormTitle: '重置密码', - signInTitle: 'Jeecg Boot', - signInDesc: '是中国最具影响力的 企业级低代码平台!在线开发,可视化拖拽设计,零代码实现80%的基础功能~', + signInTitle: '盛创云控', + signInDesc: '后台管理系统', policy: '我同意敲敲云隐私政策', scanSign: `扫码后,即可完成登录`, scanSuccess: `扫码成功,登录中`, diff --git a/src/views/miniapp/order/AppOrder.data.ts b/src/views/miniapp/order/AppOrder.data.ts index 720a21c..6ee14a4 100644 --- a/src/views/miniapp/order/AppOrder.data.ts +++ b/src/views/miniapp/order/AppOrder.data.ts @@ -194,7 +194,9 @@ export const searchFormSchema: FormSchema[] = [ label: '订单状态', field: 'status', component: 'JSelectMultiple', - componentProps: {}, + componentProps: { + dictCode: 'order_status', + }, //colProps: {span: 6}, }, { @@ -345,21 +347,12 @@ export const formSchema: FormSchema[] = [ field: 'status', component: 'JDictSelectTag', componentProps: { - dictCode: '', + dictCode: 'order_status', }, dynamicRules: ({ model, schema }) => { return [{ required: true, message: '请输入订单状态!' }]; }, }, - { - label: '订单合同', - field: 'contractUrl', - component: 'JUpload', - componentProps: {}, - dynamicRules: ({ model, schema }) => { - return [{ required: true, message: '请输入订单合同!' }]; - }, - }, { label: '收款方', field: 'payee', @@ -655,7 +648,7 @@ export const superQuerySchema = { carPic: { title: '车辆合格证', order: 14, view: 'image', type: 'string' }, busLicense: { title: '营业执照', order: 15, view: 'image', type: 'string' }, createTime: { title: '创建日期', order: 16, view: 'datetime', type: 'string' }, - status: { title: '订单状态', order: 17, view: 'number', type: 'number', dictCode: '' }, + status: { title: '订单状态', order: 17, view: 'number', type: 'number', dictCode: 'order_status' }, contractUrl: { title: '订单合同', order: 18, view: 'file', type: 'string' }, payee: { title: '收款方', order: 19, view: 'text', type: 'string' }, payeeTime: { title: '收款时间', order: 20, view: 'datetime', type: 'string' },