Browse Source

修改字段前端显示名称

chenlei1231 4 months ago
parent
commit
d7d7d81203
1 changed files with 10 additions and 10 deletions
  1. 10 10
      src/views/system/user/user.data.ts

+ 10 - 10
src/views/system/user/user.data.ts

@@ -10,7 +10,7 @@ export const columns: BasicColumn[] = [
     width: 120,
   },
   {
-    title: '用户姓名',
+    title: '公司名称',
     dataIndex: 'realname',
     width: 100,
   },
@@ -63,7 +63,7 @@ export const recycleColumns: BasicColumn[] = [
     width: 100,
   },
   {
-    title: '用户姓名',
+    title: '公司名称',
     dataIndex: 'realname',
     width: 100,
   },
@@ -92,10 +92,10 @@ export const searchFormSchema: FormSchema[] = [
     //colProps: { span: 6 },
   },
   {
-    label: '名字',
+    label: '公司名称',
     field: 'realname',
     component: 'JInput',
-   //colProps: { span: 6 },
+    //colProps: { span: 6 },
   },
   {
     label: '性别',
@@ -123,7 +123,7 @@ export const searchFormSchema: FormSchema[] = [
       placeholder: '请选择状态',
       stringToNumber: true,
     },
-   //colProps: { span: 6 },
+    //colProps: { span: 6 },
   },
 ];
 
@@ -147,7 +147,7 @@ export const formSchema: FormSchema[] = [
     label: '登录密码',
     field: 'password',
     component: 'StrengthMeter',
-    componentProps:{
+    componentProps: {
       autocomplete: 'new-password',
     },
     rules: [
@@ -168,7 +168,7 @@ export const formSchema: FormSchema[] = [
     dynamicRules: ({ values }) => rules.confirmPassword(values, true),
   },
   {
-    label: '用户姓名',
+    label: '公司名称',
     field: 'realname',
     required: true,
     component: 'Input',
@@ -221,7 +221,7 @@ export const formSchema: FormSchema[] = [
             },
           ]);
           //update-begin---author:wangshuai---date:2024-05-11---for:【issues/1222】用户编辑界面“所属部门”与“负责部门”联动出错整---
-          if(!values){
+          if (!values) {
             formModel.departIds = [];
             return;
           }
@@ -504,7 +504,7 @@ export const userTenantColumns: BasicColumn[] = [
     width: 120,
   },
   {
-    title: '用户姓名',
+    title: '公司名称',
     dataIndex: 'realname',
     width: 100,
   },
@@ -549,7 +549,7 @@ export const userTenantFormSchema: FormSchema[] = [
     colProps: { span: 6 },
   },
   {
-    label: '名字',
+    label: '公司名称',
     field: 'realname',
     component: 'Input',
     colProps: { span: 6 },