index.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <template>
  2. <div class="bf-rolelist">
  3. <!-- 角色列表 -->
  4. <div class="cont">
  5. <div v-if="title" class="paren_header">
  6. <p>{{ title }}</p>
  7. </div>
  8. <template v-if="dataList.length">
  9. <div :class="active ? 'bgActive' : 'bgActivecheckbox'" class="paren_content">
  10. <template v-if="!type">
  11. <el-row v-infinite-scroll="load" :infinite-scroll-distance="20" infinite-scroll-disabled="disabled" class="scCont scrollbar" :gutter="16">
  12. <el-checkbox-group @change="checkChange" v-model="checkList">
  13. <el-col :span="number" v-for="(item, index) in dataList" :key="index">
  14. <div @click="handleBg(item, index)" :class="active && msg === index ? 'bgColor' : ''" class="cide">
  15. <div class="cide_header">
  16. <p :title="item.name">{{ item.name }}</p>
  17. <el-checkbox :label="index"></el-checkbox>
  18. </div>
  19. </div>
  20. </el-col>
  21. </el-checkbox-group>
  22. </el-row>
  23. </template>
  24. <template v-if="roleType && (roleType == 'account' || roleType == 'onlyRole')">
  25. <p class="center" v-if="loading">加载中...</p>
  26. <p class="center" v-if="noMore">没有更多数据了~</p>
  27. </template>
  28. </div>
  29. </template>
  30. <template v-else-if="mainData.length">
  31. <div :class="active ? 'bgActive' : 'bgActivecheckbox'" class="paren_content">
  32. <template v-if="type">
  33. <el-row :gutter="16">
  34. <el-radio-group style="display: block" @change="radioChange" v-model="radio">
  35. <el-col :span="number" v-for="(item, index) in mainData" :key="index">
  36. <div @click.stop="handleBg(index)" :class="active && msg === index ? 'bgColor' : ''" class="cide">
  37. <div class="cide_header">
  38. <p>{{ item.name }}</p>
  39. <el-radio :label="index"></el-radio>
  40. </div>
  41. </div>
  42. </el-col>
  43. </el-radio-group>
  44. </el-row>
  45. </template>
  46. </div>
  47. </template>
  48. <template v-else>
  49. <el-empty description="暂无数据"></el-empty>
  50. </template>
  51. </div>
  52. </div>
  53. </template>
  54. <script>
  55. import { GetAccountList } from "@/api/Account";
  56. import { GetRoleByGroup } from "@/api/AccountGroup";
  57. import { QueryRole } from '@/api/apiAuthority';
  58. export default {
  59. props: {
  60. title: {
  61. type: String,
  62. default: "",
  63. },
  64. type: {
  65. type: Boolean,
  66. default: false,
  67. },
  68. number: {
  69. type: Number,
  70. default: 3,
  71. },
  72. active: {
  73. type: Boolean,
  74. default: false,
  75. },
  76. checkBoxList: {
  77. type: Array,
  78. default: () => [],
  79. },
  80. mainData: {
  81. type: Array,
  82. default: () => [],
  83. },
  84. radioCheck: {
  85. type: Number,
  86. default: 0,
  87. },
  88. roleType: {
  89. type: String,
  90. default: "",
  91. },
  92. GroupIds: {
  93. type: Array,
  94. default: () => [],
  95. },
  96. },
  97. data () {
  98. return {
  99. radio: null,
  100. checkList: [],
  101. dataList: [],
  102. arrsList: [],
  103. msg: null,
  104. pageSize: 100,
  105. pageNum: 1,
  106. total: "",
  107. loading: false,
  108. };
  109. },
  110. watch: {
  111. radioCheck: {
  112. handler (num) {
  113. this.radio = num;
  114. },
  115. deep: true,
  116. },
  117. roleType: {
  118. handler (msg) {
  119. if (msg == 'account') {
  120. this.getRoleData('UserId', 'UserName');
  121. }
  122. if (msg == "roleByUpId") {
  123. this.getRoleDataByUpId("roleId");
  124. }
  125. if (msg == "onlyRole") {
  126. this.getRoleData('RoleId', 'RoleName');
  127. }
  128. },
  129. deep: true,
  130. },
  131. dataList: {
  132. handler (arr) {
  133. if (this.roleType == "account") {
  134. this.checkBoxs(arr, this.checkBoxList, "UserId");
  135. }
  136. if (this.roleType == "role") {
  137. this.checkRole(arr);
  138. }
  139. if (this.roleType == "onlyRole") {
  140. this.checkRole(arr);
  141. }
  142. },
  143. deep: true,
  144. },
  145. checkBoxList: {
  146. handler (arr) {
  147. if (this.roleType == "roleByUpId") {
  148. const datas = [];
  149. this.dataList.forEach((item, index) => {
  150. arr.forEach((p) => {
  151. if (item.RoleId == p.RoleId) {
  152. datas.push(index);
  153. }
  154. });
  155. });
  156. this.checkList = datas;
  157. }
  158. // console.log(this.dataList)
  159. // this.checkBoxs(this.dataList, arr, "RoleId");
  160. },
  161. deep: true,
  162. },
  163. GroupIds: {
  164. handler () {
  165. this.getRoleDataByUpId();
  166. },
  167. deep: true
  168. }
  169. },
  170. computed: {
  171. noMore () {
  172. return this.pageNum >= this.total;
  173. },
  174. disabled () {
  175. return this.loading || this.noMore;
  176. },
  177. },
  178. methods: {
  179. // 选中
  180. handleBg (item, i) {
  181. this.msg = i;
  182. this.$emit("checkClick", item);
  183. },
  184. //多选框
  185. checkChange (arr) {
  186. const datas = this.formatChecks(arr);
  187. // if (this.roleType == 'account') {
  188. // datas = this.formatChecks(arr, 'UserId');
  189. // }
  190. this.$emit("checkChange", datas);
  191. },
  192. //单选框
  193. radioChange (val) {
  194. this.$emit("radioChange", val);
  195. },
  196. //格式化选中回调
  197. formatChecks (arr, key) {
  198. const datas = [];
  199. // const ids = []
  200. this.dataList.forEach((item, index) => {
  201. arr.forEach((p) => {
  202. if (index == p) {
  203. datas.push(item);
  204. }
  205. });
  206. });
  207. // datas.forEach(item => {
  208. // ids.push(item[key])
  209. // })
  210. return datas;
  211. },
  212. //多选框默认选中
  213. checkBoxs (arr, msgs, ids) {
  214. const datas = [];
  215. arr.forEach((item, index) => {
  216. msgs.forEach((p) => {
  217. if (item[ids] == p) {
  218. datas.push(index);
  219. }
  220. });
  221. });
  222. this.checkList = datas;
  223. },
  224. checkRole (arr) {
  225. const datas = [];
  226. arr.forEach((item, index) => {
  227. this.checkBoxList.forEach((p) => {
  228. if (item.RoleId == p.RoleId) {
  229. datas.push(index);
  230. }
  231. });
  232. });
  233. this.checkList = datas;
  234. },
  235. //获取列表
  236. async getRoleData (ids, names) {
  237. try {
  238. this.loading = true;
  239. const obj = {
  240. QueryName: "",
  241. PageIndex: this.pageNum,
  242. PageSize: this.pageSize,
  243. };
  244. let result = null;
  245. if (this.roleType == "account") {
  246. result = await GetAccountList(obj);
  247. }
  248. if (this.roleType == "onlyRole") {
  249. result = await QueryRole(obj);
  250. }
  251. if (result.code === 0) {
  252. const datas = result.returnData.records;
  253. const num = result.returnData.pages;
  254. this.arrsList.push(datas);
  255. const arrs = this.arrsList.flat();
  256. const msgs = _.unionBy(arrs, ids);
  257. msgs.forEach(item => {
  258. item.name = item[names]
  259. });
  260. this.dataList = msgs;
  261. this.total = num;
  262. this.loading = false;
  263. } else {
  264. this.$message.error(result.message);
  265. this.loading = false;
  266. }
  267. } catch (error) {
  268. console.log("出错了", error);
  269. this.loading = false;
  270. }
  271. },
  272. //获取列表2
  273. async getRoleDataByUpId () {
  274. try {
  275. this.loading = true;
  276. const obj = {
  277. GroupIds: this.GroupIds
  278. };
  279. const result = await GetRoleByGroup(obj);
  280. if (result.code === 0) {
  281. const datas = result.returnData;
  282. const msgs = [];
  283. if (datas.length) {
  284. datas.forEach(item => {
  285. item.name = item.RoleName
  286. if (item.IsSelected) {
  287. msgs.push(item);
  288. }
  289. })
  290. this.dataList = msgs;
  291. } else {
  292. this.dataList = msgs;
  293. }
  294. // this.checkBoxs(this.dataList, "RoleId");
  295. this.loading = false;
  296. } else {
  297. this.$message.error(result.message);
  298. this.loading = false;
  299. }
  300. } catch (error) {
  301. console.log("出错了", error);
  302. this.loading = false;
  303. }
  304. },
  305. //滚动加载数据
  306. load () {
  307. this.pageNum += 1;
  308. if (this.roleType == 'account') {
  309. this.getRoleData('UserId', 'UserName');
  310. }
  311. if (this.roleType == 'onlyRole') {
  312. this.getRoleData('RoleId', 'RoleName');
  313. }
  314. },
  315. },
  316. };
  317. </script>
  318. <style lang="scss" scoped>
  319. @import "./rolelist.scss";
  320. .paren_content {
  321. ::v-deep .el-radio__label {
  322. display: none;
  323. }
  324. ::v-deep .el-checkbox__label {
  325. display: none;
  326. }
  327. .scCont {
  328. height: 65vh;
  329. overflow-x: hidden;
  330. overflow-y: auto;
  331. }
  332. }
  333. </style>