forked from TALL/check-work
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
230 lines
7.7 KiB
230 lines
7.7 KiB
5 years ago
|
<template>
|
||
|
<div>
|
||
|
<a-button type="primary" @click="showModal" style="height: 100%; width: 100%" :style="value === 1 ? 'font-size:30px' : ''">
|
||
|
{{ str }}
|
||
|
</a-button>
|
||
|
<a-modal width="50%" :title="title" :visible="visible" :confirm-loading="confirmLoading" @ok="handleOk" @cancel="handleCancel">
|
||
|
<p v-show="value !== 1" style="text-align: center">
|
||
|
<a-radio-group v-model="value" style="margin-bottom: 20px !important">
|
||
|
<a-radio :value="2" style="margin-right: 100px"> 实体空间 </a-radio>
|
||
|
<a-radio :value="3"> 虚拟空间 </a-radio>
|
||
|
</a-radio-group>
|
||
|
</p>
|
||
|
<a-form :form="form">
|
||
|
<a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="公司名称">
|
||
|
<a-input v-model.trim="platform.companyName" placeholder="请输入公司名称..." />
|
||
|
</a-form-item>
|
||
|
<a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="联系人" required>
|
||
|
<a-input v-model.trim="platform.manName" placeholder="请输入联系人..." />
|
||
|
</a-form-item>
|
||
|
<a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="联系电话" required>
|
||
|
<a-input @change="changePhone" type="tel" v-decorator="['tel', { rules: phoneRules }]" placeholder="请输入联系电话.." />
|
||
|
</a-form-item>
|
||
|
<a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="图片验证码" required>
|
||
|
<div class="d-flex flex-nowrap">
|
||
|
<a-input placeholder="图片验证码" type="number" v-model="codeNum" />
|
||
|
<img :src="picCode.imageBase64" @click="changePicCode" class="code_img ml-2" v-if="picCode && picCode.imageBase64" />
|
||
|
<a-button @click="changePicCode" class="code_img ml-2" size="small" v-else>获取验证码</a-button>
|
||
|
<!-- <a-input v-decorator="['account', { rules: rules.account }]" /> -->
|
||
|
</div>
|
||
|
</a-form-item>
|
||
|
<a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="短信验证码" required>
|
||
|
<div class="d-flex flex-nowrap">
|
||
|
<a-input placeholder="请输入验证码" type="number" v-model="platform.code" />
|
||
|
<a-button class="code_img ml-2" disabled type="primary" v-if="showInterval">重新发送 {{ interval }}</a-button>
|
||
|
<a-button :disabled="platform.isTel === false" @click="getCode" class="code_img ml-2" type="primary" v-else>
|
||
|
获取验证码
|
||
|
</a-button>
|
||
|
</div>
|
||
|
</a-form-item>
|
||
|
<a-form-item :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol" label="合作信息简述" required>
|
||
|
<a-textarea v-model.trim="platform.describe" style="height: 120px" placeholder="请输入合作信息简述..." />
|
||
|
</a-form-item>
|
||
|
</a-form>
|
||
|
</a-modal>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { mapState, mapActions } from 'vuex';
|
||
|
import { JoinPlatform } from 'config/api';
|
||
|
const formItemLayout = {
|
||
|
labelCol: { span: 5 },
|
||
|
wrapperCol: { span: 18 },
|
||
|
};
|
||
|
const formTailLayout = {
|
||
|
labelCol: { span: 6 },
|
||
|
wrapperCol: { span: 18, offset: 6 },
|
||
|
};
|
||
|
export default {
|
||
|
name: 'AddModel',
|
||
|
props: {
|
||
|
value: {
|
||
|
type: Number,
|
||
|
default: 1,
|
||
|
},
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
form: this.$form.createForm(this, { name: 'submit' }),
|
||
|
visible: false,
|
||
|
title: '申请加入',
|
||
|
str: '申请加入',
|
||
|
formItemLayout,
|
||
|
formTailLayout,
|
||
|
confirmLoading: false,
|
||
|
platform: {
|
||
|
companyName: '', // 公司名称
|
||
|
manName: '', // 联系人
|
||
|
tel: '', // 联系电话
|
||
|
describe: '', // 项目描述
|
||
|
code: '', // 验证码
|
||
|
isTel: false,
|
||
|
},
|
||
|
codeRules: [
|
||
|
{ required: true, message: '请输入验证码' },
|
||
|
{ min: 4, max: 4, message: '请输入4位短信验证码' },
|
||
|
],
|
||
|
codeNum: '',
|
||
|
showInterval: false,
|
||
|
codeTimer: null,
|
||
|
interval: 120, // 验证码有效时间倒计时
|
||
|
phoneRules: [
|
||
|
{ required: true, pattern: new RegExp(/^[1][3,4,5,6,7,8,9][0-9]{9}$/), whitespace: true, message: '请输入正确的手机号' },
|
||
|
],
|
||
|
};
|
||
|
},
|
||
|
computed: mapState('user', ['picCode']),
|
||
|
async created() {
|
||
|
this.sendPicCode();
|
||
|
await this.getUserSer();
|
||
|
if (this.userSer) {
|
||
|
if (this.userSer.name) {
|
||
|
this.platform.manName = this.userSer.name;
|
||
|
}
|
||
|
if (this.userSer.phone) {
|
||
|
this.platform.tel = this.userSer.phone;
|
||
|
}
|
||
|
if (this.userSer.companyName) {
|
||
|
this.platform.companyName = this.userSer.companyName;
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
...mapActions('user', ['sendCode', 'sendPicCode']),
|
||
|
...mapActions('home', ['getUserSer']),
|
||
|
// 显示表单输入框
|
||
|
showModal() {
|
||
|
this.visible = true;
|
||
|
},
|
||
|
// 取消显示
|
||
|
handleCancel(e) {
|
||
|
this.visible = false;
|
||
|
},
|
||
|
// 验证电话
|
||
|
changePhone(e) {
|
||
|
this.platform.tel = e.target.value;
|
||
|
this.platform.isTel = /^[1][3,4,5,6,7,8,9][0-9]{9}$/.test(this.platform.tel);
|
||
|
},
|
||
|
// 点击确定
|
||
|
handleOk() {
|
||
|
if (!this.platform.manName) {
|
||
|
this.$message.error('请输入联系人');
|
||
|
} else if (!this.platform.tel) {
|
||
|
this.$message.error('请输入联系电话');
|
||
|
} else if (!this.platform.code) {
|
||
|
this.$message.error('请输入验证码');
|
||
|
} else if (!this.platform.describe) {
|
||
|
this.$message.error('请输入项目信息简述');
|
||
|
} else {
|
||
|
if (this.platform.isTel) {
|
||
|
this.subMitAdd();
|
||
|
} else {
|
||
|
this.$message.error('请输入正确的联系电话');
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
// 加入接口
|
||
|
async subMitAdd() {
|
||
|
this.confirmLoading = true;
|
||
|
try {
|
||
|
const params = {
|
||
|
param: {
|
||
|
code: this.platform.code,
|
||
|
companyName: this.platform.companyName,
|
||
|
contactName: this.platform.manName,
|
||
|
contactPhone: this.platform.tel,
|
||
|
description: this.platform.describe,
|
||
|
type: this.value,
|
||
|
},
|
||
|
};
|
||
|
const res = await JoinPlatform(params);
|
||
|
const { code, msg, data } = res.data;
|
||
|
if (code === 200) {
|
||
|
this.$message.success('申请成功');
|
||
|
this.visible = false;
|
||
|
this.confirmLoading = false;
|
||
|
for (let key in this.platform) {
|
||
|
this.platform[key] = '';
|
||
|
}
|
||
|
this.platform.isTel = false;
|
||
|
} else {
|
||
|
throw msg;
|
||
|
this.confirmLoading = false;
|
||
|
}
|
||
|
} catch (error) {
|
||
|
this.$message.error(error);
|
||
|
this.confirmLoading = false;
|
||
|
}
|
||
|
},
|
||
|
// 获取验证码
|
||
|
async getCode() {
|
||
|
console.log(111);
|
||
|
try {
|
||
|
const params = {
|
||
|
phone: this.platform.tel,
|
||
|
verificationCodeId: this.picCode.verificationCodeId,
|
||
|
verificationCodeValue: this.codeNum,
|
||
|
};
|
||
|
await this.sendCode(params);
|
||
|
this.getCodeInterval();
|
||
|
} catch (error) {
|
||
|
// throw new Error(`SignIn.vue method getCode: ${error}`);
|
||
|
console.log(error);
|
||
|
}
|
||
|
},
|
||
|
|
||
|
// 验证码倒计时
|
||
|
getCodeInterval() {
|
||
|
this.showInterval = true;
|
||
|
this.codeTimer = setInterval(() => {
|
||
|
if (this.interval === 0) {
|
||
|
clearInterval(this.codeTimer);
|
||
|
this.codeTimer = null;
|
||
|
this.showInterval = false;
|
||
|
this.interval = 120;
|
||
|
return;
|
||
|
}
|
||
|
this.interval = this.interval - 1;
|
||
|
}, 1000);
|
||
|
},
|
||
|
|
||
|
// 刷新验证码
|
||
|
changePicCode() {
|
||
|
this.sendPicCode();
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus" scoped>
|
||
|
.must-color {
|
||
|
color: red;
|
||
|
}
|
||
|
|
||
|
.code_img {
|
||
|
height: 32px;
|
||
|
width: 120px;
|
||
|
}
|
||
|
</style>
|