提交 c0db217a 编写于 作者: peng.zhao's avatar peng.zhao

Merge branch 'feature/zl' into feature/zp

...@@ -16,7 +16,7 @@ export const getDoctorList = async (data) => { ...@@ -16,7 +16,7 @@ export const getDoctorList = async (data) => {
}; };
export const getDoctorListNew = async (data) => { export const getDoctorListNew = async (data) => {
return request({ return request({
url: '/diagnose/doctorService/doctorListMew', url: '/diagnose/doctorService/doctorListNew',
params: data, params: data,
method: 'get', method: 'get',
}); });
......
...@@ -75,44 +75,49 @@ ...@@ -75,44 +75,49 @@
<span>未选定医生</span> <span>未选定医生</span>
</div> </div>
<div class="work-info-Num"> <div class="work-info-Num">
<span <div v-if="diagnoseType != 4">
class="work-info-Num-span" <span
>可选排班时间(预约已满需要沟通确定时间)</span> class="work-info-Num-span"
<div >可选排班时间(预约已满需要沟通确定时间)</span>
v-if="timeChoosetList.length > 0"
class="time-list-show"
>
<div <div
v-for="(itemChild, indexChild) in timeChoosetList" v-if="timeChoosetList.length > 0"
:key="indexChild" class="time-list-show"
class="home_grid_item"
> >
<div <div
class="grid_text" v-for="(itemChild, indexChild) in timeChoosetList"
:class="chooseTimeIndex == indexChild && 'choose-time-choose'" :key="indexChild"
@click="getChooseTimeValue(itemChild, indexChild)" class="home_grid_item"
> >
<span <div
:class=" class="grid_text"
itemChild.isFull == 1 ? 'show-meet-time' : 'no-meet-time' :class="chooseTimeIndex == indexChild && 'choose-time-choose'"
" @click="getChooseTimeValue(itemChild, indexChild)"
>{{ itemChild.time }}</span>
<p
:class="
itemChild.isFull == 1 ? 'can-meet-time' : 'canot-meet-time'
"
> >
{{ itemChild.isFull == 1 ? '可约' : '已满' }} <span
</p> :class="
itemChild.isFull == 1 ? 'show-meet-time' : 'no-meet-time'
"
>{{ itemChild.time }}</span>
<p
:class="
itemChild.isFull == 1
? 'can-meet-time'
: 'canot-meet-time'
"
>
{{ itemChild.isFull == 1 ? '可约' : '已满' }}
</p>
</div>
</div> </div>
</div> </div>
<div
v-else
class="time-list-showNo"
>
<span> 无可选时间 </span>
</div>
</div> </div>
<div
v-else
class="time-list-showNo"
>
<span> 无可选时间 </span>
</div>
<div class="work-info-botton"> <div class="work-info-botton">
<span <span
slot="footer" slot="footer"
...@@ -314,7 +319,7 @@ ...@@ -314,7 +319,7 @@
}); });
return false; return false;
} }
if (this.startTime == '') { if (this.startTime == '' && this.diagnoseType != 4) {
this.$message({ this.$message({
message: '请选择排班时间', message: '请选择排班时间',
type: 'warning', type: 'warning',
...@@ -328,8 +333,8 @@ ...@@ -328,8 +333,8 @@
innerFlag: this.formData.innerFlag, innerFlag: this.formData.innerFlag,
receptionId: this.formData.receptionId, receptionId: this.formData.receptionId,
receptionName: this.formData.receptionName, receptionName: this.formData.receptionName,
receptionBeginTime: this.startTime, receptionBeginTime: this.startTime || '',
receptionEndTime: this.endTime, receptionEndTime: this.endTime || '',
diagnoseChannel: this.formData.diagnoseChannel, diagnoseChannel: this.formData.diagnoseChannel,
}; };
manualQueue(req) manualQueue(req)
......
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
修改指定医生 修改指定医生
</el-button> </el-button>
<el-button <el-button
v-if="scope.row.diagnoseType !== 4 && showBtn(scope.row, 3, 25, 26)" v-if="showBtn(scope.row, 3, 25, 26)"
type="primary" type="primary"
size="small" size="small"
class="btn" class="btn"
......
...@@ -1271,7 +1271,7 @@ ...@@ -1271,7 +1271,7 @@
this.patientMobilePhone = row.patientMobilePhone; this.patientMobilePhone = row.patientMobilePhone;
this.bizType = 5; this.bizType = 5;
if (this.diagnoseType === '4') { if (this.diagnoseType == '4') {
this.$confirm('是否重新匹配医生', '提示', { this.$confirm('是否重新匹配医生', '提示', {
confirmButtonText: '是', confirmButtonText: '是',
cancelButtonText: '否', cancelButtonText: '否',
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册