reservation.js 4.3 KB
import api from '@/api/api'
import {
	httpGet,
	httpPost
} from '@/api/fetch-api.js'

import { contactMethodCheck } from '@utils/utils.js';

import DatePicker from '@/components/date-picker/date-picker.vue';
import Auth from '@components/auth/auth.vue';
import modalComp from '@/components/modal-comp/modal-comp.vue';
import Vue from 'vue';
import { Loading } from 'vant';
Vue.use(Loading);

export default {
	data() {
		return {
			isSubmit: false,
			key: 'value',
			isHkCus: true,
			checked: false,
			data: {
				name: "",
				contactType: "",
				contactMethod: "",
				reservationType: "",
				instruction: "",
				hkCustomer: "",
				contactDate: ""
			},
			errorTips: {
				e1: "",
				e2: "",
				e3: "",
				e4: "",
				e5: "",
				e6: "",
				e7: "",
				e8: ""
			},

			modalSimpleVisiable: false,
			modalVisiable: false,
			targetPath: "",
			modalIcon: "succ",
			modalContent: "",
		}
	},
	components: {
		DatePicker,
		Auth,
		modalComp
	},
	computed: {
		locale() {
			return this.$i18n.locale || 'tc';
		},
		i18n() {
			return this.$i18n.messages && this.$i18n.locale ? this.$i18n.messages[this.$i18n.locale] : {};
		},
		contactTypes() {
			return this.i18n.reservation.contactTypeCadidates;
		},
		reservationTypes() {
			return this.i18n.reservation.reservationCandidates;
		},
		submitBtnDisabled() {
			let b1 = !this.checked;
			let b2 = this.data.contactDate ? false : true;
			let b3 = this.data.name ? false : true;
			let b4 = this.checkContactMethod() ? true : false;
			return b1 || b2 || b3 || b4;
		}
	},
	methods: {
		showModal(content, icon) {
			icon = !icon || typeof icon === "undefined" ? "succ" : icon;
			this.modalIcon = icon;
			this.modalContent = content;
			this.modalVisiable = true;
		},
		modalCallback() {
			this.modalVisiable = false;
		},
		initData() {
			this.data.contactType = this.contactTypes[0].value;
			this.data.reservationType = this.reservationTypes[0].value;
		},
		submitHandler() {
			if (!this.checked || this.isSubmit) {
				return;
			}
			let err = this.checkContactMethod();
			if (err) {
				this.errorTips.e3 = err;
				return;
			}
			let b1 = this.checkName();
			let b3 = this.checkInstruction();
			let b4 = this.checkContactDate();
			let b = b1 & b3 & b4;

			if (b) {
				this.isSubmit = true;
				this.data.hkCustomer = this.isHkCus ? 1 : 0;
				httpPost({
					url: api.saveReservation,
					data: this.data
				}).then(() => {
					this.showSubmitSuccess();
					this.isSubmit = false;
				}).catch(e => {
					switch (e.code) {
						case 3001:
							console.log(1111);
							this.errorTips.e8 = this.i18n.reservation.errorTips.e3;
							break;
					}
					this.isSubmit = false;
				})
			}
		},
		showSubmitSuccess() {
			this.showModal(this.i18n.reservation.success);
			this.data.name = "";
			this.data.contactMethod = "";
			this.data.instruction = "";
			this.checked = false;
		},
		checkName() {
			if (!this.data.name) {
				let message = this.i18n.reservation.errorTips.e1;
				this.errorTips.e1 = message;
				return false;
			}
			return true;
		},
		checkContactMethod() {
			let hkMobile = contactMethodCheck('hkmobile', this.data.contactMethod);
			let zhMobile = contactMethodCheck('mobile', this.data.contactMethod);
			if (!hkMobile && !zhMobile) {
				return this.i18n.login.tips.oe0;
			}
			return "";
		},
		checkInstruction() {
			// if (!this.data.instruction) {
			// 	let message = this.i18n.reservation.errorTips.e1;
			// 	this.errorTips.e5 = message;
			// 	return false;
			// }
			return true;
		},
		checkContactDate() {
			if (!this.data.contactDate) {
				let message = this.i18n.reservation.errorTips.e1;
				this.errorTips.e7 = message;
				return false;
			}
			return true;
		},
		userLogin(uinfo) {
			if (uinfo && uinfo.hadFullInfo == "1") {
				httpPost({ url: api.profile, sid: true }).then(res => {
					if (res && res.fullName) {
						this.data.name = res.fullName;
						this.data.contactMethod = res.mobileNo;
					}
				}).catch(err => {

				});
			}
		}
	},
	watch: {
		'data.name': function () {
			this.errorTips.e1 = "";
		},
		'data.contactMethod': function () {
			this.errorTips.e3 = "";
		},
		'data.instruction': function () {
			this.errorTips.e5 = "";
		},
		'data.reservationType': function () {
			this.errorTips.e8 = "";
		},
		'data.contactDate': function () {
			this.errorTips.e7 = "";
		}
	},
	mounted() {
		this.initData();
	},
	created() { }
}