<template>
  <view class="specimenChecking">
    <view class="title">请您确认一下科室标本数量!</view>
    <view class="page_item_wrap" v-for="item in list" :key="item[0]" @click="gotoDetail(item)">
      <view class="page_item">
        <view class="page_item_top">
          <view class="page_item_top-inner">
            <view class="page_item_top_L">
              <view class="L_text">{{item[1]}}</view>
            </view>
            <view class="page_item_top_R">
              <view class="L_iocn"></view>
            </view>
          </view>
        </view>
        <view class="page_item_cont">
          <view class="page_item_cont_T">
            <view class="page_item_cont_title">
              <view>
                标本数量
              </view>
              <view class="text_big">{{item[2]}}</view>
            </view>
          </view>
        </view>
        <view class="L"></view>
        <view class="R"></view>
      </view>
      <view class="L-l"></view>
      <view class="R-l"></view>
    </view>
    <view class="foot_btn2">
      <view class="btn2" @click="createOrder">确认数量并建单</view>
      <view class="btn2" @click="goto()">知道了</view>
    </view>
    <!-- 修改标本数量弹窗 -->
    <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}" :title="changeSpeModels.title" :content="changeSpeModels.content"
      :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange">
    </changeSpeNum>
  </view>
</template>
<script>
  import {
    get,
    post,
    webHandle
  } from "../../http/http.js";
  export default {
    data() {
      return {
        list: [],
        msg: {}, //页面展示信息
        // 修改标本数量弹窗model
        changeSpeModels: {
          disjunctor: false,
        },
        speNumChange: 0,
        changeSpeObj: {},
      };
    },
    methods: {
      // 数量核对 start
      // 修改标本数量-核对
      changeSpeCheck(){
        this.changeSpeModels.disjunctor = false;
        uni.navigateTo({
          url: `../../pages/specimenCheckingDetail/specimenCheckingDetail?infoDATA=${encodeURIComponent(JSON.stringify(this.changeSpeObj.infoDATA))}&id=${this.changeSpeObj.id}&endDepts=${this.changeSpeObj.endDepts}`,
        });
      },
      // 修改标本数量-确认
      changeSpeOk(data) {
        console.log(data);
        const pathUrl = uni.getStorageSync("path");
        const {
          speNum,
          reason,
          imageValue
        } = data;
        this.changeSpeModels.disjunctor = false;
        uni.showLoading({
          mask: true,
          title: "加载中",
        });
        let postData = {
          checkDept: this.changeSpeObj.endDepts, //终点科室
          transDeptId: this.changeSpeObj.infoDATA.startDept,
          gdId: this.changeSpeObj.infoDATA.uuid,
          deptId: this.changeSpeObj.id == "undefined" ?
            this.changeSpeObj.infoDATA.startDept : this.changeSpeObj.id,
          specimensNum: speNum,
          modifyReason: reason,
        };
        post("/api/updateCheckDeptSpecimensNum", postData).then((res) => {
          if (res.status == 200) {
            console.log(imageValue);
            if (!imageValue.length) {
              uni.hideLoading();
              uni.showModal({
                title: "提示",
                content: "修改成功!",
                showCancel: false,
                success: (result) => {
                  if (result.confirm) {
                    console.log("用户点击确定");
                    if (this.changeSpeObj.t == "big") {
                      if (this.changeSpeObj.gdState == 4) {
                        // 待到达
                        uni.navigateTo({
                          url: `../../pages/receiptpage/receiptpage`,
                        });
                      } else if (this.changeSpeObj.gdState == 5) {
                        // 待送达
                        if (res.type1 === "plan-spe-ddd-2") {} else {
                          let content = `本工单已签到<strong class="red">${
                          res.scanSet ? res.scanSet.join("、") : ""
                        }</strong>,剩余需签到科室<strong class="red">${
                          res.notScanSet ? res.notScanSet.join("、") : ""
                        }</strong>,您确定完成工单吗?`;
                          uni.navigateTo({
                            url: `../scanning/scanning?type=${res.type}&type1=${
                            res.type1
                          }&id=${encodeURIComponent(
                            JSON.stringify([res.gdid])
                          )}&content=${content}`,
                          });
                        }
                      }
                    } else if (this.changeSpeObj.t == "small") {
                      if (this.changeSpeObj.id == "undefined") {
                        //快捷建单建单进入
                        uni.navigateTo({
                          url: `../../pages/receiptpage/receiptpage`,
                        });
                      } else {
                        if (this.changeSpeObj.gdState == 4) {
                          // 待到达
                          uni.navigateTo({
                            url: `../../pages/receiptpage/receiptpage`,
                          });
                        } else if (this.changeSpeObj.gdState == 5) {
                          // 待送达
                          if (res.type1 === "plan-spe-ddd-2") {} else {
                            let content = `本工单已签到<strong class="red">${
                            res.scanSet ? res.scanSet.join("、") : ""
                          }</strong>,剩余需签到科室<strong class="red">${
                            res.notScanSet ? res.notScanSet.join("、") : ""
                          }</strong>,您确定完成工单吗?`;
                            uni.navigateTo({
                              url: `../scanning/scanning?type=${res.type}&type1=${
                              res.type1
                            }&id=${encodeURIComponent(
                              JSON.stringify([res.gdid])
                            )}&content=${content}`,
                            });
                          }
                        }
                      }
                    } else {
                      uni.navigateTo({
                        url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
                        JSON.stringify(this.changeSpeObj.infoDATA)
                      )}`,
                      });
                    }
                  } else if (result.cancel) {
                    console.log("用户点击取消");
                  }
                },
              });
              return;
            }
            let n = 0;
            imageValue.forEach((v) => {
              // 图片上传 start
              console.log("压缩前");
              let canvasWidth = v.image.width; //图片原始长宽
              let canvasHeight = v.image.height;
              let img = new Image();
              img.src = v.path;
              let canvas = document.createElement("canvas");
              let ctx = canvas.getContext("2d");
              canvas.width = canvasWidth;
              canvas.height = canvasHeight;
              ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
              canvas.toBlob(
                (fileSrc) => {
                  let tp = window.URL.createObjectURL(fileSrc);
                  console.log("压缩后");
                  n++;
                  uni.uploadFile({
                    url: pathUrl +
                      "/common/common/uploadAttachment/specimenPhotos/" +
                      res.deptSpecimensNumId +
                      "/666",
                    filePath: tp,
                    name: "file",
                    formData: {
                      filename: v.cloudPath,
                    },
                    success: (uploadFileRes) => {
                      console.log(uploadFileRes);
                      if (--n === 0) {
                        uni.hideLoading();
                        uni.showModal({
                          title: "提示",
                          content: "修改成功!",
                          showCancel: false,
                          success: (result) => {
                            if (result.confirm) {
                              console.log("用户点击确定", this.changeSpeObj.t);
                              if (this.changeSpeObj.t == "big") {
                                if (this.changeSpeObj.gdState == 4) {
                                  // 待到达
                                  uni.navigateTo({
                                    url: `../../pages/receiptpage/receiptpage`,
                                  });
                                } else if (this.changeSpeObj.gdState == 5) {
                                  // 待送达
                                  if (res.type1 === "plan-spe-ddd-2") {} else {
                                    let content = `本工单已签到<strong class="red">${
                                    res.scanSet ? res.scanSet.join("、") : ""
                                  }</strong>,剩余需签到科室<strong class="red">${
                                    res.notScanSet ? res.notScanSet.join("、") : ""
                                  }</strong>,您确定完成工单吗?`;
                                    uni.navigateTo({
                                      url: `../scanning/scanning?type=${res.type}&type1=${
                                      res.type1
                                    }&id=${encodeURIComponent(
                                      JSON.stringify([res.gdid])
                                    )}&content=${content}`,
                                    });
                                  }
                                }
                              } else if (this.changeSpeObj.t == "small") {
                                if (this.changeSpeObj.id == "undefined") {
                                  //快捷建单建单进入
                                  uni.navigateTo({
                                    url: `../../pages/receiptpage/receiptpage`,
                                  });
                                } else {
                                  if (this.changeSpeObj.gdState == 4) {
                                    // 待到达
                                    uni.navigateTo({
                                      url: `../../pages/receiptpage/receiptpage`,
                                    });
                                  } else if (this.changeSpeObj.gdState == 5) {
                                    // 待送达
                                    if (res.type1 === "plan-spe-ddd-2") {} else {
                                      let content = `本工单已签到<strong class="red">${
                                      res.scanSet ? res.scanSet.join("、") : ""
                                    }</strong>,剩余需签到科室<strong class="red">${
                                      res.notScanSet ? res.notScanSet.join("、") : ""
                                    }</strong>,您确定完成工单吗?`;
                                      uni.navigateTo({
                                        url: `../scanning/scanning?type=${res.type}&type1=${
                                        res.type1
                                      }&id=${encodeURIComponent(
                                        JSON.stringify([res.gdid])
                                      )}&content=${content}`,
                                      });
                                    }
                                  }
                                }
                              } else {
                                uni.navigateTo({
                                  url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
                                  JSON.stringify(this.changeSpeObj.infoDATA)
                                )}`,
                                });
                              }
                            } else if (result.cancel) {
                              console.log("用户点击取消");
                            }
                          },
                        });
                      }
                    },
                    fail: (err) => {
                      n--;
                      console.error(err);
                      uni.hideLoading();
                      uni.showToast({
                        icon: "none",
                        title: "上传失败",
                        duration: 2000,
                      });
                    },
                  });
                },
                "image/jpeg",
                0.3
              );
              // 图片上传 end
            });
          } else {
            uni.hideLoading();
            uni.showToast({
              icon: "none",
              title: "请求失败!",
            });
          }
        });
      },
      // 修改标本数量-取消
      changeSpeCancel() {
        this.changeSpeModels.disjunctor = false;
      },
      // 修改标本数量弹窗
      showChangeSpe() {
        this.changeSpeModels = {
          title: "修改标本数量",
          disjunctor: true,
        };
      },
      // 数量核对 end
      // 获取列表
      getList() {
        uni.showLoading({
          mask: true,
          title: '加载中'
        })
        let postData = {
          startDept: this.msg.startDept,
          targetDept: this.msg.targetDept,
          uuid: this.msg.uuid
        }; //起点科室id,选择的科室ids
        post(`/api/getDeptSpecimensNum`, postData).then((res) => {
          uni.hideLoading();
          uni.stopPullDownRefresh();
          if (res.status == 200) {
            this.list = res.data;
          } else {
            uni.showToast({
              icon: "none",
              title: "请求失败!",
            });
          }
        });
      },
      // 跳转到详情页
      gotoDetail(item) {
        this.speNumChange = item[2];
        this.changeSpeObj = {
          infoDATA: this.msg,
          id: item[0],
          endDepts:this.msg.targetDept,
        }
        this.showChangeSpe();
      },
      // 知道了
      goto() {
        uni.navigateTo({
          url: `../../pages/receiptpage/receiptpage`,
        });
      },
      // 确认数量并建单
      createOrder() {
        uni.showModal({
          title: '提示',
          content: "您确认建单吗?",
          success: (res) => {
            if (res.confirm) {
              console.log('用户点击确定');
              uni.showLoading({
                mask: true,
                title: '加载中'
              })
              get(`/workerOrder/createQuickOrder/${this.msg.id}`, {}).then((res) => {
                console.log(res)
                uni.hideLoading();
                if (res.status == 200) {
                  if (res.type === 'plan-spe-ddd-2') {
                    //需要扫描标本
                    uni.navigateTo({
                      url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined&endDepts=${this.msg.targetDept}`,
                    });
                  } else {
                    uni.navigateTo({
                      url: "../receiptpage/receiptpage",
                    });
                  }
                } else {
                  uni.showToast({
                    icon: "none",
                    title: "请求失败!",
                  });
                }
              });
            } else if (res.cancel) {
              console.log('用户点击取消');
            }
          }
        });
      },
    },
    onLoad(options) {
      console.log(options, "快捷建单");
      this.msg = JSON.parse(options.infoDATA);
      this.getList();
      // #ifdef APP-PLUS
      webHandle("no", "app");
      // #endif
      // #ifdef H5
      webHandle("no", "wx");
      // #endif
    },
    onPullDownRefresh() {
      this.getList();
    },
  };
</script>
<style lang="less" scoped>
  .specimenChecking {
    padding-bottom: 100rpx;

    .title {
      font-size: 48rpx;
      margin-top: 24rpx;
      margin-bottom: 24rpx;
      text-align: center;
    }

    .page_item_wrap {
      width: 100%;
      height: auto;
      box-sizing: border-box;
      position: relative;
      margin-bottom: 16rpx;

      .page_item {
        margin-top: 16rpx;
        margin-bottom: 124rpx;
        background: #fff;
        border-radius: 8rpx;
        margin: 0 20rpx;
        border: 2rpx solid #e5e9ed;
        position: relative;
        overflow: hidden;
        padding: 0 16rpx;

        .L {
          width: 40rpx;
          height: 40rpx;
          border-radius: 50%;
          background: #f9fafb;
          position: absolute;
          left: -20rpx;
          top: 68rpx;
          border: 2rpx solid #e5e9ed;
        }

        .R {
          width: 40rpx;
          height: 40rpx;
          border-radius: 50%;
          background: #f9fafb;
          position: absolute;
          float: right;
          right: -20rpx;
          top: 68rpx;
          border: 2rpx solid #e5e9ed;
        }

        .starting {
          width: 50rpx;
          height: 50rpx;
          color: #fff;
          background: #49b856;
          display: inline-block;
          border-radius: 50%;
          text-align: center;
          line-height: 46rpx;
          font-size: 32rpx;
          margin-right: 6rpx;
        }

        .End {
          width: 50rpx;
          height: 50rpx;
          color: #fff;
          background: #39b199;
          display: inline-block;
          border-radius: 50%;
          text-align: center;
          line-height: 46rpx;
          font-size: 32rpx;
          margin-right: 6rpx;
        }

        .page_item_top {
          height: 88rpx;
          border-bottom: 2rpx dashed #e5e9ed;
          padding: 0 16rpx;

          .page_item_top-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;

            .page_item_top_L {
              .emergencys {
                background: #ff3b53 !important;
                width: 124rpx !important;
              }

              .emergency {
                background: #ff3b53 !important;
              }

              .emergency1 {
                background: #49b856 !important;
              }

              .page_item_cont_start {
                text-align: center;
                height: 44rpx;
                width: 104rpx;
                line-height: 44rpx;
                border-radius: 8rpx;
                background: #49b856;
                color: #fff;
                display: inline-block;
              }

              .L_time {
                color: #6cc076;
                font-size: 32rpx;
              }

              .L_text {
                font-size: 32rpx;
                font-weight: 700;
              }
            }

            .page_item_top_R {
              font-size: 32rpx;

              .L_iocn {
                color: rgb(7, 134, 60);
                font-size: 36rpx;
                font-weight: 700;
              }
            }
          }
        }

        .page_item_cont {
          min-height: 90rpx;
          padding: 0 16rpx;
          text-align: left;
          position: relative;

          .text_big {
            font-size: 32rpx;
            font-weight: 700;
            margin-top: 10rpx;

            p {
              font-weight: 700;
              line-height: 1.5;
            }
          }

          .page_item_cont_T {
            padding-top: 28rpx;
            font-size: 28rpx;

            .page_item_cont_title {
              height: 100%;
              font-size: 32rpx;
              display: flex;
              justify-content: space-between;
            }
          }

          .page_item_cont_B {
            padding-top: 28rpx;
            margin-bottom: 28rpx;

            .page_item_cont_title {
              font-size: 32rpx;
              display: flex;
              justify-content: space-between;
            }

            .page_item_cont_title1 {
              height: 60rpx;
              line-height: 60rpx;
              font-size: 32rpx;
              padding-left: 64rpx;
            }
          }
        }

        .page_item_foot {
          border-top: 2rpx dashed #e5e9ed;
          border-bottom: 2rpx dashed #e5e9ed;
          padding: 28rpx 16rpx;
          text-align: left;

          .page_item_foot_text {
            font-size: 32rpx;
            margin-bottom: 20rpx;

            .text1 {
              color: rgb(102, 102, 102);
            }

            .text2 {
              float: right;
              font-weight: 700;
            }
          }
        }

        #infos {
          display: none;
        }

        .page_item_infos {
          padding-bottom: 20rpx;
          border-bottom: 2rpx dashed #e5e9ed;

          .page_item_info2 {
            text-align: left;
            line-height: 60rpx;
            font-size: 32rpx;
            padding-left: 16rpx;

            .page_item_foot_text {
              font-size: 32rpx;
              margin-bottom: 20rpx;

              .text1 {
                color: rgb(102, 102, 102);
              }

              .text2 {
                float: right;
                font-weight: 700;
              }
            }
          }
        }
      }

      .L-l {
        width: 2rpx;
        height: 40rpx;
        background: #f9fafb;
        position: absolute;
        left: 20rpx;
        top: 72rpx;
      }

      .R-l {
        width: 2rpx;
        height: 40rpx;
        background: #f9fafb;
        position: absolute;
        right: 20rpx;
        top: 72rpx;
      }
    }

    .foot_btn2 {
      position: fixed;
      bottom: 0;
      width: 100vw;
      padding: 0 20rpx;
      box-sizing: border-box;
      line-height: 66rpx;
      height: 100rpx;
      border-top: 2rpx solid #e5e9ed;
      background: #f9fafb;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;

      .btn2 {
        height: 66rpx;
        flex: 1;
        margin: 16rpx 16rpx 0;
        background-image: linear-gradient(to right, #72c172, #3bb197);
        color: #fff;
        border-radius: 8rpx;
        font-size: 32rpx;
      }
    }
  }
</style>