index.vue 10 KB

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