index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. size="small"
  7. :inline="true"
  8. v-show="showSearch"
  9. label-width="68px"
  10. >
  11. <el-form-item label="是否启用" prop="status">
  12. <el-select
  13. v-model="queryParams.status"
  14. placeholder="请选择"
  15. clearable
  16. filterable
  17. >
  18. <el-option
  19. v-for="dict in statusOpt"
  20. :key="dict.value"
  21. :label="dict.label"
  22. :value="dict.value"
  23. />
  24. </el-select>
  25. </el-form-item>
  26. <el-form-item>
  27. <el-button
  28. type="primary"
  29. icon="el-icon-search"
  30. size="mini"
  31. @click="handleQuery"
  32. >搜索</el-button
  33. >
  34. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
  35. >重置</el-button
  36. >
  37. </el-form-item>
  38. </el-form>
  39. <el-row :gutter="10" class="mb8">
  40. <el-col :span="1.5">
  41. <el-button
  42. type="primary"
  43. plain
  44. icon="el-icon-plus"
  45. size="mini"
  46. @click="handleAdd"
  47. v-if="checkPermi(['norm:NORMROLE:add'])"
  48. >新增</el-button
  49. >
  50. </el-col>
  51. <el-col :span="1.5">
  52. <el-button
  53. type="success"
  54. plain
  55. icon="el-icon-edit"
  56. size="mini"
  57. :disabled="single"
  58. @click="handleUpdate"
  59. v-if="checkPermi(['norm:NORMROLE:edit'])"
  60. >修改</el-button
  61. >
  62. </el-col>
  63. <el-col :span="1.5">
  64. <el-button
  65. type="danger"
  66. plain
  67. icon="el-icon-delete"
  68. size="mini"
  69. :disabled="multiple"
  70. @click="handleDelete"
  71. v-if="checkPermi(['norm:NORMROLE:remove'])"
  72. >删除</el-button
  73. >
  74. </el-col>
  75. <!-- <el-col :span="1.5">
  76. <el-button
  77. type="warning"
  78. plain
  79. icon="el-icon-download"
  80. size="mini"
  81. @click="handleExport"
  82. v-hasPermi="['business:NORMROLE:export']"
  83. >导出</el-button
  84. >
  85. </el-col> -->
  86. <right-toolbar
  87. :showSearch.sync="showSearch"
  88. @queryTable="getList"
  89. ></right-toolbar>
  90. </el-row>
  91. <el-table :data="NORMROLEList" @selection-change="handleSelectionChange">
  92. <el-table-column type="selection" width="55" align="center" />
  93. <el-table-column label="指标名称" align="center">
  94. <template slot-scope="scope">
  95. <!-- <el-link
  96. @click="tableBdClick(scope.row)"
  97. class="text-color"
  98. type="primaty"> -->
  99. {{ scope.row.fname }}
  100. <!-- </el-link> -->
  101. </template>
  102. </el-table-column>
  103. <el-table-column label="角色名称" align="center" prop="senId_dictText">
  104. </el-table-column>
  105. <el-table-column label="是否启用" align="center" prop="status">
  106. <template slot-scope="scope">
  107. <el-switch
  108. v-model="scope.row.status"
  109. @change="statusChange(scope.row)"
  110. ></el-switch>
  111. </template>
  112. </el-table-column>
  113. <el-table-column label="备注" align="center" prop="remark">
  114. </el-table-column>
  115. <el-table-column
  116. label="操作"
  117. align="center"
  118. class-name="small-padding fixed-width"
  119. >
  120. <template slot-scope="scope">
  121. <el-button
  122. size="mini"
  123. type="text"
  124. icon="el-icon-edit"
  125. @click="handleUpdate(scope.row)"
  126. v-if="checkPermi(['norm:NORMROLE:edit'])"
  127. >修改</el-button
  128. >
  129. <el-button
  130. size="mini"
  131. type="text"
  132. icon="el-icon-delete"
  133. @click="handleDelete(scope.row)"
  134. v-if="checkPermi(['norm:NORMROLE:remove'])"
  135. >删除</el-button
  136. >
  137. </template>
  138. </el-table-column>
  139. </el-table>
  140. <pagination
  141. v-show="total > 0"
  142. :total="total"
  143. :page.sync="queryParams.pageNum"
  144. :limit.sync="queryParams.pageSize"
  145. @pagination="getList"
  146. />
  147. <!-- 添加或修改指标采集权限配置对话框 -->
  148. <el-dialog :title="title" :visible.sync="open" width="35%" append-to-body>
  149. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  150. <el-form-item label="选择角色" prop="senId">
  151. <el-select filterable multiple v-model="form.senId" placeholder="请选择">
  152. <el-option
  153. v-for="item in roleList"
  154. :key="item.value"
  155. :label="item.roleName"
  156. :value="item.roleId + ''"
  157. >
  158. </el-option>
  159. </el-select>
  160. </el-form-item>
  161. <el-form-item label="选择指标" prop="feeId">
  162. <el-select filterable v-model="form.feeId" placeholder="请选择">
  163. <el-option
  164. v-for="item in indList"
  165. :key="item.value"
  166. :label="item.fname"
  167. :value="item.id"
  168. >
  169. </el-option>
  170. </el-select>
  171. </el-form-item>
  172. </el-form>
  173. <div slot="footer" class="dialog-footer">
  174. <el-button type="primary" @click="submitForm">确 定</el-button>
  175. <el-button @click="cancel">取 消</el-button>
  176. </div>
  177. </el-dialog>
  178. </div>
  179. </template>
  180. <script>
  181. import {
  182. listNORMROLE,
  183. getNORMROLE,
  184. delNORMROLE,
  185. addNORMROLE,
  186. updateNORMROLE,
  187. setNORMROLEStop,
  188. setNORMROLEStart,
  189. listAllNORMROLE,
  190. getNORMROLEAllList,
  191. } from "@/api/portal/RightDistribution/RightDistribution";
  192. import { listRole } from "@/api/system/role";
  193. import { checkPermi } from "@/utils/permission.js";
  194. export default {
  195. name: "NORMROLE",
  196. data() {
  197. return {
  198. roleValue: "",
  199. indValue: "",
  200. statusOpt: [
  201. {
  202. label: "未启用",
  203. value: 0,
  204. },
  205. {
  206. label: "启用",
  207. value: 1,
  208. },
  209. ],
  210. // 根路径
  211. baseURL: process.env.VUE_APP_BASE_API,
  212. // 遮罩层
  213. loading: true,
  214. // 选中数组
  215. ids: [],
  216. // 非单个禁用
  217. single: true,
  218. // 非多个禁用
  219. multiple: true,
  220. // 显示搜索条件
  221. showSearch: true,
  222. // 总条数
  223. total: 0,
  224. // 指标采集权限配置表格数据
  225. NORMROLEList: [],
  226. // 弹出层标题
  227. title: "",
  228. // 是否显示弹出层
  229. open: false,
  230. // 查询参数
  231. queryParams: {
  232. pageNum: 1,
  233. pageSize: 10,
  234. id: null,
  235. nsType: 1,
  236. createTime: null,
  237. createBy: null,
  238. updateTime: null,
  239. updateBy: null,
  240. delFlag: null,
  241. deptId: null,
  242. feeId: null,
  243. senId: null,
  244. status: null,
  245. startTime: null,
  246. stopTime: null,
  247. remark: null,
  248. },
  249. // 表单参数
  250. form: {},
  251. // 表单校验
  252. rules: {
  253. roleId: [{ required: true, message: "角色不能为空", trigger: "blur" }],
  254. ind: [{ required: true, message: "指标不能为空", trigger: "blur" }],
  255. deptId: [
  256. { required: true, message: "部门id不能为空", trigger: "blur" },
  257. ],
  258. feeId: [{ required: true, message: "指标不能为空", trigger: "blur" }],
  259. senId: [{ required: true, message: "角色不能为空", trigger: "blur" }],
  260. status: [
  261. {
  262. required: true,
  263. message: "是否启用(1=启用,0不启用)不能为空",
  264. trigger: "blur",
  265. },
  266. ],
  267. startTime: [
  268. { required: true, message: "启用时间不能为空", trigger: "blur" },
  269. ],
  270. stopTime: [
  271. { required: true, message: "停用时间不能为空", trigger: "blur" },
  272. ],
  273. remark: [{ required: true, message: "备注不能为空", trigger: "blur" }],
  274. },
  275. indList: [],
  276. roleList: [],
  277. };
  278. },
  279. created() {
  280. this.getList();
  281. this.getNormroleallList();
  282. this.getRoleList();
  283. },
  284. methods: {
  285. checkPermi,
  286. statusChange(val) {
  287. if (val.status == 0) {
  288. setNORMROLEStart(val.id).then((res) => {
  289. if (res.code == 200) {
  290. this.$message.success("修改成功");
  291. }
  292. });
  293. } else {
  294. setNORMROLEStop(val.id).then((res) => {
  295. if (res.code == 200) {
  296. this.$message.success("修改成功");
  297. }
  298. });
  299. }
  300. this.getList();
  301. },
  302. tableBdClick(data) {
  303. this.queryParams.id = data.senId;
  304. listNORMROLE(this.pageParams).then((res) => {
  305. });
  306. },
  307. // 查询指标采集权限配置所有列表
  308. getNormroleallList() {
  309. getNORMROLEAllList().then((res) => {
  310. this.indList = res.data;
  311. });
  312. },
  313. // 查询角色列表
  314. getRoleList() {
  315. listRole().then((res) => {
  316. this.roleList = res.rows;
  317. });
  318. },
  319. /** 查询指标采集权限配置列表 */
  320. getList() {
  321. this.loading = true;
  322. // this.queryParams.nsType = 2;
  323. listNORMROLE(this.queryParams).then((response) => {
  324. response.rows.forEach((item, index) => {
  325. response.rows[index].status = item.status == 0 ? false : true;
  326. });
  327. this.NORMROLEList = response.rows;
  328. this.total = response.total;
  329. this.loading = false;
  330. });
  331. },
  332. // 取消按钮
  333. cancel() {
  334. this.open = false;
  335. this.reset();
  336. },
  337. // 表单重置
  338. reset() {
  339. this.form = {
  340. id: null,
  341. delFlag: null,
  342. deptId: null,
  343. feeId: null,
  344. senId: null,
  345. status: null,
  346. startTime: null,
  347. stopTime: null,
  348. remark: null,
  349. };
  350. this.resetForm("form");
  351. },
  352. /** 搜索按钮操作 */
  353. handleQuery() {
  354. this.queryParams.pageNum = 1;
  355. this.getList();
  356. },
  357. /** 重置按钮操作 */
  358. resetQuery() {
  359. this.resetForm("queryForm");
  360. this.handleQuery();
  361. },
  362. // 多选框选中数据
  363. handleSelectionChange(selection) {
  364. this.ids = selection.map((item) => item.id);
  365. this.single = selection.length !== 1;
  366. this.multiple = !selection.length;
  367. },
  368. /** 新增按钮操作 */
  369. handleAdd() {
  370. this.reset();
  371. this.open = true;
  372. this.title = "添加指标采集权限配置";
  373. },
  374. /** 修改按钮操作 */
  375. handleUpdate(row) {
  376. this.reset();
  377. const id = row.id || this.ids;
  378. getNORMROLE(id).then((response) => {
  379. this.form = response.data;
  380. this.form.senId = this.form.senId.split(",");
  381. this.form.senId.forEach((item,i)=>{
  382. this.form.senId[i] = item;
  383. });
  384. this.open = true;
  385. this.title = "修改指标采集权限配置";
  386. });
  387. },
  388. /** 提交按钮 */
  389. submitForm() {
  390. this.$refs["form"].validate((valid) => {
  391. if (valid) {
  392. this.form.senId = this.form.senId.toString();
  393. if (this.form.id != null) {
  394. updateNORMROLE(this.form).then((response) => {
  395. this.$modal.msgSuccess("修改成功");
  396. this.open = false;
  397. this.getList();
  398. });
  399. } else {
  400. this.form.nsType = 1;
  401. this.form.status = 1;
  402. addNORMROLE(this.form).then((response) => {
  403. this.$modal.msgSuccess("新增成功");
  404. this.open = false;
  405. this.getList();
  406. });
  407. }
  408. }
  409. });
  410. },
  411. /** 删除按钮操作 */
  412. handleDelete(row) {
  413. const ids = row.id || this.ids;
  414. this.$modal
  415. .confirm('是否确认删除指标采集权限配置编号为"' + ids + '"的数据项?')
  416. .then(function () {
  417. return delNORMROLE(ids);
  418. })
  419. .then(() => {
  420. this.getList();
  421. this.$modal.msgSuccess("删除成功");
  422. })
  423. .catch(() => {});
  424. },
  425. /** 导出按钮操作 */
  426. handleExport() {
  427. this.download(
  428. "/NORMROLE/export",
  429. {
  430. ...this.queryParams,
  431. },
  432. `NORMROLE_${new Date().getTime()}.xlsx`
  433. );
  434. },
  435. },
  436. };
  437. </script>