소스 검색

revert: 还原账号管理中的手机号字段渲染

喵你个旺呀 1 년 전
부모
커밋
ddd8eb2a05
2개의 변경된 파일2개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 1
      Web/src/components/callTel/callBar.vue
  2. 1 5
      Web/src/views/system/user/index.vue

+ 1 - 1
Web/src/components/callTel/callBar.vue

@@ -48,7 +48,7 @@ onMounted(() => {
 </script>
 
 <template>
-	<el-popover placement="bottom" width="300" trigger="hover">
+	<el-popover placement="bottom" width="300" trigger="click">
 		<template #reference>
 			<i class="iconfont icon-dianhua" v-bind="$attrs" />
 		</template>

+ 1 - 5
Web/src/views/system/user/index.vue

@@ -42,11 +42,7 @@
 						<el-table-column prop="account" label="账号" width="120" align="center" show-overflow-tooltip />
 						<!-- <el-table-column prop="nickName" label="昵称" width="120" align="center" show-overflow-tooltip /> -->
 						<el-table-column prop="realName" label="姓名" width="120" align="center" show-overflow-tooltip />
-						<el-table-column prop="phone" label="手机号码" width="120" align="center" show-overflow-tooltip>
-							<template #default="scope">
-								{{scope.row.phone}} <call-bar :real-name="scope.row.realName" :number="scope.row.phone" :callback-url="'123'" />
-							</template>
-						</el-table-column>
+						<el-table-column prop="phone" label="手机号码" width="120" align="center" show-overflow-tooltip />
 						<!-- <el-table-column label="出生日期" width="100" align="center" show-overflow-tooltip>
 							<template #default="scope">
 								{{ formatDate(new Date(scope.row.birthday), 'YYYY-mm-dd') }}