| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <template>
- <div class="JPattributeEditor">
- <van-nav-bar class="navBar" title="金牌店档案编辑" left-arrow @click-left="onClickLeft" />
- <div class="content" v-if="detail">
- <van-form ref="tabstoreVal">
- <van-field
- class="sendCode"
- v-model="detail.ownerMobile"
- label="主经营者电话"
- placeholder="请输入主经营者电话"
- @blur="sendCodeTelFn(detail.ownerMobile)"
- type="tel">
- <template #button v-if="!verifyMobile">
- <van-button
- size="small"
- style="color: white; background: rgb(0, 87, 186); border-radius: 6px"
- @click="sendCode(detail.ownerMobile)"
- :disabled="time != null">
- <span v-if="time">已发送({{ timeNum }})</span>
- <span v-else>发送验证码</span>
- </van-button>
- </template>
- </van-field>
- <van-field
- v-model="verificationVal"
- label="主经营者收到的验证码"
- placeholder="请输入验证码"
- type="number"
- @blur="verification(verificationVal)"
- v-if="!verifyMobile" />
- <van-field v-model="detail.ownerName" label="主经营者姓名" />
- <van-field
- v-model="detail.ownerBirthday"
- label="主经营者出生日期"
- placeholder="请输入主经营者出生日期"
- @click="getNyr('ownerBirthday', detail.ownerBirthday)" />
- <van-field autosize type="textarea" label="主营/擅长经营品类">
- <template #input>
- <van-checkbox-group v-model="detail.mainProductCategorys" direction="horizontal">
- <van-checkbox
- v-for="(item, index) in mainProductCategorys"
- :name="item.dictValue"
- shape="square"
- :key="index">
- {{ item.dictValue }}
- </van-checkbox>
- </van-checkbox-group>
- </template>
- </van-field>
- <van-field
- v-model="detail.totalSalesAmount"
- type="number"
- label="门店24年总进货额(含所有品牌品类)" />
- <van-field v-model="detail.performanceRatio" type="number" label="门店立邦业绩占比(%)" />
- <van-field v-model="detail.mainBrand" autosize type="textarea" label="门店主营TOP3品牌" />
- <van-field label="紧急联系人身份">
- <template #input>
- <van-radio-group v-model="detail.emergencyContactRelation" direction="horizontal">
- <van-radio
- v-for="(item, index) in emergencyContactRelation"
- :name="item.dictValue"
- :key="index">
- {{ item.dictValue }}
- </van-radio>
- </van-radio-group>
- </template>
- </van-field>
- <van-field v-model="detail.emergencyContact" label="紧急联系人姓名" />
- <van-field
- v-model="detail.emergencyContactBirthday"
- label="紧急联系人出生日期"
- @click="getNyr('emergencyContactBirthday', detail.emergencyContactBirthday)" />
- <van-field
- v-model="detail.emergencyContactMobile"
- type="number"
- @blur="emergencyContactBlur(detail.emergencyContactMobile)"
- label="紧急联系人电话" />
- </van-form>
- </div>
- <div class="footer-btn">
- <van-button
- style="color: white; background: rgb(0, 87, 186); border-radius: 6px; width: 90%"
- @click="confirmShare">
- 保 存
- </van-button>
- </div>
- <!-- 时间选择 -->
- <van-popup v-model="datetimeShowPicker" position="bottom">
- <van-datetime-picker
- v-model="currentDate"
- type="date"
- title="选择年月日"
- :min-date="minDate"
- :max-date="maxDate"
- @confirm="datetimeOnConfirm"
- @cancel="datetimeShowPicker = false" />
- </van-popup>
- </div>
- </template>
- <script>
- import { sendAndCheckVerCode, getDictOption } from '@/api/index';
- import { getStoreArchives, updateArchives } from '@/api/storeManagement';
- export default {
- name: 'JPattributeEditor',
- data() {
- return {
- detail: null,
- time: null, //计时
- timeNum: 60,
- verificationVal: '',
- datetimeShowPicker: false,
- activatNyrItem: '',
- checkboxGroup: [],
- mainProductCategorys: [],
- emergencyContactRelation: [],
- verificationPassedPhoneNum: '', //验证通过手机号
- minDate: new Date(1945, 0, 1),
- maxDate: new Date(),
- currentDate: new Date(1945, 0, 1),
- mobileStatus: '0',
- verifyMobile: false, //手机号是否验证透通过
- };
- },
- activated() {
- this.detail = null;
- this.verificationVal = '';
- if (this.time) clearInterval(this.time);
- this.time = null; //计时
- this.timeNum = 60;
- this.toastLoading(0, '加载中...', true);
- getDictOption({}, 'archives_main_product_categorys').then((res) => {
- let mainProductCategorys = [];
- let emergencyContactRelation = [];
- res.data.forEach((val) => {
- if (val.remark == 'mainProductCategorys') {
- mainProductCategorys.push(val);
- } else {
- emergencyContactRelation.push(val);
- }
- });
- this.mainProductCategorys = mainProductCategorys;
- this.emergencyContactRelation = emergencyContactRelation;
- this.getDetaild();
- });
- },
- methods: {
- getDetaild() {
- getStoreArchives({ storeCode: this.$route.query.storeCode }).then((res) => {
- this.toastLoading().clear();
- if (res.code == 200) {
- // let copyData = JSON.parse(JSON.stringify(res.data));
- res.data.mainProductCategorys = res.data.mainProductCategorys
- ? res.data.mainProductCategorys.split(',')
- : [];
- this.detail = res.data;
- this.mobileStatus = res.data.mobileStatus;
- // mobileStatus 1是 是否验证通过
- if (res.data.mobileStatus == '1') {
- this.verificationPassedPhoneNum = this.detail.ownerMobile;
- }
- // 验证码和发送按钮是否显示
- this.verifyMobile = this.mobileStatus == '0' ? false : true;
- }
- });
- },
- sendCodeTelFn(tel) {
- if (!/^1[123456789]\d{9}$/.test(tel) || tel == '') {
- this.$toast('格式错误');
- return;
- }
- if (tel != this.verificationPassedPhoneNum) {
- this.verifyMobile = false;
- }
- },
- // 发送验证码
- sendCode(val) {
- if (!/^1[123456789]\d{9}$/.test(val) || val == '') {
- this.$toast('格式错误');
- return;
- }
- if (this.time) return;
- clearInterval(this.time);
- this.timeNum = 60;
- this.sendCodeFun(
- {
- type: '1', //String 调用类型:1:发送验证码 2:校验验证码
- phone: val, //String 手机号
- verification: '', //String 手机号验证码
- },
- () => {
- this.time = setInterval(() => {
- this.timeNum--;
- if (this.timeNum <= 0) {
- clearInterval(this.time);
- this.time = null;
- }
- }, 1000);
- this.$toast('发送成功');
- }
- );
- },
- sendCodeFun(params, callback) {
- sendAndCheckVerCode(params).then((res) => {
- if (res.code == 200) {
- callback && callback(res);
- }
- });
- },
- verification(val) {
- // 验证码
- if (val == '') {
- return;
- }
- // 手机号
- if (this.detail.ownerMobile == '') {
- return;
- }
- this.sendCodeFun(
- {
- type: '2', //String 调用类型:1:发送验证码 2:校验验证码
- phone: this.detail.ownerMobile, //String 手机号
- verification: val, //String 手机号验证码
- },
- (res) => {
- if (res.data) this.verificationPassedPhoneNum = this.detail.ownerMobile;
- this.$toast(res.data ? '验证成功' : '验证码错误');
- }
- );
- },
- getNyr(val, date) {
- this.activatNyrItem = val;
- if (date && date != '') {
- let time = date.split('-');
- this.currentDate = new Date(time[0], Number(time[1]) - 1, time[2]);
- } else {
- this.currentDate = new Date(1945, 0, 1);
- }
- this.datetimeShowPicker = true;
- },
- datetimeOnConfirm(time) {
- this.$set(this.detail, this.activatNyrItem, this.parseTime(time, '{y}-{m}-{d}'));
- // this.detail.ownerBirthday = this.parseTime(time, '{y}-{m}-{d}');
- this.datetimeShowPicker = false;
- },
- // 保存
- confirmShare() {
- if (
- this.verificationPassedPhoneNum == '' ||
- this.detail.ownerMobile != this.verificationPassedPhoneNum
- ) {
- this.$toast('请验证手机号');
- return;
- }
- if (this.detail.emergencyContactMobile != '') {
- if (!/^1[123456789]\d{9}$/.test(this.detail.emergencyContactMobile)) {
- this.$toast('紧急联系人电话格式错误');
- return;
- }
- }
- this.toastLoading(0, '加载中...', true);
- let params = JSON.parse(JSON.stringify(this.detail));
- params.mainProductCategorys = params.mainProductCategorys.join(',');
- params.storeCode = this.$route.query.storeCode;
- updateArchives(params).then((res) => {
- this.toastLoading().clear();
- if (res.code == 200) {
- this.$toast(res.msg);
- this.$router.go(-1);
- } else {
- this.$toast(res.msg);
- }
- });
- },
- emergencyContactBlur(val) {
- if (!/^1[123456789]\d{9}$/.test(val)) {
- this.$toast('紧急联系人电话格式错误');
- }
- },
- onClickLeft() {
- this.$router.go(-1);
- },
- },
- };
- </script>
- <style lang="scss">
- .JPattributeEditor {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- overflow: hidden;
- .content {
- flex: 1;
- overflow-y: auto;
- background: #fff;
- padding: 10px 15px;
- margin-top: 10px;
- background: #fff;
- .van-cell {
- padding: 10px 0;
- border-bottom: 1px solid #ccc;
- }
- .van-field__label {
- width: 9em;
- }
- .sendCode {
- border: none !important;
- input {
- border: 1px solid #f1f1f1;
- height: 35px;
- }
- }
- .van-checkbox--horizontal {
- margin-bottom: 10px;
- width: 100%;
- }
- .van-radio--horizontal {
- margin-bottom: 10px;
- }
- }
- .footer-btn {
- display: flex;
- justify-content: space-around;
- padding: 10px 0;
- }
- }
- </style>
|