PersonList.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  1. <template>
  2. <div class="manage-root organize-manage person-list">
  3. <Header />
  4. <div class="manage-root-contain">
  5. <nav-menu class="manage-root-contain-left" :activeMenuIndex="activeMenuIndex"></nav-menu>
  6. <div class="manage-root-contain-right personnel-manage-right">
  7. <breadcrumb :breadcrumbList="breadcrumbList" class="breadcrumb-box"></breadcrumb>
  8. <div class="personal-inner" v-if="info">
  9. <div class="common-title-box">
  10. <h3>{{info.name}}<span class="total-number">共{{info.person_count_audited}}人</span></h3>
  11. <div class="btn-box">
  12. <el-button type="primary" size="small" @click="handleBatchImport">批量导入</el-button>
  13. </div>
  14. </div>
  15. <div class="tabs">
  16. <a :class="[tabsIndex===0?'active':'']" @click="handleChangeTabs(0)">人员列表</a>
  17. <a :class="[tabsIndex===1?'active':'']" @click="handleChangeTabs(1)">人员审核 {{info.person_count_wait_audit}}</a>
  18. </div>
  19. <div class="search">
  20. <div class="search-box">
  21. <div class="search-item">
  22. <label>搜索</label>
  23. <el-input
  24. placeholder="输入搜索内容"
  25. v-model="searchInput">
  26. <i slot="suffix" class="el-input__icon el-icon-search" @click="getList" style="cursor: pointer;"></i>
  27. </el-input>
  28. </div>
  29. <div class="search-item">
  30. <label>权限</label>
  31. <el-select v-model="searchType" @change="getList" placeholder="请选择">
  32. <el-option
  33. v-for="item in typeList"
  34. :key="item.account_type"
  35. :label="item.account_type_name"
  36. :value="item.account_type">
  37. </el-option>
  38. </el-select>
  39. </div>
  40. <div class="search-item" v-if="tabsIndex===0">
  41. <label>状态</label>
  42. <el-select v-model="searchStatus" @change="getList" placeholder="请选择">
  43. <el-option
  44. v-for="item in searchStatusList"
  45. :key="item.value"
  46. :label="item.label"
  47. :value="item.value">
  48. </el-option>
  49. </el-select>
  50. </div>
  51. <div class="search-item" v-if="tabsIndex===1">
  52. <label>状态</label>
  53. <el-select v-model="searchAuditStatus" @change="getList" placeholder="请选择">
  54. <el-option
  55. v-for="item in searchAuditStatusList"
  56. :key="item.value"
  57. :label="item.label"
  58. :value="item.value">
  59. </el-option>
  60. </el-select>
  61. </div>
  62. </div>
  63. <div class="search-right" v-if="tabsIndex===0">
  64. <el-button class="gray-btn" size="small" @click="handleUp('','up',multipleSelection)">开启选中用户</el-button>
  65. <el-button class="pink-btn" size="small" @click="handleUp('','down',multipleSelection)">停用选中用户</el-button>
  66. <el-button class="red-btn" size="small" @click="handleDelete('',multipleSelection)">删除选中用户</el-button>
  67. </div>
  68. <div class="search-right" v-if="tabsIndex===1">
  69. <el-button class="gray-btn" size="small" @click="handleAudit('','up',multipleSelection)">同意选中用户</el-button>
  70. <el-button class="pink-btn" size="small" @click="handleAudit('','down',multipleSelection)">拒绝选中用户</el-button>
  71. </div>
  72. </div>
  73. <template v-if="tabsIndex===0">
  74. <el-table
  75. class="search-table"
  76. :data="tableData"
  77. style="width: 100%"
  78. key="table"
  79. :max-height="tableHeight"
  80. @selection-change="handleSelectionChange">
  81. <el-table-column
  82. type="selection"
  83. width="40">
  84. </el-table-column>
  85. <el-table-column
  86. prop="name"
  87. label="用户名"
  88. sortable
  89. min-width="132"
  90. class-name="user-info">
  91. <template slot-scope="scope">
  92. <img class="touxiang" :src="scope.row.image_url?scope.row.image_url:require('../../assets/avatar.png')" />
  93. <span class="name">{{scope.row.user_name}}</span>
  94. </template>
  95. </el-table-column>
  96. <el-table-column
  97. prop="real_name"
  98. label="真实姓名"
  99. width="103">
  100. </el-table-column>
  101. <el-table-column
  102. prop="sex_name"
  103. label="性别"
  104. width="56">
  105. </el-table-column>
  106. <el-table-column
  107. prop="type"
  108. label="权限"
  109. width="88" >
  110. <template slot-scope="scope">
  111. {{scope.row.is_manager==='true'?'管理员':'普通用户'}}
  112. </template>
  113. </el-table-column>
  114. <el-table-column
  115. prop="email"
  116. label="邮箱"
  117. sortable
  118. min-width="223">
  119. </el-table-column>
  120. <el-table-column
  121. prop="phone"
  122. label="手机号"
  123. sortable
  124. width="160">
  125. </el-table-column>
  126. <el-table-column
  127. prop="register_time"
  128. label="注册时间"
  129. sortable
  130. width="144">
  131. </el-table-column>
  132. <el-table-column
  133. prop="status"
  134. label="状态"
  135. width="116" >
  136. <template slot-scope="scope">
  137. <div class="status-box">
  138. <span :style="{background:statusList[scope.row.status].bg}"></span>
  139. <b :style="{color:statusList[scope.row.status].color}">{{statusList[scope.row.status].text}}</b>
  140. </div>
  141. </template>
  142. </el-table-column>
  143. <el-table-column
  144. fixed="right"
  145. label="操作"
  146. width="147">
  147. <template slot-scope="scope">
  148. <el-button
  149. @click.native.prevent="handleEdit(scope.row)"
  150. type="text"
  151. size="small"
  152. class="primary-btn">
  153. 编辑
  154. </el-button>
  155. <el-button
  156. @click.native.prevent="handleUp(scope.row, 'up')"
  157. type="text"
  158. size="small"
  159. class="primary-btn"
  160. v-if="scope.row.status===0">
  161. 开启
  162. </el-button>
  163. <el-button
  164. @click.native.prevent="handleUp(scope.row, 'down')"
  165. type="text"
  166. size="small"
  167. class="red-btn"
  168. v-else-if="scope.row.status===1">
  169. 停用
  170. </el-button>
  171. <el-button
  172. @click.native.prevent="handleDelete(scope.row)"
  173. type="text"
  174. size="small"
  175. class="red-btn"
  176. v-if="scope.row.status===0">
  177. 删除
  178. </el-button>
  179. </template>
  180. </el-table-column>
  181. </el-table>
  182. <el-pagination
  183. background
  184. @size-change="(val)=>handleSizeChange(val,'pageSize','pageNumber')"
  185. @current-change="(val)=>handleCurrentChange(val,'pageNumber')"
  186. :current-page="pageNumber"
  187. :page-sizes="[10, 20, 30, 40]"
  188. :page-size="pageSize"
  189. layout="total, prev, pager, next, sizes, jumper"
  190. :total="total_count">
  191. </el-pagination>
  192. </template>
  193. <template v-if="tabsIndex===1">
  194. <el-table
  195. class="search-table"
  196. :data="tableData"
  197. style="width: 100%"
  198. :max-height="tableHeight"
  199. key="auditTable"
  200. @selection-change="handleSelectionChange">
  201. <el-table-column
  202. type="selection"
  203. width="40">
  204. </el-table-column>
  205. <el-table-column
  206. prop="name"
  207. label="用户名"
  208. sortable
  209. min-width="132"
  210. class-name="user-info">
  211. <template slot-scope="scope">
  212. <img class="touxiang" :src="scope.row.image_url?scope.row.image_url:require('../../assets/avatar.png')" />
  213. <span class="name">{{scope.row.user_name}}</span>
  214. </template>
  215. </el-table-column>
  216. <el-table-column
  217. prop="real_name"
  218. label="真实姓名"
  219. width="103">
  220. </el-table-column>
  221. <el-table-column
  222. prop="sex_name"
  223. label="性别"
  224. width="56">
  225. </el-table-column>
  226. <el-table-column
  227. prop="email"
  228. label="邮箱"
  229. sortable
  230. min-width="223">
  231. </el-table-column>
  232. <el-table-column
  233. prop="phone"
  234. label="手机号"
  235. sortable
  236. width="160">
  237. </el-table-column>
  238. <el-table-column
  239. prop="apply_time"
  240. label="申请时间"
  241. sortable
  242. width="144">
  243. </el-table-column>
  244. <el-table-column
  245. prop="audit_time"
  246. label="审核时间"
  247. sortable
  248. width="144">
  249. <template slot-scope="scope">
  250. {{scope.row.audit_time?scope.row.audit_time:'-'}}
  251. </template>
  252. </el-table-column>
  253. <el-table-column
  254. prop="status"
  255. label="状态"
  256. width="116" >
  257. <template slot-scope="scope">
  258. <div class="status-box" v-if="auditStatusList[scope.row.audit_status]">
  259. <span :style="{background:auditStatusList[scope.row.audit_status].bg}"></span>
  260. <b :style="{color:auditStatusList[scope.row.audit_status].color}">{{auditStatusList[scope.row.audit_status].text}}</b>
  261. </div>
  262. </template>
  263. </el-table-column>
  264. <el-table-column
  265. fixed="right"
  266. label="操作"
  267. width="147">
  268. <template slot-scope="scope">
  269. <el-button
  270. @click.native.prevent="handleEdit(scope.row)"
  271. type="text"
  272. size="small"
  273. class="primary-btn">
  274. 查看
  275. </el-button>
  276. <el-button
  277. @click.native.prevent="handleAudit(scope.row,'up')"
  278. type="text"
  279. size="small"
  280. class="primary-btn">
  281. 同意
  282. </el-button>
  283. <el-button
  284. @click.native.prevent="handleAudit(scope.row,'down')"
  285. type="text"
  286. size="small"
  287. class="red-btn"
  288. v-if="scope.row.audit_status===0">
  289. 拒绝
  290. </el-button>
  291. </template>
  292. </el-table-column>
  293. </el-table>
  294. <el-pagination
  295. background
  296. @size-change="(val)=>handleSizeChange(val,'pageSizes','pageNumbers')"
  297. @current-change="(val)=>handleCurrentChange(val,'pageNumbers')"
  298. :current-page="pageNumbers"
  299. :page-sizes="[10, 20, 30, 40]"
  300. :page-size="pageSizes"
  301. layout="total, prev, pager, next, sizes, jumper"
  302. :total="total_count">
  303. </el-pagination>
  304. </template>
  305. </div>
  306. </div>
  307. </div>
  308. <el-dialog
  309. :visible.sync="importFlag"
  310. :show-close="false"
  311. :close-on-click-modal="false"
  312. :modal-append-to-body="false"
  313. width="398px"
  314. class="login-dialog person-dialog"
  315. v-if="importFlag">
  316. <batch-import @closeDialog="closeDialog"></batch-import>
  317. </el-dialog>
  318. </div>
  319. </template>
  320. <script>
  321. //这里可以导入其它文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
  322. //例如:import 《组件名称》from ‘《组件路径》';
  323. import Header from "../../components/Header.vue";
  324. import NavMenu from "../../components/NavMenu.vue"
  325. import Breadcrumb from '../../components/Breadcrumb.vue';
  326. import BatchImport from './BatchImport.vue'
  327. import {
  328. provinceAndCityData
  329. } from "element-china-area-data";
  330. import { getLogin } from "@/api/ajax";
  331. export default {
  332. //import引入的组件需要注入到对象中才能使用
  333. components: { Header, NavMenu, Breadcrumb, BatchImport },
  334. props: {},
  335. data() {
  336. //这里存放数据
  337. return {
  338. provinceAndCityData,
  339. activeMenuIndex: "organize_manage",
  340. breadcrumbList:[
  341. {
  342. icon:'school-line',
  343. url:'',
  344. text:''
  345. },
  346. {
  347. icon:'',
  348. url:'',
  349. text:'机构管理'
  350. }
  351. ],
  352. searchInput: '',
  353. searchType: -1,
  354. searchStatus: -1,
  355. searchAuditStatus: -1,
  356. typeList:[
  357. {
  358. account_type:-1,
  359. account_type_name:'全部'
  360. },
  361. {
  362. account_type:1,
  363. account_type_name:'管理员'
  364. },
  365. {
  366. account_type:0,
  367. account_type_name:'普通用户'
  368. }
  369. ],
  370. searchAuditStatusList:[
  371. {
  372. value:-1,
  373. label:'全部'
  374. },
  375. {
  376. value:0,
  377. label:'待审核'
  378. },
  379. {
  380. value:2,
  381. label:'已拒绝'
  382. }
  383. ], // 审核状态列表
  384. searchStatusList:[
  385. {
  386. value:-1,
  387. label:'全部'
  388. },
  389. {
  390. value:1,
  391. label:'正常'
  392. },
  393. {
  394. value:0,
  395. label:'停用'
  396. }
  397. ],
  398. statusList:{
  399. 1:{
  400. text:'正常',
  401. bg:'#165DFF',
  402. color:''
  403. },
  404. 0:{
  405. text:'停用',
  406. bg:'#F53F3F',
  407. color:'#F53F3F'
  408. }
  409. },
  410. auditStatusList:{
  411. 0:{
  412. text:'待审核',
  413. bg:'#165DFF',
  414. color:''
  415. },
  416. 2:{
  417. text:'已拒绝',
  418. bg:'#F53F3F',
  419. color:'#F53F3F'
  420. }
  421. },
  422. tableData:[],
  423. pageSize: window.localStorage.getItem('pageSizec')?Number(window.localStorage.getItem('pageSize-people')):10,
  424. pageNumber: window.localStorage.getItem('pageNumber-people')?Number(window.localStorage.getItem('pageNumber-people')):1,
  425. tableHeight: "", // 表格高度
  426. orgName:'', // 机构名称
  427. id:this.$route.query.id?this.$route.query.id:'',
  428. multipleSelection:[],
  429. tabsIndex:0,
  430. pageSizes: window.localStorage.getItem('pageSize-check')?Number(window.localStorage.getItem('pageSize-check')):10,
  431. pageNumbers: window.localStorage.getItem('pageNumber-check')?Number(window.localStorage.getItem('pageNumber-check')):1,
  432. importFlag: false, // 批量导入flag
  433. info: null,
  434. total_count: 0
  435. }
  436. },
  437. //计算属性 类似于data概念
  438. computed: {
  439. },
  440. //监控data中数据变化
  441. watch: {},
  442. //方法集合
  443. methods: {
  444. // 查询列表
  445. getList(){
  446. let MethodName = "/OrgServer/Manager/PageQuery/PageQueryPersonList";
  447. let data = {
  448. org_id: this.id,
  449. search_content:this.searchInput.trim(),
  450. role_type:this.searchType,
  451. status:this.tabsIndex===0?this.searchStatus:-1,
  452. audit_status:this.tabsIndex===1?this.searchAuditStatus:-1,
  453. page_capacity:this.tabsIndex===0?this.pageSize:this.pageSizes,
  454. cur_page:this.tabsIndex===0?this.pageNumber:this.pageNumbers,
  455. list_type: this.tabsIndex*1
  456. }
  457. getLogin(MethodName, data)
  458. .then((res) => {
  459. if(res.status===1){
  460. this.tableData = res.person_list
  461. this.total_count = res.total_count
  462. }
  463. })
  464. .catch(() => {
  465. this.loading = false
  466. });
  467. },
  468. // 创建机构或者编辑信息
  469. handleEdit(row){
  470. // 根据登录用户判断当前用户是不是超管 在table里加上disabled
  471. // 点击时记录页码和每页条数
  472. window.localStorage.setItem('pageSize',this.pageSize)
  473. window.localStorage.setItem('pageNumber',this.pageNumber)
  474. this.$router.push({
  475. path: "/editOrgPerson",
  476. query: {
  477. id: row?row.id:''
  478. },
  479. });
  480. },
  481. // 人员管理
  482. handlePerson(){
  483. },
  484. // 停用 启用
  485. handleUp(row,type,arr) {
  486. if(!row&&arr.length===0){
  487. return false
  488. }
  489. let Mname = "/OrgServer/Manager/PersonManager/EnablePerson";
  490. let data = {
  491. id_list: arr?arr:[row.id]
  492. };
  493. if (type==='up') {
  494. // 下架状态
  495. data.is_enable = "true";
  496. } else if (type==='down') {
  497. data.is_enable = "false";
  498. }
  499. getLogin(Mname, data).then(res => {
  500. this.$message.success("操作成功");
  501. this.getList()
  502. });
  503. },
  504. // 通过 拒绝
  505. handleAudit(row,type,arr) {
  506. if(!row&&arr.length===0){
  507. return false
  508. }
  509. let Mname = "/OrgServer/Manager/PersonManager/AuditPerson";
  510. let data = {
  511. id_list: arr?arr:[row.id]
  512. };
  513. if (type==='up') {
  514. // 下架状态
  515. data.is_pass = "true";
  516. } else if (type==='down') {
  517. data.is_pass = "false";
  518. }
  519. getLogin(Mname, data).then(res => {
  520. this.$message.success("操作成功");
  521. this.getList()
  522. });
  523. },
  524. handleSizeChange(val,type,page) {
  525. this[type] = val
  526. this[page] = 1
  527. this.getList()
  528. },
  529. handleCurrentChange(val,type) {
  530. this[type] = val
  531. this.getList()
  532. },
  533. //计算table高度(动态设置table高度)
  534. getTableHeight() {
  535. let tableH = 434; //距离页面下方的高度
  536. let tableHeightDetil = window.innerHeight - tableH;
  537. if (tableHeightDetil <= 300) {
  538. this.tableHeight = 300;
  539. } else {
  540. this.tableHeight = window.innerHeight - tableH;
  541. }
  542. },
  543. // 删除
  544. handleDelete(row,arr){
  545. this.$confirm('确定删除吗?', '提示', {
  546. confirmButtonText: '确定',
  547. cancelButtonText: '取消',
  548. type: 'warning'
  549. }).then(() => {
  550. if(!row&&arr.length===0){
  551. return false
  552. }
  553. let Mname = "/OrgServer/Manager/PersonManager/DeletePerson";
  554. let data = {
  555. id_list: arr?arr:[row.id]
  556. };
  557. getLogin(Mname, data).then(res => {
  558. this.$message.success("删除成功");
  559. this.getList()
  560. });
  561. }).catch(() => {
  562. this.$message({
  563. type: 'info',
  564. message: '已取消删除'
  565. });
  566. });
  567. },
  568. // 复选框
  569. handleSelectionChange(val) {
  570. this.multipleSelection = []
  571. val.forEach(item => {
  572. this.multipleSelection.push(item.id)
  573. });
  574. },
  575. handleChangeTabs(value){
  576. this.tabsIndex = value
  577. this.pageNumber = 1
  578. this.getList()
  579. },
  580. // 批量导入
  581. handleBatchImport(){
  582. this.importFlag = true
  583. },
  584. // 关闭批量导入
  585. closeDialog(){
  586. this.importFlag = false
  587. this.getList()
  588. this.getInfo()
  589. },
  590. // 获取机构信息
  591. getInfo(){
  592. let MethodName = "/OrgServer/Manager/OrgManager/GetOrgTitleInfo";
  593. let data = {
  594. id: this.id,
  595. }
  596. getLogin(MethodName, data)
  597. .then((res) => {
  598. if(res.status===1){
  599. this.info = res
  600. let obj = {
  601. icon:'',
  602. url:'',
  603. text:res.name
  604. }
  605. this.breadcrumbList=[
  606. {
  607. icon:'school-line',
  608. url:'',
  609. text:''
  610. },
  611. {
  612. icon:'',
  613. url:'',
  614. text:'机构管理'
  615. }
  616. ]
  617. this.breadcrumbList.push(obj)
  618. }
  619. })
  620. .catch(() => {
  621. });
  622. },
  623. },
  624. //生命周期 - 创建完成(可以访问当前this实例)
  625. created() {
  626. this.getList()
  627. this.getTableHeight();
  628. if(this.id){
  629. this.getInfo()
  630. }else{
  631. this.breadcrumbList=[
  632. {
  633. icon:'school-line',
  634. url:'',
  635. text:''
  636. },
  637. {
  638. icon:'',
  639. url:'',
  640. text:'机构管理'
  641. }
  642. ]
  643. let obj = {
  644. icon:'',
  645. url:'',
  646. text:'青岛科技大学'
  647. }
  648. this.breadcrumbList.push(obj)
  649. }
  650. },
  651. //生命周期 - 挂载完成(可以访问DOM元素)
  652. mounted() {
  653. },
  654. //生命周期-创建之前
  655. beforeCreated() { },
  656. //生命周期-挂载之前
  657. beforeMount() { },
  658. //生命周期-更新之前
  659. beforUpdate() { },
  660. //生命周期-更新之后
  661. updated() { },
  662. //生命周期-销毁之前
  663. beforeDestory() { },
  664. //生命周期-销毁完成
  665. destoryed() { },
  666. //如果页面有keep-alive缓存功能,这个函数会触发
  667. activated() { }
  668. }
  669. </script>
  670. <style lang="scss" scoped>
  671. /* @import url(); 引入css类 */
  672. .total-number{
  673. color: #86909C;
  674. font-weight: 400;
  675. font-size: 14px;
  676. line-height: 22px;
  677. margin-left: 4px;
  678. }
  679. .tabs{
  680. display: flex;
  681. padding: 16px 0;
  682. a{
  683. font-size: 14px;
  684. line-height: 22px;
  685. color: #4E5969;
  686. border-radius: 100px;
  687. padding: 5px 16px;
  688. margin-right: 12px;
  689. &:hover{
  690. background: #F2F3F5;
  691. }
  692. &.active{
  693. background: #F2F3F5;
  694. font-weight: 500;
  695. color: #165DFF;
  696. }
  697. }
  698. }
  699. .search{
  700. display: flex;
  701. justify-content: space-between;
  702. align-items: flex-end;
  703. }
  704. .search-box{
  705. padding-top: 0;
  706. }
  707. .search-right{
  708. height: 34px;
  709. button{
  710. font-size: 14px;
  711. }
  712. .pink-btn{
  713. background: #FFECE8;
  714. color: #F53F3F;
  715. border-color: #FFECE8;
  716. &:hover{
  717. background: #fde0da;
  718. border-color: #fde0da;
  719. }
  720. &:focus{
  721. background: #f8cfc6;
  722. border-color: #f8cfc6;
  723. }
  724. }
  725. .red-btn{
  726. background: #F53F3F;
  727. color: #fff;
  728. border-color: #F53F3F;
  729. &:hover{
  730. background: #ed3b3b;
  731. }
  732. &:focus{
  733. background: #ec1111;
  734. }
  735. }
  736. }
  737. </style>
  738. <style lang="scss">
  739. .organize-manage{
  740. .el-cascader{
  741. width: 160px;
  742. height: 32px;
  743. line-height: 32px;
  744. .el-input{
  745. width: 100%;
  746. height: 32px;
  747. }
  748. }
  749. }
  750. .person-dialog{
  751. .el-dialog{
  752. border-radius: 8px;
  753. }
  754. }
  755. .person-list{
  756. .user-info{
  757. .cell{
  758. display: flex;
  759. align-items: center;
  760. .touxiang{
  761. width: 24px;
  762. height: 24px;
  763. border-radius: 50%;
  764. margin-right: 8px;
  765. }
  766. }
  767. }
  768. }
  769. </style>