index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  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>
  5. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  6. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  7. </el-form-item>
  8. </el-form>
  9. <el-row :gutter="10" class="mb8">
  10. <el-col :span="1.5">
  11. <el-button
  12. type="primary"
  13. plain
  14. icon="el-icon-plus"
  15. size="mini"
  16. @click="handleAdd"
  17. v-hasPermi="['analysis:GARDENDATA:add']"
  18. >新增</el-button>
  19. </el-col>
  20. <el-col :span="1.5">
  21. <el-button
  22. type="success"
  23. plain
  24. icon="el-icon-edit"
  25. size="mini"
  26. :disabled="single"
  27. @click="handleUpdate"
  28. v-hasPermi="['analysis:GARDENDATA:edit']"
  29. >修改</el-button>
  30. </el-col>
  31. <el-col :span="1.5">
  32. <el-button
  33. type="danger"
  34. plain
  35. icon="el-icon-delete"
  36. size="mini"
  37. :disabled="multiple"
  38. @click="handleDelete"
  39. v-hasPermi="['analysis:GARDENDATA:remove']"
  40. >删除</el-button>
  41. </el-col>
  42. <el-col :span="1.5">
  43. <el-button
  44. type="warning"
  45. plain
  46. icon="el-icon-download"
  47. size="mini"
  48. @click="handleExport"
  49. v-hasPermi="['analysis:GARDENDATA:export']"
  50. >导出</el-button>
  51. </el-col>
  52. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  53. </el-row>
  54. <el-table :data="GARDENDATAList" @selection-change="handleSelectionChange">
  55. <el-table-column type="selection" width="55" align="center" />
  56. <el-table-column label="部门名称" align="center" prop="deptName">
  57. <template slot-scope="scope">
  58. {{ scope.row.deptName }}
  59. </template>
  60. </el-table-column>
  61. <el-table-column label="数值类型" align="center" prop="type">
  62. <template slot-scope="scope">
  63. {{ scope.row.type }}
  64. </template>
  65. </el-table-column>
  66. <el-table-column label="年份" align="center" prop="year">
  67. <template slot-scope="scope">
  68. {{ scope.row.year }}
  69. </template>
  70. </el-table-column>
  71. <el-table-column label="数值" align="center" prop="value">
  72. <template slot-scope="scope">
  73. {{ scope.row.value }}
  74. </template>
  75. </el-table-column>
  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="['analysis:GARDENDATA: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="['analysis:GARDENDATA: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" :close-on-click-modal="false" width="500px" append-to-body>
  104. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  105. <el-form-item label="部门名称" prop="deptId">
  106. <el-select v-model="form.deptId" filterable default-first-option clearable placeholder="请选择保税区">
  107. <el-option
  108. v-for="item in deptList"
  109. :key="item.deptId"
  110. :label="item.deptName"
  111. :value="item.deptId">
  112. </el-option>
  113. </el-select>
  114. </el-form-item>
  115. <el-form-item label="数值类型" prop="type">
  116. <el-select v-model="form.type" placeholder="请选择数值类型" filterable>
  117. <el-option
  118. v-for="item in typeList"
  119. :label="item"
  120. :value="item"
  121. ></el-option>
  122. </el-select>
  123. </el-form-item>
  124. <el-form-item prop="value" label="数值">
  125. <el-input v-model="form.value" placeholder="请输入数值" ></el-input>
  126. </el-form-item>
  127. <el-form-item prop="year" label="年份">
  128. <el-input v-model="form.year" placeholder="请输入年份" ></el-input>
  129. </el-form-item>
  130. </el-form>
  131. <div slot="footer" class="dialog-footer">
  132. <el-button type="primary" @click="submitForm">确 定</el-button>
  133. <el-button @click="cancel">取 消</el-button>
  134. </div>
  135. </el-dialog>
  136. </div>
  137. </template>
  138. <script>
  139. import { addGARDENDATA, getGARDENDATA, listGARDENDATA, updateGARDENDATA } from '@/api/garden/GARDENDATA'
  140. import { listDept } from '@/api/system/dept'
  141. export default {
  142. name: "GARDENDATA",
  143. data() {
  144. return {
  145. // 根路径
  146. baseURL: process.env.VUE_APP_BASE_API,
  147. // 遮罩层
  148. loading: true,
  149. // 选中数组
  150. ids: [],
  151. // 非单个禁用
  152. single: true,
  153. // 非多个禁用
  154. multiple: true,
  155. // 显示搜索条件
  156. showSearch: true,
  157. // 总条数
  158. total: 0,
  159. // 企业园区大屏数据表格数据
  160. GARDENDATAList: [],
  161. // 弹出层标题
  162. title: "",
  163. // 是否显示弹出层
  164. open: false,
  165. // 查询参数
  166. queryParams: {
  167. pageNum: 1,
  168. pageSize: 10,
  169. id: null,
  170. deptId: null,
  171. type: null,
  172. year: null,
  173. value: null
  174. },
  175. // 部门列表
  176. deptList: [],
  177. // TODO 数值类型
  178. typeList: ['进出口总值', '经营收入'],
  179. // 表单参数
  180. form: {},
  181. // 表单校验
  182. rules: {
  183. id: [
  184. { required: true, message: "主键不能为空", trigger: "blur" }
  185. ],
  186. deptId: [
  187. { required: true, message: "部门(企业)不能为空", trigger: "blur" }
  188. ],
  189. type: [
  190. { required: true, message: "数值类型不能为空", trigger: "change" }
  191. ],
  192. year: [
  193. { required: true, message: "年份不能为空", trigger: "blur" }
  194. ],
  195. value: [
  196. { required: true, message: "数值不能为空", trigger: "blur" }
  197. ]
  198. }
  199. };
  200. },
  201. created() {
  202. this.getList();
  203. },
  204. methods: {
  205. /** 查询企业园区大屏数据列表 */
  206. getList() {
  207. this.loading = true;
  208. listGARDENDATA(this.queryParams).then(response => {
  209. this.GARDENDATAList = response.rows;
  210. this.total = response.total;
  211. this.loading = false;
  212. });
  213. this.getDeptList()
  214. },
  215. // 获取保税区列表
  216. getDeptList() {
  217. this.loading = true;
  218. listDept().then(response => {
  219. let data = response.data
  220. // let deptList = data.filler()
  221. this.deptList = data.filter(item => {
  222. return item.type === 2 || item.type === 3;
  223. })
  224. this.loading = false;
  225. });
  226. },
  227. // 取消按钮
  228. cancel() {
  229. this.open = false;
  230. this.reset();
  231. },
  232. // 表单重置
  233. reset() {
  234. this.form = {
  235. id: null,
  236. deptId: null,
  237. type: null,
  238. year: null,
  239. value: null
  240. };
  241. this.resetForm("form");
  242. },
  243. /** 搜索按钮操作 */
  244. handleQuery() {
  245. this.queryParams.pageNum = 1;
  246. this.getList();
  247. },
  248. /** 重置按钮操作 */
  249. resetQuery() {
  250. this.resetForm("queryForm");
  251. this.handleQuery();
  252. },
  253. // 多选框选中数据
  254. handleSelectionChange(selection) {
  255. this.ids = selection.map(item => item.id)
  256. this.single = selection.length!==1
  257. this.multiple = !selection.length
  258. },
  259. /** 新增按钮操作 */
  260. handleAdd() {
  261. this.reset();
  262. this.open = true;
  263. this.title = "添加企业园区大屏数据";
  264. },
  265. /** 修改按钮操作 */
  266. handleUpdate(row) {
  267. this.reset();
  268. const id = row.id || this.ids
  269. getGARDENDATA(id).then(response => {
  270. this.form = response.data;
  271. this.open = true;
  272. this.title = "修改企业园区大屏数据";
  273. });
  274. },
  275. /** 提交按钮 */
  276. submitForm() {
  277. this.$refs["form"].validate(valid => {
  278. if (valid) {
  279. if (this.form.id != null) {
  280. updateGARDENDATA(this.form).then(response => {
  281. this.$modal.msgSuccess("修改成功");
  282. this.open = false;
  283. this.getList();
  284. });
  285. } else {
  286. addGARDENDATA(this.form).then(response => {
  287. this.$modal.msgSuccess("新增成功");
  288. this.open = false;
  289. this.getList();
  290. });
  291. }
  292. }
  293. });
  294. },
  295. /** 删除按钮操作 */
  296. handleDelete(row) {
  297. const ids = row.id || this.ids;
  298. this.$modal.confirm('是否确认删除企业园区大屏数据编号为"' + ids + '"的数据项?').then(function() {
  299. return delGARDENDATA(ids);
  300. }).then(() => {
  301. this.getList();
  302. this.$modal.msgSuccess("删除成功");
  303. }).catch(() => {});
  304. },
  305. /** 导出按钮操作 */
  306. handleExport() {
  307. this.download('analysis/GARDENDATA/export', {
  308. ...this.queryParams
  309. }, `GARDENDATA_${new Date().getTime()}.xlsx`)
  310. },
  311. // 校验参数
  312. validatorFloatNum(rule, value, callback) {
  313. let reg = /^[+-]?(0|([1-9]\d*))(\.\d+)?$/g;
  314. if (!reg.test(value)) {
  315. callback(new Error('请输入数字和正确格式的数字'));
  316. } else if (value.split('.').length > 2) {
  317. callback(new Error('请输入正确格式的数字')); //防止输入多个小数点
  318. } else if (value.indexOf('.') != -1 && value.split('.')[1].length > 6) {
  319. callback(new Error('最多只能输入两位小数')); //小数点后两位
  320. } else {
  321. callback();
  322. }
  323. },
  324. }
  325. };
  326. </script>