index2.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <el-form class="bf-rulesofcompetency">
  3. <!-- 权限规则 -->
  4. <div class="right">
  5. <div class="paren_header">
  6. <p class="manageTitle">{{ title }}</p>
  7. </div>
  8. <div class="mt30">
  9. <div class="juris_list" :style="{ marginBottom: marginB }">
  10. <p>许可查询行</p>
  11. <el-input @blur="getForm" v-model="form.QueryRow" placeholder="请输入内容" size="mini"></el-input>
  12. </div>
  13. <div class="juris_list" :style="{ marginBottom: marginB }">
  14. <p>许可查询列</p>
  15. <el-input @blur="getForm" v-model="form.QueryCol" placeholder="请输入内容" size="mini"></el-input>
  16. </div>
  17. <div class="juris_list" :style="{ marginBottom: marginB }">
  18. <p>许可删除行</p>
  19. <el-input @blur="getForm" v-model="form.DeleteRow" placeholder="请输入内容" size="mini"></el-input>
  20. </div>
  21. <div class="juris_list" :style="{ marginBottom: marginB }">
  22. <p>许可新增列</p>
  23. <el-input @blur="getForm" v-model="form.NewCol" placeholder="请输入内容" size="mini"></el-input>
  24. </div>
  25. <div class="juris_list" :style="{ marginBottom: marginB }">
  26. <p>许可编辑行</p>
  27. <el-input @blur="getForm" v-model="form.EditRow" placeholder="请输入内容" size="mini"></el-input>
  28. </div>
  29. <div class="juris_list" :style="{ marginBottom: marginB }">
  30. <p>许可编辑列</p>
  31. <el-input @blur="getForm" v-model="form.EditCol" placeholder="请输入内容" size="mini"></el-input>
  32. </div>
  33. </div>
  34. </div>
  35. </el-form>
  36. </template>
  37. <script>
  38. export default {
  39. props: {
  40. title: {
  41. type: String,
  42. default: " ",
  43. },
  44. marginB: {
  45. type: String,
  46. default: "24px",
  47. },
  48. authTo: {
  49. type: Object,
  50. default: () => { },
  51. },
  52. authList: {
  53. type: Array,
  54. default: () => [],
  55. },
  56. },
  57. data () {
  58. return {
  59. form: {
  60. DeleteRow: null,
  61. EditCol: null,
  62. EditRow: null,
  63. NewCol: null,
  64. QueryCol: null,
  65. QueryRow: null,
  66. },
  67. newForm: {}
  68. };
  69. },
  70. watch: {
  71. "$store.state.auth.authArrs": {
  72. handler () {
  73. const id = this.$store.getters.authId
  74. const arr = this.$store.getters.authMsg
  75. const obj = arr.filter((item) => item.auth_id === id)[0]
  76. // console.log(obj)
  77. if (obj) {
  78. console.log(obj)
  79. // this.setFormData(obj)
  80. } else {
  81. console.log('ddd')
  82. this.clearFormData()
  83. }
  84. },
  85. deep: true
  86. },
  87. // form: {
  88. // handler (obj) {
  89. // const id = this.$store.getters.authId
  90. // if (id) {
  91. // const arr = this.$store.getters.authMsg
  92. // obj.auth_id = id
  93. // arr.push(obj)
  94. // const datas = _.unionBy(arr, "auth_id")
  95. // this.$store.dispatch("auth/changeAuthMsg", datas)
  96. // } else {
  97. // this.$message.error('请选中要授权的数据后再添加规则')
  98. // }
  99. // },
  100. // deep: true
  101. // }
  102. },
  103. methods: {
  104. clearFormData () {
  105. this.form.NewCol = "";
  106. this.form.DeleteRow = "";
  107. this.form.QueryCol = "";
  108. this.form.QueryRow = "";
  109. this.form.EditCol = "";
  110. this.form.EditRow = "";
  111. },
  112. setFormData (obj) {
  113. let data = {}
  114. if (obj.AuthList) {
  115. data = obj.AuthList;
  116. } else {
  117. data = obj
  118. }
  119. this.form = data
  120. },
  121. getForm () {
  122. console.log('xxx')
  123. const id = this.$store.getters.authId
  124. if (id) {
  125. const arr = this.$store.getters.authMsg
  126. this.form.auth_id = id
  127. arr.push(this.form)
  128. const datas = _.unionBy(arr, "auth_id")
  129. console.log(arr)
  130. this.$store.dispatch("auth/changeAuthMsg", datas)
  131. } else {
  132. this.$message.error('请选中要授权的数据后再添加规则')
  133. }
  134. }
  135. },
  136. };
  137. </script>
  138. <style lang="scss" scoped>
  139. @import "./rulesofcompetency.scss";
  140. .mt30 {
  141. margin-top: 30px;
  142. }
  143. </style>