positionInfo.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <!--
  2. * @Description: create
  3. * @Version: 1.0
  4. * @Autor: XuTongZhang
  5. * @Date: 2020-07-28 17:19:43
  6. * @LastEditors: XuTongZhang
  7. * @LastEditTime: 2020-08-15 11:18:19
  8. -->
  9. <template>
  10. <div class="indexPage">
  11. <v-input :btn="btn" :list="list" @add="add"></v-input>
  12. <v-table :table="table" :tableList="tableList" :sortType="true" :queryData="queryData" @details="details" @editor="editor" @del="del"></v-table>
  13. <v-pager @page="callPage" :total="totalrecords"></v-pager>
  14. <el-dialog width="600px" :visible.sync="dialogFormVisible" :before-close="close" :close-on-click-modal="false">
  15. <el-form :model="form" ref="form" label-width="140px" :rules="rules" label-position="left">
  16. <el-form-item label="职位名称" prop="positionName">
  17. <el-input v-if="state!==2" v-model="form.positionName" placeholder="请输入职位名称" autocomplete="off"></el-input>
  18. <div v-else>{{form.positionName}}</div>
  19. </el-form-item>
  20. <el-form-item label="职位描述" prop="positionIntroduce">
  21. <el-input v-if="state!==2" type="textarea" :rows="4" resize="none" placeholder="请输入内容" v-model="form.positionIntroduce"></el-input>
  22. <div v-else>{{form.positionIntroduce}}</div>
  23. </el-form-item>
  24. <el-form-item label="职位状态" prop="isDisable">
  25. <el-radio-group v-if="state!==2" v-model="form.isDisable">
  26. <el-radio :label="0">启用</el-radio>
  27. <el-radio :label="1">禁用</el-radio>
  28. </el-radio-group>
  29. <div v-else>{{['启用', '禁用'][form.isDisable]}}</div>
  30. </el-form-item>
  31. </el-form>
  32. <div slot="footer" class="dialog-footer">
  33. <el-button @click="close">取 消</el-button>
  34. <el-button type="primary" v-if="state!==2" @click="determine">确 定</el-button>
  35. </div>
  36. </el-dialog>
  37. </div>
  38. </template>
  39. <script>
  40. export default {
  41. data () {
  42. return {
  43. tableList: [],
  44. dialogFormVisible: false,
  45. page: 1,
  46. form: {
  47. positionName: '',
  48. positionIntroduce: '',
  49. isDisable: 0
  50. },
  51. totalrecords: 0,
  52. state: 0,
  53. pickList: [],
  54. rules: {
  55. positionName: [{
  56. required: true,
  57. message: '请填写职位名称',
  58. trigger: 'change'
  59. }],
  60. positionIntroduce: [{
  61. required: true,
  62. message: '请填写职位描述',
  63. trigger: 'change'
  64. }],
  65. isDisable: [{
  66. required: true,
  67. message: '请选择职位状态',
  68. trigger: 'change'
  69. }]
  70. },
  71. list: [],
  72. btn: [{
  73. name: '添加',
  74. type: 'success',
  75. method: 'add'
  76. }],
  77. table: {
  78. column: [{
  79. label: '编号',
  80. props: 'id'
  81. },
  82. {
  83. label: '职位名称',
  84. props: 'positionName'
  85. },
  86. {
  87. label: '职位描述',
  88. props: 'positionIntroduceX',
  89. width: 700
  90. },
  91. {
  92. label: '职位状态',
  93. props: 'isDisable',
  94. options: ['有效', '禁用']
  95. }
  96. ],
  97. width: 300,
  98. handle: [{
  99. title: '查看',
  100. method: 'details',
  101. type: 'info'
  102. },
  103. {
  104. title: '编辑',
  105. method: 'editor',
  106. type: 'warning'
  107. },
  108. {
  109. title: '删除',
  110. method: 'del',
  111. type: 'danger'
  112. }
  113. ]
  114. }
  115. }
  116. },
  117. created () {
  118. this.queryData()
  119. },
  120. methods: {
  121. queryData (form = {}) {
  122. let page = this.page
  123. let reqdata = {}
  124. this.$api
  125. .post('/position/queryPositionList', {
  126. reqdata,
  127. page
  128. })
  129. .then((res) => {
  130. this.totalrecords = res.totalrecords
  131. this.tableList = res.list.map(item => {
  132. item.positionIntroduceX = item.positionIntroduce.length > 100 ? item.positionIntroduce.slice(0, 100) + '...' : item.positionIntroduce
  133. return item
  134. })
  135. })
  136. },
  137. add () {
  138. this.open()
  139. this.info = {}
  140. this.state = 0
  141. },
  142. getDetails (row) {
  143. let reqdata = {
  144. id: row.id
  145. }
  146. this.$api
  147. .post('/position/queryPositionDetail', {
  148. reqdata
  149. })
  150. .then((res) => {
  151. this.open()
  152. this.form = res.object
  153. })
  154. },
  155. details (row) {
  156. this.getDetails(row)
  157. this.state = 2
  158. },
  159. editor (row) {
  160. this.getDetails(row)
  161. this.state = 1
  162. },
  163. del (row) {
  164. this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
  165. confirmButtonText: '确定',
  166. cancelButtonText: '取消',
  167. type: 'warning'
  168. }).then(() => {
  169. this.$api
  170. .post('/position/deletePosition', {
  171. reqdata: {
  172. id: row.id
  173. }
  174. })
  175. .then((res) => {
  176. this.queryData()
  177. })
  178. }).catch(() => {
  179. this.$message({
  180. type: 'info',
  181. message: '已取消删除'
  182. })
  183. })
  184. },
  185. determine () {
  186. let a
  187. this.$refs['form'].validate((valid) => {
  188. a = valid
  189. })
  190. if (!a) return
  191. let url = this.state ? '/position/updatePosition' : '/position/savePosition'
  192. let reqdata = this.form
  193. this.$api
  194. .post(url, {
  195. reqdata
  196. })
  197. .then((res) => {
  198. this.close()
  199. this.queryData()
  200. })
  201. },
  202. open () {
  203. this.dialogFormVisible = true
  204. },
  205. close () {
  206. this.dialogFormVisible = false
  207. this.form = {
  208. positionName: '',
  209. positionIntroduce: '',
  210. isDisable: 0
  211. }
  212. },
  213. callPage (val) {
  214. this.page = val
  215. this.queryData()
  216. }
  217. },
  218. watch: {
  219. dialogFormVisible: function (val, oldVla) {
  220. if (this.state === 2) {
  221. if (this.$refs['form'] !== undefined) {
  222. this.$refs['form'].resetFields()
  223. }
  224. }
  225. }
  226. }
  227. }
  228. </script>
  229. <style lang="scss" scoped>
  230. .dialog-footer {
  231. display: flex;
  232. justify-content: center;
  233. align-items: center;
  234. }
  235. </style>