提交 5e9ee360 编写于 作者: changdi.hao's avatar changdi.hao

更新字段名称

上级 494dc3c5
......@@ -61,16 +61,16 @@
<el-table-column label="操作" fixed="right" align="center" min-width="200">
<template slot-scope="scope">
<!-- 1 初始状态 2待咨询 3 咨询中 4已结束 -->
<div v-if="!scope.row.operateUserID">
<div v-if="scope.row.operateUserID">
<el-button v-if="scope.row.status != 4" type="primary" size="small" @click="timeHandle(scope.row)" style="margin-top: 10px;">修改时间</el-button>
<el-button v-if="scope.row.status == 3" type="primary" size="small" @click="endDiagnosis(scope.row)" style="margin-top: 10px;">结束</el-button>
</div>
<div v-if="!scope.row.operateUserID">
<div v-if="scope.row.operateUserID">
<el-button v-if="scope.row.status == 3 && scope.row.imStatus == 1" type="primary" size="small" @click="callAll(scope.row)" style="margin-top: 10px;">呼叫双方</el-button>
<el-button v-if="scope.row.status == 3 && scope.row.imStatus == 2" type="primary" size="small" @click="jionCommunicate(scope.row)" style="margin-top: 10px;">加入问诊</el-button>
<el-button type="primary" size="small" @click="sendMessage(scope.row)" style="margin-top: 10px;" v-if="!((scope.row.status==2 || scope.row.status==4) && scope.row.createType == 2)">发送消息</el-button>
</div>
<div v-if="scope.row.operateUserID">
<div v-if="!scope.row.operateUserID">
<el-button type="primary" size="small" @click="selectBtn(scope.row)">匹配</el-button>
</div>
<div>
......
......@@ -137,9 +137,9 @@
<h1>助诊信息</h1>
<el-form-item label="助诊医生" prop="helpDoctor">
<el-input v-model="formData.helpDoctor" placeholder="请选择助诊医生" class="set-width" disabled></el-input>
<!-- <el-select v-model="formData.helpDoctor" placeholder="请选择助诊医生" disabled class="set-width">
<el-form-item label="助诊医生" prop="userName">
<el-input v-model="formData.userName" placeholder="请选择助诊医生" class="set-width" disabled></el-input>
<!-- <el-select v-model="formData.userName" placeholder="请选择助诊医生" disabled class="set-width">
<el-option v-for="item of sexList" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select> -->
</el-form-item>
......@@ -172,9 +172,9 @@
<h1>接诊信息</h1>
<el-form-item label="接诊医生" prop="receiveDoctor" required>
<el-input v-model="formData.receiveDoctor" placeholder="请选择接诊医生" class="set-width" disabled></el-input>
<!-- <el-select v-model="formData.receiveDoctor" placeholder="请选择接诊医生" disabled class="set-width">
<el-form-item label="接诊医生" prop="doctorName" required>
<el-input v-model="formData.doctorName" placeholder="请选择接诊医生" class="set-width" disabled></el-input>
<!-- <el-select v-model="formData.doctorName" placeholder="请选择接诊医生" disabled class="set-width">
<el-option v-for="item of sexList" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select> -->
</el-form-item>
......@@ -328,14 +328,14 @@ export default {
sex: 1,
patientMobilePhone: '',
//助诊信息
helpDoctor: '',
userName: '',
userTitle: '',
userHospital: '',
userDepartment: '',
userMobile: '',
patientRelation: '',
//医生信息
receiveDoctor: '',
doctorName: '',
doctorTitle: '',
doctorHospital: '',
doctorDepartment: '',
......@@ -395,7 +395,7 @@ export default {
patientMobilePhone: [
{ required: true, message: '请输入患者电话', trigger: ['blur','change'] }
],
receiveDoctor: [
doctorName: [
{ required: true, message: '请选择接诊医生', trigger: 'change' }
],
serviceFee: [
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册