quotafee.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="80px">
  4. <el-form-item label="指标名称" prop="quotaName">
  5. <el-input v-model="queryParams.quotaName"></el-input>
  6. </el-form-item>
  7. <el-form-item label="指标分类" prop="normName">
  8. <el-select v-model="queryParams.normName" clearable filterable>
  9. <el-option value="加分项">加分项</el-option>
  10. <el-option value="减分项">减分项</el-option>
  11. </el-select>
  12. </el-form-item>
  13. <el-form-item>
  14. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  15. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  16. </el-form-item>
  17. </el-form>
  18. <el-row :gutter="10" class="mb8">
  19. <el-col :span="1.5">
  20. <el-button
  21. type="primary"
  22. icon="el-icon-plus"
  23. @click="handleAdd"
  24. v-hasPermi="['business:QUOTAFEE:add']"
  25. >新增</el-button>
  26. </el-col>
  27. <el-col :span="1.5">
  28. <el-button
  29. type="success"
  30. icon="el-icon-edit"
  31. :disabled="single"
  32. @click="handleUpdate"
  33. v-hasPermi="['business:QUOTAFEE:edit']"
  34. >修改</el-button>
  35. </el-col>
  36. <el-col :span="1.5">
  37. <el-button
  38. type="danger"
  39. icon="el-icon-delete"
  40. :disabled="multiple"
  41. @click="handleDelete"
  42. v-hasPermi="['business:QUOTAFEE:remove']"
  43. >删除</el-button>
  44. </el-col>
  45. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  46. </el-row>
  47. <el-table :data="QUOTAFEEList" @selection-change="handleSelectionChange">
  48. <el-table-column type="selection" width="55" align="center" />
  49. <el-table-column label="指标分类" align="center" prop="normName">
  50. </el-table-column>
  51. <!--<el-table-column label="保税区id" align="center" prop="bondedId">
  52. </el-table-column>-->
  53. <el-table-column label="指标名称" align="center" prop="quotaName">
  54. </el-table-column>
  55. <el-table-column label="指标内容" align="center" prop="content">
  56. </el-table-column>
  57. <el-table-column label="得分" align="center" prop="score">
  58. </el-table-column>
  59. <el-table-column label="确认方式" align="center" prop="confirmWay">
  60. </el-table-column>
  61. <el-table-column label="项次" width="85" align="center" prop="sort">
  62. </el-table-column>
  63. <el-table-column label="操作" align="center" width="150">
  64. <template slot-scope="scope">
  65. <el-button
  66. size="mini"
  67. type="text"
  68. icon="el-icon-edit"
  69. @click="handleUpdate(scope.row)"
  70. v-hasPermi="['business:QUOTAFEE:edit']"
  71. >修改</el-button>
  72. <el-button
  73. size="mini"
  74. type="text"
  75. icon="el-icon-delete"
  76. @click="handleDelete(scope.row)"
  77. v-hasPermi="['business:QUOTAFEE:remove']"
  78. >删除</el-button>
  79. </template>
  80. </el-table-column>
  81. </el-table>
  82. <pagination
  83. v-show="total>0"
  84. :total="total"
  85. :page.sync="queryParams.pageNum"
  86. :limit.sync="queryParams.pageSize"
  87. @pagination="getList"
  88. />
  89. <!-- 添加或修改辅助指标明细对话框 -->
  90. <el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" width="900px" append-to-body>
  91. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  92. <el-form-item label-width="100px" prop="normId" label="指标分类">
  93. <el-radio-group v-model="form.normId">
  94. <el-radio label="1">加分项</el-radio>
  95. <el-radio label="2">减分项</el-radio>
  96. </el-radio-group>
  97. </el-form-item>
  98. <el-form-item label-width="100px" prop="sort" label="项次">
  99. <el-input v-model="form.sort"></el-input>
  100. </el-form-item>
  101. <el-form-item label-width="100px" prop="quotaName" label="指标名称">
  102. <el-input v-model="form.quotaName"></el-input>
  103. </el-form-item>
  104. <el-form-item label-width="100px" prop="content" label="指标内容">
  105. <!--<editor v-model="form.content" :min-height="20"/>-->
  106. <el-input type="textarea" v-model="form.content" rows="5"></el-input>
  107. </el-form-item>
  108. <el-form-item label-width="100px" prop="score" label="分值">
  109. <el-input v-model="form.score"></el-input>
  110. </el-form-item>
  111. <el-form-item label-width="100px" prop="confirmWay" label="确认方式">
  112. <el-input v-model="form.confirmWay"></el-input>
  113. </el-form-item>
  114. </el-form>
  115. <div slot="footer" class="dialog-footer">
  116. <el-button type="primary" @click="submitForm">确 定</el-button>
  117. <el-button @click="cancel">取 消</el-button>
  118. </div>
  119. </el-dialog>
  120. </div>
  121. </template>
  122. <script>
  123. import { listQUOTAFEE, getQUOTAFEE, delQUOTAFEE, addQUOTAFEE, updateQUOTAFEE } from "@/api/norm/QUOTAFEE";
  124. export default {
  125. name: "QUOTAFEE",
  126. data() {
  127. return {
  128. // 根路径
  129. baseURL: process.env.VUE_APP_BASE_API,
  130. // 遮罩层
  131. loading: true,
  132. // 选中数组
  133. ids: [],
  134. // 非单个禁用
  135. single: true,
  136. // 非多个禁用
  137. multiple: true,
  138. // 显示搜索条件
  139. showSearch: true,
  140. // 总条数
  141. total: 0,
  142. // 辅助指标表格数据
  143. QUOTAFEEList: [],
  144. // 弹出层标题
  145. title: "",
  146. // 是否显示弹出层
  147. open: false,
  148. // 查询参数
  149. queryParams: {
  150. pageNum: 1,
  151. pageSize: 10,
  152. quotaName: null,
  153. normName: null
  154. },
  155. // 表单参数
  156. form: {},
  157. statusArr: [
  158. { value: '加分项', label: '加分项' },
  159. { value: '减分项', label: '减分项' }
  160. ],
  161. // 表单校验
  162. rules: {
  163. normId: [
  164. { required: true, message: "指标分类不能为空", trigger: "blur" }
  165. ],
  166. sort: [
  167. { required: true, message: "项次为数值", trigger: "blur" }
  168. ],
  169. quotaName: [
  170. { required: true, message: "指标名称不能为空", trigger: "blur" }
  171. ],
  172. content: [
  173. { required: true, message: "指标内容不能为空", trigger: "blur" }
  174. ],
  175. score: [
  176. { required: true, message: "得分为数值", trigger: "blur" }
  177. ],
  178. confirmWay: [
  179. { required: true, message: "确认方式不能为空", trigger: "blur" }
  180. ],
  181. }
  182. };
  183. },
  184. created() {
  185. this.getList();
  186. },
  187. methods: {
  188. /** 查询辅助指标明细列表 */
  189. getList() {
  190. this.loading = true;
  191. listQUOTAFEE(this.queryParams).then(response => {
  192. response.rows.forEach((item, index) => {
  193. response.rows[index].status = item.status == 0 ? false : true;
  194. });
  195. this.QUOTAFEEList = response.rows;
  196. this.total = response.total;
  197. this.loading = false;
  198. });
  199. },
  200. // 取消按钮
  201. cancel() {
  202. this.open = false;
  203. this.reset();
  204. },
  205. // 表单重置
  206. reset() {
  207. this.form = {
  208. id: null,
  209. delFlag: null,
  210. deptId: null,
  211. normId: null,
  212. bondedId: null,
  213. quotaName: null,
  214. content: null,
  215. score: null,
  216. confirmWay: null,
  217. sort: null,
  218. status: "0",
  219. startTime: null,
  220. stopTime: null
  221. };
  222. this.resetForm("form");
  223. },
  224. /** 搜索按钮操作 */
  225. handleQuery() {
  226. this.queryParams.pageNum = 1;
  227. this.getList();
  228. },
  229. /** 重置按钮操作 */
  230. resetQuery() {
  231. this.resetForm("queryForm");
  232. this.handleQuery();
  233. },
  234. // 多选框选中数据
  235. handleSelectionChange(selection) {
  236. this.ids = selection.map(item => item.id)
  237. this.single = selection.length!==1
  238. this.multiple = !selection.length
  239. },
  240. /** 新增按钮操作 */
  241. handleAdd() {
  242. this.reset();
  243. this.open = true;
  244. this.title = "添加辅助指标明细";
  245. },
  246. /** 修改按钮操作 */
  247. handleUpdate(row) {
  248. this.reset();
  249. const id = row.id || this.ids
  250. getQUOTAFEE(id).then(response => {
  251. this.form = response.data;
  252. this.open = true;
  253. this.title = "修改辅助指标明细";
  254. });
  255. },
  256. /** 提交按钮 */
  257. submitForm() {
  258. this.$refs["form"].validate(valid => {
  259. if (valid) {
  260. if (!(parseInt(this.form.sort) == this.form.sort)) {
  261. this.$message.error("项次必须为整数");
  262. return;
  263. }
  264. if (!(parseInt(this.form.score) == this.form.score)) {
  265. this.$message.error("得分必须为整数");
  266. return;
  267. }
  268. this.form.status = 1;
  269. if (this.form.id != null) {
  270. updateQUOTAFEE(this.form).then(response => {
  271. this.$modal.msgSuccess("修改成功");
  272. this.open = false;
  273. this.getList();
  274. });
  275. } else {
  276. addQUOTAFEE(this.form).then(response => {
  277. this.$modal.msgSuccess("新增成功");
  278. this.open = false;
  279. this.getList();
  280. });
  281. }
  282. }
  283. });
  284. },
  285. /** 删除按钮操作 */
  286. handleDelete(row) {
  287. const ids = row.id || this.ids;
  288. this.$modal.confirm('是否确认删除辅助指标明细编号为"' + ids + '"的数据项?').then(function() {
  289. return delQUOTAFEE(ids);
  290. }).then(() => {
  291. this.getList();
  292. this.$modal.msgSuccess("删除成功");
  293. }).catch(() => {});
  294. },
  295. /** 导出按钮操作 */
  296. handleExport() {
  297. this.download('business/QUOTAFEE/export', {
  298. ...this.queryParams
  299. }, `QUOTAFEE_${new Date().getTime()}.xlsx`)
  300. },
  301. // 关闭Dialog窗口
  302. closeHandler() {
  303. this.$emit("closeHandler");
  304. }
  305. }
  306. };
  307. </script>