guhongwei 2 年之前
父节点
当前提交
42b430c8a4

+ 1 - 1
src/views/user/company/detail.vue

@@ -44,7 +44,7 @@ const fields: Ref<any> = ref([
   { label: '邀请码', model: 'code', type: 'select' },
   { label: '账号', model: 'account' },
   { label: '密码', model: 'password', type: 'password' },
-  { label: '名', model: 'name' },
+  { label: '用户名', model: 'name' },
   { label: '手机号', model: 'phone' },
   { label: '电子邮箱', model: 'email' },
   { label: '联系地址', model: 'address' },

+ 1 - 1
src/views/user/company/index.vue

@@ -65,7 +65,7 @@ const limit = proxy.$limit;
 const fields: Ref<any> = ref([
   { label: '邀请码', model: 'code', isSearch: true },
   { label: '账号', model: 'account', isSearch: true },
-  { label: '名', model: 'name', isSearch: true },
+  { label: '用户名', model: 'name', isSearch: true },
   { label: '手机号', model: 'phone', isSearch: true },
   { label: '电子邮箱', model: 'email' },
   { label: '所属辖区', model: 'area', format: (i) => getDict(i, 'area'), isSearch: true, type: 'select' },

+ 1 - 1
src/views/user/expert/detail.vue

@@ -58,7 +58,7 @@ let formFields: Ref<any[]> = ref([
   { label: '邀请码', model: 'code', type: 'select' },
   { label: '账号', model: 'account' },
   { label: '密码', model: 'password', type: 'password' },
-  { label: '名', model: 'name' },
+  { label: '用户名', model: 'name' },
   { label: '手机号', model: 'phone' },
   { label: '电子邮箱', model: 'email' },
   { label: '联系地址', model: 'address' },

+ 1 - 1
src/views/user/expert/index.vue

@@ -70,7 +70,7 @@ let limit: number = proxy.$limit;
 let fields: Ref<any[]> = ref([
   { label: '邀请码', model: 'code', isSearch: true },
   { label: '账号', model: 'account', isSearch: true },
-  { label: '名', model: 'name', isSearch: true },
+  { label: '用户名', model: 'name', isSearch: true },
   { label: '手机号', model: 'phone', isSearch: true },
   { label: '所属辖区', model: 'area', format: (i) => getDict(i, 'area'), isSearch: true, type: 'select' },
   { label: '审核状态', model: 'status', format: (i) => getDict(i, 'status'), isSearch: true, type: 'select' }

+ 1 - 1
src/views/user/personal/detail.vue

@@ -51,7 +51,7 @@ let formFields: Ref<any[]> = ref([
   { label: '邀请码', model: 'code', type: 'select' },
   { label: '账号', model: 'account' },
   { label: '密码', model: 'password', type: 'password' },
-  { label: '名', model: 'name' },
+  { label: '用户名', model: 'name' },
   { label: '手机号', model: 'phone' },
   { label: '电子邮箱', model: 'email' },
   { label: '联系地址', model: 'address' },

+ 1 - 1
src/views/user/personal/index.vue

@@ -69,7 +69,7 @@ let limit: number = proxy.$limit;
 let fields: Ref<any[]> = ref([
   { label: '邀请码', model: 'code', isSearch: true },
   { label: '账号', model: 'account', isSearch: true },
-  { label: '名', model: 'name', isSearch: true },
+  { label: '用户名', model: 'name', isSearch: true },
   { label: '手机号', model: 'phone', isSearch: true },
   { label: '电子邮箱', model: 'email' },
   { label: '所属辖区', model: 'area', format: (i) => getDict(i, 'area'), isSearch: true, type: 'select' },