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.
182 lines
5.6 KiB
182 lines
5.6 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('studentsId')" prop="students_id">
|
|
<el-radio-group v-model="formData.students_id" :placeholder="t('studentsIdPlaceholder')">
|
|
<el-radio
|
|
v-for="(item, index) in studentsIdList"
|
|
:key="index"
|
|
:label="item['id']">
|
|
{{ item['name'] }}
|
|
</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('content')" prop="content">
|
|
<el-input v-model="formData.content" type="textarea" rows="4" clearable :placeholder="t('contentPlaceholder')" class="input-width"/>
|
|
</el-form-item>
|
|
<el-form-item :label="t('images')">
|
|
<upload-image v-model="formData.images" />
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('mailbox')" >
|
|
<el-input v-model="formData.mailbox" clearable :placeholder="t('mailboxPlaceholder')" class="input-width" />
|
|
</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 { getFeedbackInfo,addFeedback,editFeedback, getWithStudentsList } from '@/addon/zhjw/api/feedback';
|
|
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,
|
|
students_id: '',
|
|
content: '',
|
|
images: '',
|
|
mailbox: '',
|
|
|
|
}
|
|
const formData: Record<string, any> = reactive({ ...initialFormData })
|
|
|
|
const setFormData = async (id:number = 0) => {
|
|
Object.assign(formData, initialFormData)
|
|
const data = await (await getFeedbackInfo(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[]>([])
|
|
|
|
// 字典数据
|
|
|
|
|
|
|
|
const studentsIdList = ref([] as any[])
|
|
const setStudentsIdList = async () => {
|
|
studentsIdList.value = await (await getWithStudentsList({})).data
|
|
}
|
|
setStudentsIdList()
|
|
// 表单验证规则
|
|
const formRules = computed(() => {
|
|
return {
|
|
students_id: [
|
|
{ required: true, message: t('studentsIdPlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
content: [
|
|
{ required: true, message: t('contentPlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
images: [
|
|
{ required: true, message: t('imagesPlaceholder'), trigger: 'blur' },
|
|
|
|
]
|
|
,
|
|
mailbox: [
|
|
{ required: true, message: t('mailboxPlaceholder'), 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 ? editFeedback : addFeedback
|
|
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>
|
|
|