7 changed files with 2315 additions and 1058 deletions
@ -0,0 +1,358 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> |
||||
|
<el-form-item label="用户id" prop="userId"> |
||||
|
<el-input |
||||
|
v-model="queryParams.userId" |
||||
|
placeholder="请输入用户id" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="用户的信用评分" prop="score"> |
||||
|
<el-input |
||||
|
v-model="queryParams.score" |
||||
|
placeholder="请输入用户的信用评分" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="累计违规次数" prop="violationNum"> |
||||
|
<el-input |
||||
|
v-model="queryParams.violationNum" |
||||
|
placeholder="请输入累计违规次数" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规次数比例" prop="violationPro"> |
||||
|
<el-input |
||||
|
v-model="queryParams.violationPro" |
||||
|
placeholder="请输入违规次数比例" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
|
||||
|
<el-row :gutter="10" class="mb8"> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="primary" |
||||
|
plain |
||||
|
icon="el-icon-plus" |
||||
|
size="mini" |
||||
|
@click="handleAdd" |
||||
|
v-hasPermi="['business:userCredit:add']" |
||||
|
>新增</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="success" |
||||
|
plain |
||||
|
icon="el-icon-edit" |
||||
|
size="mini" |
||||
|
:disabled="single" |
||||
|
@click="handleUpdate" |
||||
|
v-hasPermi="['business:userCredit:edit']" |
||||
|
>修改</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="danger" |
||||
|
plain |
||||
|
icon="el-icon-delete" |
||||
|
size="mini" |
||||
|
:disabled="multiple" |
||||
|
@click="handleDelete" |
||||
|
v-hasPermi="['business:userCredit:remove']" |
||||
|
>删除</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="warning" |
||||
|
plain |
||||
|
icon="el-icon-download" |
||||
|
size="mini" |
||||
|
@click="handleExport" |
||||
|
v-hasPermi="['business:userCredit:export']" |
||||
|
>导出</el-button> |
||||
|
</el-col> |
||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
||||
|
</el-row> |
||||
|
|
||||
|
<el-table v-loading="loading" :data="userCreditList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" /> |
||||
|
<el-table-column label="唯一ID" align="center" prop="id" v-if="true"/> |
||||
|
<el-table-column label="用户id" align="center" prop="userId" /> |
||||
|
<el-table-column label="用户的信用评分" align="center" prop="score" /> |
||||
|
<el-table-column label="累计违规次数" align="center" prop="violationNum" /> |
||||
|
<el-table-column label="违规次数比例" align="center" prop="violationPro" /> |
||||
|
<el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width"> |
||||
|
<template slot-scope="scope"> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-view" |
||||
|
@click="handleDetail(scope.row)" |
||||
|
>详情</el-button> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-edit" |
||||
|
@click="handleUpdate(scope.row)" |
||||
|
v-hasPermi="['business:userCredit:edit']" |
||||
|
>修改</el-button> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-delete" |
||||
|
@click="handleDelete(scope.row)" |
||||
|
v-hasPermi="['business:userCredit:remove']" |
||||
|
>删除</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<pagination |
||||
|
v-show="total>0" |
||||
|
:total="total" |
||||
|
:page.sync="queryParams.pageNum" |
||||
|
:limit.sync="queryParams.pageSize" |
||||
|
@pagination="getList" |
||||
|
/> |
||||
|
|
||||
|
<!-- 添加或修改信用对话框 --> |
||||
|
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body> |
||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="auto"> |
||||
|
<el-form-item label="用户id" prop="userId"> |
||||
|
<el-input v-model="form.userId" placeholder="请输入用户id" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="用户的信用评分" prop="score"> |
||||
|
<el-input v-model="form.score" placeholder="请输入用户的信用评分" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="累计违规次数" prop="violationNum"> |
||||
|
<el-input v-model="form.violationNum" placeholder="请输入累计违规次数" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规次数比例" prop="violationPro"> |
||||
|
<el-input v-model="form.violationPro" placeholder="请输入违规次数比例" /> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<div slot="footer" class="dialog-footer"> |
||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button> |
||||
|
<el-button @click="cancel">取 消</el-button> |
||||
|
</div> |
||||
|
</el-dialog> |
||||
|
|
||||
|
<!-- 信用详情 --> |
||||
|
<el-dialog :title="title" :visible.sync="detailOpen" width="700px" append-to-body> |
||||
|
<el-form ref="form" :model="form" label-width="auto"> |
||||
|
<el-form-item label="用户id:"> |
||||
|
{{form.userId}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="用户的信用评分:"> |
||||
|
{{form.score}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="累计违规次数:"> |
||||
|
{{form.violationNum}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规次数比例:"> |
||||
|
{{form.violationPro}} |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<div slot="footer" class="dialog-footer"> |
||||
|
<el-button @click="cancel">关 闭</el-button> |
||||
|
</div> |
||||
|
</el-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import { listUserCredit, getUserCredit, delUserCredit, addUserCredit, updateUserCredit } from "@/api/business/userCredit"; |
||||
|
|
||||
|
export default { |
||||
|
name: "UserCredit", |
||||
|
data() { |
||||
|
return { |
||||
|
// 按钮loading |
||||
|
buttonLoading: false, |
||||
|
// 遮罩层 |
||||
|
loading: true, |
||||
|
// 选中数组 |
||||
|
ids: [], |
||||
|
// 非单个禁用 |
||||
|
single: true, |
||||
|
// 非多个禁用 |
||||
|
multiple: true, |
||||
|
// 显示搜索条件 |
||||
|
showSearch: true, |
||||
|
// 总条数 |
||||
|
total: 0, |
||||
|
// 信用表格数据 |
||||
|
userCreditList: [], |
||||
|
// 弹出层标题 |
||||
|
title: "", |
||||
|
// 是否显示弹出层 |
||||
|
open: false, |
||||
|
// 是否显示详情弹出层 |
||||
|
detailOpen: false, |
||||
|
// 查询参数 |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
userId: undefined, |
||||
|
score: undefined, |
||||
|
violationNum: undefined, |
||||
|
violationPro: undefined, |
||||
|
}, |
||||
|
// 表单参数 |
||||
|
form: {}, |
||||
|
// 表单校验 |
||||
|
rules: { |
||||
|
id: [ |
||||
|
{ required: true, message: "唯一ID不能为空", trigger: "blur" } |
||||
|
], |
||||
|
userId: [ |
||||
|
{ required: true, message: "用户id不能为空", trigger: "blur" } |
||||
|
], |
||||
|
score: [ |
||||
|
{ required: true, message: "用户的信用评分不能为空", trigger: "blur" } |
||||
|
], |
||||
|
violationNum: [ |
||||
|
{ required: true, message: "累计违规次数不能为空", trigger: "blur" } |
||||
|
], |
||||
|
violationPro: [ |
||||
|
{ required: true, message: "违规次数比例不能为空", trigger: "blur" } |
||||
|
], |
||||
|
} |
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
/** 查询信用列表 */ |
||||
|
getList() { |
||||
|
this.loading = true; |
||||
|
listUserCredit(this.queryParams).then(response => { |
||||
|
this.userCreditList = response.rows; |
||||
|
this.total = response.total; |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
// 取消按钮 |
||||
|
cancel() { |
||||
|
this.open = false; |
||||
|
this.detailOpen = false; |
||||
|
this.reset(); |
||||
|
}, |
||||
|
// 表单重置 |
||||
|
reset() { |
||||
|
this.form = { |
||||
|
id: undefined, |
||||
|
userId: undefined, |
||||
|
score: undefined, |
||||
|
violationNum: undefined, |
||||
|
violationPro: undefined, |
||||
|
createBy: undefined, |
||||
|
updateBy: undefined, |
||||
|
createTime: undefined, |
||||
|
updateTime: undefined, |
||||
|
delFlag: undefined |
||||
|
}; |
||||
|
this.resetForm("form"); |
||||
|
}, |
||||
|
/** 搜索按钮操作 */ |
||||
|
handleQuery() { |
||||
|
this.queryParams.pageNum = 1; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
/** 重置按钮操作 */ |
||||
|
resetQuery() { |
||||
|
this.resetForm("queryForm"); |
||||
|
this.handleQuery(); |
||||
|
}, |
||||
|
// 多选框选中数据 |
||||
|
handleSelectionChange(selection) { |
||||
|
this.ids = selection.map(item => item.id) |
||||
|
this.single = selection.length!==1 |
||||
|
this.multiple = !selection.length |
||||
|
}, |
||||
|
/** 新增按钮操作 */ |
||||
|
handleAdd() { |
||||
|
this.reset(); |
||||
|
this.open = true; |
||||
|
this.title = "添加信用"; |
||||
|
}, |
||||
|
/** 详情按钮操作 */ |
||||
|
handleDetail(row){ |
||||
|
this.reset(); |
||||
|
this.form = row; |
||||
|
this.detailOpen = true; |
||||
|
this.title = "信用"; |
||||
|
}, |
||||
|
/** 修改按钮操作 */ |
||||
|
handleUpdate(row) { |
||||
|
this.loading = true; |
||||
|
this.reset(); |
||||
|
const id = row.id || this.ids |
||||
|
getUserCredit(id).then(response => { |
||||
|
this.loading = false; |
||||
|
this.form = response.data; |
||||
|
this.open = true; |
||||
|
this.title = "修改信用"; |
||||
|
}); |
||||
|
}, |
||||
|
/** 提交按钮 */ |
||||
|
submitForm() { |
||||
|
this.$refs["form"].validate(valid => { |
||||
|
if (valid) { |
||||
|
this.buttonLoading = true; |
||||
|
if (this.form.id != null) { |
||||
|
updateUserCredit(this.form).then(response => { |
||||
|
this.$modal.msgSuccess("修改成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
}).finally(() => { |
||||
|
this.buttonLoading = false; |
||||
|
}); |
||||
|
} else { |
||||
|
addUserCredit(this.form).then(response => { |
||||
|
this.$modal.msgSuccess("新增成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
}).finally(() => { |
||||
|
this.buttonLoading = false; |
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
}, |
||||
|
/** 删除按钮操作 */ |
||||
|
handleDelete(row) { |
||||
|
const ids = row.id || this.ids; |
||||
|
this.$modal.confirm('是否确认删除信用编号为"' + ids + '"的数据项?').then(() => { |
||||
|
this.loading = true; |
||||
|
return delUserCredit(ids); |
||||
|
}).then(() => { |
||||
|
this.loading = false; |
||||
|
this.getList(); |
||||
|
this.$modal.msgSuccess("删除成功"); |
||||
|
}).catch(() => { |
||||
|
}).finally(() => { |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
/** 导出按钮操作 */ |
||||
|
handleExport() { |
||||
|
this.download('business/userCredit/export', { |
||||
|
...this.queryParams |
||||
|
}, `userCredit_${new Date().getTime()}.xlsx`) |
||||
|
} |
||||
|
} |
||||
|
}; |
||||
|
</script> |
||||
@ -0,0 +1,384 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> |
||||
|
<el-form-item label="用户id" prop="userId"> |
||||
|
<el-input |
||||
|
v-model="queryParams.userId" |
||||
|
placeholder="请输入用户id" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规业务" prop="violationBus"> |
||||
|
<el-input |
||||
|
v-model="queryParams.violationBus" |
||||
|
placeholder="请输入违规业务" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规订单号" prop="violationOrd"> |
||||
|
<el-input |
||||
|
v-model="queryParams.violationOrd" |
||||
|
placeholder="请输入违规订单号" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="订单金额" prop="violationSum"> |
||||
|
<el-input |
||||
|
v-model="queryParams.violationSum" |
||||
|
placeholder="请输入订单金额" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规级别" prop="violationLevel"> |
||||
|
<el-input |
||||
|
v-model="queryParams.violationLevel" |
||||
|
placeholder="请输入违规级别" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
|
||||
|
<el-row :gutter="10" class="mb8"> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="primary" |
||||
|
plain |
||||
|
icon="el-icon-plus" |
||||
|
size="mini" |
||||
|
@click="handleAdd" |
||||
|
v-hasPermi="['business:userCreditRecord:add']" |
||||
|
>新增</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="success" |
||||
|
plain |
||||
|
icon="el-icon-edit" |
||||
|
size="mini" |
||||
|
:disabled="single" |
||||
|
@click="handleUpdate" |
||||
|
v-hasPermi="['business:userCreditRecord:edit']" |
||||
|
>修改</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="danger" |
||||
|
plain |
||||
|
icon="el-icon-delete" |
||||
|
size="mini" |
||||
|
:disabled="multiple" |
||||
|
@click="handleDelete" |
||||
|
v-hasPermi="['business:userCreditRecord:remove']" |
||||
|
>删除</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="warning" |
||||
|
plain |
||||
|
icon="el-icon-download" |
||||
|
size="mini" |
||||
|
@click="handleExport" |
||||
|
v-hasPermi="['business:userCreditRecord:export']" |
||||
|
>导出</el-button> |
||||
|
</el-col> |
||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
||||
|
</el-row> |
||||
|
|
||||
|
<el-table v-loading="loading" :data="userCreditRecordList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" /> |
||||
|
<el-table-column label="唯一ID" align="center" prop="id" v-if="true"/> |
||||
|
<el-table-column label="用户id" align="center" prop="userId" /> |
||||
|
<el-table-column label="违规业务" align="center" prop="violationBus" /> |
||||
|
<el-table-column label="违规订单号" align="center" prop="violationOrd" /> |
||||
|
<el-table-column label="违规类型" align="center" prop="violationType" /> |
||||
|
<el-table-column label="订单金额" align="center" prop="violationSum" /> |
||||
|
<el-table-column label="违规级别" align="center" prop="violationLevel" /> |
||||
|
<el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width"> |
||||
|
<template slot-scope="scope"> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-view" |
||||
|
@click="handleDetail(scope.row)" |
||||
|
>详情</el-button> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-edit" |
||||
|
@click="handleUpdate(scope.row)" |
||||
|
v-hasPermi="['business:userCreditRecord:edit']" |
||||
|
>修改</el-button> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-delete" |
||||
|
@click="handleDelete(scope.row)" |
||||
|
v-hasPermi="['business:userCreditRecord:remove']" |
||||
|
>删除</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<pagination |
||||
|
v-show="total>0" |
||||
|
:total="total" |
||||
|
:page.sync="queryParams.pageNum" |
||||
|
:limit.sync="queryParams.pageSize" |
||||
|
@pagination="getList" |
||||
|
/> |
||||
|
|
||||
|
<!-- 添加或修改信用记录对话框 --> |
||||
|
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body> |
||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="auto"> |
||||
|
<el-form-item label="用户id" prop="userId"> |
||||
|
<el-input v-model="form.userId" placeholder="请输入用户id" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规业务" prop="violationBus"> |
||||
|
<el-input v-model="form.violationBus" placeholder="请输入违规业务" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规订单号" prop="violationOrd"> |
||||
|
<el-input v-model="form.violationOrd" placeholder="请输入违规订单号" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="订单金额" prop="violationSum"> |
||||
|
<el-input v-model="form.violationSum" placeholder="请输入订单金额" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规级别" prop="violationLevel"> |
||||
|
<el-input v-model="form.violationLevel" placeholder="请输入违规级别" /> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<div slot="footer" class="dialog-footer"> |
||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button> |
||||
|
<el-button @click="cancel">取 消</el-button> |
||||
|
</div> |
||||
|
</el-dialog> |
||||
|
|
||||
|
<!-- 信用记录详情 --> |
||||
|
<el-dialog :title="title" :visible.sync="detailOpen" width="700px" append-to-body> |
||||
|
<el-form ref="form" :model="form" label-width="auto"> |
||||
|
<el-form-item label="用户id:"> |
||||
|
{{form.userId}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规业务:"> |
||||
|
{{form.violationBus}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规订单号:"> |
||||
|
{{form.violationOrd}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="订单金额:"> |
||||
|
{{form.violationSum}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="违规级别:"> |
||||
|
{{form.violationLevel}} |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<div slot="footer" class="dialog-footer"> |
||||
|
<el-button @click="cancel">关 闭</el-button> |
||||
|
</div> |
||||
|
</el-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import { listUserCreditRecord, getUserCreditRecord, delUserCreditRecord, addUserCreditRecord, updateUserCreditRecord } from "@/api/business/userCreditRecord"; |
||||
|
|
||||
|
export default { |
||||
|
name: "UserCreditRecord", |
||||
|
data() { |
||||
|
return { |
||||
|
// 按钮loading |
||||
|
buttonLoading: false, |
||||
|
// 遮罩层 |
||||
|
loading: true, |
||||
|
// 选中数组 |
||||
|
ids: [], |
||||
|
// 非单个禁用 |
||||
|
single: true, |
||||
|
// 非多个禁用 |
||||
|
multiple: true, |
||||
|
// 显示搜索条件 |
||||
|
showSearch: true, |
||||
|
// 总条数 |
||||
|
total: 0, |
||||
|
// 信用记录表格数据 |
||||
|
userCreditRecordList: [], |
||||
|
// 弹出层标题 |
||||
|
title: "", |
||||
|
// 是否显示弹出层 |
||||
|
open: false, |
||||
|
// 是否显示详情弹出层 |
||||
|
detailOpen: false, |
||||
|
// 查询参数 |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
userId: undefined, |
||||
|
violationBus: undefined, |
||||
|
violationOrd: undefined, |
||||
|
violationType: undefined, |
||||
|
violationSum: undefined, |
||||
|
violationLevel: undefined, |
||||
|
}, |
||||
|
// 表单参数 |
||||
|
form: {}, |
||||
|
// 表单校验 |
||||
|
rules: { |
||||
|
id: [ |
||||
|
{ required: true, message: "唯一ID不能为空", trigger: "blur" } |
||||
|
], |
||||
|
userId: [ |
||||
|
{ required: true, message: "用户id不能为空", trigger: "blur" } |
||||
|
], |
||||
|
violationBus: [ |
||||
|
{ required: true, message: "违规业务不能为空", trigger: "blur" } |
||||
|
], |
||||
|
violationOrd: [ |
||||
|
{ required: true, message: "违规订单号不能为空", trigger: "blur" } |
||||
|
], |
||||
|
violationType: [ |
||||
|
{ required: true, message: "违规类型不能为空", trigger: "change" } |
||||
|
], |
||||
|
violationSum: [ |
||||
|
{ required: true, message: "订单金额不能为空", trigger: "blur" } |
||||
|
], |
||||
|
violationLevel: [ |
||||
|
{ required: true, message: "违规级别不能为空", trigger: "blur" } |
||||
|
], |
||||
|
} |
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
/** 查询信用记录列表 */ |
||||
|
getList() { |
||||
|
this.loading = true; |
||||
|
listUserCreditRecord(this.queryParams).then(response => { |
||||
|
this.userCreditRecordList = response.rows; |
||||
|
this.total = response.total; |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
// 取消按钮 |
||||
|
cancel() { |
||||
|
this.open = false; |
||||
|
this.detailOpen = false; |
||||
|
this.reset(); |
||||
|
}, |
||||
|
// 表单重置 |
||||
|
reset() { |
||||
|
this.form = { |
||||
|
id: undefined, |
||||
|
userId: undefined, |
||||
|
violationBus: undefined, |
||||
|
violationOrd: undefined, |
||||
|
violationType: undefined, |
||||
|
violationSum: undefined, |
||||
|
violationLevel: undefined, |
||||
|
createBy: undefined, |
||||
|
updateBy: undefined, |
||||
|
createTime: undefined, |
||||
|
updateTime: undefined, |
||||
|
delFlag: undefined |
||||
|
}; |
||||
|
this.resetForm("form"); |
||||
|
}, |
||||
|
/** 搜索按钮操作 */ |
||||
|
handleQuery() { |
||||
|
this.queryParams.pageNum = 1; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
/** 重置按钮操作 */ |
||||
|
resetQuery() { |
||||
|
this.resetForm("queryForm"); |
||||
|
this.handleQuery(); |
||||
|
}, |
||||
|
// 多选框选中数据 |
||||
|
handleSelectionChange(selection) { |
||||
|
this.ids = selection.map(item => item.id) |
||||
|
this.single = selection.length!==1 |
||||
|
this.multiple = !selection.length |
||||
|
}, |
||||
|
/** 新增按钮操作 */ |
||||
|
handleAdd() { |
||||
|
this.reset(); |
||||
|
this.open = true; |
||||
|
this.title = "添加信用记录"; |
||||
|
}, |
||||
|
/** 详情按钮操作 */ |
||||
|
handleDetail(row){ |
||||
|
this.reset(); |
||||
|
this.form = row; |
||||
|
this.detailOpen = true; |
||||
|
this.title = "信用记录"; |
||||
|
}, |
||||
|
/** 修改按钮操作 */ |
||||
|
handleUpdate(row) { |
||||
|
this.loading = true; |
||||
|
this.reset(); |
||||
|
const id = row.id || this.ids |
||||
|
getUserCreditRecord(id).then(response => { |
||||
|
this.loading = false; |
||||
|
this.form = response.data; |
||||
|
this.open = true; |
||||
|
this.title = "修改信用记录"; |
||||
|
}); |
||||
|
}, |
||||
|
/** 提交按钮 */ |
||||
|
submitForm() { |
||||
|
this.$refs["form"].validate(valid => { |
||||
|
if (valid) { |
||||
|
this.buttonLoading = true; |
||||
|
if (this.form.id != null) { |
||||
|
updateUserCreditRecord(this.form).then(response => { |
||||
|
this.$modal.msgSuccess("修改成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
}).finally(() => { |
||||
|
this.buttonLoading = false; |
||||
|
}); |
||||
|
} else { |
||||
|
addUserCreditRecord(this.form).then(response => { |
||||
|
this.$modal.msgSuccess("新增成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
}).finally(() => { |
||||
|
this.buttonLoading = false; |
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
}, |
||||
|
/** 删除按钮操作 */ |
||||
|
handleDelete(row) { |
||||
|
const ids = row.id || this.ids; |
||||
|
this.$modal.confirm('是否确认删除信用记录编号为"' + ids + '"的数据项?').then(() => { |
||||
|
this.loading = true; |
||||
|
return delUserCreditRecord(ids); |
||||
|
}).then(() => { |
||||
|
this.loading = false; |
||||
|
this.getList(); |
||||
|
this.$modal.msgSuccess("删除成功"); |
||||
|
}).catch(() => { |
||||
|
}).finally(() => { |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
/** 导出按钮操作 */ |
||||
|
handleExport() { |
||||
|
this.download('business/userCreditRecord/export', { |
||||
|
...this.queryParams |
||||
|
}, `userCreditRecord_${new Date().getTime()}.xlsx`) |
||||
|
} |
||||
|
} |
||||
|
}; |
||||
|
</script> |
||||
@ -0,0 +1,384 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> |
||||
|
<el-form-item label="用户ID" prop="userId"> |
||||
|
<el-input |
||||
|
v-model="queryParams.userId" |
||||
|
placeholder="请输入用户ID" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="营业执照" prop="license"> |
||||
|
<el-input |
||||
|
v-model="queryParams.license" |
||||
|
placeholder="请输入营业执照" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="其它证照信息" prop="licenseOther"> |
||||
|
<el-input |
||||
|
v-model="queryParams.licenseOther" |
||||
|
placeholder="请输入其它证照信息" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="法人姓名" prop="legalPerson"> |
||||
|
<el-input |
||||
|
v-model="queryParams.legalPerson" |
||||
|
placeholder="请输入法人姓名" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="经营地址" prop="operateAddr"> |
||||
|
<el-input |
||||
|
v-model="queryParams.operateAddr" |
||||
|
placeholder="请输入经营地址" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
|
||||
|
<el-row :gutter="10" class="mb8"> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="primary" |
||||
|
plain |
||||
|
icon="el-icon-plus" |
||||
|
size="mini" |
||||
|
@click="handleAdd" |
||||
|
v-hasPermi="['business:userInfoBus:add']" |
||||
|
>新增</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="success" |
||||
|
plain |
||||
|
icon="el-icon-edit" |
||||
|
size="mini" |
||||
|
:disabled="single" |
||||
|
@click="handleUpdate" |
||||
|
v-hasPermi="['business:userInfoBus:edit']" |
||||
|
>修改</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="danger" |
||||
|
plain |
||||
|
icon="el-icon-delete" |
||||
|
size="mini" |
||||
|
:disabled="multiple" |
||||
|
@click="handleDelete" |
||||
|
v-hasPermi="['business:userInfoBus:remove']" |
||||
|
>删除</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="warning" |
||||
|
plain |
||||
|
icon="el-icon-download" |
||||
|
size="mini" |
||||
|
@click="handleExport" |
||||
|
v-hasPermi="['business:userInfoBus:export']" |
||||
|
>导出</el-button> |
||||
|
</el-col> |
||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
||||
|
</el-row> |
||||
|
|
||||
|
<el-table v-loading="loading" :data="userInfoBusList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" /> |
||||
|
<el-table-column label="唯一ID" align="center" prop="id" v-if="true"/> |
||||
|
<el-table-column label="用户ID" align="center" prop="userId" /> |
||||
|
<el-table-column label="营业执照" align="center" prop="license" /> |
||||
|
<el-table-column label="其它证照信息" align="center" prop="licenseOther" /> |
||||
|
<el-table-column label="法人姓名" align="center" prop="legalPerson" /> |
||||
|
<el-table-column label="经营状态" align="center" prop="operateStatus" /> |
||||
|
<el-table-column label="经营地址" align="center" prop="operateAddr" /> |
||||
|
<el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width"> |
||||
|
<template slot-scope="scope"> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-view" |
||||
|
@click="handleDetail(scope.row)" |
||||
|
>详情</el-button> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-edit" |
||||
|
@click="handleUpdate(scope.row)" |
||||
|
v-hasPermi="['business:userInfoBus:edit']" |
||||
|
>修改</el-button> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-delete" |
||||
|
@click="handleDelete(scope.row)" |
||||
|
v-hasPermi="['business:userInfoBus:remove']" |
||||
|
>删除</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<pagination |
||||
|
v-show="total>0" |
||||
|
:total="total" |
||||
|
:page.sync="queryParams.pageNum" |
||||
|
:limit.sync="queryParams.pageSize" |
||||
|
@pagination="getList" |
||||
|
/> |
||||
|
|
||||
|
<!-- 添加或修改用户信息-商户扩展对话框 --> |
||||
|
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body> |
||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="auto"> |
||||
|
<el-form-item label="用户ID" prop="userId"> |
||||
|
<el-input v-model="form.userId" placeholder="请输入用户ID" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="营业执照" prop="license"> |
||||
|
<el-input v-model="form.license" placeholder="请输入营业执照" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="其它证照信息" prop="licenseOther"> |
||||
|
<el-input v-model="form.licenseOther" placeholder="请输入其它证照信息" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="法人姓名" prop="legalPerson"> |
||||
|
<el-input v-model="form.legalPerson" placeholder="请输入法人姓名" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="经营地址" prop="operateAddr"> |
||||
|
<el-input v-model="form.operateAddr" placeholder="请输入经营地址" /> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<div slot="footer" class="dialog-footer"> |
||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button> |
||||
|
<el-button @click="cancel">取 消</el-button> |
||||
|
</div> |
||||
|
</el-dialog> |
||||
|
|
||||
|
<!-- 用户信息-商户扩展详情 --> |
||||
|
<el-dialog :title="title" :visible.sync="detailOpen" width="700px" append-to-body> |
||||
|
<el-form ref="form" :model="form" label-width="auto"> |
||||
|
<el-form-item label="用户ID:"> |
||||
|
{{form.userId}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="营业执照:"> |
||||
|
{{form.license}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="其它证照信息:"> |
||||
|
{{form.licenseOther}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="法人姓名:"> |
||||
|
{{form.legalPerson}} |
||||
|
</el-form-item> |
||||
|
<el-form-item label="经营地址:"> |
||||
|
{{form.operateAddr}} |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<div slot="footer" class="dialog-footer"> |
||||
|
<el-button @click="cancel">关 闭</el-button> |
||||
|
</div> |
||||
|
</el-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import { listUserInfoBus, getUserInfoBus, delUserInfoBus, addUserInfoBus, updateUserInfoBus } from "@/api/business/userInfoBus"; |
||||
|
|
||||
|
export default { |
||||
|
name: "UserInfoBus", |
||||
|
data() { |
||||
|
return { |
||||
|
// 按钮loading |
||||
|
buttonLoading: false, |
||||
|
// 遮罩层 |
||||
|
loading: true, |
||||
|
// 选中数组 |
||||
|
ids: [], |
||||
|
// 非单个禁用 |
||||
|
single: true, |
||||
|
// 非多个禁用 |
||||
|
multiple: true, |
||||
|
// 显示搜索条件 |
||||
|
showSearch: true, |
||||
|
// 总条数 |
||||
|
total: 0, |
||||
|
// 用户信息-商户扩展表格数据 |
||||
|
userInfoBusList: [], |
||||
|
// 弹出层标题 |
||||
|
title: "", |
||||
|
// 是否显示弹出层 |
||||
|
open: false, |
||||
|
// 是否显示详情弹出层 |
||||
|
detailOpen: false, |
||||
|
// 查询参数 |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
userId: undefined, |
||||
|
license: undefined, |
||||
|
licenseOther: undefined, |
||||
|
legalPerson: undefined, |
||||
|
operateStatus: undefined, |
||||
|
operateAddr: undefined, |
||||
|
}, |
||||
|
// 表单参数 |
||||
|
form: {}, |
||||
|
// 表单校验 |
||||
|
rules: { |
||||
|
id: [ |
||||
|
{ required: true, message: "唯一ID不能为空", trigger: "blur" } |
||||
|
], |
||||
|
userId: [ |
||||
|
{ required: true, message: "用户ID不能为空", trigger: "blur" } |
||||
|
], |
||||
|
license: [ |
||||
|
{ required: true, message: "营业执照不能为空", trigger: "blur" } |
||||
|
], |
||||
|
licenseOther: [ |
||||
|
{ required: true, message: "其它证照信息不能为空", trigger: "blur" } |
||||
|
], |
||||
|
legalPerson: [ |
||||
|
{ required: true, message: "法人姓名不能为空", trigger: "blur" } |
||||
|
], |
||||
|
operateStatus: [ |
||||
|
{ required: true, message: "经营状态不能为空", trigger: "change" } |
||||
|
], |
||||
|
operateAddr: [ |
||||
|
{ required: true, message: "经营地址不能为空", trigger: "blur" } |
||||
|
], |
||||
|
} |
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
/** 查询用户信息-商户扩展列表 */ |
||||
|
getList() { |
||||
|
this.loading = true; |
||||
|
listUserInfoBus(this.queryParams).then(response => { |
||||
|
this.userInfoBusList = response.rows; |
||||
|
this.total = response.total; |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
// 取消按钮 |
||||
|
cancel() { |
||||
|
this.open = false; |
||||
|
this.detailOpen = false; |
||||
|
this.reset(); |
||||
|
}, |
||||
|
// 表单重置 |
||||
|
reset() { |
||||
|
this.form = { |
||||
|
id: undefined, |
||||
|
userId: undefined, |
||||
|
license: undefined, |
||||
|
licenseOther: undefined, |
||||
|
legalPerson: undefined, |
||||
|
operateStatus: undefined, |
||||
|
operateAddr: undefined, |
||||
|
createBy: undefined, |
||||
|
createTime: undefined, |
||||
|
delFlag: undefined, |
||||
|
updateBy: undefined, |
||||
|
updateTime: undefined |
||||
|
}; |
||||
|
this.resetForm("form"); |
||||
|
}, |
||||
|
/** 搜索按钮操作 */ |
||||
|
handleQuery() { |
||||
|
this.queryParams.pageNum = 1; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
/** 重置按钮操作 */ |
||||
|
resetQuery() { |
||||
|
this.resetForm("queryForm"); |
||||
|
this.handleQuery(); |
||||
|
}, |
||||
|
// 多选框选中数据 |
||||
|
handleSelectionChange(selection) { |
||||
|
this.ids = selection.map(item => item.id) |
||||
|
this.single = selection.length!==1 |
||||
|
this.multiple = !selection.length |
||||
|
}, |
||||
|
/** 新增按钮操作 */ |
||||
|
handleAdd() { |
||||
|
this.reset(); |
||||
|
this.open = true; |
||||
|
this.title = "添加用户信息-商户扩展"; |
||||
|
}, |
||||
|
/** 详情按钮操作 */ |
||||
|
handleDetail(row){ |
||||
|
this.reset(); |
||||
|
this.form = row; |
||||
|
this.detailOpen = true; |
||||
|
this.title = "用户信息-商户扩展"; |
||||
|
}, |
||||
|
/** 修改按钮操作 */ |
||||
|
handleUpdate(row) { |
||||
|
this.loading = true; |
||||
|
this.reset(); |
||||
|
const id = row.id || this.ids |
||||
|
getUserInfoBus(id).then(response => { |
||||
|
this.loading = false; |
||||
|
this.form = response.data; |
||||
|
this.open = true; |
||||
|
this.title = "修改用户信息-商户扩展"; |
||||
|
}); |
||||
|
}, |
||||
|
/** 提交按钮 */ |
||||
|
submitForm() { |
||||
|
this.$refs["form"].validate(valid => { |
||||
|
if (valid) { |
||||
|
this.buttonLoading = true; |
||||
|
if (this.form.id != null) { |
||||
|
updateUserInfoBus(this.form).then(response => { |
||||
|
this.$modal.msgSuccess("修改成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
}).finally(() => { |
||||
|
this.buttonLoading = false; |
||||
|
}); |
||||
|
} else { |
||||
|
addUserInfoBus(this.form).then(response => { |
||||
|
this.$modal.msgSuccess("新增成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
}).finally(() => { |
||||
|
this.buttonLoading = false; |
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
}, |
||||
|
/** 删除按钮操作 */ |
||||
|
handleDelete(row) { |
||||
|
const ids = row.id || this.ids; |
||||
|
this.$modal.confirm('是否确认删除用户信息-商户扩展编号为"' + ids + '"的数据项?').then(() => { |
||||
|
this.loading = true; |
||||
|
return delUserInfoBus(ids); |
||||
|
}).then(() => { |
||||
|
this.loading = false; |
||||
|
this.getList(); |
||||
|
this.$modal.msgSuccess("删除成功"); |
||||
|
}).catch(() => { |
||||
|
}).finally(() => { |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
/** 导出按钮操作 */ |
||||
|
handleExport() { |
||||
|
this.download('business/userInfoBus/export', { |
||||
|
...this.queryParams |
||||
|
}, `userInfoBus_${new Date().getTime()}.xlsx`) |
||||
|
} |
||||
|
} |
||||
|
}; |
||||
|
</script> |
||||
Loading…
Reference in new issue