| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <template>
- <a-spin :spinning="confirmLoading">
- <j-form-container :disabled="formDisabled">
- <a-form-model
- ref="form"
- :model="model"
- :rules="validatorRules"
- slot="detail"
- >
- <a-row>
- <a-col :span="24">
- <a-form-model-item
- label="订单来源"
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- prop="customerSource"
- >
- <a-select placeholder="订单来源" v-model="model.customerSource">
- <a-select-option
- :value="item.id"
- v-for="(item, index) in customerSourceList"
- :key="item.id"
- >
- {{ item.itemText }}
- </a-select-option>
- </a-select>
- </a-form-model-item>
- </a-col>
- </a-row>
- </a-form-model>
- </j-form-container>
- </a-spin>
- </template>
- <script>
- import { httpAction, getAction } from "@/api/manage";
- import { validateDuplicateValue } from "@/utils/util";
- export default {
- name: "BusMemberCardForm",
- components: {},
- props: {
- //表单禁用
- disabled: {
- type: Boolean,
- default: false,
- required: false,
- },
- },
- data() {
- return {
- model: { payType: 1, livingOrderId: "", certType: 1, gender: 1 },
- labelCol: {
- xs: { span: 24 },
- sm: { span: 5 },
- },
- wrapperCol: {
- xs: { span: 24 },
- sm: { span: 16 },
- },
- confirmLoading: false,
- validatorRules: {
- mobile: [
- {
- required: true,
- pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
- message: "请输入手机号!",
- },
- ],
- cardNo: [{ required: true, message: "请输入会员卡号!" }],
- gradeId: [{ required: true, message: "请输入等级类型!" }],
- payType: [{ required: true, message: "请输入付款类型!" }],
- paymentMethod: [{ required: true, message: "请输入付款方式!" }],
- cusName: [{ required: true, message: "请输入会员姓名!" }],
- sex: [{ required: true, message: "请输入性别!" }],
- certificateType: [{ required: true, message: "请输入证件类型!" }],
- validity: [{ required: true, message: "请输入有效期!" }],
- },
- url: {
- add: "/business/busRoomBookingOrders/booking-to-live",
- edit: "/business/busMemberCard/edit",
- queryById: "/business/busMemberCard/queryById",
- },
- gradeList: [],
- paymentMethodList: [],
- staffList: [],
- customerList: [],
- oldcustomerList: [],
- customerSourceList: [],
- };
- },
- computed: {
- formDisabled() {
- return this.disabled;
- },
- },
- created() {
- var _info = JSON.parse(localStorage.getItem("storeInfo"));
- if (_info) {
- this.model.hotelId = _info.id;
- }
- //备份model原始值
- this.modelDefault = JSON.parse(JSON.stringify(this.model));
- getAction("/business/busDictItem/list", {
- hotelId: _info.id,
- dictId: "1639538915239743490",
- }).then((res) => {
- if (res.success) {
- this.customerSourceList = res.result.records;
- }
- });
- },
- methods: {
- handleSearch(value) {
- let result;
- if (!value) {
- result = this.oldcustomerList;
- } else {
- result = this.oldcustomerList.filter((t) => t.name.includes(value));
- }
- this.customerList = result;
- },
- handleSelectMember(e) {
- var find = this.customerList.find((t) => t.id === e);
- this.model.cusPhone = find.phone;
- this.model.cusName = find.name;
- this.model.cusId = find.id;
- },
- getbusCustomer() {
- getAction("/bus/busCustomer/list", {}).then((res) => {
- if (res.success) {
- this.customerList = res.result.records;
- this.oldcustomerList = JSON.parse(JSON.stringify(this.customerList));
- }
- });
- },
- add(livingOrderId, roomId) {
- this.modelDefault.livingOrderId = livingOrderId;
- this.modelDefault.roomId = roomId;
- this.edit(this.modelDefault);
- },
- edit(record) {
- this.model = Object.assign({}, record);
- this.visible = true;
- },
- submitForm() {
- const that = this;
- // 触发表单验证
- this.$refs.form.validate((valid) => {
- if (valid) {
- that.confirmLoading = true;
- // var customers = [];
- // customers.push({
- // certNo: this.model.certNo,
- // certType: this.model.certType,
- // customerId: this.model.customerId,
- // customerName: this.model.customerName,
- // gender: this.model.gender,
- // phone: this.model.phone,
- // roomId: this.model.roomId,
- // });
- httpAction(
- "/business/busRoomBookingOrders/update-orders?type=2",
- this.model,
- "post"
- )
- .then((res) => {
- if (res.success) {
- that.$message.success("修改成功");
- that.$emit("ok");
- } else {
- that.$message.warning(res.message);
- }
- })
- .finally(() => {
- that.confirmLoading = false;
- });
- }
- });
- },
- },
- };
- </script>
|