Files
cmanager/src/views/manage/station/inviteCode.vue

303 lines
8.7 KiB
Vue
Raw Normal View History

2024-03-17 15:19:08 +08:00
<template>
<basic-container>
<avue-crud
ref="crud"
2024-03-17 20:25:26 +08:00
@date-change="dateChange"
2024-03-17 15:19:08 +08:00
@current-change="currentChange"
@size-change="sizeChange"
2024-03-17 20:25:26 +08:00
@on-load="onLoad"
:option="option"
:data="inviteCodeList"
:page.sync="page"
2024-03-29 16:02:57 +08:00
@row-del="rowDel"
2024-03-17 15:19:08 +08:00
@search-change="searchChange"
2024-03-17 20:25:26 +08:00
@refresh-change="refreshChange"
2024-03-17 15:19:08 +08:00
@search-reset="searchReset"
>
<template slot="menuLeft">
<el-button
size="small"
2024-03-29 16:02:57 +08:00
@click.stop="distributionCodeDialog = true; isEdit = false; inviteCodeForm = {}"
2024-03-17 15:19:08 +08:00
type="primary"
2024-03-28 09:40:13 +08:00
v-show="vaildData(permission.manage_station_inviteCode_edituser, false)"
2024-03-22 09:59:56 +08:00
>新增用户</el-button>
2024-03-17 15:19:08 +08:00
</template>
2024-03-29 16:02:57 +08:00
<template slot="menu" slot-scope="{row}">
<el-button type="text" @click="rowUpdate(row)">编辑</el-button>
<el-button type="text" @click="rowDel(row)">删除</el-button>
</template>
2024-03-17 20:25:26 +08:00
<template slot="isEnabled" slot-scope="{ row }">
<el-switch
:value="row.isEnabled"
:active-value="1"
:inactive-value="0"
active-color="#13ce66"
inactive-color="#ff4949"
@change="changeEnabled(row)">
</el-switch>
2024-03-17 15:19:08 +08:00
</template>
2024-03-17 20:25:26 +08:00
</avue-crud>
2024-03-17 15:19:08 +08:00
<el-dialog
2024-03-22 09:59:56 +08:00
title="新增用户"
2024-03-17 15:19:08 +08:00
:visible.sync="distributionCodeDialog"
append-to-body
width="30%">
2024-03-17 20:25:26 +08:00
<el-form :model="inviteCodeForm" :rules="inviteCodeRules" filterable ref="inviteCode" label-width="100px" class="demo-ruleForm">
2024-03-17 20:47:46 +08:00
<el-form-item label="企业名称:" prop="companyId">
2024-04-11 15:29:57 +08:00
<el-select v-model="inviteCodeForm.inviteCompanyId" :disabled="isEdit" filterable placeholder="请选择企业" style="width: 260px" >
2024-03-17 15:19:08 +08:00
<el-option
2024-03-17 20:25:26 +08:00
v-for="item in enterpriseList"
:key="item.id"
2024-03-26 21:21:56 +08:00
:label="item.comname"
2024-03-17 20:25:26 +08:00
:value="item.id">
2024-03-17 15:19:08 +08:00
</el-option>
</el-select>
</el-form-item>
2024-04-11 15:29:57 +08:00
<el-form-item label="绑定用户:" prop="realName" >
2024-03-17 20:47:46 +08:00
<el-input style="width: 260px" v-model="inviteCodeForm.realName" placeholder="请输入姓名" ></el-input>
2024-03-17 20:25:26 +08:00
</el-form-item>
2024-04-11 15:29:57 +08:00
<el-form-item label="身份证:" prop="idNumber" >
2024-03-17 20:25:26 +08:00
<el-input style="width: 260px" v-model="inviteCodeForm.idNumber" placeholder="请输入身份证" ></el-input>
</el-form-item>
<el-form-item label="手机号:" prop="phone" >
<el-input style="width: 260px" v-model="inviteCodeForm.phone" placeholder="请输入手机号" ></el-input>
2024-03-17 15:19:08 +08:00
</el-form-item>
2024-03-18 11:34:50 +08:00
<el-form-item label="备注:" prop="remarks" >
<el-input type="textarea" style="width: 260px" v-model="inviteCodeForm.remarks" placeholder="请输入备注" ></el-input>
2024-03-17 20:47:46 +08:00
</el-form-item>
2024-03-17 15:19:08 +08:00
</el-form>
<span slot="footer" class="dialog-footer">
2024-03-17 20:25:26 +08:00
<el-button @click="distributionCodeDialog = false"> </el-button>
2024-03-17 15:19:08 +08:00
<el-button type="primary" @click="inviteCodeSubmit"> </el-button>
</span>
</el-dialog>
</basic-container>
</template>
<script>
import { mapGetters } from "vuex";
import { check18IdCardNo, isExcel, isMobile } from "@/util/validate";
2024-03-29 16:02:57 +08:00
import { deepClone } from "@/util/util";
2024-03-17 20:25:26 +08:00
import {
getEnterpriseList,
saveEnterpriseItem,
getInvitationCodeList,
getInvitationStatusUpdate
} from "@/api/manage/station";
import { Message } from "element-ui";
const inviteCodeRules = {
stationId: [
{ required: true, message: '请选择企业', trigger: 'blur' }
],
realName: [
{ required: true, message: '请输入名称', trigger: 'blur'}
],
phone: [
{ required: true, message: '请输入手机号', trigger: 'blur', pattern: /^1[3-9]{1}\d{9}/}
],
idNumber: [
{ required: true, message: '请输入身份证', trigger: 'blur', pattern: /^[1-9]\d{5}(19|20)\d{2}(0[1-9]|1[0-2])(0[1-9]|[1-2]\d|3[0-1])\d{3}[\dX]$/}
],
}
const curdOptions = {
dateBtn: false,
addBtn: false,
editBtn: false,
delBtn: false,
height: "auto",
2024-03-17 21:31:39 +08:00
border: true,
2024-03-17 20:25:26 +08:00
searchMenuSpan: 48,
index: true,
indexLabel: "序号",
column: [{
2024-03-31 18:53:57 +08:00
label: '机构名称',
2024-03-17 20:25:26 +08:00
prop: 'companyName',
search: true,
2024-03-17 21:31:39 +08:00
},{
2024-03-31 18:53:57 +08:00
label: '企业名称',
prop: 'comname',
2024-03-17 20:25:26 +08:00
search: true,
},{
2024-03-31 18:53:57 +08:00
label: '绑定用户',
prop: 'realName',
// search: true,
},
// {
// label: '邀请码',
// prop: 'inviteCode',
// search: true,
// },
{
2024-03-17 20:25:26 +08:00
label: '手机号',
prop: 'phone',
search: true,
},{
label: '身份证',
prop: 'idNumber',
search: true,
formatter:(_,value,label) => value
2024-03-31 18:53:57 +08:00
},
// {
// label: '备注',
// prop: 'remarks',
// },
{
2024-03-17 20:25:26 +08:00
label: '启用状态',
prop: 'isEnabled',
slot: true,
width: 100
2024-03-29 16:02:57 +08:00
}]
2024-03-17 20:25:26 +08:00
}
const page = {
pageSize: 10,
currentPage: 1,
total: 0,
}
2024-03-17 15:19:08 +08:00
export default {
name: "manage_station_inviteCode",
2024-03-17 20:25:26 +08:00
data(){
2024-03-17 15:19:08 +08:00
return {
distributionCodeDialog: false,
2024-03-17 20:25:26 +08:00
inviteCodeRules: Object.assign({}, inviteCodeRules),
enterpriseList: [], // 企业列表
inviteCodeForm: {},
inviteCodeList:[],
option: Object.assign({}, curdOptions),
page: Object.assign({}, page),
searchData: {},
2024-03-29 16:02:57 +08:00
isEdit: false,
2024-03-17 20:25:26 +08:00
}
2024-03-17 15:19:08 +08:00
},
2024-04-10 15:36:23 +08:00
activated() {
2024-03-17 20:25:26 +08:00
this.getList() // 企业
2024-03-17 15:19:08 +08:00
},
2024-03-28 09:40:13 +08:00
computed: {
...mapGetters(["permission"]),
},
2024-03-17 20:25:26 +08:00
methods:{
2024-03-29 16:02:57 +08:00
rowUpdate(row) {
this.isEdit = true
this.distributionCodeDialog = true
this.inviteCodeForm = deepClone({
inviteCompanyId: row.inviteCompanyId,
phone: row.phone,
remarks: row.remarks,
id: row.id
})
},
rowDel(row) {
const h = this.$createElement;
this.$confirm(
h("div", null, [
h("p", { style: "font-size: 16px" }, "您确定要删除此消息吗? "),
h("p", { style: "color: red" }, "一旦删除则无法找回"),
]),
{
type: "warning",
showClose: false,
showCancelButton: true,
confirmButtonText: "确定",
cancelButtonText: "取消",
}
)
.then(() => {
return getInvitationStatusUpdate({ id: row.id, isDeleted: 1});
})
.then(() => {
this.$message({
type: "success",
message: "操作成功!",
});
this.refreshChange();
})
.catch(() => { });
},
2024-03-17 20:25:26 +08:00
async onLoad() {
this.getInvitationCode()
},
currentChange(page) {
this.page.currentPage = page
},
sizeChange(size) {
this.page.pageSize = size
},
async changeEnabled(row) {
const isEnabled = row.isEnabled ? 0 : 1
let params = { id: row.id, isEnabled }
console.log(params)
let resData = await getInvitationStatusUpdate(params)
if(resData.data.code === 200){
this.$message.success('状态修改成功');
this.getInvitationCode()
}
2024-03-17 15:19:08 +08:00
},
2024-03-17 20:25:26 +08:00
refreshChange(){
this.getInvitationCode('refresh')
2024-03-17 15:19:08 +08:00
},
2024-03-17 20:25:26 +08:00
searchReset() {
this.searchData = {};
this.getInvitationCode('refresh')
2024-03-17 15:19:08 +08:00
},
2024-03-17 20:25:26 +08:00
searchChange(params, done) {
this.searchData = params;
this.getInvitationCode('refresh').then(() => done())
2024-03-17 15:19:08 +08:00
},
2024-03-17 20:25:26 +08:00
getInvitationCode(type = 'add') {
return new Promise(async (resolve, reject) => {
if(type === 'refresh') {
this.page.currentPage = 1
}
let params = {
...this.searchData,
current: this.page.currentPage,
size: this.page.pageSize,
}
let resData = await getInvitationCodeList(params)
if(resData.data.code === 200){
const { size, records, current, total } = resData.data.data
this.inviteCodeList = records
this.page = { pageSize: size, currentPage: current, total }
resolve()
2024-03-17 15:19:08 +08:00
} else {
2024-03-17 20:25:26 +08:00
reject()
this.$message.error('拉取失败');
2024-03-17 15:19:08 +08:00
}
2024-03-17 20:25:26 +08:00
})
2024-03-17 15:19:08 +08:00
},
2024-03-17 20:25:26 +08:00
async inviteCodeSubmit() {
2024-03-29 16:02:57 +08:00
const companyName = this.enterpriseList.filter((item) => item.id === this.inviteCodeForm.inviteCompanyId)[0].comname;
2024-03-17 20:25:26 +08:00
let params = {
...this.inviteCodeForm,
2024-03-17 20:47:46 +08:00
companyName
2024-03-17 15:19:08 +08:00
}
2024-03-29 16:02:57 +08:00
let resData = null
if( this.isEdit ) {
resData = await getInvitationStatusUpdate(params)
} else {
resData = await saveEnterpriseItem(params)
}
2024-03-17 20:25:26 +08:00
if(resData.data.code === 200){
const { code, data } = resData.data
this.distributionCodeDialog = false
this.getInvitationCode('refresh')
this.$message.success('提交成功');
2024-03-17 15:19:08 +08:00
} else {
2024-03-17 20:25:26 +08:00
this.$message.error('创建失败');
2024-03-17 15:19:08 +08:00
}
},
2024-03-17 20:25:26 +08:00
async getList() {
let params = {}
let resData = await getEnterpriseList(params)
if(resData.data.code === 200){
const { code, data } = resData.data
this.enterpriseList = data
}
}
}
}
2024-03-17 15:19:08 +08:00
</script>
<style>
2024-03-17 20:25:26 +08:00
2024-03-17 15:19:08 +08:00
</style>