Browse Source

新增客服页面

master
H_uang 2 days ago
parent
commit
ff9af269eb
  1. 1
      im-admin-ui/.eslintignore
  2. 2
      im-admin-ui/src/api/im/user/customer.ts
  3. 2
      im-admin-ui/src/views/im/customer/index.vue

1
im-admin-ui/.eslintignore

@ -16,3 +16,4 @@ prettier.config.js
src/assets
tailwind.config.js
.vite.config.ts

2
im-admin-ui/src/api/im/user/customer.ts

@ -69,7 +69,7 @@ export const resetUserPwd = (id: string | number, password: string) => {
};
/**
*
* x
* @param id
*/
export const getUser = (id: string | number): AxiosPromise<UserVO> => {

2
im-admin-ui/src/views/im/customer/index.vue

@ -42,11 +42,13 @@
<dict-tag :options="sys_user_sex" :value="scope.row.sex" />
</template>
</el-table-column>
<!--
<el-table-column label="是否被封禁" align="center" prop="isBanned">
<template #default="scope">
<dict-tag :options="im_bool" :value="scope.row.isBanned" />
</template>
</el-table-column>
-->
<el-table-column label="注册时间" align="center" prop="createdTime" width="180">
<template #default="scope">
<span>{{ parseTime(scope.row.createdTime, '{y}-{m}-{d}') }}</span>

Loading…
Cancel
Save