index.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <template>
  2. <el-form class="bf-rulesofcompetency">
  3. <!-- 权限规则 -->
  4. <div class="right">
  5. <div class="paren_header">
  6. <p>{{ title }}</p>
  7. <div class="header_right">
  8. <el-radio v-model="form.radio" :label="item.id" v-for="(item, index) in option" :key="index">{{ item.label }}</el-radio>
  9. </div>
  10. </div>
  11. <div class="juris_list" :style="{ marginBottom: marginB }">
  12. <p>时效范围起</p>
  13. <el-date-picker v-model="form.firstWeeks" type="datetime" value-format="yyyy-MM-dd HH:mm:ss" placeholder="选择时间" size="mini" :picker-options="pickerOptionsStart">
  14. </el-date-picker>
  15. </div>
  16. <div class="juris_list" :style="{ marginBottom: marginB }">
  17. <p>至</p>
  18. <el-date-picker @change="setTime" v-model="form.endWeeks" value-format="yyyy-MM-dd HH:mm:ss" type="datetime" placeholder="选择时间" size="mini" :picker-options="pickerOptionsEnd">
  19. </el-date-picker>
  20. </div>
  21. <div class="juris_list" :style="{ marginBottom: marginB }">
  22. <p>许可查询行</p>
  23. <el-input v-model="form.input1" placeholder="请输入内容" size="mini"></el-input>
  24. </div>
  25. <div class="juris_list" :style="{ marginBottom: marginB }">
  26. <p>许可查询列</p>
  27. <el-input v-model="form.input2" placeholder="请输入内容" size="mini"></el-input>
  28. </div>
  29. <div class="juris_list" :style="{ marginBottom: marginB }">
  30. <p>许可删除行</p>
  31. <el-input v-model="form.input3" placeholder="请输入内容" size="mini"></el-input>
  32. </div>
  33. <div class="juris_list" :style="{ marginBottom: marginB }">
  34. <p>许可新增列</p>
  35. <el-input v-model="form.input4" placeholder="请输入内容" size="mini"></el-input>
  36. </div>
  37. <div class="juris_list" :style="{ marginBottom: marginB }">
  38. <p>许可编辑行</p>
  39. <el-input v-model="form.input5" placeholder="请输入内容" size="mini"></el-input>
  40. </div>
  41. <div class="juris_list" :style="{ marginBottom: marginB }">
  42. <p>许可编辑列</p>
  43. <el-input v-model="form.input6" placeholder="请输入内容" size="mini"></el-input>
  44. </div>
  45. </div>
  46. </el-form>
  47. </template>
  48. <script>
  49. export default {
  50. props: {
  51. title: {
  52. type: String,
  53. default: " ",
  54. },
  55. marginB: {
  56. type: String,
  57. default: "24px",
  58. },
  59. authTo: {
  60. type: Object,
  61. default: () => { }
  62. },
  63. authList: {
  64. type: Array,
  65. default: () => []
  66. }
  67. },
  68. data () {
  69. return {
  70. pickerOptionsStart: {
  71. disabledDate: time => {
  72. if (this.form.endWeeks) {
  73. return time.getTime() >= new Date(this.endWeeks).getTime()
  74. }
  75. }
  76. },
  77. pickerOptionsEnd: {
  78. disabledDate: time => {
  79. if (this.form.firstWeeks) {
  80. return time.getTime() <= new Date(this.firstWeeks).getTime() - 86400000
  81. }
  82. }
  83. },
  84. form: {
  85. endWeeks: '',
  86. firstWeeks: '',
  87. radio: 1,
  88. value1: "",
  89. value2: "",
  90. input1: "",
  91. input2: "",
  92. input3: "",
  93. input4: "",
  94. input5: "",
  95. input6: "",
  96. },
  97. option: [
  98. {
  99. label: "显示权限",
  100. id: 1,
  101. },
  102. {
  103. label: "显示及编辑权限",
  104. id: 2,
  105. },
  106. ],
  107. };
  108. },
  109. watch: {
  110. authTo: {
  111. handler (obj) {
  112. const { Action, ValidBegin, ValidEnd, QueryRow, QueryCol, NewCol, EditCol, EditRow, DeleteRow } = obj
  113. this.form.radio = Number(Action)
  114. this.form.firstWeeks = ValidBegin
  115. this.form.endWeeks = ValidEnd
  116. this.form.input1 = QueryRow
  117. this.form.input2 = QueryCol
  118. this.form.input3 = DeleteRow
  119. this.form.input4 = NewCol
  120. this.form.input5 = EditRow
  121. this.form.input6 = EditCol
  122. },
  123. deep: true
  124. },
  125. form: {
  126. handler () {
  127. this.getData()
  128. },
  129. deep: true
  130. },
  131. authList: {
  132. handler (arr) {
  133. this.$store.dispatch('auth/changeAuthList', arr)
  134. },
  135. deep: true
  136. },
  137. "$store.state.auth.authMsg": {
  138. handler (arr) {
  139. const id = this.$store.getters.authId
  140. const obj = arr.filter(item => item.AuthId === id)[0]
  141. this.clearFormData()
  142. this.setFormData(obj)
  143. },
  144. deep: true
  145. },
  146. },
  147. methods: {
  148. setTime () {
  149. if (this.form.endWeeks <= this.form.firstWeeks) {
  150. this.form.endWeeks = ''
  151. this.$message.error('结束时间不能小于开始时间,请重新选择')
  152. }
  153. },
  154. getData () {
  155. const obj = {
  156. Action: this.form.radio,
  157. ValidBegin: this.form.firstWeeks,
  158. ValidEnd: this.form.endWeeks,
  159. QueryRow: this.form.input1,
  160. QueryCol: this.form.input2,
  161. NewCol: this.form.input4,
  162. EditCol: this.form.input6,
  163. EditRow: this.form.input5,
  164. DeleteRow: this.form.input3
  165. }
  166. this.$emit('get-data', obj)
  167. const arr = this.$store.getters.authArrs
  168. const datas = _.unionBy(arr, 'AuthId')
  169. const id = this.$store.getters.authId
  170. // console.log(datas)
  171. if (datas.length) {
  172. // const dat = datas[datas.length - 1]
  173. let dat = datas[datas.length - 1]
  174. datas.map(item=>{
  175. if (item.AuthId == id) {
  176. dat = item;
  177. }
  178. })
  179. const { AuthId } = dat
  180. obj["AuthId"] = AuthId
  181. datas.forEach(item => {
  182. if (item.AuthId == id) {
  183. item.AuthList = obj
  184. }
  185. })
  186. this.$store.dispatch('auth/changeAuthArrs', datas)
  187. }
  188. },
  189. clearFormData () {
  190. this.form.radio = ''
  191. this.form.firstWeeks = ''
  192. this.form.endWeeks = ''
  193. this.form.input1 = ''
  194. this.form.input2 = ''
  195. this.form.input3 = ''
  196. this.form.input4 = ''
  197. this.form.input5 = ''
  198. this.form.input6 = ''
  199. },
  200. setFormData (obj) {
  201. let data = {}
  202. if (obj.AuthList) {
  203. data = obj.AuthList
  204. } else {
  205. data = obj
  206. }
  207. const { Action = '', ValidBegin = '', ValidEnd = '', QueryRow = '', QueryCol = '', NewCol = '', EditCol = '', EditRow = '', DeleteRow = '' } = data
  208. this.form.radio = Number(Action)
  209. this.form.firstWeeks = ValidBegin
  210. this.form.endWeeks = ValidEnd
  211. this.form.input1 = QueryRow
  212. this.form.input2 = QueryCol
  213. this.form.input3 = DeleteRow
  214. this.form.input4 = NewCol
  215. this.form.input5 = EditRow
  216. this.form.input6 = EditCol
  217. }
  218. }
  219. };
  220. </script>
  221. <style lang="scss" scoped>
  222. @import "./rulesofcompetency.scss";
  223. .el-picker-panel {
  224. > .el-picker-panel__footer {
  225. > .el-button--text {
  226. display: none;
  227. }
  228. }
  229. }
  230. </style>