generated from php/site_back
156 lines
3.9 KiB
Vue
156 lines
3.9 KiB
Vue
<template>
|
|
<el-dialog v-model="props.modelValue" title="编辑常见问题" width="900px" @closed="closeDialog" @open="openDialog">
|
|
<el-form ref="formRef" :model="formData" :rules="rules">
|
|
<el-row>
|
|
|
|
<el-col :span="12">
|
|
<el-form-item :label-width="labelWidth" label="语言类型" prop="i18n_lang_type_guid">
|
|
<el-select v-model="formData.i18n_lang_type_guid" clearable placeholder="请选择">
|
|
<el-option v-for="item in i18n_lang_type" :key="item.i18n_lang_type_guid"
|
|
:label="item.i18n_lang_type_code" :value="item.i18n_lang_type_guid"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
<el-form-item :label-width="labelWidth" label="问题" prop="faq_questions">
|
|
<el-input v-model='formData.faq_questions' type="text" placeholder='请输入问题'></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-form-item :label-width="labelWidth" label="答案" prop="faq_answer">
|
|
<el-input v-model='formData.faq_answer' type="textarea" :rows="5" placeholder='请输入答案'></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item :label-width="labelWidth" label="顺序" prop="faq_sort">
|
|
<el-input-number v-model='formData.faq_sort' controls-position='right' :min='1'></el-input-number>
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
</el-row>
|
|
</el-form>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button type="primary" @click="handleEditClick(formRef)" :loading="isBtnLod">保存</el-button>
|
|
<el-button @click="handleResetClick(formRef)">重置</el-button>
|
|
<el-button @click="closeDialog()">取消</el-button>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { reactive, ref, watch } from "vue";
|
|
import { editFaq } from "~/service/faq";
|
|
import { useLoginStore } from "~/store";
|
|
import { getI18nLangTypeList } from '~/service/i18n_lang_type';
|
|
|
|
// --业务参数
|
|
|
|
|
|
|
|
// --业务方法
|
|
// 语言类型code
|
|
const i18n_lang_type = ref();
|
|
async function geti18n_lang_typeList() {
|
|
getI18nLangTypeList({ limit: 9999 }).then((res) => {
|
|
if (res.code == 0) {
|
|
i18n_lang_type.value = res.data
|
|
}
|
|
})
|
|
}
|
|
|
|
|
|
// --基础参数
|
|
const store = useLoginStore();
|
|
const headers = {
|
|
Accept: "application/json",
|
|
...store.headers,
|
|
};
|
|
const isBtnLod = ref(false);
|
|
const formRef = ref();
|
|
const labelWidth = 100;
|
|
const props = defineProps({
|
|
modelValue: Boolean,
|
|
data: Object,
|
|
done: Function,
|
|
});
|
|
const emits = defineEmits(["update:modelValue"]);
|
|
const formData = ref({
|
|
...props.data,
|
|
});
|
|
const uoloadData = ref({
|
|
dirName: "Faq"
|
|
})
|
|
|
|
|
|
// --基础方法
|
|
watch(props, (v) => {
|
|
formData.value = v.data;
|
|
});
|
|
|
|
// 打开弹窗时执行
|
|
const openDialog = async () => {
|
|
await geti18n_lang_typeList()
|
|
};
|
|
|
|
const closeDialog = () => {
|
|
props.done();
|
|
emits("update:modelValue", false);
|
|
};
|
|
|
|
const rules = reactive({
|
|
i18n_lang_type_guid: [
|
|
{
|
|
required: true,
|
|
message: '语言类型不能为空',
|
|
}
|
|
],
|
|
faq_questions: [
|
|
{
|
|
required: true,
|
|
message: '问题不能为空'
|
|
}
|
|
],
|
|
faq_answer: [
|
|
{
|
|
required: true,
|
|
message: '答案不能为空'
|
|
}
|
|
],
|
|
faq_sort: [
|
|
{
|
|
required: true,
|
|
message: '顺序不能为空'
|
|
}
|
|
],
|
|
|
|
});
|
|
|
|
const handleEditClick = async (formEl) => {
|
|
console.log(formData.value);
|
|
if (!formEl) return;
|
|
formEl.validate(async (valid) => {
|
|
if (!valid) {
|
|
return;
|
|
}
|
|
isBtnLod.value = true;
|
|
|
|
|
|
const { code } = await editFaq(formData.value);
|
|
if (code == 0) {
|
|
closeDialog();
|
|
props.done();
|
|
}
|
|
isBtnLod.value = false;
|
|
});
|
|
};
|
|
const handleResetClick = async (formEl) => {
|
|
if (!formEl) return;
|
|
formEl.resetFields();
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|