accountHome.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  1. <template>
  2. <div class="account-home">
  3. <div class="account-header">
  4. <div class="status flex-wrap">
  5. <div class="manageTitle">账号管理</div>
  6. <div class="status1"><span class="icon" />在线</div>
  7. <div class="status2"><span class="icon" />离线</div>
  8. <div class="status3"><span class="icon" />禁用</div>
  9. </div>
  10. <Search
  11. :is-slot="true"
  12. :is-title="false"
  13. @getSearchData="getSearchData"
  14. @clearSearchData="clearSearchData"
  15. >
  16. <el-button
  17. v-is="['userlist_btn_add']"
  18. class="btnAdd"
  19. @click="addAccount"
  20. >新增</el-button>
  21. </Search>
  22. </div>
  23. <div class="content-box scrollbar">
  24. <template v-if="accountArr.length">
  25. <el-row
  26. v-infinite-scroll="load"
  27. :infinite-scroll-disabled="disabled"
  28. :infinite-scroll-distance="20"
  29. :gutter="24"
  30. >
  31. <el-col
  32. v-for="account in accountArr"
  33. :key="account.UserId"
  34. :xs="24"
  35. :sm="12"
  36. :md="8"
  37. :lg="4"
  38. class="account-box"
  39. >
  40. <div class="account-box-wrap">
  41. <div :class="account.Status === 1 ? 'headOnline' : account.Status === 2 ? 'headOffline' : 'headDisabled'" />
  42. <div>
  43. <div class="nameBox flex">
  44. <div class="flex-wrap">
  45. <div class="name">{{ account.UserName }}</div>
  46. <div
  47. v-is="['userlist_btn_update']"
  48. class="loger"
  49. @click="toEdit(account.UserId)"
  50. />
  51. </div>
  52. <div
  53. v-is="['userlist_btn_del']"
  54. class="del"
  55. @click="deleteUser(account)"
  56. >
  57. <i class="el-icon-close" />
  58. </div>
  59. </div>
  60. <el-row>
  61. <el-col :span="24">{{ account.group }}</el-col>
  62. </el-row>
  63. <el-row class="content">
  64. <el-col :span="12">登录次数:<span>{{ account.LoginCount }}</span></el-col>
  65. <el-col
  66. :span="12"
  67. class="flexLeft"
  68. >异常登录:<span>{{ account.ExceptionCount }}</span></el-col>
  69. </el-row>
  70. <el-row class="content">
  71. <el-col :span="24">权限项数:<span>{{ account.AuthCount }}</span></el-col>
  72. </el-row>
  73. <el-row class="content">
  74. <el-col :span="12">
  75. 状态:<span
  76. v-if="account.Status == 1 || account.Status == 2"
  77. class="used"
  78. >启用</span>
  79. <span
  80. v-else-if="account.Status == 3"
  81. class="unUsed"
  82. >停用</span>
  83. </el-col>
  84. <el-col
  85. v-is="['userlist_btn_status_change']"
  86. :span="12"
  87. class="flexLeft"
  88. >
  89. <el-switch
  90. v-model="account.Flag"
  91. :active-value="true"
  92. :inactive-value="false"
  93. active-color="#2D67E3"
  94. inactive-color="#CFD6E2"
  95. @change="userActiveToggle(account)"
  96. />
  97. </el-col>
  98. </el-row>
  99. </div>
  100. </div>
  101. </el-col>
  102. </el-row>
  103. <template v-if="pages > 1">
  104. <p
  105. v-if="loading"
  106. class="center"
  107. >加载中...</p>
  108. <p
  109. v-if="noMore"
  110. class="center"
  111. >没有更多数据了~</p>
  112. </template>
  113. </template>
  114. </div>
  115. <Dialog :flag="dialogVisible">
  116. <div class="del-dialog">
  117. <div class="title del-title">删除账号</div>
  118. <div class="content del-content"><i class="el-icon-error error r10" />你确定要删除<span class="error l10">{{ deleteUserName }}</span>?</div>
  119. <div class="foot Delfoot right t30">
  120. <el-button
  121. size="medium"
  122. type="danger"
  123. class="r24"
  124. @click="del()"
  125. >删除</el-button>
  126. <el-button
  127. size="medium"
  128. @click="dialogVisible = false"
  129. >取消</el-button>
  130. </div>
  131. </div>
  132. </Dialog>
  133. </div>
  134. </template>
  135. <script>
  136. import Search from '@/layout/components/Search'
  137. import Dialog from '@/layout/components/Dialog'
  138. import { GetAccountList, ChangeUserStatus, delAccount } from '@/api/Account'
  139. export default {
  140. components: { Search, Dialog },
  141. data() {
  142. return {
  143. dialogVisible: false,
  144. accountArr: [],
  145. deleteUserId: '',
  146. deleteUserName: '',
  147. userId: '',
  148. GroupId: '',
  149. GroupUpid: '',
  150. searchInfo: '', // 搜索内容
  151. PageIndex: 1,
  152. PageSize: 20,
  153. pages: null,
  154. loading: false
  155. }
  156. },
  157. computed: {
  158. noMore() {
  159. return this.PageIndex >= this.pages
  160. },
  161. disabled() {
  162. return this.loading || this.noMore
  163. }
  164. },
  165. watch: {
  166. searchInfo(val) {
  167. val.length === 0 && this.pageInit()
  168. }
  169. },
  170. created() {
  171. if (!this.searchInfo) {
  172. this.accountList()
  173. } else {
  174. console.log(this.searchInfo)
  175. this.accountList()
  176. }
  177. },
  178. methods: {
  179. // 滚动加载
  180. load() {
  181. this.PageIndex += 1
  182. this.accountList()
  183. },
  184. // 回到第一页
  185. pageInit() {
  186. this.PageIndex = 1
  187. this.accountArr = []
  188. this.accountList()
  189. },
  190. // 查询
  191. getSearchData(val) {
  192. this.searchInfo = val
  193. this.pageInit()
  194. },
  195. // 清除查询
  196. clearSearchData() {
  197. this.searchInfo = ''
  198. },
  199. // 修改状态
  200. async userActiveToggle({ Flag, Status, UserId }) {
  201. Status = Flag ? 2 : 3
  202. try {
  203. const result = await ChangeUserStatus({
  204. Flag,
  205. Status,
  206. UserId
  207. })
  208. if (result.code === 0) {
  209. this.accountArr.forEach(account => {
  210. if (account.UserId === UserId) {
  211. account.Status = Status
  212. }
  213. })
  214. this.$message.success(result.message)
  215. } else {
  216. this.$message.error(result.$message)
  217. }
  218. } catch (error) {
  219. console.log('出错了', error)
  220. }
  221. },
  222. deleteUser(user) {
  223. this.dialogVisible = true
  224. this.deleteUserId = user.UserId
  225. this.deleteUserName = user.UserName
  226. },
  227. toEdit(userId) {
  228. this.userId = userId
  229. this.$router.push({
  230. path: '/account/accountEdit',
  231. query: { userId: this.userId }
  232. })
  233. },
  234. addAccount() {
  235. this.$router.push({
  236. path: '/account/accountAdd'
  237. })
  238. },
  239. // 获取列表
  240. async accountList() {
  241. try {
  242. this.loading = true
  243. const result = await GetAccountList({
  244. QueryName: this.searchInfo,
  245. PageIndex: this.PageIndex,
  246. PageSize: this.PageSize
  247. })
  248. if (result.code === 0) {
  249. this.loading = false
  250. const newDatas = result.returnData.records
  251. // console.log(newDatas[0])
  252. this.pages = result.returnData.pages
  253. newDatas.forEach(element => {
  254. this.accountArr.push(element)
  255. })
  256. } else {
  257. this.$message.error(result.message)
  258. }
  259. } catch (error) {
  260. console.log('出错了', error)
  261. }
  262. },
  263. // 删除接口
  264. async del() {
  265. const result = await delAccount({
  266. UserId: this.deleteUserId
  267. })
  268. if (result.code === 0) {
  269. this.dialogVisible = false
  270. this.$message.success(result.message)
  271. this.pageInit()
  272. } else if (result.code === -1) {
  273. this.$message.error('后端错误,稍后请重试')
  274. } else {
  275. this.$message.success(result.message)
  276. }
  277. }
  278. }
  279. }
  280. </script>
  281. <style lang="scss" scoped>
  282. .account-home {
  283. padding: 16px 32px 32px 32px;
  284. .account-header {
  285. margin-bottom: 30px;
  286. line-height: 32px;
  287. width: 100%;
  288. display: flex;
  289. justify-content: space-between;
  290. .btn-add {
  291. width: 120px;
  292. height: 48px;
  293. background: #f5f7fa;
  294. border: 1px solid #b4b7cb;
  295. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  296. border-radius: 6px;
  297. font-size: 16px;
  298. font-weight: bold;
  299. color: #6f81bc;
  300. }
  301. .status {
  302. align-items: center;
  303. .icon {
  304. width: 14px;
  305. height: 14px;
  306. background: #2d67e3;
  307. border-radius: 2px;
  308. display: inline-block;
  309. vertical-align: middle;
  310. margin-right: 10px;
  311. position: relative;
  312. top: -2px;
  313. }
  314. &:last-child {
  315. margin-right: 0;
  316. }
  317. .status2 {
  318. margin: 0 28px;
  319. .icon {
  320. background: #eb2f3b;
  321. }
  322. }
  323. .status3 {
  324. .icon {
  325. background: #afb4bf;
  326. }
  327. }
  328. }
  329. }
  330. .content-box {
  331. height: calc(100vh - 256px);
  332. overflow-y: auto;
  333. overflow-x: hidden;
  334. @media only screen and (min-width: 1920px) {
  335. .el-col-xl-4-8 {
  336. width: 20%;
  337. }
  338. }
  339. .account-box {
  340. margin-bottom: 24px;
  341. .account-box-wrap {
  342. position: relative;
  343. padding: 24px;
  344. background: #ffffff;
  345. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  346. border-radius: 4px;
  347. overflow: hidden;
  348. }
  349. .headOffline {
  350. width: 100%;
  351. height: 4px;
  352. background: #f25555;
  353. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  354. border-radius: 4px;
  355. position: absolute;
  356. left: 0;
  357. top: 0;
  358. }
  359. .headOnline {
  360. background: #6f81bc;
  361. width: 100%;
  362. height: 4px;
  363. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  364. border-radius: 4px;
  365. position: absolute;
  366. left: 0;
  367. top: 0;
  368. }
  369. .headDisabled {
  370. background: #cfd6e2;
  371. width: 100%;
  372. height: 4px;
  373. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  374. border-radius: 4px;
  375. position: absolute;
  376. left: 0;
  377. top: 0;
  378. }
  379. .el-row {
  380. margin: 8px 0;
  381. }
  382. .flexLeft {
  383. display: flex;
  384. justify-content: flex-end;
  385. flex-direction: row;
  386. }
  387. .del {
  388. cursor: pointer;
  389. i {
  390. font-size: 14px;
  391. font-weight: 600;
  392. color: #606266;
  393. }
  394. }
  395. .nameBox {
  396. display: flex;
  397. .name {
  398. font-size: 16px;
  399. font-weight: bold;
  400. color: #303133;
  401. max-width: 120px;
  402. white-space: nowrap;
  403. overflow: hidden;
  404. text-overflow: ellipsis;
  405. }
  406. .loger {
  407. width: 14px;
  408. height: 14px;
  409. margin-left: 24px;
  410. background: url('../../../assets/status/ic_edit_default.png') no-repeat;
  411. background-size: 100% 100%;
  412. cursor: pointer;
  413. }
  414. .loger:hover {
  415. background: url('../../../assets/status/ic_edit_hovar.png') no-repeat;
  416. background-size: 100% 100%;
  417. }
  418. }
  419. .content {
  420. margin-top: 14px;
  421. font-size: 14px;
  422. }
  423. .used {
  424. font-size: 14px;
  425. font-weight: 400;
  426. color: #2d67e3;
  427. }
  428. span {
  429. font-size: 16px;
  430. font-weight: 400;
  431. color: #909399;
  432. }
  433. }
  434. }
  435. .del-dialog {
  436. .del-content {
  437. font-size: 16px;
  438. font-family: Microsoft YaHei;
  439. font-weight: 400;
  440. color: #101611;
  441. .el-icon-error {
  442. vertical-align: sub;
  443. font-size: 26px;
  444. }
  445. }
  446. }
  447. }
  448. </style>