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

更新字段名称

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