|
|
@ -11,6 +11,7 @@ import { onMounted } from "vue";
|
|
|
|
import { useRoute } from "vue-router";
|
|
|
|
import { useRoute } from "vue-router";
|
|
|
|
import { FormInstance } from "element-plus";
|
|
|
|
import { FormInstance } from "element-plus";
|
|
|
|
import { message } from "@/utils/message";
|
|
|
|
import { message } from "@/utils/message";
|
|
|
|
|
|
|
|
import { useConsultationStoreHooks } from "@/store/modules/consultation";
|
|
|
|
|
|
|
|
|
|
|
|
const formData = reactive({
|
|
|
|
const formData = reactive({
|
|
|
|
evaluateLevel: undefined,
|
|
|
|
evaluateLevel: undefined,
|
|
|
@ -79,6 +80,7 @@ const save = (formEl: FormInstance | undefined) => {
|
|
|
|
const res: any = await saveFeedback(params);
|
|
|
|
const res: any = await saveFeedback(params);
|
|
|
|
if (res.code === 200) {
|
|
|
|
if (res.code === 200) {
|
|
|
|
message("提交成功", { type: "success" });
|
|
|
|
message("提交成功", { type: "success" });
|
|
|
|
|
|
|
|
useConsultationStoreHooks().changeActivedKey(4);
|
|
|
|
getData();
|
|
|
|
getData();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
@ -252,10 +254,11 @@ onMounted(() => {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
justify-content: space-between;
|
|
|
|
height: 94px;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
border-bottom: 1px solid #5b8bff;
|
|
|
|
border-bottom: 1px solid #5b8bff;
|
|
|
|
|
|
|
|
|
|
|
|
.main_item_left {
|
|
|
|
.main_item_left {
|
|
|
|
|
|
|
|
flex: 1;
|
|
|
|
padding-top: 24px;
|
|
|
|
padding-top: 24px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #2b3f54;
|
|
|
|
color: #2b3f54;
|
|
|
@ -263,6 +266,7 @@ onMounted(() => {
|
|
|
|
|
|
|
|
|
|
|
|
.main_item_right {
|
|
|
|
.main_item_right {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
width: 200px;
|
|
|
|
|
|
|
|
|
|
|
|
.main_item_right_item {
|
|
|
|
.main_item_right_item {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|