123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- <template>
- <view class="Scanning_Result">
- <view class="Scanning_top">
- <view class="Scanning_top_icon">
- <text class="cubeic-ok icon_transport transport-duigou"></text>
- <view class="text1"> 签到成功 </view>
- </view>
- <view class="Scanning_top_text">
- 您已到达<strong class="red">{{deptName}}</strong>,请完成以下服务
- </view>
- </view>
- <view class="Scanning_cont">
- <view class="Scanning_cont_list">
- <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
- <view class="Scanning_cont_list_item" v-for="item in orderList" :key="item.id">
- <view class="name">
- {{item.taskType ? item.taskType.taskName : ''}}
- </view>
- <view class="value">
- 单号:{{item.gdcode}}
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- <view class="foot_btn">
- <view class="btn" @click="goToIndex()"> 知道了 </view>
- <view class="btn" @click="additional()" v-if="taskTypeConfig.addService == 1"> 追加服务 </view>
- <view class="btn" @click="finish()" v-if="taskTypeConfig.finishService == 1"> 结束服务 </view>
- </view>
- <!-- 结束服务弹窗 -->
- <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
- :operate="models.operate" @ok="ok" @cancel="cancel"></showModel>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- SM,
- webHandle
- } from "../../../http/http.js";
- export default {
- data() {
- return {
- // 结束服务弹窗model
- models: {
- disjunctor: false,
- },
- deptName: '',
- infoData: {},
- hosId: uni.getStorageSync('userData').user.currentHospital.id,
- queryObj: {}, //路由传递过来的数据
- orderList: [],
- taskTypeConfig: {},
- };
- },
- methods: {
- ok() {
- this.models.disjunctor = false;
-
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post("/patient/endService", {
- patientCode: this.infoData.patientCode,
- }).then((result) => {
- uni.hideLoading();
- if (result.state == 200) {
- uni.navigateTo({
- url: `/pages/outpatient/outpatientEndComplete/outpatientEndComplete?model=${encodeURIComponent(JSON.stringify(result))}`,
- });
- } else {
- uni.showToast({
- icon: "none",
- title: result.msg || "接口获取数据失败!",
- });
- }
- });
- },
- cancel() {
- this.models.disjunctor = false;
- },
- // 结束服务
- finish(){
- this.models = {
- disjunctor: true,
- title: "提示",
- content: `您确认要完成服务吗?`,
- icon: "warn",
- operate: {
- ok: "确定",
- cancel: "取消",
- },
- };
- },
- // 追加服务
- additional(){
- uni.navigateTo({
- url: `/pages/outpatient/outpatientEndTaskType/outpatientEndTaskType?model=${encodeURIComponent(JSON.stringify(this.infoData))}`,
- });
- },
- // 知道了
- goToIndex(){
- uni.navigateTo({
- url: `/pages/receiptpage/receiptpage`,
- });
- },
- // 获取检查页面控制
- getTaskTypeConfig(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post("/simple/data/fetchDataList/taskTypeConfig", {
- "idx": 0,
- "sum": 10,
- "taskTypeConfig": {
- "taskTypeDTO": {
- "hosId": {
- "id": this.hosId
- },
- "associationType": {
- "key": "association_types",
- "value": "inspect"
- }
- }
- }
- }).then((result) => {
- uni.hideLoading();
- if (result.status == 200) {
- let configs = result.list || [];
- if(configs.length){
- this.taskTypeConfig = configs[0];
- }else{
- this.taskTypeConfig = {};
- }
- } else {
- uni.showToast({
- icon: "none",
- title: result.msg || "接口获取数据失败!",
- });
- }
- });
- },
- },
- onLoad(options) {
- console.log(options, "result");
- this.queryObj = options;
- if(options.model){
- this.infoData = JSON.parse(options.model);
- this.orderList = this.infoData.orderList || [];
- this.deptName = this.infoData.department ? this.infoData.department.dept : '';
- console.log(this.infoData);
- }
- this.getTaskTypeConfig();
- // #ifdef APP-PLUS
- webHandle("no", "app");
- // #endif
- // #ifdef H5
- webHandle("no", "wx");
- // #endif
- },
- };
- </script>
- <style lang="less" scoped>
- .Scanning_Result {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- .Scanning_top {
- flex-shrink: 0;
- .Scanning_top_icon {
- padding-top: 26rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .cubeic-ok {
- font-size: 140rpx;
- color: #35b34a;
- }
- .text1 {
- margin-top: 30rpx;
- font-size: 40rpx;
- font-weight: bold;
- }
- }
- .Scanning_top_text{
- text-align: center;
- font-size: 30rpx;
- font-weight: bold;
- padding: 8rpx 0 23rpx 0;
- }
- }
- .Scanning_cont {
- flex: 1;
- min-height: 0;
- display: flex;
- flex-direction: column;
- margin: 0 45rpx;
- .Scanning_cont_head{
- flex-shrink: 0;
- height: 78rpx;
- display: flex;
- border-top: 1rpx solid #EEEEEE;
- border-bottom: 1rpx solid #EEEEEE;
- .Scanning_cont_head_item{
- flex: 1;
- font-size: 32rpx;
- font-weight: bold;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- &.active{
- color: #49B856;
- &::before{
- content: '';
- width: 70rpx;
- height: 10rpx;
- background-color: #49B856;
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- border-radius: 6rpx;
- }
- }
- &::after{
- content: '';
- width: 2rpx;
- height: 44rpx;
- background-color: #D1D1D1;
- position: absolute;
- right: 0;
- top: 50%;
- transform: translateY(-50%);
- }
- &:last-of-type::after{
- opacity: 0;
- }
- }
- }
- .Scanning_cont_list{
- flex: 1;
- min-height: 0;
- display: flex;
- flex-direction: column;
- .Scanning_cont_list_scroll{
- flex: 1;
- min-height: 0;
- border: 1rpx solid #E9E9E9;
- }
- .Scanning_cont_list_item{
- height: 63rpx;
- display: flex;
- align-items: center;
- font-size: 30rpx;
- border-bottom: 2rpx dashed #D3D3D3;
- border-top: none;
- margin: 0 18rpx;
- &:last-of-type{
- border-bottom: 1rpx dashed #E9E9E9;
- }
- &.Scanning_cont_list_head{
- font-weight: bold;
- font-size: 28rpx;
- border-top: 1rpx solid #272727;
- flex-shrink: 0;
- }
- .name,
- .value{
- flex: 1;
- display: flex;
- align-items: center;
- height: 100%;
- font-weight: bold;
- line-height: 1;
- }
- .value {
- justify-content: flex-end;
- }
- }
- }
- }
- .foot_btn {
- margin: 30rpx;
- flex-shrink: 0;
- line-height: 88rpx;
- display: flex;
- justify-content: center;
- .btn {
- height: 88rpx;
- flex: 1;
- margin-right: 1%;
- background-image: linear-gradient(to right, #72c172, #3bb197);
- color: #fff;
- border-radius: 8rpx;
- font-size: 34rpx;
- font-weight: bold;
- text-align: center;
- &:last-of-type{
- margin-right: 0;
- }
- }
- }
- }
- </style>
|