index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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 :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" prop="midwestRanking">
  82. <template slot-scope="scope">
  83. {{scope.row.midwestRanking}}
  84. </template>
  85. </el-table-column>
  86. <el-table-column label="全国绩效排名" align="center" prop="nationalPerformanceRanking">
  87. <template slot-scope="scope">
  88. {{scope.row.nationalPerformanceRanking}}
  89. </template>
  90. </el-table-column>
  91. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  92. <template slot-scope="scope">
  93. <el-button
  94. size="mini"
  95. type="text"
  96. icon="el-icon-edit"
  97. @click="handleUpdate(scope.row)"
  98. v-hasPermi="['rank:RANK:edit']"
  99. >修改</el-button>
  100. <el-button
  101. size="mini"
  102. type="text"
  103. icon="el-icon-delete"
  104. @click="handleDelete(scope.row)"
  105. v-hasPermi="['rank:RANK:remove']"
  106. >删除</el-button>
  107. </template>
  108. </el-table-column>
  109. </el-table>
  110. <pagination
  111. v-show="total>0"
  112. :total="total"
  113. :page.sync="queryParams.pageNum"
  114. :limit.sync="queryParams.pageSize"
  115. @pagination="getList"
  116. />
  117. <!-- 添加或修改广西保税区排名对话框 -->
  118. <el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="500px" append-to-body>
  119. <el-form ref="form" :model="form" :rules="rules" label-width="140px">
  120. <el-form-item prop="deptId" label="保税区名称">
  121. <el-select v-model="form.deptId" filterable default-first-option clearable placeholder="请选择保税区">
  122. <el-option
  123. v-for="item in deptList"
  124. :key="item.deptId"
  125. :label="item.deptName"
  126. :value="item.deptId">
  127. </el-option>
  128. </el-select>
  129. </el-form-item>
  130. <el-form-item prop="year" label="年份">
  131. <el-select v-model="form.year" filterable default-first-option clearable placeholder="请选择年份">
  132. <el-option
  133. v-for="(item,i) in nearYearList"
  134. :key="i"
  135. :label="item"
  136. :value="item">
  137. </el-option>
  138. </el-select>
  139. </el-form-item>
  140. <el-form-item prop="ranking" label="全国进出口值排名">
  141. <el-input v-model="form.ranking" placeholder="请输入排名" ></el-input>
  142. </el-form-item>
  143. <el-form-item prop="midwestRanking" label="中西部绩效排名">
  144. <el-input v-model="form.midwestRanking" placeholder="请输入排名" ></el-input>
  145. </el-form-item>
  146. <el-form-item prop="nationalPerformanceRanking" label="全国绩效排名">
  147. <el-input v-model="form.nationalPerformanceRanking" placeholder="请输入排名" ></el-input>
  148. </el-form-item>
  149. </el-form>
  150. <div slot="footer" class="dialog-footer">
  151. <el-button type="primary" @click="submitForm">确 定</el-button>
  152. <el-button @click="cancel">取 消</el-button>
  153. </div>
  154. </el-dialog>
  155. </div>
  156. </template>
  157. <script>
  158. import { listRANK, getRANK, delRANK, addRANK, updateRANK } from "@/api/rank/RANK";
  159. import { listDept } from '@/api/system/dept'
  160. export default {
  161. name: "RANK",
  162. data() {
  163. return {
  164. // 根路径
  165. baseURL: process.env.VUE_APP_BASE_API,
  166. // 遮罩层
  167. loading: true,
  168. // 选中数组
  169. ids: [],
  170. // 非单个禁用
  171. single: true,
  172. // 非多个禁用
  173. multiple: true,
  174. // 显示搜索条件
  175. showSearch: true,
  176. // 总条数
  177. total: 0,
  178. // 广西保税区排名表格数据
  179. RANKList: [],
  180. // 保税区列表
  181. deptList: [],
  182. // 近年年份列表
  183. nearYearList: [],
  184. // 弹出层标题
  185. title: "",
  186. // 是否显示弹出层
  187. open: false,
  188. // 查询参数
  189. queryParams: {
  190. pageNum: 1,
  191. pageSize: 10,
  192. id: null,
  193. deptId: null,
  194. year: null,
  195. ranking: null,
  196. createTime: null,
  197. createBy: null
  198. },
  199. // 表单参数
  200. form: {},
  201. // 表单校验
  202. rules: {
  203. deptId: [
  204. { required: true, message: "保税区ID不能为空", trigger: "blur" }
  205. ],
  206. year: [
  207. { required: true, message: "年份不能为空", trigger: "blur" }
  208. ],
  209. ranking: [
  210. { required: true, message: "全国进出口值排名不能为空", trigger: "blur" },
  211. { trigger: 'blur', validator: this.validateNumber }
  212. ],
  213. midwestRanking: [
  214. { required: true, message: "中西部绩效排名不能为空", trigger: "blur" },
  215. { trigger: 'blur', validator: this.validateNumber }
  216. ],
  217. nationalPerformanceRanking: [
  218. { required: true, message: "全国绩效排名不能为空", trigger: "blur" },
  219. { trigger: 'blur', validator: this.validateNumber }
  220. ]
  221. }
  222. };
  223. },
  224. created() {
  225. this.getList();
  226. },
  227. methods: {
  228. /** 查询广西保税区排名列表 */
  229. getList() {
  230. this.loading = true;
  231. listRANK(this.queryParams).then(response => {
  232. this.RANKList = response.rows;
  233. this.total = response.total;
  234. this.loading = false;
  235. });
  236. this.getDeptList();
  237. this.getNearYear();
  238. },
  239. // 获取保税区列表
  240. getDeptList() {
  241. this.loading = true;
  242. listDept({parentId: '100'}).then(response => {
  243. this.deptList = response.data
  244. this.loading = false;
  245. });
  246. },
  247. // 获取近年年份
  248. getNearYear() {
  249. let currentDate = new Date();
  250. let curYear = currentDate.getFullYear();
  251. // 获取近三年
  252. let nearYearArr = [];
  253. nearYearArr.push(curYear)
  254. for (let i = 1; i <= 4; i++) {
  255. nearYearArr.push(curYear - i + '');
  256. }
  257. this.nearYearList = nearYearArr
  258. },
  259. // 取消按钮
  260. cancel() {
  261. this.open = false;
  262. this.reset();
  263. },
  264. // 表单重置
  265. reset() {
  266. this.form = {
  267. id: null,
  268. deptId: null,
  269. year: null,
  270. ranking: null,
  271. };
  272. this.resetForm("form");
  273. },
  274. /** 搜索按钮操作 */
  275. handleQuery() {
  276. this.queryParams.pageNum = 1;
  277. this.getList();
  278. },
  279. /** 重置按钮操作 */
  280. resetQuery() {
  281. this.resetForm("queryForm");
  282. this.handleQuery();
  283. },
  284. // 多选框选中数据
  285. handleSelectionChange(selection) {
  286. this.ids = selection.map(item => item.id)
  287. this.single = selection.length!==1
  288. this.multiple = !selection.length
  289. },
  290. /** 新增按钮操作 */
  291. handleAdd() {
  292. this.reset();
  293. this.open = true;
  294. this.title = "添加广西保税区排名";
  295. },
  296. /** 修改按钮操作 */
  297. handleUpdate(row) {
  298. this.reset();
  299. const id = row.id || this.ids
  300. getRANK(id).then(response => {
  301. this.form = response.data;
  302. this.form.deptId = Number(this.form.deptId)
  303. this.open = true;
  304. this.title = "修改广西保税区排名";
  305. });
  306. },
  307. /** 提交按钮 */
  308. submitForm() {
  309. this.$refs["form"].validate(valid => {
  310. if (valid) {
  311. if (this.form.id != null) {
  312. updateRANK(this.form).then(response => {
  313. this.$modal.msgSuccess("修改成功");
  314. this.open = false;
  315. this.getList();
  316. });
  317. } else {
  318. addRANK(this.form).then(response => {
  319. this.$modal.msgSuccess("新增成功");
  320. this.open = false;
  321. this.getList();
  322. });
  323. }
  324. }
  325. });
  326. },
  327. /** 删除按钮操作 */
  328. handleDelete(row) {
  329. const ids = row.id || this.ids;
  330. this.$modal.confirm('是否确认删除广西保税区排名编号为"' + ids + '"的数据项?').then(function() {
  331. return delRANK(ids);
  332. }).then(() => {
  333. this.getList();
  334. this.$modal.msgSuccess("删除成功");
  335. }).catch(() => {});
  336. },
  337. /** 导出按钮操作 */
  338. handleExport() {
  339. this.download('rank/RANK/export', {
  340. ...this.queryParams
  341. }, `RANK_${new Date().getTime()}.xlsx`)
  342. },
  343. // 校验参数
  344. validateNumber(rule, value, callback) {
  345. if (value === '') {
  346. callback(new Error('请输入整数'));
  347. } else if (!Number.isInteger(Number(value))) {
  348. callback(new Error('请输入整数'));
  349. } else if (Number(value) < 0) {
  350. callback(new Error('不能小于0'));
  351. } else {
  352. callback();
  353. }
  354. }
  355. }
  356. };
  357. </script>