YNUtdPlatform/pages/HealthExaminationApp/jobAppointment/jobAppointment.vue

424 lines
10 KiB
Vue
Raw Normal View History

2024-09-02 15:08:09 +08:00
<template>
2024-09-04 18:29:27 +08:00
<view>
<div class="content">
<h3>选择医院</h3>
<div class="item" @click="show = true">
<div v-if="!hospital">点击选择医院</div>
<div v-else>{{ hospital }}</div>
<div><u-icon name="arrow-right"></u-icon></div>
</div>
<h3 style="margin-top: 20px">职工套餐</h3>
<!-- <div class="item" @click="showPropup = true"> -->
<div class="item">
<div>{{ checkType }}</div>
<!-- <div v-if="!checkType">点击选择检查类型</div>
<div v-else>{{ checkType }}</div>
<div><u-icon name="arrow-right"></u-icon></div> -->
</div>
<h3 style="margin-top: 20px">体检时间</h3>
<div class="item" @click="handleShowTime">
<div v-if="!healthTime">点击选择时间</div>
<div v-else>{{ healthTime }}</div>
<div><u-icon name="arrow-right"></u-icon></div>
</div>
</div>
<!-- 选择医院 -->
<u-picker
:show="show"
:columns="[hospitalList]"
keyName="hospitalName"
@cancel="show = false"
@confirm="confirmHospital"
></u-picker>
<!-- 体检时间 -->
<u-calendar :show="showTime" mode="single" @confirm="confirmTime" @close="showTime = false"></u-calendar>
<div v-if="healthTime" class="reservation-number">当天剩余可预约人数{{ reservationNumber }}</div>
<div class="content" v-if="hospitalInfo.hospitalName">
<h3>医院信息</h3>
<div class="hospital-name">{{ hospitalInfo.hospitalName }}</div>
<div>地址: {{ hospitalInfo.address }}</div>
<div>营业时间: 周一至周五 {{ hospitalInfo.businessEnd }}-{{ hospitalInfo.businessHours }}</div>
<div>负责人: {{ hospitalInfo.responsible }}</div>
<div>联系方式: {{ hospitalInfo.telPhone }}</div>
</div>
2024-09-05 15:05:17 +08:00
<div style="margin: 30px 60px" v-if="hospital && checkType && healthTime && reservationNumber != 0">
2024-09-04 18:29:27 +08:00
<u-button type="primary" text="确定预约" shape="circle" size="small" @click="handleSave"></u-button>
</div>
</view>
2024-09-02 15:08:09 +08:00
</template>
<script>
2024-09-04 18:29:27 +08:00
import config from '@/config'
import Crypoto from '@/utils/aescbc'
export default {
data() {
return {
2024-09-09 14:18:15 +08:00
isLoading: false,
2024-09-04 18:29:27 +08:00
token: uni.getStorageSync('tjToken'),
idcard: '',
active: null,
// 医院列表
hospitalList: [],
// 选择的医院
hospital: '',
// 医院信息
hospitalInfo: {},
// 体检时间
healthTime: '',
show: false,
showTime: false,
columns: [],
showPropup: false,
checkId: '',
setMealId: '',
// 检查类型
checkType: '',
// 检查类型-列表
checkTypeList: [],
// 检查类型-内容
checkTypeContent: '',
checkTypeContentList: [],
showIcon: false,
reservationNumber: 0,
isDisabled: true
}
},
onLoad(opt) {
opt = JSON.parse(opt.params)
console.log('🚀 ~ onLoad ~ opt:', opt)
this.idcard = opt.idcard
},
mounted() {
this.getHospitalList()
this.getCheckType()
},
methods: {
2024-09-05 15:05:17 +08:00
// 获取医院列表
2024-09-04 18:29:27 +08:00
getHospitalList() {
const params = {
token: this.token,
}
console.log('🚀 ~ getHospitalList ~ params:', params)
uni.request({
2024-09-05 15:05:17 +08:00
url: config.tjBaseUrl + '/app/getOccupationHospital',
2024-09-04 18:29:27 +08:00
method: 'post',
data: params,
header: {
'Content-Type': 'application/x-www-form-urlencoded',
token: this.token
},
success: res => {
res = res.data
console.log('🚀 ~ getHospitalList ~ res:', res)
if (res.res == 1) {
this.hospitalList = res.obj
// this.hospitalInfo = res.obj[0]
// this.columns 双层数组, 将医院列表push到columns中
this.columns.push(this.hospitalList)
console.log('🚀 ~ getHospitalList ~ this.hospitalList:', this.hospitalList)
}
},
fail: err => {
console.log('🚀 ~ getHospitalList ~ err:', err)
}
})
},
// 获取检查类型
getCheckType() {
const params = {
2024-09-06 17:35:31 +08:00
token: this.token
2024-09-04 18:29:27 +08:00
}
console.log('🚀 ~ getCheckType ~ params:', params)
uni.request({
url: config.tjBaseUrl + '/app/getworkexamination',
method: 'post',
data: params,
header: {
'Content-Type': 'application/x-www-form-urlencoded',
token: this.token
},
success: res => {
res = res.data
console.log('🚀 ~ getCheckType ~ res:', res)
if (res.res == 1) {
// this.checkTypeList = res.obj
this.checkType = res.obj.combName
this.setMealId = res.obj.id
}
},
fail: err => {
console.log('🚀 ~ getCheckType ~ err:', err)
}
})
},
// 确认医院
confirmHospital(e) {
console.log('🚀 ~ confirmHospital ~ e:', e)
this.hospital = e.value[0].hospitalName
this.hospitalInfo = e.value[0]
console.log('🚀 ~ confirmHospital ~ this.hospitalInfo:', this.hospitalInfo)
if (this.hospitalInfo.id) this.isDisabled = false
this.show = false
},
handleShowTime() {
if (this.isDisabled) {
uni.showToast({
title: '请选择医院',
icon: 'none'
})
} else {
this.showTime = true
}
},
getCurrentDate() {
const date = new Date()
const year = date.getFullYear()
const month = String(date.getMonth() + 1).padStart(2, '0')
const day = String(date.getDate()).padStart(2, '0')
return `${year}-${month}-${day}`
},
// 确认时间
confirmTime(e) {
console.log('🚀 ~ confirmTime ~ e:', e)
const today = this.getCurrentDate()
if (e[0] == today) {
uni.showToast({
title: '不可以预约今天',
icon: 'none'
})
return
}
this.healthTime = e[0]
this.showTime = false
this.getReservationNumber()
},
// 获取当天剩余可预约人数
getReservationNumber() {
const params = {
token: this.token,
hosId: this.hospitalInfo.id,
phyAppontTime: this.healthTime,
type: '2'
}
console.log('🚀 ~ getReservationNumber ~ params:', params)
uni.request({
url: config.tjBaseUrl + '/app/getphyappointnum',
method: 'post',
data: params,
header: {
'Content-Type': 'application/x-www-form-urlencoded',
token: this.token
},
success: res => {
res = res.data
console.log('🚀 ~ getReservationNumber ~ res:', res)
if (res.res == 1) {
this.reservationNumber = res.obj
}
},
fail: err => {
console.log('🚀 ~ getReservationNumber ~ err:', err)
}
})
},
// 确定预约 phyappoint
handleSave() {
2024-09-09 14:18:15 +08:00
if (this.isLoading) {
// 提示
uni.showToast({
title: '请勿重复提交',
icon: 'none'
})
return
}
this.isLoading = true
2024-09-04 18:29:27 +08:00
const cry = new Crypoto()
const params = {
hospitalId: this.hospitalInfo.id,
setMealId: this.setMealId,
checkId: '',
phyAppontTime: this.healthTime,
setMealType: '3',
combName: this.checkType,
2024-09-06 17:35:31 +08:00
// token: this.token
2024-09-04 18:29:27 +08:00
}
console.log('🚀 ~ handleSave ~ params:', params)
console.log('🚀 ~ handleSave ~ params:', cry.encrypt(JSON.stringify(params)))
uni.request({
url: config.tjBaseUrl + '/app/phyappoint',
method: 'post',
2024-09-06 17:35:31 +08:00
data: { encryptedData: cry.encrypt(JSON.stringify(params)), token: this.token },
// data: params,
2024-09-04 18:29:27 +08:00
header: {
'Content-Type': 'application/x-www-form-urlencoded',
token: this.token
},
success: res => {
res = res.data
console.log('🚀 ~ handleSave ~ res:', res)
if (res.res == 1) {
2024-09-05 15:05:17 +08:00
uni.setStorageSync('jobAppoint', true)
2024-09-04 18:29:27 +08:00
uni.showToast({
title: '预约成功',
icon: 'success'
})
uni.reLaunch({
url: '/pages/HealthExaminationApp/myAppointment/bookSuccessfully'
})
}
},
fail: err => {
console.log('🚀 ~ handleSave ~ err:', err)
}
})
}
}
}
2024-09-02 15:08:09 +08:00
</script>
<style lang="scss" scoped>
2024-09-04 18:29:27 +08:00
.content {
margin: 10px;
padding: 10px;
border-radius: 5px;
background: #fff;
h3 {
margin-bottom: 10px;
}
.hospital-wrapper {
/* display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center; */
margin-bottom: 20px;
}
.item {
padding: 0 15px;
width: calc(100% -30px);
height: 50px;
display: flex;
justify-content: space-between;
align-items: center;
background: #f5f5f5;
border-radius: 50px;
font-size: 14px;
}
.hospital-name {
font-weight: 600;
font-size: 16px;
color: #1989fa;
line-height: 35px;
}
}
.propup-content {
height: 500px;
padding: 20px;
.title-wrapper {
display: flex;
justify-content: flex-start;
align-items: center;
}
.title {
margin-top: 20px;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
}
.title-tip {
color: #999;
}
.line {
margin: 10px 0;
width: 42px;
height: 2px;
background: #1989fa;
border-radius: 2px;
}
.list-item {
margin-right: 10px;
color: #333;
&.active {
color: #1989fa;
}
}
.cont-title {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
color: #1989fa;
font-size: 16px;
.cont-icon {
display: flex;
align-items: center;
}
}
.cont-line {
margin-top: 6px;
width: 100%;
height: 1px;
background: #ccc;
}
.contList-wrapper {
max-height: 300px;
overflow: auto;
}
.contList-item {
margin: 10px 0;
color: #333;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
word-break: break-all;
overflow: auto;
.cont-title {
font-size: 16px;
color: #1989fa;
line-height: 30px;
}
}
2024-09-02 15:08:09 +08:00
2024-09-04 18:29:27 +08:00
.btn {
// 固定左下方
position: absolute;
bottom: 20px;
left: 20px;
/* width: 80px; */
}
}
.reservation-number {
height: 20px;
margin: 10px;
margin-top: 0;
padding: 10px;
color: #999;
background: #fff;
border-radius: 5px;
font-size: 15px;
/* text-align: start; */
}
2024-09-02 15:08:09 +08:00
</style>