123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- <template>
- <view class="checkAfterScanning">
- <view class="checkAfterScanning_title">标本核对</view>
- <view class="page_item_cont">
- <view class="page_item_cont_T">
- <view class="page_item_cont_title">
- <view> 工单单号 </view>
- <view class="text_big">{{info.gdCode}}</view>
- </view>
- <view class="page_item_cont_title">
- <view class="text_title"> 科室名称 </view>
- <view class="text_big">{{info.LCDept}}</view>
- </view>
- <view class="page_item_cont_title">
- <view> 扫描标本数量 </view>
- <view class="text_big" @click="goToSpeDetail()"><text class="underline">{{info.total}}</text>只</view>
- </view>
- <view class="page_item_cont_title2">
- 检验科室标本数量:
- </view>
- <view class="page_item_cont_title" v-for="(item, i) in info.data" :key="i">
- <view>{{item[1]}}</view>
- <view class="text_big" @click="goToSpeDetail(item[1],item[2])"><text class="underline">{{item[3]}}</text>只</view>
- </view>
- </view>
- </view>
- <view class="foot_btn_spe">
- <view class="btn1" @click="Scanning_complete()">核对完成</view>
- <view class="btn3" @click="goBack">返回</view>
- </view>
- <!-- 弹窗 -->
- <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
- @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
- <!-- 弹窗 -->
- <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
- @ok="ok2" @know="know2" @cancel="cancel2" :operate="models2.operate"></showModel>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- SM,
- webHandle
- } from "../../http/http.js";
- export default {
- data() {
- return {
- info: {},
- wcFlag: false,
- queryObj: {}, //路由传递过来的数据
- // 弹窗model
- models: {
- disjunctor: false,
- },
- // 完成扫描弹窗model1
- models2: {
- disjunctor: false,
- },
- };
- },
- methods: {
- // 获取核对信息
- getInfo(gdId){
- uni.showLoading({
- title: '加载中',
- mask: true
- });
- post("/api/specimensCheck", {gdIds:gdId}).then((res) => {
- uni.hideLoading();
- if (res.status == 200) {
- console.log(res)
- res.LCDept = res.LCDept.join(',');
- this.info = res;
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败!",
- });
- }
- })
- },
- // 返回
- goBack() {
- uni.navigateBack();
- },
- // 完成核对
- Scanning_complete() {
- if (
- this.queryObj.type1 == "plan-spe-ddd-2" ||
- this.queryObj.type1 == "spe-ddd-2"
- ) {
- this.wcFlag = true;
- this.models = {
- disjunctor: true,
- title: "提示",
- content: "是否确定标本已核对完成?",
- icon: "warn",
- operate: {
- ok: "确定",
- cancel: "取消",
- },
- };
- } else if (
- this.queryObj.type1 == "plan-spe-dsd-2" ||
- this.queryObj.type1 == "plan-spe-dsd-3" ||
- this.queryObj.type1 == "spe-dsd-2" ||
- this.queryObj.type1 == "spe-dsd-3"
- ) {
- this.wcFlag = false;
- this.models = {
- disjunctor: true,
- title: "提示",
- content: "是否确定标本已核对完成?",
- icon: "warn",
- operate: {
- ok: "确定",
- cancel: "取消",
- },
- };
- } else {
- this.gotoOver();
- }
- },
- // 跳转完成工单页面
- gotoOver() {
- uni.navigateTo({
- url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
- this.queryObj.type1
- }&id=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${
- this.queryObj.deptCode
- }&dept=${this.queryObj.dept}&speNum=${this.queryObj.speNum}&content=${this.queryObj.content}`,
- });
- },
- // 确定
- ok() {
- this.models.disjunctor = false;
- let postData = {
- ids: [this.queryObj.id],
- sign: true,
- deptQrCode: this.queryObj.deptCode
- };
- uni.showLoading({
- title: '加载中',
- mask: true
- });
- post("/workerOrder/expectedAndActual", postData).then((ress) => {
- uni.hideLoading();
- if (ress.status == 200) {
- if (this.wcFlag) {
- //正常完成扫描
- this.overFinish()
- } else {
- this.gotoOver();
- }
- } else if (ress.status == 1000035) {
- let content = '';
- if (this.queryObj.type1 === 'spe-ddd-2' || this.queryObj.type1 === 'plan-spe-ddd-2') {
- //待到达
- content =
- `系统内预计标本<strong class="red">${ress.expectReceiveNum}</strong>只,您扫描收取标本<strong class="red">${ress.actualReceiveNum}</strong>只,其中<strong class="red">${ress.notReceiveNum}</strong>只未扫描;`;
- } else {
- //待送达
- this.content =
- `本工单已签到<strong class="red">${ress.scanSet?ress.scanSet.join('、'):''}</strong>,剩余需签到科室<strong class="red">${ress.notScanSet?ress.notScanSet.join('、'):''}</strong>,总签收<strong class="red">${ress.totalAcceptance}</strong>只,剩余<strong class="red">${ress.notAcceptance}</strong>只未签收,您确定完成工单吗?`;
- content =
- `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
- }
- // 取消弹窗 2022年10月10日
- this.ok2();
- // this.models2 = {
- // disjunctor: true,
- // title: "提示",
- // content,
- // icon: "warn",
- // operate: {
- // ok: "确定",
- // cancel: "取消",
- // },
- // };
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败!",
- });
- }
- })
- },
- // 取消
- cancel() {
- this.models.disjunctor = false;
- },
- // 确定
- ok2() {
- this.models2.disjunctor = false;
- let postData = {
- ids: [this.queryObj.id],
- deptQrCode: this.queryObj.deptCode
- };
- uni.showLoading({
- title: '加载中',
- mask: true
- });
- post("/workerOrder/expectedAndActual", postData).then((ress) => {
- uni.hideLoading();
- if (ress.status == 200) {
- if (this.wcFlag) {
- this.overFinish()
- } else {
- this.gotoOver();
- }
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败!",
- });
- }
- })
- },
- // 取消
- cancel2() {
- this.models2.disjunctor = false;
- },
- know2() {
- this.models2.disjunctor = false;
- uni.navigateTo({
- url: "../receiptpage/receiptpage",
- });
- },
- // 正常完成扫描
- overFinish() {
- let data = {
- type: this.queryObj.type1,
- ids: [this.queryObj.id],
- };
- //只要是标本轮巡1对多或者多对多
- // plan-spe-dsd-2 1对多
- // plan-spe-dsd-3 多对多
- if (
- this.queryObj.type1 === "plan-spe-ddd-2" ||
- this.queryObj.type1 === "plan-spe-dsd-2" ||
- this.queryObj.type1 === "plan-spe-dsd-3"
- ) {
- post("/workerOrder/finishPlanSpes", data).then((res) => {
- // uni.hideLoading()
- if (res.status == 200) {
- this.models2 = {
- disjunctor: true,
- title: "提示",
- content: `完成扫描成功`,
- icon: "success",
- operate: {
- know: "知道了",
- },
- };
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败!",
- });
- }
- });
- } else {
- post("/workerOrder/finishSpes", data).then((res) => {
- // uni.hideLoading()
- if (res.status == 200) {
- uni.navigateTo({
- url: "../receiptpage/receiptpage",
- });
- } else {
- uni.showToast({
- icon: "none",
- title: "请求失败!",
- });
- }
- });
- }
- },
- // 跳转到已扫描标本详情页
- goToSpeDetail(deptName='', qrCode=''){
- uni.navigateTo({
- url: `../noScanSpecimen/noScanSpecimen?deptName=${deptName}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${qrCode}&isScan=1&specimensCheck=1`,
- });
- }
- },
- onLoad(options) {
- console.log(options);
- this.queryObj = options;
- this.getInfo(this.queryObj.id);
- // #ifdef APP-PLUS
- webHandle("no", "app");
- // #endif
- // #ifdef H5
- webHandle("no", "wx");
- // #endif
- },
- };
- </script>
- <style lang="less" scoped>
- .checkAfterScanning {
- .checkAfterScanning_title {
- padding: 50rpx 0;
- font-size: 46rpx;
- font-weight: 550;
- text-align: center;
- border-bottom: 1px solid #ccc;
- }
- .page_item_cont {
- min-height: 90rpx;
- padding: 0 20rpx;
- text-align: left;
- position: relative;
-
- .text_title{
- flex-shrink: 0;
- margin-right: 16rpx;
- }
- .text_big {
- font-size: 32rpx;
- font-weight: 700;
- margin-top: 10rpx;
-
- .underline{
- text-decoration: underline;
- }
- }
- .page_item_cont_T {
- padding-top: 28rpx;
- padding-bottom: 28rpx;
- font-size: 28rpx;
- .page_item_cont_title {
- height: 100%;
- font-size: 32rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .page_item_cont_title2{
- margin-top: 36rpx;
- margin-bottom: 18rpx;
- height: 100%;
- font-size: 32rpx;
- font-weight: bold;
- display: flex;
- align-items: center;
- }
- }
- .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;
- }
- }
- }
- .foot_btn {
- line-height: 88rpx;
- height: 100rpx;
- margin-top: 40rpx;
- display: flex;
- justify-content: center;
- .btn1,
- .btn2,
- .btn3 {
- height: 88rpx;
- flex: 1;
- margin: 0 1%;
- background-image: linear-gradient(to right, #72c172, #3bb197);
- color: #fff;
- border-radius: 8rpx;
- font-size: 32rpx;
- margin-top: 16rpx;
- text-align: center;
- }
- }
- .foot_btn_spe {
- line-height: 88rpx;
- height: 100rpx;
- margin-top: 40rpx;
- text-align: center;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- &::after {
- content: '';
- flex: 1;
- }
- view {
- height: 88rpx;
- width: 48%;
- margin: 0 1%;
- background-image: linear-gradient(to right, #72c172, #3bb197);
- color: #fff;
- border-radius: 8rpx;
- font-size: 32rpx;
- margin-top: 16rpx;
- }
- }
- }
- </style>
|