bug 修复cancel_resson,提示框原因清空
This commit is contained in:
@@ -156,10 +156,10 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24" v-if="modalForm.cancel_remarks">
|
||||
<a-row :gutter="24" v-if="modalForm.cancel_reason">
|
||||
<a-col :span="24">
|
||||
<a-form-item field="department_custom_name" label="备 注 :">
|
||||
<span>{{ modalForm.cancel_remarks}}</span>
|
||||
<span>{{ formatOrderCancelReason(modalForm.cancel_reason)}}</span>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
@@ -278,7 +278,6 @@
|
||||
<div class="row">
|
||||
<div class="nameDesc">回复质量:</div>
|
||||
<div class="desc"><a-rate :default-value="modalForm.order_evaluation.reply_quality" readonly /></div>
|
||||
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="nameDesc">服务态度:</div>
|
||||
@@ -327,7 +326,7 @@
|
||||
import { reactive, ref, getCurrentInstance, onMounted, nextTick, watch } from 'vue';
|
||||
import { getOrderList,getOrderDetail,cancelInquiry} from '@/api/order/list';
|
||||
import { parseTime } from '@/utils/parseTime';
|
||||
import {formatDoctorTitle} from "@/utils/format"
|
||||
import {formatDoctorTitle,formatOrderCancelReason} from "@/utils/format"
|
||||
|
||||
// Akiraka 20230210 删除数据
|
||||
const deleteData = ref([])
|
||||
@@ -535,7 +534,9 @@ const openPatient=()=>{
|
||||
//关闭确认框
|
||||
const closeChange=()=>{
|
||||
cur_inruiry_id.value="";
|
||||
okVisible.value=false
|
||||
okVisible.value=false;
|
||||
modalVisible.value=false;
|
||||
getOrderInfo(pager);
|
||||
}
|
||||
// 重置搜索
|
||||
const handleResetQuery = () => {
|
||||
|
||||
Reference in New Issue
Block a user