index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
  4. <el-form-item label="区域" prop="areaId">
  5. <template>
  6. <el-select v-model="queryParams.areaId" filterable placeholder="请选择">
  7. <el-option
  8. v-for="item in areaList"
  9. :key="item.areaId"
  10. :label="item.areaName"
  11. :value="item.areaId">
  12. </el-option>
  13. </el-select>
  14. </template>
  15. </el-form-item>
  16. <el-form-item label="类别" prop="typeId">
  17. <template>
  18. <el-select v-model="queryParams.typeId" filterable placeholder="请选择">
  19. <el-option
  20. v-for="item in planInfoType"
  21. :key="item.typeId"
  22. :label="item.typeName"
  23. :value="item.typeId">
  24. </el-option>
  25. </el-select>
  26. </template>
  27. </el-form-item>
  28. <el-form-item label="名字" prop="planName">
  29. <el-input
  30. v-model="queryParams.planName"
  31. placeholder="请输入名字"
  32. clearable
  33. size="small"
  34. @keyup.enter.native="handleQuery"
  35. />
  36. </el-form-item>
  37. <el-form-item>
  38. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  39. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  40. </el-form-item>
  41. </el-form>
  42. <el-row :gutter="10" class="mb8">
  43. <el-col :span="1.5">
  44. <el-button
  45. type="primary"
  46. plain
  47. icon="el-icon-plus"
  48. size="mini"
  49. @click="handleAdd"
  50. v-hasPermi="['info:planInfo:add']"
  51. >新增</el-button>
  52. </el-col>
  53. <el-col :span="1.5">
  54. <el-button
  55. type="success"
  56. plain
  57. icon="el-icon-edit"
  58. size="mini"
  59. :disabled="single"
  60. @click="handleUpdate"
  61. v-hasPermi="['info:planInfo:edit']"
  62. >修改</el-button>
  63. </el-col>
  64. <el-col :span="1.5">
  65. <el-button
  66. type="danger"
  67. plain
  68. icon="el-icon-delete"
  69. size="mini"
  70. :disabled="multiple"
  71. @click="handleDelete"
  72. v-hasPermi="['info:planInfo:remove']"
  73. >删除</el-button>
  74. </el-col>
  75. <el-col :span="1.5">
  76. <el-button
  77. type="warning"
  78. plain
  79. icon="el-icon-download"
  80. size="mini"
  81. :loading="exportLoading"
  82. @click="handleExport"
  83. v-hasPermi="['info:planInfo:export']"
  84. >导出</el-button>
  85. </el-col>
  86. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  87. </el-row>
  88. <el-table v-loading="loading" :data="planInfoList" @selection-change="handleSelectionChange">
  89. <el-table-column type="selection" width="55" align="center" />
  90. <el-table-column label="规划id" align="center" prop="planId" />
  91. <el-table-column label="区域" align="center">
  92. <template slot-scope="scope">
  93. {{ getAreaName(scope.row.areaId) }}
  94. </template>
  95. </el-table-column>
  96. <el-table-column label="类别" align="center">
  97. <template slot-scope="scope">
  98. {{ getPlanTypeName(scope.row.typeId) }}
  99. </template>
  100. </el-table-column>
  101. <el-table-column label="名字" align="center" prop="planName" />
  102. <el-table-column label="备注" align="center" prop="content" />
  103. <el-table-column label="颜色" prop="colour">
  104. <template slot-scope="scope">
  105. <div :style="{ backgroundColor: scope.row.colour, width: '40px', height: '30px', borderRadius: '50%'}"></div>
  106. </template>
  107. </el-table-column>
  108. <el-table-column label="面积" align="center" prop="acreage" />
  109. <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="140">
  110. <template slot-scope="scope">
  111. <el-button
  112. size="mini"
  113. type="text"
  114. icon="el-icon-edit"
  115. @click="handleUpdate(scope.row)"
  116. v-hasPermi="['info:planInfo:edit']"
  117. >修改</el-button>
  118. <el-button
  119. size="mini"
  120. type="text"
  121. icon="el-icon-delete"
  122. @click="handleDelete(scope.row)"
  123. v-hasPermi="['info:planInfo:remove']"
  124. >删除</el-button>
  125. </template>
  126. </el-table-column>
  127. </el-table>
  128. <pagination
  129. v-show="total>0"
  130. :total="total"
  131. :page.sync="queryParams.pageNum"
  132. :limit.sync="queryParams.pageSize"
  133. @pagination="getList"
  134. />
  135. <!-- 添加或修改规划对象对话框 -->
  136. <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
  137. <el-form ref="form" :model="form" :rules="rules" label-width="120px">
  138. <el-form-item label="区域" prop="areaId">
  139. <template>
  140. <el-select v-model="form.areaId" filterable placeholder="请选择">
  141. <el-option
  142. v-for="item in areaList"
  143. :key="item.areaId"
  144. :label="item.areaName"
  145. :value="item.areaId">
  146. </el-option>
  147. </el-select>
  148. </template>
  149. </el-form-item>
  150. <el-form-item label="类别" prop="typeId">
  151. <template>
  152. <el-select v-model="form.typeId" filterable placeholder="请选择类别">
  153. <el-option
  154. v-for="item in planInfoType"
  155. :key="item.typeId"
  156. :label="item.typeName"
  157. :value="item.typeId">
  158. </el-option>
  159. </el-select>
  160. </template>
  161. </el-form-item>
  162. <el-form-item label="名字" prop="planName">
  163. <el-input v-model="form.planName" placeholder="请输入名字" />
  164. </el-form-item>
  165. <el-form-item label="备注" prop="content">
  166. <el-input v-model="form.content" type="textarea" placeholder="请输入内容" />
  167. </el-form-item>
  168. <el-form-item label="颜色">
  169. <el-color-picker v-model="form.colour"></el-color-picker>
  170. </el-form-item>
  171. <el-form-item label="面积" prop="acreage">
  172. <el-input-number v-model="form.acreage" controls-position="right" :min="0" placeholder="请输入面积" />
  173. </el-form-item>
  174. </el-form>
  175. <div slot="footer" class="dialog-footer">
  176. <el-button type="primary" @click="submitForm">确 定</el-button>
  177. <el-button @click="cancel">取 消</el-button>
  178. </div>
  179. </el-dialog>
  180. </div>
  181. </template>
  182. <script>
  183. import { listPlanInfo, getPlanInfo, delPlanInfo, addPlanInfo, updatePlanInfo, exportPlanInfo } from "@/api/info/planInfo";
  184. import { listPlanType, getPlanType } from "@/api/type/planType";
  185. import { listAreaInfo, getAreaInfo } from "@/api/info/areaInfo";
  186. export default {
  187. name: "PlanInfo",
  188. data() {
  189. return {
  190. areaList: [],
  191. planInfoType:[],
  192. // 遮罩层
  193. loading: true,
  194. // 导出遮罩层
  195. exportLoading: false,
  196. // 选中数组
  197. ids: [],
  198. // 非单个禁用
  199. single: true,
  200. // 非多个禁用
  201. multiple: true,
  202. // 显示搜索条件
  203. showSearch: true,
  204. // 总条数
  205. total: 0,
  206. // 规划对象表格数据
  207. planInfoList: [],
  208. // 弹出层标题
  209. title: "",
  210. // 是否显示弹出层
  211. open: false,
  212. // 查询参数
  213. queryParams: {
  214. pageNum: 1,
  215. pageSize: 10,
  216. areaId: null,
  217. typeId: null,
  218. planName: null,
  219. },
  220. queryTypeParams: {
  221. pageNum: 1,
  222. pageSize: 999999,
  223. },
  224. // 表单参数
  225. form: {},
  226. // 表单校验
  227. rules: {
  228. planId: [
  229. { required: true, message: "规划id不能为空", trigger: "blur" }
  230. ],
  231. }
  232. };
  233. },
  234. created() {
  235. this.getList();
  236. this.getPlanInfoType()
  237. this.getAreaList();
  238. },
  239. methods: {
  240. getPlanTypeName(typeId) {
  241. const type = this.planInfoType.find(b => b.typeId === typeId);
  242. return type ? type.typeName : '未知';
  243. },
  244. getAreaName(areaId) {
  245. const area = this.areaList.find(b => b.areaId === areaId);
  246. return area ? area.areaName : '未知';
  247. },
  248. getAreaList() {
  249. listAreaInfo(this.queryTypeParams).then(response => {
  250. this.areaList = response.data.list;
  251. });
  252. },
  253. /** 查询字典类型下拉列表 */
  254. getPlanInfoType() {
  255. listPlanType(this.queryTypeParams).then(response => {
  256. this.planInfoType = response.data.list;
  257. });
  258. },
  259. /** 查询规划对象列表 */
  260. getList() {
  261. this.loading = true;
  262. listPlanInfo(this.queryParams).then(response => {
  263. this.planInfoList = response.data.list;
  264. this.total = response.data.total;
  265. this.loading = false;
  266. });
  267. },
  268. // 取消按钮
  269. cancel() {
  270. this.open = false;
  271. this.reset();
  272. },
  273. // 表单重置
  274. reset() {
  275. this.form = {
  276. planId: null,
  277. areaId: null,
  278. typeId: null,
  279. planName: null,
  280. content: null,
  281. colour: null,
  282. acreage: null
  283. };
  284. this.resetForm("form");
  285. },
  286. /** 搜索按钮操作 */
  287. handleQuery() {
  288. this.queryParams.pageNum = 1;
  289. this.getList();
  290. },
  291. /** 重置按钮操作 */
  292. resetQuery() {
  293. this.resetForm("queryForm");
  294. this.handleQuery();
  295. },
  296. // 多选框选中数据
  297. handleSelectionChange(selection) {
  298. this.ids = selection.map(item => item.planId)
  299. this.single = selection.length!==1
  300. this.multiple = !selection.length
  301. },
  302. /** 新增按钮操作 */
  303. handleAdd() {
  304. this.reset();
  305. this.open = true;
  306. this.title = "添加规划对象";
  307. },
  308. /** 修改按钮操作 */
  309. handleUpdate(row) {
  310. this.reset();
  311. const planId = row.planId || this.ids
  312. getPlanInfo(planId).then(response => {
  313. this.form = response.data;
  314. this.open = true;
  315. this.title = "修改规划对象";
  316. });
  317. },
  318. /** 提交按钮 */
  319. submitForm() {
  320. this.$refs["form"].validate(valid => {
  321. if (valid) {
  322. if (this.form.planId != null) {
  323. updatePlanInfo(this.form).then(response => {
  324. this.$modal.msgSuccess("修改成功");
  325. this.open = false;
  326. this.getList();
  327. });
  328. } else {
  329. addPlanInfo(this.form).then(response => {
  330. this.$modal.msgSuccess("新增成功");
  331. this.open = false;
  332. this.getList();
  333. });
  334. }
  335. }
  336. });
  337. },
  338. /** 删除按钮操作 */
  339. handleDelete(row) {
  340. const planIds = row.planId || this.ids;
  341. this.$modal.confirm('是否确认删除规划对象编号为"' + planIds + '"的数据项?').then(function() {
  342. return delPlanInfo(planIds);
  343. }).then(() => {
  344. this.getList();
  345. this.$modal.msgSuccess("删除成功");
  346. }).catch(() => {});
  347. },
  348. /** 导出按钮操作 */
  349. handleExport() {
  350. const queryParams = this.queryParams;
  351. this.$modal.confirm('是否确认导出所有规划对象数据项?').then(() => {
  352. this.exportLoading = true;
  353. return exportPlanInfo(queryParams);
  354. }).then(response => {
  355. this.$download.name(response.msg);
  356. this.exportLoading = false;
  357. }).catch(() => {});
  358. }
  359. }
  360. };
  361. </script>