index.vue 7.1 KB

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