|
|
@@ -0,0 +1,175 @@
|
|
|
+<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="subjectType"
|
|
|
+ >
|
|
|
+ <a-select
|
|
|
+ v-model="model.subjectType"
|
|
|
+ style="width: 100%"
|
|
|
+ placeholder="消费项目"
|
|
|
+ :allowClear="true"
|
|
|
+ >
|
|
|
+ <a-select-option :value="1">押金</a-select-option>
|
|
|
+ <a-select-option :value="2">预收房费</a-select-option>
|
|
|
+ <a-select-option :value="3">每日房费</a-select-option>
|
|
|
+ <a-select-option :value="6">商品</a-select-option>
|
|
|
+ <a-select-option :value="7">点餐</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :span="24">
|
|
|
+ <a-form-model-item
|
|
|
+ label="金额"
|
|
|
+ :labelCol="labelCol"
|
|
|
+ :wrapperCol="wrapperCol"
|
|
|
+ prop="money"
|
|
|
+ >
|
|
|
+ <a-input-number
|
|
|
+ v-model="model.money"
|
|
|
+ placeholder="请输入金额"
|
|
|
+ :min="0"
|
|
|
+ ></a-input-number>
|
|
|
+ </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,
|
|
|
+ },
|
|
|
+ livingOrderId: {
|
|
|
+ type: String,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ 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: {
|
|
|
+ subjectType: [{ required: true, message: "请输入消费项目!" }],
|
|
|
+ money: [{ required: true, message: "请输入金额!" }],
|
|
|
+ },
|
|
|
+ url: {
|
|
|
+ add: "/business/busRoomBookingOrders/booking-to-live",
|
|
|
+ edit: "/business/busMemberCard/edit",
|
|
|
+ queryById: "/business/busMemberCard/queryById",
|
|
|
+ },
|
|
|
+ gradeList: [],
|
|
|
+ paymentMethodList: [],
|
|
|
+ staffList: [],
|
|
|
+ customerList: [],
|
|
|
+ oldcustomerList: [],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ 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));
|
|
|
+ this.getbusCustomer();
|
|
|
+ },
|
|
|
+ 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.phone = find.phone;
|
|
|
+ this.model.customerName = find.name;
|
|
|
+ this.model.customerId = 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 orders = [];
|
|
|
+ orders.push({
|
|
|
+ money: this.model.money,
|
|
|
+ subjectType: this.model.subjectType,
|
|
|
+ });
|
|
|
+ this.model.orders = orders;
|
|
|
+ this.model.livingOrderId = this.livingOrderId;
|
|
|
+ httpAction("/business/busRoomBookingOrders/set-living-order-fee?livingOrderId="+this.livingOrderId, orders, "post")
|
|
|
+ .then((res) => {
|
|
|
+ if (res.success) {
|
|
|
+ that.$message.success(res.message);
|
|
|
+ that.$emit("ok");
|
|
|
+ } else {
|
|
|
+ that.$message.warning(res.message);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ that.confirmLoading = false;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|