You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
236 lines
7.7 KiB
236 lines
7.7 KiB
<template>
|
|
<div class="main-container">
|
|
<div class="detail-head">
|
|
<div class="left" @click="back()">
|
|
<span class="iconfont iconxiangzuojiantou !text-xs"></span>
|
|
<span class="ml-[1px]">{{t('returnToPreviousPage')}}</span>
|
|
</div>
|
|
<span class="adorn">|</span>
|
|
<span class="right">{{ pageName }}</span>
|
|
</div>
|
|
<el-card class="box-card !border-none" shadow="never">
|
|
<el-form :model="formData" label-width="90px" ref="formRef" :rules="formRules" class="page-form">
|
|
|
|
<el-form-item :label="t('venueId')" prop="venue_id">
|
|
<el-radio-group v-model="formData.venue_id" :placeholder="t('venueIdPlaceholder')">
|
|
<el-radio
|
|
v-for="(item, index) in venueIdList"
|
|
:key="index"
|
|
:label="item['id']">
|
|
{{ item['name'] }}
|
|
</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('thumbnail')">
|
|
<upload-image v-model="formData.thumbnail" />
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('name')" prop="name">
|
|
<el-input v-model="formData.name" clearable :placeholder="t('namePlaceholder')" class="input-width" />
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('maxStudents')" prop="max_students">
|
|
<el-input v-model="formData.max_students" clearable :placeholder="t('maxStudentsPlaceholder')" class="input-width" />
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('startDate')" prop="start_date" class="input-width">
|
|
<el-date-picker
|
|
class="flex-1 !flex"
|
|
v-model="formData.start_date"
|
|
clearable
|
|
type="datetime"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
:placeholder="t('startDatePlaceholder')">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item :label="t('endDate')" prop="end_date" class="input-width">
|
|
<el-date-picker
|
|
class="flex-1 !flex"
|
|
v-model="formData.end_date"
|
|
clearable
|
|
type="datetime"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
:placeholder="t('endDatePlaceholder')">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item :label="t('status')" prop="status">
|
|
<el-radio-group v-model="formData.status" :placeholder="t('statusPlaceholder')">
|
|
<el-radio
|
|
v-for="(item, index) in statusList"
|
|
:key="index" :label="item.value">
|
|
{{ item.name }}
|
|
</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
</el-card>
|
|
<div class="fixed-footer-wrap">
|
|
<div class="fixed-footer">
|
|
<el-button type="primary" @click="onSave(formRef)">{{ t('save') }}</el-button>
|
|
<el-button @click="back()">{{ t('cancel') }}</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, reactive, computed, watch } from 'vue'
|
|
import { t } from '@/lang'
|
|
import { useDictionary } from '@/app/api/dict'
|
|
import type { FormInstance } from 'element-plus'
|
|
import { getClassesInfo,addClasses,editClasses, getWithVenuesList } from '@/addon/zhjw/api/classes';
|
|
import { useRoute } from 'vue-router'
|
|
|
|
const route = useRoute()
|
|
const id:number = parseInt(route.query.id);
|
|
const loading = ref(false)
|
|
const pageName = route.meta.title
|
|
|
|
|
|
|
|
/**
|
|
* 表单数据
|
|
*/
|
|
const initialFormData = {
|
|
id: 0,
|
|
venue_id: '',
|
|
thumbnail: '',
|
|
name: '',
|
|
max_students: 0,
|
|
start_date: '',
|
|
end_date: '',
|
|
status: '',
|
|
|
|
}
|
|
const formData: Record<string, any> = reactive({ ...initialFormData })
|
|
|
|
const setFormData = async (id:number = 0) => {
|
|
Object.assign(formData, initialFormData)
|
|
const data = await (await getClassesInfo(id)).data
|
|
Object.keys(formData).forEach((key: string) => {
|
|
if (data[key] != undefined) formData[key] = data[key]
|
|
})
|
|
}
|
|
if(id) setFormData(id);
|
|
|
|
const formRef = ref<FormInstance>()
|
|
// 选中数据
|
|
const selectData = ref<any[]>([])
|
|
|
|
// 字典数据
|
|
let statusList = ref([])
|
|
const statusDictList = async () => {
|
|
statusList.value = await (await useDictionary('bj_status')).data.dictionary
|
|
}
|
|
statusDictList();
|
|
watch(() => statusList.value, () => { formData.status = statusList.value[0].value })
|
|
|
|
|
|
|
|
const venueIdList = ref([] as any[])
|
|
const setVenueIdList = async () => {
|
|
venueIdList.value = await (await getWithVenuesList({})).data
|
|
}
|
|
setVenueIdList()
|
|
// 表单验证规则
|
|
const formRules = computed(() => {
|
|
return {
|
|
venue_id: [
|
|
{ required: true, message: t('venueIdPlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
thumbnail: [
|
|
{ required: true, message: t('thumbnailPlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
name: [
|
|
{ required: true, message: t('namePlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
max_students: [
|
|
{ required: true, message: t('maxStudentsPlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
start_date: [
|
|
{ required: true, message: t('startDatePlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
end_date: [
|
|
{ required: true, message: t('endDatePlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
status: [
|
|
{ required: true, message: t('statusPlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
}
|
|
})
|
|
|
|
const onSave = async (formEl: FormInstance | undefined) => {
|
|
if (loading.value || !formEl) return
|
|
await formEl.validate(async (valid) => {
|
|
if (valid) {
|
|
loading.value = true
|
|
let data = formData
|
|
|
|
const save = id ? editClasses : addClasses
|
|
save(data).then(res => {
|
|
loading.value = false
|
|
history.back()
|
|
}).catch(err => {
|
|
loading.value = false
|
|
})
|
|
|
|
}
|
|
})
|
|
}
|
|
|
|
// 验证手机号格式
|
|
const mobileVerify = (rule: any, value: any, callback: any) => {
|
|
if (value && !/^1[3-9]\d{9}$/.test(value)) {
|
|
callback(new Error(t('generateMobile')))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
|
|
// 验证身份证号
|
|
const idCardVerify = (rule: any, value: any, callback: any) => {
|
|
if (value && !/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(value)) {
|
|
callback(new Error(t('generateIdCard')))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
|
|
// 验证邮箱号
|
|
const emailVerify = (rule: any, value: any, callback: any) => {
|
|
if (value && !/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/.test(value)) {
|
|
callback(new Error(t('generateEmail')))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
|
|
|
|
// 验证请输入整数
|
|
const numberVerify = (rule: any, value: any, callback: any) => {
|
|
if (!Number.isInteger(value)) {
|
|
callback(new Error(t('generateNumber')))
|
|
} else {
|
|
callback()
|
|
}
|
|
}
|
|
const back = () => {
|
|
history.back()
|
|
}
</script>
<style lang="scss" scoped></style>
|
|
|