This commit is contained in:
parent
1c8ec950ca
commit
b11220b544
|
@ -23,7 +23,7 @@ export const columns: BasicColumn[] = [
|
|||
dataIndex: 'userName',
|
||||
},
|
||||
{
|
||||
title: '用户ID',
|
||||
title: '用户身份码 ',
|
||||
align: 'center',
|
||||
sorter: true,
|
||||
dataIndex: 'userId',
|
||||
|
|
|
@ -24,7 +24,7 @@ export const columns: BasicColumn[] = [
|
|||
dataIndex: 'userName',
|
||||
},
|
||||
{
|
||||
title: '用户ID',
|
||||
title: '用户身份码 ',
|
||||
align: 'center',
|
||||
dataIndex: 'userId',
|
||||
},
|
||||
|
|
|
@ -150,7 +150,7 @@ export const columns: BasicColumn[] = [
|
|||
dataIndex: 'userName',
|
||||
},
|
||||
{
|
||||
title: '用户ID',
|
||||
title: '用户身份码 ',
|
||||
align: 'center',
|
||||
sorter: true,
|
||||
dataIndex: 'userId',
|
||||
|
@ -368,9 +368,9 @@ export const formSchema: FormSchema[] = [
|
|||
label: '银行卡号',
|
||||
field: 'pyCard',
|
||||
component: 'Input',
|
||||
//dynamicRules: ({ model, schema }) => {
|
||||
// return [{ required: true, message: '请输入银行卡号!' }];
|
||||
//},
|
||||
dynamicRules: ({ model, schema }) => {
|
||||
return [{ required: true, message: '请输入银行卡号!' }];
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '开户地区',
|
||||
|
@ -494,7 +494,7 @@ export const formSchema: FormSchema[] = [
|
|||
|
||||
// 高级查询数据
|
||||
export const superQuerySchema = {
|
||||
userId: { title: '用户ID', order: 0, view: 'text', type: 'string' },
|
||||
userId: { title: '用户身份码 ', order: 0, view: 'text', type: 'string' },
|
||||
majorId: { title: '学科', order: 1, view: 'number', type: 'number' },
|
||||
userMajorId: { title: '用户专业id', order: 2, view: 'text', type: 'string' },
|
||||
userName: { title: '姓名', order: 3, view: 'text', type: 'string' },
|
||||
|
|
|
@ -341,7 +341,7 @@
|
|||
Modal.confirm({
|
||||
title: isConfirmAction ? '请核对信息!!!' : '',
|
||||
content: <ConfirmContent record={record} />,
|
||||
okText: isConfirmAction ? '确认报道' : '取消报道', // 根据操作类型设置确认按钮文本
|
||||
okText: isConfirmAction ? '确认报到' : '取消报到', // 根据操作类型设置确认按钮文本
|
||||
cancelText: isConfirmAction ? '取消' : '关闭', // 根据操作类型设置取消按钮文本
|
||||
width: 800,
|
||||
onOk: () => {
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
//展开折叠的key
|
||||
const expandedKeys = ref<any>([]);
|
||||
//父子节点选中状态是否关联
|
||||
const checkStrictly = ref<boolean>(true);
|
||||
const checkStrictly = ref<boolean>(false);
|
||||
const [registerDrawer1, { openDrawer: openDataRuleDrawer }] = useDrawer();
|
||||
const [registerDrawer, { setDrawerProps, closeDrawer }] = useDrawerInner(async (data) => {
|
||||
await reset();
|
||||
|
|
Loading…
Reference in New Issue