index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
  4. <el-form-item label="岗位编码" prop="postCode">
  5. <el-input
  6. v-model="queryParams.postCode"
  7. placeholder="请输入岗位编码"
  8. clearable
  9. size="small"
  10. @keyup.enter.native="handleQuery"
  11. />
  12. </el-form-item>
  13. <el-form-item label="岗位名称" prop="postName">
  14. <el-input
  15. v-model="queryParams.postName"
  16. placeholder="请输入岗位名称"
  17. clearable
  18. size="small"
  19. @keyup.enter.native="handleQuery"
  20. />
  21. </el-form-item>
  22. <el-form-item label="状态" prop="status">
  23. <el-select v-model="queryParams.status" placeholder="岗位状态" clearable size="small">
  24. <el-option
  25. v-for="dict in statusOptions"
  26. :key="dict.dictValue"
  27. :label="dict.dictLabel"
  28. :value="dict.dictValue"
  29. />
  30. </el-select>
  31. </el-form-item>
  32. <el-form-item>
  33. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  34. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  35. </el-form-item>
  36. </el-form>
  37. <el-row :gutter="10" class="mb8">
  38. <el-col :span="1.5">
  39. <el-button
  40. type="primary"
  41. icon="el-icon-plus"
  42. size="mini"
  43. @click="handleAdd"
  44. v-hasPermi="['system:post:add']"
  45. >新增</el-button>
  46. </el-col>
  47. <el-col :span="1.5">
  48. <el-button
  49. type="success"
  50. icon="el-icon-edit"
  51. size="mini"
  52. :disabled="single"
  53. @click="handleUpdate"
  54. v-hasPermi="['system:post:edit']"
  55. >修改</el-button>
  56. </el-col>
  57. <el-col :span="1.5">
  58. <el-button
  59. type="danger"
  60. icon="el-icon-delete"
  61. size="mini"
  62. :disabled="multiple"
  63. @click="handleDelete"
  64. v-hasPermi="['system:post:remove']"
  65. >删除</el-button>
  66. </el-col>
  67. <el-col :span="1.5">
  68. <el-button
  69. type="warning"
  70. icon="el-icon-download"
  71. size="mini"
  72. @click="handleExport"
  73. v-hasPermi="['system:post:export']"
  74. >导出</el-button>
  75. </el-col>
  76. </el-row>
  77. <el-table v-loading="loading" :data="postList" @selection-change="handleSelectionChange">
  78. <el-table-column type="selection" width="55" align="center" />
  79. <el-table-column label="岗位编号" align="center" prop="postId" />
  80. <el-table-column label="岗位编码" align="center" prop="postCode" />
  81. <el-table-column label="岗位名称" align="center" prop="postName" />
  82. <el-table-column label="岗位排序" align="center" prop="postSort" />
  83. <el-table-column label="状态" align="center" prop="status" :formatter="statusFormat" />
  84. <el-table-column label="创建时间" align="center" prop="createTime" width="180">
  85. <template slot-scope="scope">
  86. <span>{{ parseTime(scope.row.createTime) }}</span>
  87. </template>
  88. </el-table-column>
  89. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  90. <template slot-scope="scope">
  91. <el-button
  92. size="mini"
  93. type="text"
  94. icon="el-icon-edit"
  95. @click="handleUpdate(scope.row)"
  96. v-hasPermi="['system:post:edit']"
  97. >修改</el-button>
  98. <el-button
  99. size="mini"
  100. type="text"
  101. icon="el-icon-delete"
  102. @click="handleDelete(scope.row)"
  103. v-hasPermi="['system:post:remove']"
  104. >删除</el-button>
  105. </template>
  106. </el-table-column>
  107. </el-table>
  108. <pagination
  109. v-show="total>0"
  110. :total="total"
  111. :page.sync="queryParams.pageNum"
  112. :limit.sync="queryParams.pageSize"
  113. @pagination="getList"
  114. />
  115. <!-- 添加或修改岗位对话框 -->
  116. <el-dialog :title="title" :visible.sync="open" width="500px">
  117. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  118. <el-form-item label="岗位名称" prop="postName">
  119. <el-input v-model="form.postName" placeholder="请输入岗位名称" />
  120. </el-form-item>
  121. <el-form-item label="岗位编码" prop="postCode">
  122. <el-input v-model="form.postCode" placeholder="请输入编码名称" />
  123. </el-form-item>
  124. <el-form-item label="岗位顺序" prop="postSort">
  125. <el-input-number v-model="form.postSort" controls-position="right" :min="0" />
  126. </el-form-item>
  127. <el-form-item label="岗位状态" prop="status">
  128. <el-radio-group v-model="form.status">
  129. <el-radio
  130. v-for="dict in statusOptions"
  131. :key="dict.dictValue"
  132. :label="dict.dictValue"
  133. >{{dict.dictLabel}}</el-radio>
  134. </el-radio-group>
  135. </el-form-item>
  136. <el-form-item label="备注" prop="remark">
  137. <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
  138. </el-form-item>
  139. </el-form>
  140. <div slot="footer" class="dialog-footer">
  141. <el-button type="primary" @click="submitForm">确 定</el-button>
  142. <el-button @click="cancel">取 消</el-button>
  143. </div>
  144. </el-dialog>
  145. </div>
  146. </template>
  147. <script>
  148. import { listPost, getPost, delPost, addPost, updatePost, exportPost } from "@/api/system/post";
  149. export default {
  150. name: "Post",
  151. data() {
  152. return {
  153. // 遮罩层
  154. loading: true,
  155. // 选中数组
  156. ids: [],
  157. // 非单个禁用
  158. single: true,
  159. // 非多个禁用
  160. multiple: true,
  161. // 总条数
  162. total: 0,
  163. // 岗位表格数据
  164. postList: [],
  165. // 弹出层标题
  166. title: "",
  167. // 是否显示弹出层
  168. open: false,
  169. // 状态数据字典
  170. statusOptions: [],
  171. // 查询参数
  172. queryParams: {
  173. pageNum: 1,
  174. pageSize: 10,
  175. postCode: undefined,
  176. postName: undefined,
  177. status: undefined
  178. },
  179. // 表单参数
  180. form: {},
  181. // 表单校验
  182. rules: {
  183. postName: [
  184. { required: true, message: "岗位名称不能为空", trigger: "blur" }
  185. ],
  186. postCode: [
  187. { required: true, message: "岗位编码不能为空", trigger: "blur" }
  188. ],
  189. postSort: [
  190. { required: true, message: "岗位顺序不能为空", trigger: "blur" }
  191. ]
  192. }
  193. };
  194. },
  195. created() {
  196. this.getList();
  197. this.getDicts("sys_normal_disable").then(response => {
  198. this.statusOptions = response.data;
  199. });
  200. },
  201. methods: {
  202. /** 查询岗位列表 */
  203. getList() {
  204. this.loading = true;
  205. listPost(this.queryParams).then(response => {
  206. this.postList = response.rows;
  207. this.total = response.total;
  208. this.loading = false;
  209. });
  210. },
  211. // 岗位状态字典翻译
  212. statusFormat(row, column) {
  213. return this.selectDictLabel(this.statusOptions, row.status);
  214. },
  215. // 取消按钮
  216. cancel() {
  217. this.open = false;
  218. this.reset();
  219. },
  220. // 表单重置
  221. reset() {
  222. this.form = {
  223. postId: undefined,
  224. postCode: undefined,
  225. postName: undefined,
  226. postSort: 0,
  227. status: "0",
  228. remark: undefined
  229. };
  230. this.resetForm("form");
  231. },
  232. /** 搜索按钮操作 */
  233. handleQuery() {
  234. this.queryParams.pageNum = 1;
  235. this.getList();
  236. },
  237. /** 重置按钮操作 */
  238. resetQuery() {
  239. this.resetForm("queryForm");
  240. this.handleQuery();
  241. },
  242. // 多选框选中数据
  243. handleSelectionChange(selection) {
  244. this.ids = selection.map(item => item.postId)
  245. this.single = selection.length!=1
  246. this.multiple = !selection.length
  247. },
  248. /** 新增按钮操作 */
  249. handleAdd() {
  250. this.reset();
  251. this.open = true;
  252. this.title = "添加岗位";
  253. },
  254. /** 修改按钮操作 */
  255. handleUpdate(row) {
  256. this.reset();
  257. const postId = row.postId || this.ids
  258. getPost(postId).then(response => {
  259. this.form = response.data;
  260. this.open = true;
  261. this.title = "修改岗位";
  262. });
  263. },
  264. /** 提交按钮 */
  265. submitForm: function() {
  266. this.$refs["form"].validate(valid => {
  267. if (valid) {
  268. if (this.form.postId != undefined) {
  269. updatePost(this.form).then(response => {
  270. if (response.code === 200) {
  271. this.msgSuccess("修改成功");
  272. this.open = false;
  273. this.getList();
  274. } else {
  275. this.msgError(response.msg);
  276. }
  277. });
  278. } else {
  279. addPost(this.form).then(response => {
  280. if (response.code === 200) {
  281. this.msgSuccess("新增成功");
  282. this.open = false;
  283. this.getList();
  284. } else {
  285. this.msgError(response.msg);
  286. }
  287. });
  288. }
  289. }
  290. });
  291. },
  292. /** 删除按钮操作 */
  293. handleDelete(row) {
  294. const postIds = row.postId || this.ids;
  295. this.$confirm('是否确认删除岗位编号为"' + postIds + '"的数据项?', "警告", {
  296. confirmButtonText: "确定",
  297. cancelButtonText: "取消",
  298. type: "warning"
  299. }).then(function() {
  300. return delPost(postIds);
  301. }).then(() => {
  302. this.getList();
  303. this.msgSuccess("删除成功");
  304. }).catch(function() {});
  305. },
  306. /** 导出按钮操作 */
  307. handleExport() {
  308. const queryParams = this.queryParams;
  309. this.$confirm('是否确认导出所有岗位数据项?', "警告", {
  310. confirmButtonText: "确定",
  311. cancelButtonText: "取消",
  312. type: "warning"
  313. }).then(function() {
  314. return exportPost(queryParams);
  315. }).then(response => {
  316. this.download(response.msg);
  317. }).catch(function() {});
  318. }
  319. }
  320. };
  321. </script>