316 lines
9.0 KiB
Vue
316 lines
9.0 KiB
Vue
<!-- 编辑弹窗 -->
|
|
<template>
|
|
<ele-modal
|
|
:width="800"
|
|
:visible="visible"
|
|
:maskClosable="false"
|
|
:maxable="maxable"
|
|
:title="isUpdate ? '编辑我的优惠券' : '添加我的优惠券'"
|
|
:body-style="{ paddingBottom: '28px' }"
|
|
@update:visible="updateVisible"
|
|
@ok="save"
|
|
>
|
|
<a-form
|
|
ref="formRef"
|
|
:model="form"
|
|
:rules="rules"
|
|
:label-col="styleResponsive ? { md: 4, sm: 5, xs: 24 } : { flex: '90px' }"
|
|
:wrapper-col="
|
|
styleResponsive ? { md: 19, sm: 19, xs: 24 } : { flex: '1' }
|
|
"
|
|
>
|
|
<a-form-item label="优惠劵id" name="couponId">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入优惠劵id"
|
|
v-model:value="form.couponId"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="优惠券名称" name="name">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入优惠券名称"
|
|
v-model:value="form.name"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="优惠券类型(10满减券 20折扣券)" name="type">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入优惠券类型(10满减券 20折扣券)"
|
|
v-model:value="form.type"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="满减券-减免金额" name="reducePrice">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入满减券-减免金额"
|
|
v-model:value="form.reducePrice"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="折扣券-折扣率(0-100)" name="discount">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入折扣券-折扣率(0-100)"
|
|
v-model:value="form.discount"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="最低消费金额" name="minPrice">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入最低消费金额"
|
|
v-model:value="form.minPrice"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="到期类型(10领取后生效 20固定时间)" name="expireType">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入到期类型(10领取后生效 20固定时间)"
|
|
v-model:value="form.expireType"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="领取后生效-有效天数" name="expireDay">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入领取后生效-有效天数"
|
|
v-model:value="form.expireDay"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="有效期开始时间" name="startTime">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入有效期开始时间"
|
|
v-model:value="form.startTime"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="有效期结束时间" name="endTime">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入有效期结束时间"
|
|
v-model:value="form.endTime"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="适用范围(10全部商品 20指定商品)" name="applyRange">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入适用范围(10全部商品 20指定商品)"
|
|
v-model:value="form.applyRange"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="适用范围配置(json格式)" name="applyRangeConfig">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入适用范围配置(json格式)"
|
|
v-model:value="form.applyRangeConfig"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="是否过期(0未过期 1已过期)" name="isExpire">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入是否过期(0未过期 1已过期)"
|
|
v-model:value="form.isExpire"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="是否已使用(0未使用 1已使用)" name="isUse">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入是否已使用(0未使用 1已使用)"
|
|
v-model:value="form.isUse"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="排序(数字越小越靠前)" name="sortNumber">
|
|
<a-input-number
|
|
:min="0"
|
|
:max="9999"
|
|
class="ele-fluid"
|
|
placeholder="请输入排序号"
|
|
v-model:value="form.sortNumber"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="状态, 0待使用, 1已使用, 2已失效" name="status">
|
|
<a-radio-group v-model:value="form.status">
|
|
<a-radio :value="0">显示</a-radio>
|
|
<a-radio :value="1">隐藏</a-radio>
|
|
</a-radio-group>
|
|
</a-form-item>
|
|
<a-form-item label="是否删除, 0否, 1是" name="deleted">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入是否删除, 0否, 1是"
|
|
v-model:value="form.deleted"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="用户ID" name="userId">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入用户ID"
|
|
v-model:value="form.userId"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="修改时间" name="updateTime">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入修改时间"
|
|
v-model:value="form.updateTime"
|
|
/>
|
|
</a-form-item>
|
|
</a-form>
|
|
</ele-modal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, reactive, watch } from 'vue';
|
|
import { Form, message } from 'ant-design-vue';
|
|
import { assignObject, uuid } from 'ele-admin-pro';
|
|
import { addBookingUserCoupon, updateBookingUserCoupon } from '@/api/booking/bookingUserCoupon';
|
|
import { BookingUserCoupon } from '@/api/booking/bookingUserCoupon/model';
|
|
import { useThemeStore } from '@/store/modules/theme';
|
|
import { storeToRefs } from 'pinia';
|
|
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
|
|
import { FormInstance } from 'ant-design-vue/es/form';
|
|
import { FileRecord } from '@/api/system/file/model';
|
|
|
|
// 是否是修改
|
|
const isUpdate = ref(false);
|
|
const useForm = Form.useForm;
|
|
// 是否开启响应式布局
|
|
const themeStore = useThemeStore();
|
|
const { styleResponsive } = storeToRefs(themeStore);
|
|
|
|
const props = defineProps<{
|
|
// 弹窗是否打开
|
|
visible: boolean;
|
|
// 修改回显的数据
|
|
data?: BookingUserCoupon | null;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'done'): void;
|
|
(e: 'update:visible', visible: boolean): void;
|
|
}>();
|
|
|
|
// 提交状态
|
|
const loading = ref(false);
|
|
// 是否显示最大化切换按钮
|
|
const maxable = ref(true);
|
|
// 表格选中数据
|
|
const formRef = ref<FormInstance | null>(null);
|
|
const images = ref<ItemType[]>([]);
|
|
|
|
// 用户信息
|
|
const form = reactive<BookingUserCoupon>({
|
|
id: undefined,
|
|
couponId: undefined,
|
|
name: undefined,
|
|
type: undefined,
|
|
reducePrice: undefined,
|
|
discount: undefined,
|
|
minPrice: undefined,
|
|
expireType: undefined,
|
|
expireDay: undefined,
|
|
startTime: undefined,
|
|
endTime: undefined,
|
|
applyRange: undefined,
|
|
applyRangeConfig: undefined,
|
|
isExpire: undefined,
|
|
isUse: undefined,
|
|
sortNumber: undefined,
|
|
status: undefined,
|
|
deleted: undefined,
|
|
userId: undefined,
|
|
tenantId: undefined,
|
|
createTime: undefined,
|
|
updateTime: undefined,
|
|
bookingUserCouponId: undefined,
|
|
bookingUserCouponName: '',
|
|
status: 0,
|
|
comments: '',
|
|
sortNumber: 100
|
|
});
|
|
|
|
/* 更新visible */
|
|
const updateVisible = (value: boolean) => {
|
|
emit('update:visible', value);
|
|
};
|
|
|
|
// 表单验证规则
|
|
const rules = reactive({
|
|
bookingUserCouponName: [
|
|
{
|
|
required: true,
|
|
type: 'string',
|
|
message: '请填写我的优惠券名称',
|
|
trigger: 'blur'
|
|
}
|
|
]
|
|
});
|
|
|
|
const chooseImage = (data: FileRecord) => {
|
|
images.value.push({
|
|
uid: data.id,
|
|
url: data.path,
|
|
status: 'done'
|
|
});
|
|
form.image = data.path;
|
|
};
|
|
|
|
const onDeleteItem = (index: number) => {
|
|
images.value.splice(index, 1);
|
|
form.image = '';
|
|
};
|
|
|
|
const { resetFields } = useForm(form, rules);
|
|
|
|
/* 保存编辑 */
|
|
const save = () => {
|
|
if (!formRef.value) {
|
|
return;
|
|
}
|
|
formRef.value
|
|
.validate()
|
|
.then(() => {
|
|
loading.value = true;
|
|
const formData = {
|
|
...form
|
|
};
|
|
const saveOrUpdate = isUpdate.value ? updateBookingUserCoupon : addBookingUserCoupon;
|
|
saveOrUpdate(formData)
|
|
.then((msg) => {
|
|
loading.value = false;
|
|
message.success(msg);
|
|
updateVisible(false);
|
|
emit('done');
|
|
})
|
|
.catch((e) => {
|
|
loading.value = false;
|
|
message.error(e.message);
|
|
});
|
|
})
|
|
.catch(() => {});
|
|
};
|
|
|
|
watch(
|
|
() => props.visible,
|
|
(visible) => {
|
|
if (visible) {
|
|
images.value = [];
|
|
if (props.data) {
|
|
assignObject(form, props.data);
|
|
if(props.data.image){
|
|
images.value.push({
|
|
uid: uuid(),
|
|
url: props.data.image,
|
|
status: 'done'
|
|
})
|
|
}
|
|
isUpdate.value = true;
|
|
} else {
|
|
isUpdate.value = false;
|
|
}
|
|
} else {
|
|
resetFields();
|
|
}
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|