index.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
  4. <el-form-item label="资产分类编号" prop="number">
  5. <el-input
  6. v-model="queryParams.number"
  7. placeholder="请输入资产分类编号"
  8. clearable
  9. @keyup.enter.native="handleQuery"
  10. />
  11. </el-form-item>
  12. <el-form-item label="资产分类名称" prop="name">
  13. <el-input
  14. v-model="queryParams.name"
  15. placeholder="请输入资产分类名称"
  16. clearable
  17. @keyup.enter.native="handleQuery"
  18. />
  19. </el-form-item>
  20. <el-form-item>
  21. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  22. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  23. </el-form-item>
  24. </el-form>
  25. <el-row :gutter="10" class="mb8">
  26. <el-col :span="1.5">
  27. <el-button
  28. type="primary"
  29. plain
  30. icon="el-icon-plus"
  31. size="mini"
  32. @click="handleAdd"
  33. v-hasPermi="['asset:category:add']"
  34. >新增</el-button>
  35. </el-col>
  36. <el-col :span="1.5">
  37. <el-button
  38. type="success"
  39. plain
  40. icon="el-icon-edit"
  41. size="mini"
  42. :disabled="single"
  43. @click="handleUpdate"
  44. v-hasPermi="['asset:category:edit']"
  45. >修改</el-button>
  46. </el-col>
  47. <el-col :span="1.5">
  48. <el-button
  49. type="danger"
  50. plain
  51. icon="el-icon-delete"
  52. size="mini"
  53. :disabled="multiple"
  54. @click="handleDelete"
  55. v-hasPermi="['asset:category:remove']"
  56. >删除</el-button>
  57. </el-col>
  58. <el-col :span="1.5">
  59. <el-button
  60. type="warning"
  61. plain
  62. icon="el-icon-download"
  63. size="mini"
  64. @click="handleExport"
  65. v-hasPermi="['asset:category:export']"
  66. >导出</el-button>
  67. </el-col>
  68. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  69. </el-row>
  70. <el-table v-loading="loading" :data="categoryList" @selection-change="handleSelectionChange">
  71. <el-table-column type="selection" width="55" align="center" />
  72. <el-table-column label="编号" align="center" prop="id" />
  73. <el-table-column label="资产分类编号" align="center" prop="number" />
  74. <el-table-column label="资产分类名称" align="center" prop="name" />
  75. <el-table-column label="资产分类备注" align="center" prop="remark" />
  76. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  77. <template slot-scope="scope">
  78. <el-button
  79. size="mini"
  80. type="text"
  81. icon="el-icon-edit"
  82. @click="handleUpdate(scope.row)"
  83. v-hasPermi="['asset:category:edit']"
  84. >修改</el-button>
  85. <el-button
  86. size="mini"
  87. type="text"
  88. icon="el-icon-delete"
  89. @click="handleDelete(scope.row)"
  90. v-hasPermi="['asset:category:remove']"
  91. >删除</el-button>
  92. </template>
  93. </el-table-column>
  94. </el-table>
  95. <pagination
  96. v-show="total>0"
  97. :total="total"
  98. :page.sync="queryParams.pageNum"
  99. :limit.sync="queryParams.pageSize"
  100. @pagination="getList"
  101. />
  102. <!-- 添加或修改资产分类对话框 -->
  103. <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
  104. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  105. <el-form-item label="资产分类编号" prop="number">
  106. <el-input v-model="form.number" placeholder="请输入资产分类编号" />
  107. </el-form-item>
  108. <el-form-item label="资产分类名称" prop="name">
  109. <el-input v-model="form.name" placeholder="请输入资产分类名称" />
  110. </el-form-item>
  111. <el-form-item label="资产分类备注" prop="remark">
  112. <el-input v-model="form.remark" placeholder="请输入资产分类备注" />
  113. </el-form-item>
  114. </el-form>
  115. <div slot="footer" class="dialog-footer">
  116. <el-button type="primary" @click="submitForm">确 定</el-button>
  117. <el-button @click="cancel">取 消</el-button>
  118. </div>
  119. </el-dialog>
  120. </div>
  121. </template>
  122. <script>
  123. import { listCategory, getCategory, delCategory, addCategory, updateCategory } from "@/api/asset/category";
  124. export default {
  125. name: "Category",
  126. data() {
  127. return {
  128. // 遮罩层
  129. loading: true,
  130. // 选中数组
  131. ids: [],
  132. // 非单个禁用
  133. single: true,
  134. // 非多个禁用
  135. multiple: true,
  136. // 显示搜索条件
  137. showSearch: true,
  138. // 总条数
  139. total: 0,
  140. // 资产分类表格数据
  141. categoryList: [],
  142. // 弹出层标题
  143. title: "",
  144. // 是否显示弹出层
  145. open: false,
  146. // 查询参数
  147. queryParams: {
  148. pageNum: 1,
  149. pageSize: 10,
  150. number: null,
  151. name: null,
  152. },
  153. // 表单参数
  154. form: {},
  155. // 表单校验
  156. rules: {
  157. number: [
  158. { required: true, message: "资产分类编号不能为空", trigger: "blur" }
  159. ],
  160. name: [
  161. { required: true, message: "资产分类名称不能为空", trigger: "blur" }
  162. ],
  163. }
  164. };
  165. },
  166. created() {
  167. this.getList();
  168. },
  169. methods: {
  170. /** 查询资产分类列表 */
  171. getList() {
  172. this.loading = true;
  173. listCategory(this.queryParams).then(response => {
  174. this.categoryList = response.rows;
  175. this.total = response.total;
  176. this.loading = false;
  177. });
  178. },
  179. // 取消按钮
  180. cancel() {
  181. this.open = false;
  182. this.reset();
  183. },
  184. // 表单重置
  185. reset() {
  186. this.form = {
  187. id: null,
  188. number: null,
  189. name: null,
  190. remark: null
  191. };
  192. this.resetForm("form");
  193. },
  194. /** 搜索按钮操作 */
  195. handleQuery() {
  196. this.queryParams.pageNum = 1;
  197. this.getList();
  198. },
  199. /** 重置按钮操作 */
  200. resetQuery() {
  201. this.resetForm("queryForm");
  202. this.handleQuery();
  203. },
  204. // 多选框选中数据
  205. handleSelectionChange(selection) {
  206. this.ids = selection.map(item => item.id)
  207. this.single = selection.length!==1
  208. this.multiple = !selection.length
  209. },
  210. /** 新增按钮操作 */
  211. handleAdd() {
  212. this.reset();
  213. this.open = true;
  214. this.title = "添加资产分类";
  215. },
  216. /** 修改按钮操作 */
  217. handleUpdate(row) {
  218. this.reset();
  219. const id = row.id || this.ids
  220. getCategory(id).then(response => {
  221. this.form = response.data;
  222. this.open = true;
  223. this.title = "修改资产分类";
  224. });
  225. },
  226. /** 提交按钮 */
  227. submitForm() {
  228. this.$refs["form"].validate(valid => {
  229. if (valid) {
  230. if (this.form.id != null) {
  231. updateCategory(this.form).then(response => {
  232. this.$modal.msgSuccess("修改成功");
  233. this.open = false;
  234. this.getList();
  235. });
  236. } else {
  237. addCategory(this.form).then(response => {
  238. this.$modal.msgSuccess("新增成功");
  239. this.open = false;
  240. this.getList();
  241. });
  242. }
  243. }
  244. });
  245. },
  246. /** 删除按钮操作 */
  247. handleDelete(row) {
  248. const ids = row.id || this.ids;
  249. this.$modal.confirm('是否确认删除资产分类编号为"' + ids + '"的数据项?').then(function() {
  250. return delCategory(ids);
  251. }).then(() => {
  252. this.getList();
  253. this.$modal.msgSuccess("删除成功");
  254. }).catch(() => {});
  255. },
  256. /** 导出按钮操作 */
  257. handleExport() {
  258. this.download('asset/category/export', {
  259. ...this.queryParams
  260. }, `category_${new Date().getTime()}.xlsx`)
  261. }
  262. }
  263. };
  264. </script>