quotafee.vue 10 KB

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