index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <template>
  2. <div class="application account scroll-y">
  3. <div class="application-head flex">
  4. <div class="manageTitle">账号管理</div>
  5. <div class="flex-wrap">
  6. <Search @clear="clear" @search="search" />
  7. <el-button v-permission="['add_account_button']" size="default" @click="addApp" plain>新增</el-button>
  8. </div>
  9. </div>
  10. <div class="application-content flex">
  11. <div class="box account-tree">
  12. <el-tree :data="data" :props="defaultProps" node-key="user_group_id" default-expand-all :expand-on-click-node="false" @node-click="handleNodeClick" />
  13. </div>
  14. <Table class="account-table" btnGroupWidth="250px" :tableHeader="tableHeader" @btnClick="btnClick" :tableBtnGroup="tableBtnGroup" :tableData="tableData" />
  15. </div>
  16. <!--删除弹框-->
  17. <Dialog :flag="flag" msgTitle="删除账号" type="del" :delName="title" @delRest="delRest" @delRemove="remove" />
  18. <!--新增/编辑-->
  19. <Dialog :flag="editDialogVisible" :msgTitle="editDialogTitle" @submitForm="submitForm(ruleFormRef)" @resetForm="resetForm(ruleFormRef)" :show-flag="true">
  20. <el-form ref="ruleFormRef" :model="ruleForm" label-width="110px" class="demo-ruleForm">
  21. <el-form-item label="账号名称" :rules="[{required: true,message: '请输入账号名称',trigger: 'blur',}]" prop="user_name">
  22. <el-input :disabled="dT == 'edit'" v-model="ruleForm.user_name" size="default" placeholder="请输入账号名称" />
  23. </el-form-item>
  24. <el-form-item label="账号密码" :rules="[{required: true,message: '请输入账号密码',trigger: 'blur',}]" prop="user_pwd">
  25. <el-input v-model="ruleForm.user_pwd" type="password" show-password size="default" placeholder="请输入账号密码" />
  26. </el-form-item>
  27. <el-form-item label="账号组关联" prop="user_gropu_id">
  28. <el-select size="default" style="width: 100%" v-model="ruleForm.user_group_id" placeholder="请选择">
  29. <el-option v-for="item in options" :key="item.v" :label="item.k" :value="item.v"> </el-option>
  30. </el-select>
  31. </el-form-item>
  32. <el-form-item label="账号描述" prop="user_comment">
  33. <el-input v-model="ruleForm.user_comment" size="default" type="textarea" :rows="3" placeholder="请输入账号描述" />
  34. </el-form-item>
  35. <el-form-item label="是否启用" :rules="[{required: true,message: '请选择是否启用',trigger: 'change',}]" prop="user_status">
  36. <el-radio-group v-model="ruleForm.user_status">
  37. <el-radio :label="ruleForm.user_status != '0' && ruleForm.user_status == '1' ? '1' : '2'">启用</el-radio>
  38. <el-radio label="0">禁用</el-radio>
  39. </el-radio-group>
  40. </el-form-item>
  41. </el-form>
  42. </Dialog>
  43. </div>
  44. </template>
  45. <script setup lang="ts">
  46. import { ref, reactive, onBeforeMount } from "vue";
  47. import { ElMessage, FormInstance, FormRules } from "element-plus";
  48. import Table from "@/components/tableTemp/index.vue";
  49. import Search from "@/components/search/index.vue";
  50. import Dialog from "@/components/dialog/index.vue";
  51. import { translateDataToTreeAll } from "@/utils/validate";
  52. import { GeneralDataReception, Query } from "@/api/webApi";
  53. import * as _ from "lodash";
  54. import MD5 from "blueimp-md5";
  55. import table from "../hooks/useTable";
  56. const router = useRouter();
  57. const ruleFormRef = ref<FormInstance>();
  58. const tableHeader = ref<any>([]);
  59. const tableData = ref<any>([]);
  60. const tableBtnGroup = <any>[
  61. {
  62. name: "编辑",
  63. className: "editBtn",
  64. param: "edit",
  65. is: "account_editing_button",
  66. },
  67. {
  68. name: "查看权限",
  69. className: "editBtn",
  70. param: "auth",
  71. is: "account_authorization_button",
  72. },
  73. {
  74. name: "删除",
  75. className: "delBtn",
  76. param: "del",
  77. is: "account_deletion_button",
  78. },
  79. ];
  80. const flag = ref(false);
  81. const title = ref("");
  82. const dT = ref("add");
  83. const editDialogVisible = ref(false);
  84. const editDialogTitle = ref("新增账号");
  85. const ruleForm = ref<any>({
  86. user_name: "",
  87. user_comment: "",
  88. user_status: "",
  89. user_pwd: "",
  90. user_group_id: "",
  91. });
  92. const rowIndex = ref<any>({});
  93. const data = ref<any>([]);
  94. const options = ref<any>([]);
  95. const msgId = ref(null);
  96. const msgType = ref("all");
  97. const PageIndex = ref(1);
  98. const searchInfo = ref("");
  99. const pwdInfo = ref(null);
  100. const submitID = ref<any>("");
  101. //获取用户组
  102. const getGroup = async () => {
  103. const { code, returnData } = await Query({
  104. id: DATACONTENT_ID.accountGroupTableId,
  105. dataContent: [""],
  106. });
  107. if (code == 0 && returnData.listValues) {
  108. const dataObj = {
  109. user_group_id: -1,
  110. up_user_group_id: -2,
  111. user_group_name: "全部用户组",
  112. children: translateDataToTreeAll(
  113. returnData.listValues,
  114. "up_user_group_id",
  115. "user_group_id"
  116. ),
  117. };
  118. data.value = [dataObj];
  119. } else {
  120. const dataObj = {
  121. user_group_id: -1,
  122. up_user_group_id: -2,
  123. user_group_name: "全部用户组",
  124. children: [],
  125. };
  126. data.value = [dataObj];
  127. }
  128. };
  129. //获取table
  130. const accountList = async (type?: string) => {
  131. let result: any = null;
  132. if (msgType.value == "all") {
  133. result = await Query({
  134. id: DATACONTENT_ID.accountTableId,
  135. needPage: PageIndex.value,
  136. dataContent: [searchInfo.value],
  137. });
  138. } else {
  139. result = await Query({
  140. id:
  141. type == "tree"
  142. ? DATACONTENT_ID.accountGroupDetailsId
  143. : DATACONTENT_ID.accountTableId,
  144. dataContent: type == "tree" ? [msgId.value] : [searchInfo.value],
  145. needPage: PageIndex.value,
  146. });
  147. }
  148. const { code, returnData, message } = result;
  149. if (code == 0) {
  150. const { columnSet, listValues } = returnData;
  151. tableHeader.value = columnSet.map((column) => ({
  152. ...column,
  153. formatter:
  154. column.columnName === "user_status"
  155. ? function (row, column, cellValue, index) {
  156. return ["1", "2"].includes(String(cellValue)) ? "启用" : "禁用";
  157. }
  158. : undefined,
  159. }));
  160. tableData.value = listValues;
  161. submitID.value = returnData.submitID;
  162. } else {
  163. ElMessage.error(message);
  164. }
  165. };
  166. // 回到第一页
  167. const pageInit = () => {
  168. PageIndex.value = 1;
  169. tableHeader.value = [];
  170. tableData.value = [];
  171. accountList();
  172. };
  173. const btnAuthMap = [
  174. ,
  175. "add_account_button",
  176. "account_editing_button",
  177. "account_deletion_button",
  178. ];
  179. //增删改
  180. const dataChange = async (event, data) => {
  181. const { code, message } = await table.dataChange(
  182. submitID.value,
  183. event,
  184. {
  185. ...data,
  186. user_status: data.user_status != 0 ? 2 : 0,
  187. },
  188. btnAuthMap[event]
  189. );
  190. if (code == 0) {
  191. ElMessage.success(message);
  192. pageInit();
  193. } else {
  194. ElMessage.error(message);
  195. }
  196. };
  197. //获取账号组
  198. const getGroupSelect = async () => {
  199. const res = await Query({
  200. id: DATACONTENT_ID.accountGroupSelId,
  201. dataContent: [],
  202. });
  203. if (res.code == 0) {
  204. const { listValues } = res.returnData;
  205. options.value = listValues;
  206. } else {
  207. ElMessage.error(res.message);
  208. }
  209. };
  210. onBeforeMount(() => {
  211. getGroup();
  212. accountList();
  213. getGroupSelect();
  214. });
  215. const handleNodeClick = (data) => {
  216. tableHeader.value = [];
  217. tableData.value = [];
  218. if (data.user_group_id != -1 && data.up_user_group_id != -2) {
  219. PageIndex.value = 1;
  220. msgType.value = "cld";
  221. msgId.value = data.user_group_id;
  222. accountList("tree");
  223. } else {
  224. msgType.value = "all";
  225. clear();
  226. }
  227. };
  228. const defaultProps = {
  229. children: "children",
  230. label: "user_group_name",
  231. };
  232. const search = (val) => {
  233. searchInfo.value = val;
  234. pageInit();
  235. };
  236. const clear = () => {
  237. searchInfo.value = "";
  238. pageInit();
  239. };
  240. const btnClick = (index, row, param) => {
  241. rowIndex.value = row;
  242. if (param == "del") {
  243. flag.value = true;
  244. title.value = row.user_name;
  245. } else if (param == "edit") {
  246. dT.value = "edit";
  247. editDialogVisible.value = true;
  248. pwdInfo.value = row.user_pwd;
  249. editDialogTitle.value = "编辑账号";
  250. ruleForm.value = _.cloneDeep(row);
  251. console.log(ruleForm.value);
  252. } else {
  253. router.push({
  254. path: "/userManagement/account/accountAuth",
  255. query: {
  256. id: row.user_id,
  257. },
  258. });
  259. }
  260. };
  261. const delRest = () => {
  262. flag.value = false;
  263. };
  264. const remove = () => {
  265. if (rowIndex.value.AuthCount != undefined) {
  266. delete rowIndex.value.AuthCount;
  267. }
  268. dataChange(3, rowIndex.value);
  269. flag.value = false;
  270. };
  271. const addApp = () => {
  272. editDialogVisible.value = true;
  273. editDialogTitle.value = "新增账号";
  274. dT.value = "add";
  275. ruleForm.value = {};
  276. };
  277. const submitForm = async (formEl: FormInstance | undefined) => {
  278. if (!formEl) return;
  279. await formEl.validate((valid, fields) => {
  280. if (valid) {
  281. if (dT.value == "add") {
  282. ruleForm.value.user_pwd = MD5(ruleForm.value.user_pwd);
  283. dataChange(1, ruleForm.value);
  284. } else {
  285. if (ruleForm.value.user_pwd === pwdInfo.value) {
  286. dataChange(2, ruleForm.value);
  287. } else {
  288. ruleForm.value.user_pwd = MD5(ruleForm.value.user_pwd);
  289. dataChange(2, ruleForm.value);
  290. }
  291. }
  292. editDialogVisible.value = false;
  293. } else {
  294. console.log("error submit!", fields);
  295. }
  296. });
  297. };
  298. const resetForm = (formEl: FormInstance | undefined) => {
  299. if (!formEl) return;
  300. formEl.resetFields();
  301. editDialogVisible.value = false;
  302. };
  303. </script>
  304. <style lang="scss" scoped>
  305. .application {
  306. &-content {
  307. margin-top: 24px;
  308. height: calc(100% - 56px);
  309. }
  310. }
  311. .account {
  312. &-tree {
  313. width: 488px;
  314. margin-right: 24px;
  315. }
  316. &-table {
  317. flex: 1;
  318. }
  319. }
  320. </style>