From bb428bdcf5da82984042a85c1255f777ec279f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Tue, 17 Oct 2023 11:02:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/pagesB/confirmation/index.js | 11 ++ pagesB/appointmenttime/appointmenttime.vue | 4 +- pagesB/confirmation/confirmation.scss | 44 +++---- pagesB/confirmation/confirmation.vue | 133 ++++++++++----------- pagesB/medicine/medicine.vue | 2 +- pagesC/Onlinesigning/Onlinesigning.vue | 4 + 6 files changed, 96 insertions(+), 102 deletions(-) create mode 100644 api/pagesB/confirmation/index.js diff --git a/api/pagesB/confirmation/index.js b/api/pagesB/confirmation/index.js new file mode 100644 index 0000000..0ac681b --- /dev/null +++ b/api/pagesB/confirmation/index.js @@ -0,0 +1,11 @@ +import request from "../../request.js" + +export function getListByDoctor(doctorId) { + return request({ + url: `/nurseApplet/schedule/plan/getListByDoctor?doctorId=${doctorId}`, + method: 'get', + header: { + Authorization: 'Bearer' + ' ' + uni.getStorageSync('token') + }, + }) +} \ No newline at end of file diff --git a/pagesB/appointmenttime/appointmenttime.vue b/pagesB/appointmenttime/appointmenttime.vue index f4f636b..3e925fa 100644 --- a/pagesB/appointmenttime/appointmenttime.vue +++ b/pagesB/appointmenttime/appointmenttime.vue @@ -192,7 +192,6 @@ onShow() { let that = this uni.$on('updata', function(data) { - console.log(data.updata,'9') if (data.updata) { that.orderlist = JSON.parse(data.updata) } @@ -207,7 +206,6 @@ }) }, onLoad(options) { - console.log(options,'89') var that = this const value = uni.getStorageSync('openid'); if (value) { @@ -487,4 +485,4 @@ \ No newline at end of file + diff --git a/pagesB/confirmation/confirmation.scss b/pagesB/confirmation/confirmation.scss index f2409c2..eebed28 100644 --- a/pagesB/confirmation/confirmation.scss +++ b/pagesB/confirmation/confirmation.scss @@ -79,11 +79,21 @@ } .textarea { - font-size: 18rpx; + font-size: 22rpx; font-weight: 400; color: #8E8E8E; line-height: 42rpx; - padding: 30rpx 0 0 40rpx; + margin: 30rpx 40rpx 0 40rpx; + padding: 30rpx; + height: 250rpx; + background: #FFFFFF; + border: 2rpx solid #26A888; + border-radius: 5rpx; + .title{ + font-weight: 500; + color: #EE8F15; + margin-bottom: 20rpx; + } } .text { @@ -91,6 +101,12 @@ font-weight: 400; color: #333333; padding: 30rpx 0 0 40rpx; + text{ + padding-left: 20rpx; + font-size: 20rpx; + font-weight: 400; + color: #8E8E8E; + } } ::v-deep .u-upload { @@ -151,28 +167,4 @@ } } } - - .title { - width: 100%; - padding: 10rpx 0 10rpx 35rpx; - - .left { - vertical-align: middle; - display: inline-block; - width: 10rpx; - height: 30rpx; - background: #26A888; - border-radius: 1rpx; - } - - .right { - vertical-align: middle; - display: inline-block; - font-size: 30rpx; - font-weight: 500; - color: #26A888; - line-height: 30rpx; - margin-left: 20rpx; - } - } } diff --git a/pagesB/confirmation/confirmation.vue b/pagesB/confirmation/confirmation.vue index 3c64851..5b2a0e5 100644 --- a/pagesB/confirmation/confirmation.vue +++ b/pagesB/confirmation/confirmation.vue @@ -1,12 +1,5 @@