211 lines
5.2 KiB
Vue
211 lines
5.2 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="userId">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入用户id"
|
|
v-model:value="form.userId"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="微信昵称" name="username">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入微信昵称"
|
|
v-model:value="form.username"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="手机号码" name="phone">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入手机号码"
|
|
v-model:value="form.phone"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="获得积分" name="integral">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入获得积分"
|
|
v-model:value="form.integral"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="日期" name="dateTime">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入日期"
|
|
v-model:value="form.dateTime"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="天" name="day">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入天"
|
|
v-model:value="form.day"
|
|
/>
|
|
</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 { addIntegral, updateIntegral } from '@/api/booking/integral';
|
|
import { Integral } from '@/api/booking/integral/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?: Integral | 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<Integral>({
|
|
id: undefined,
|
|
userId: undefined,
|
|
username: undefined,
|
|
phone: undefined,
|
|
integral: undefined,
|
|
dateTime: undefined,
|
|
day: undefined,
|
|
tenantId: undefined,
|
|
createTime: undefined,
|
|
integralId: undefined,
|
|
integralName: '',
|
|
status: 0,
|
|
comments: '',
|
|
sortNumber: 100
|
|
});
|
|
|
|
/* 更新visible */
|
|
const updateVisible = (value: boolean) => {
|
|
emit('update:visible', value);
|
|
};
|
|
|
|
// 表单验证规则
|
|
const rules = reactive({
|
|
integralName: [
|
|
{
|
|
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 ? updateIntegral : addIntegral;
|
|
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>
|