index.vue 9.4 KB

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