RoleManagementEdit.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <el-dialog
  3. :title="title"
  4. :visible.sync="dialogFormVisible"
  5. width="500px"
  6. @close="close"
  7. >
  8. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  9. <el-form-item label="权限码" prop="permission">
  10. <el-input v-model="form.permission" autocomplete="off"></el-input>
  11. </el-form-item>
  12. </el-form>
  13. <div slot="footer" class="dialog-footer">
  14. <el-button @click="close">取 消</el-button>
  15. <el-button type="primary" @click="save">确 定</el-button>
  16. </div>
  17. </el-dialog>
  18. </template>
  19. <script>
  20. import { doEdit } from "@/api/roleManagement";
  21. export default {
  22. name: "RoleManagementEdit",
  23. data() {
  24. return {
  25. form: {
  26. id: "",
  27. },
  28. rules: {
  29. permission: [
  30. { required: true, trigger: "blur", message: "请输入权限码" },
  31. ],
  32. },
  33. title: "",
  34. dialogFormVisible: false,
  35. };
  36. },
  37. created() {},
  38. methods: {
  39. showEdit(row) {
  40. if (!row) {
  41. this.title = "添加";
  42. } else {
  43. this.title = "编辑";
  44. this.form = Object.assign({}, row);
  45. }
  46. this.dialogFormVisible = true;
  47. },
  48. close() {
  49. this.$refs["form"].resetFields();
  50. this.form = this.$options.data().form;
  51. this.dialogFormVisible = false;
  52. },
  53. save() {
  54. this.$refs["form"].validate(async (valid) => {
  55. if (valid) {
  56. const { msg } = await doEdit(this.form);
  57. this.$baseMessage(msg, "success");
  58. this.$emit("fetch-data");
  59. this.close();
  60. } else {
  61. return false;
  62. }
  63. });
  64. },
  65. },
  66. };
  67. </script>