Browse Source

动态信用

dev_kxc
xzt 1 year ago
parent
commit
3f28d57147
  1. BIN
      jwtech-admin-page/public/static/map.jpg
  2. BIN
      jwtech-admin-page/public/static/standard.xls
  3. 12
      jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/components/badCredit.vue
  4. 26
      jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/components/goodCredit.vue
  5. 6
      jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/dynamicCredit.vue

BIN
jwtech-admin-page/public/static/map.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
jwtech-admin-page/public/static/standard.xls

Binary file not shown.

12
jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/components/badCredit.vue

@ -406,7 +406,17 @@ export default {
//
form: {},
//
rules: {},
rules: {
bonusPoints: [
{ required: true, message: "请输入扣分值", trigger: "blur" },
{
pattern:
/(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
message: "请输入数字,可保留两位小数",
trigger: "blur",
},
],
},
//
headers: {
jianwei: "jwtech " + getToken(),

26
jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/components/goodCredit.vue

@ -1,5 +1,12 @@
<template>
<div class="app-container">
<el-button
type="text"
icon="el-icon-download"
@click="download('standard.xls', '良好行为认定标准.xls')"
>
良好行为认定标准.xls
</el-button>
<el-table v-loading="loading" :data="creditList">
<el-table-column
label="序号"
@ -620,7 +627,17 @@ export default {
//
form: {},
//
rules: {},
rules: {
bonusPoints: [
{ required: true, message: "请输入加分值", trigger: "blur" },
{
pattern:
/(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
message: "请输入数字,可保留两位小数",
trigger: "blur",
},
],
},
//
headers: {
jianwei: "jwtech " + getToken(),
@ -642,6 +659,13 @@ export default {
});
},
methods: {
download(filename, name) {
let a = document.createElement("a");
a.href = "/static/" + filename;
//'/'index.html
a.download = name;
a.click();
},
openAuditProcess(row) {
listApproval({
data: { creditId: row.id }, //

6
jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/dynamicCredit.vue

@ -3,7 +3,11 @@
<!-- 良好行为加分申报 -->
<div class="listTitle">
<span>良好行为加分申报</span>
<span class="addBtn" @click="handleAdd('0')">
<span
class="addBtn"
@click="handleAdd('0')"
v-hasPermi="['enterprise:credit:add']"
>
<i class="el-icon-plus"></i>
添加
</span>

Loading…
Cancel
Save