addEdit.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="title"
  5. :center="true"
  6. align="left"
  7. top="10vh"
  8. width="750px"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. element-loading-text="拼命加载中"
  12. element-loading-spinner="el-icon-loading"
  13. element-loading-background="rgba(0, 0, 0, 0.8)"
  14. append-to-body
  15. @close="closeModel"
  16. >
  17. <el-card style="margin-top: -20px">
  18. <el-form
  19. ref="ruleForm"
  20. :model="ruleForm"
  21. is_show-icon
  22. :rules="rulesThis"
  23. label-width="100px"
  24. class="demo-ruleForm"
  25. >
  26. <el-row>
  27. <el-col :span="24">
  28. <el-form-item v-if="level < 3" label="名称:" prop="name">
  29. <el-input
  30. v-model="ruleForm.name"
  31. :disabled="isDetail"
  32. placeholder="例如:用户管理"
  33. />
  34. </el-form-item>
  35. <el-form-item v-if="level === 3" label="按钮标识:" prop="code">
  36. <el-select
  37. v-model="ruleForm.code"
  38. placeholder="请选择按钮标识"
  39. clearable
  40. filterable
  41. :disabled="isDetail"
  42. @change="codeChange"
  43. >
  44. <el-option
  45. v-for="item in btnList"
  46. :key="item.code"
  47. :label="item.name"
  48. :value="item.code"
  49. />
  50. </el-select>
  51. </el-form-item>
  52. <el-row>
  53. <el-col :span="12" v-if="level < 3">
  54. <el-form-item label="路由:" prop="route">
  55. <el-input
  56. v-model="ruleForm.route"
  57. :disabled="isDetail"
  58. placeholder="例如:user"
  59. />
  60. </el-form-item>
  61. </el-col>
  62. <el-col :span="12" v-if="level < 3">
  63. <el-form-item label="图标:" prop="img">
  64. <el-row :gutter="10">
  65. <el-col v-if="ruleForm.img" :span="3" style="width: 45px">
  66. <div class="g-block" @click="showIconModel = true">
  67. <i :class="ruleForm.img" />
  68. </div>
  69. </el-col>
  70. <el-col v-if="!ruleForm.img" :span="7">
  71. <el-button
  72. type="warning"
  73. size="mini"
  74. @click="showIconModel = true"
  75. >
  76. 选择图标
  77. </el-button>
  78. </el-col>
  79. </el-row>
  80. <iconDialog
  81. :show-model="showIconModel"
  82. @setVal="setVal"
  83. @cancel="showIconModel = false"
  84. />
  85. </el-form-item>
  86. </el-col>
  87. </el-row>
  88. <el-form-item
  89. v-if="level === 2"
  90. label="页面路径:"
  91. prop="component"
  92. >
  93. <el-input
  94. v-model="ruleForm.component"
  95. :disabled="isDetail"
  96. placeholder="例如:park/user"
  97. >
  98. <template slot="prepend">views/</template>
  99. </el-input>
  100. </el-form-item>
  101. <el-row>
  102. <el-col :span="12">
  103. <el-form-item label="状态:" prop="is_show">
  104. <el-radio
  105. v-model="ruleForm.is_show"
  106. :label="'1'"
  107. :disabled="isDetail"
  108. >
  109. 启用
  110. </el-radio>
  111. <el-radio
  112. v-model="ruleForm.is_show"
  113. :label="'0'"
  114. :disabled="isDetail"
  115. >
  116. 禁用
  117. </el-radio>
  118. </el-form-item>
  119. </el-col>
  120. <el-col :span="12">
  121. <el-form-item
  122. label="页面状态:"
  123. v-if="level < 3"
  124. prop="is_display"
  125. >
  126. <el-radio
  127. v-model="ruleForm.is_display"
  128. :label="'1'"
  129. :disabled="isDetail"
  130. >
  131. 显示
  132. </el-radio>
  133. <el-radio
  134. v-model="ruleForm.is_display"
  135. :label="'0'"
  136. :disabled="isDetail"
  137. >
  138. 隐藏
  139. </el-radio>
  140. </el-form-item>
  141. </el-col>
  142. </el-row>
  143. <el-form-item v-if="level < 3" label="排序权重:" prop="weight">
  144. <el-row :gutter="10">
  145. <el-col :span="16" style="padding: 0">
  146. <el-input
  147. v-model.number="ruleForm.weight"
  148. type="number"
  149. :disabled="isDetail"
  150. />
  151. </el-col>
  152. <el-col :span="7">
  153. <el-tag type="danger">数值越大排名越靠前</el-tag>
  154. </el-col>
  155. </el-row>
  156. </el-form-item>
  157. </el-col>
  158. </el-row>
  159. </el-form>
  160. <el-col :span="24" style="text-align: right;padding:0 0 10px 0">
  161. <el-button v-if="!isDetail" type="primary" @click="submitForm">
  162. 保 存
  163. </el-button>
  164. <el-button @click="showModelThis = false">{{
  165. isDetail ? "关 闭" : "取 消"
  166. }}</el-button>
  167. </el-col>
  168. </el-card>
  169. </el-dialog>
  170. </template>
  171. <script>
  172. import asyncRequest from "@/apis/service/system/menu";
  173. import btnList from "@/assets/js/btnList";
  174. import iconDialog from "@/views/system/menuOperator/iconDialog";
  175. import resToken from "@/mixins/resToken";
  176. export default {
  177. components: {
  178. iconDialog,
  179. },
  180. mixins: [resToken],
  181. props: [
  182. "showModel",
  183. "id",
  184. "isDetail",
  185. "parentIds",
  186. "level",
  187. "isAdd",
  188. "type",
  189. "formData",
  190. ],
  191. data() {
  192. return {
  193. loading: false,
  194. showIconModel: false,
  195. title: "",
  196. btnList,
  197. showModelThis: this.showModel,
  198. ruleForm: {},
  199. rulesThis: this.rules,
  200. rules: {
  201. name: [
  202. {
  203. required: true,
  204. message: "请输入名称",
  205. trigger: "blur",
  206. },
  207. {
  208. min: 1,
  209. max: 50,
  210. message: "长度在 1 到 50 个字符",
  211. trigger: "blur",
  212. },
  213. ],
  214. code: [
  215. {
  216. required: true,
  217. message: "请输入按钮标识编码(用于判断按钮是否显示)",
  218. trigger: "change",
  219. },
  220. ],
  221. img: [
  222. {
  223. required: true,
  224. message: "请选择图标",
  225. trigger: "blur",
  226. },
  227. ],
  228. route: [
  229. {
  230. required: true,
  231. message: "请输入路由",
  232. trigger: "blur",
  233. },
  234. {
  235. min: 1,
  236. max: 50,
  237. message: "长度在 1 到 50 个字符",
  238. trigger: "blur",
  239. },
  240. ],
  241. component: [
  242. {
  243. required: true,
  244. message: "请输入页面组件路径",
  245. trigger: "blur",
  246. },
  247. {
  248. min: 1,
  249. max: 100,
  250. message: "长度在 1 到 100 个字符",
  251. trigger: "blur",
  252. },
  253. ],
  254. weight: [
  255. {
  256. required: true,
  257. message: "请输入权重,数值越大排名越靠前",
  258. trigger: "blur",
  259. },
  260. ],
  261. is_show: [
  262. {
  263. required: true,
  264. message: "请选择状态",
  265. trigger: "change",
  266. },
  267. ],
  268. is_display: [
  269. {
  270. required: true,
  271. message: "请选择页面状态",
  272. trigger: "change",
  273. },
  274. ],
  275. },
  276. };
  277. },
  278. watch: {
  279. showModel: function (val) {
  280. this.showModelThis = val;
  281. if (val) {
  282. this.initForm();
  283. }
  284. },
  285. showModelThis(val) {
  286. if (!val) {
  287. this.$emit("cancel");
  288. }
  289. },
  290. },
  291. methods: {
  292. closeModel() {
  293. console.log("closeModel!!");
  294. },
  295. codeChange(code) {
  296. for (let i = 0; i < this.btnList.length; i++) {
  297. if (this.btnList[i].code === code) {
  298. this.ruleForm.name = this.btnList[i].name;
  299. break;
  300. }
  301. }
  302. },
  303. setVal(val) {
  304. this.ruleForm.img = val;
  305. this.$refs.ruleForm.validateField("img");
  306. },
  307. async initForm() {
  308. if (this.isAdd) {
  309. if (this.level === 1) {
  310. this.title = "添加一级菜单";
  311. } else if (this.level === 2) {
  312. this.title = "添加二级菜单";
  313. } else {
  314. this.title = "添加按钮";
  315. }
  316. this.loading = false;
  317. this.rulesThis = this.rules;
  318. await this.resetForm();
  319. } else {
  320. if (this.isDetail) {
  321. if (this.level === 1) {
  322. this.title = "一级菜单详情";
  323. } else if (this.level === 2) {
  324. this.title = "二级菜单详情";
  325. } else {
  326. this.title = "按钮详情";
  327. }
  328. this.rulesThis = {};
  329. } else {
  330. if (this.level === 1) {
  331. this.title = "修改一级菜单";
  332. } else if (this.level === 2) {
  333. this.title = "修改二级菜单";
  334. } else {
  335. this.title = "修改按钮";
  336. }
  337. this.rulesThis = this.rules;
  338. }
  339. await this.initData();
  340. }
  341. },
  342. async initData() {
  343. this.loading = true;
  344. let parentIds = "";
  345. if (this.isAdd) {
  346. if (this.id === 0) {
  347. parentIds = "0";
  348. } else {
  349. parentIds = this.parentIds;
  350. }
  351. } else {
  352. parentIds = this.parentIds;
  353. }
  354. const {
  355. menu_name,
  356. menu_img,
  357. menu_route,
  358. is_show,
  359. weight,
  360. status,
  361. menu_url,
  362. menuid,
  363. action_name,
  364. action_code,
  365. is_display,
  366. } = this.formData;
  367. if (this.level !== 3) {
  368. // 重置
  369. this.ruleForm = {
  370. parentId: this.id + "", // 父级ID(一级为0)
  371. parentIds: parentIds + "", // 所有父级编号(用逗号分隔)
  372. name: menu_name + "", // 名称
  373. code: "", // 编码(用于按钮是否显示)
  374. img: menu_img + "", // 图标(导航图标)
  375. route: menu_route + "", // 路由
  376. component: this.level === 1 ? "" : menu_url + "", // 页面组件
  377. menuCategory: 1 + "", // 菜单类别(1.导航菜单 2.按钮)
  378. type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
  379. is_show: is_show + "", // 状态(1启用 0禁用)
  380. is_display: is_display + "",
  381. weight: parseInt(weight + ""), // 权重,越大越靠前
  382. };
  383. if (this.level === 1) {
  384. delete this.ruleForm["parentIds"];
  385. }
  386. } else {
  387. this.ruleForm = {
  388. parentId: this.id + "", // 父级ID(一级为0)
  389. parentIds: menuid + "", // 所有父级编号(用逗号分隔)
  390. name: action_name + "", // 名称
  391. code: action_code + "", // 编码(用于按钮是否显示)
  392. img: "", // 图标(导航图标)
  393. route: "", // 路由
  394. component: "", // 页面组件
  395. menuCategory: 2 + "", // 菜单类别(1.导航菜单 2.按钮)
  396. type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
  397. is_show: status + "", // 状态(1启用 0禁用)
  398. weight: 1 + "", // 权重,越大越靠前
  399. };
  400. }
  401. this.loading = false;
  402. await this.$nextTick(() => {
  403. if (this.$refs.ruleForm) {
  404. this.$refs.ruleForm.clearValidate();
  405. }
  406. });
  407. },
  408. async resetForm() {
  409. let parentIds = "";
  410. if (this.isAdd) {
  411. if (this.id === 0) {
  412. parentIds = "0";
  413. } else {
  414. parentIds = this.parentIds;
  415. }
  416. } else {
  417. parentIds = this.parentIds;
  418. }
  419. // 重置
  420. this.ruleForm = {
  421. parentId: this.id, // 父级ID(一级为0)
  422. parentIds, // 所有父级编号(用逗号分隔)
  423. name: "", // 名称
  424. code: "", // 编码(用于按钮是否显示)
  425. img: "", // 图标(导航图标)
  426. route: "", // 路由
  427. component: "", // 页面组件
  428. menuCategory: this.level < 3 ? 1 : 2, // 菜单类别(1.导航菜单 2.按钮)
  429. type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
  430. is_show: "1", // 状态(1启用 0禁用)
  431. is_display: "1", // 页面状态(1显示 0隐藏)
  432. weight: 1, // 权重,越大越靠前
  433. };
  434. await this.$nextTick(() => {
  435. if (this.$refs.ruleForm) {
  436. this.$refs.ruleForm.clearValidate();
  437. }
  438. });
  439. },
  440. async submitForm() {
  441. if (this.loading) {
  442. return false;
  443. }
  444. this.loading = true;
  445. await this.$refs.ruleForm.validate(async (valid) => {
  446. if (valid) {
  447. let model = {};
  448. let res = {};
  449. const {
  450. name,
  451. img,
  452. route,
  453. is_show,
  454. is_display,
  455. weight,
  456. component,
  457. code,
  458. } = this.ruleForm;
  459. model = {
  460. id: this.id,
  461. pid: this.parentIds,
  462. menuid: this.parentIds,
  463. name: name,
  464. img: img,
  465. is_show: is_show,
  466. weight: weight,
  467. route: route,
  468. is_display: is_display,
  469. url: component,
  470. action_code: code,
  471. status: is_show,
  472. };
  473. if (this.level === 1) {
  474. delete model["pid"];
  475. delete model["menuid"];
  476. delete model["url"];
  477. delete model["action_code"];
  478. delete model["status"];
  479. } else if (this.level === 2) {
  480. delete model["menuid"];
  481. delete model["action_code"];
  482. delete model["status"];
  483. } else {
  484. delete model["pid"];
  485. delete model["img"];
  486. delete model["is_show"];
  487. delete model["weight"];
  488. delete model["route"];
  489. delete model["is_display"];
  490. delete model["url"];
  491. }
  492. if (this.isAdd) {
  493. delete model["id"];
  494. }
  495. if (this.level < 3) {
  496. res = await asyncRequest.update(model);
  497. } else {
  498. if (this.isAdd) {
  499. res = await asyncRequest.actionadd(model);
  500. } else {
  501. res = await asyncRequest.actionedit(model);
  502. }
  503. }
  504. this.loading = false;
  505. if (res && res.code === 0) {
  506. this.ruleForm = {};
  507. const title = this.isAdd ? "添加成功" : "修改成功";
  508. this.$notify.success({
  509. title,
  510. message: "",
  511. });
  512. this.showModelThis = false;
  513. let pids = this.parentIds;
  514. if (this.id === 0) {
  515. pids = "0";
  516. }
  517. this.$emit("refresh", this.id, pids, this.level);
  518. } else if (res && res.code >= 100 && res.code <= 104) {
  519. await this.logout();
  520. } else {
  521. this.$message.warning(res.message);
  522. }
  523. } else {
  524. this.loading = false;
  525. return false;
  526. }
  527. });
  528. },
  529. },
  530. };
  531. </script>
  532. <style lang="scss" scoped>
  533. .g-block {
  534. display: inline-block;
  535. padding: 10px 5px;
  536. text-align: center;
  537. border: 1px #ccc dashed;
  538. margin: 1px;
  539. font-size: 0px;
  540. cursor: pointer;
  541. i {
  542. font-size: 30px;
  543. line-height: 30px;
  544. display: block;
  545. margin: 0 auto;
  546. width: 30px;
  547. }
  548. }
  549. </style>