Browse Source

fix:修改

master
tanzhisong 1 week ago
parent
commit
c06192a414
3 changed files with 9 additions and 16 deletions
  1. +2
    -2
      .env
  2. +2
    -2
      src/locales/lang/zh-CN/sys.ts
  3. +5
    -12
      src/views/miniapp/order/AppOrder.data.ts

+ 2
- 2
.env View File

@ -2,10 +2,10 @@
VITE_PORT = 3100 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 VITE_GLOB_APP_CAS_BASE_URL=http://cas.test.com:8443/cas


+ 2
- 2
src/locales/lang/zh-CN/sys.ts View File

@ -67,8 +67,8 @@ export default {
signUpFormTitle: '注册', signUpFormTitle: '注册',
forgetFormTitle: '重置密码', forgetFormTitle: '重置密码',
signInTitle: 'Jeecg Boot',
signInDesc: '是中国最具影响力的 企业级低代码平台!在线开发,可视化拖拽设计,零代码实现80%的基础功能~',
signInTitle: '盛创云控',
signInDesc: '后台管理系统',
policy: '我同意敲敲云隐私政策', policy: '我同意敲敲云隐私政策',
scanSign: `扫码后,即可完成登录`, scanSign: `扫码后,即可完成登录`,
scanSuccess: `扫码成功,登录中`, scanSuccess: `扫码成功,登录中`,


+ 5
- 12
src/views/miniapp/order/AppOrder.data.ts View File

@ -194,7 +194,9 @@ export const searchFormSchema: FormSchema[] = [
label: '订单状态', label: '订单状态',
field: 'status', field: 'status',
component: 'JSelectMultiple', component: 'JSelectMultiple',
componentProps: {},
componentProps: {
dictCode: 'order_status',
},
//colProps: {span: 6}, //colProps: {span: 6},
}, },
{ {
@ -345,21 +347,12 @@ export const formSchema: FormSchema[] = [
field: 'status', field: 'status',
component: 'JDictSelectTag', component: 'JDictSelectTag',
componentProps: { componentProps: {
dictCode: '',
dictCode: 'order_status',
}, },
dynamicRules: ({ model, schema }) => { dynamicRules: ({ model, schema }) => {
return [{ required: true, message: '请输入订单状态!' }]; return [{ required: true, message: '请输入订单状态!' }];
}, },
}, },
{
label: '订单合同',
field: 'contractUrl',
component: 'JUpload',
componentProps: {},
dynamicRules: ({ model, schema }) => {
return [{ required: true, message: '请输入订单合同!' }];
},
},
{ {
label: '收款方', label: '收款方',
field: 'payee', field: 'payee',
@ -655,7 +648,7 @@ export const superQuerySchema = {
carPic: { title: '车辆合格证', order: 14, view: 'image', type: 'string' }, carPic: { title: '车辆合格证', order: 14, view: 'image', type: 'string' },
busLicense: { title: '营业执照', order: 15, view: 'image', type: 'string' }, busLicense: { title: '营业执照', order: 15, view: 'image', type: 'string' },
createTime: { title: '创建日期', order: 16, view: 'datetime', 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' }, contractUrl: { title: '订单合同', order: 18, view: 'file', type: 'string' },
payee: { title: '收款方', order: 19, view: 'text', type: 'string' }, payee: { title: '收款方', order: 19, view: 'text', type: 'string' },
payeeTime: { title: '收款时间', order: 20, view: 'datetime', type: 'string' }, payeeTime: { title: '收款时间', order: 20, view: 'datetime', type: 'string' },


Loading…
Cancel
Save