123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682 |
- <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" v-if="enterDynamicDigitalKey==0">
- <view class="btn1" @click="Scanning_complete('scan')">核对完成</view>
- <view class="btn3" @click="goBack">取消</view>
- </view>
- <view class="foot_btn_spe" v-if="enterDynamicDigitalKey==1">
- <view class="btn1" @click="Scanning_complete('scan')">扫一扫核对</view>
- <view class="btn1" @click="isShowKey()">数字核对</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>
- <!-- 动态密钥 -->
- <numberKeyModel v-if="showKey" :keyArr="keyArr" @cancel="showKey = false" @confirm="confirmKey($event)"></numberKeyModel>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- SM,
- webHandle
- } from "../../http/http.js";
- import numberKeyModel from "../../components/numberKeyModel/numberKeyModel.vue";
- export default {
- data() {
- return {
- handoverId: undefined,
- handoverDeptId: undefined,
- info: {},
- wcFlag: false,
- queryObj: {}, //路由传递过来的数据
- // 弹窗model
- models: {
- disjunctor: false,
- },
- // 完成扫描弹窗model1
- models2: {
- disjunctor: false,
- },
- showKey:false,
- keyNum:4, //密钥位数
- isNumberKey:false, //是否开启动态密钥
- keyArr: [],
- enterDynamicDigitalKey:null,
- keyType:null,
- contentData:null,
- };
- },
- components: {
- numberKeyModel
- },
- methods: {
- confirmKey(data){
- this.Scanning_complete('key')
- this.contentData = data
- this.showKey = false
- },
- isShowKey(){
- this.showKey = true
- },
- // 获取配置
- getConfig() {
- // 判断开关
- const userData = uni.getStorageSync("userData");
- let postData = {
- idx: 0,
- sum: 9999,
- hospitalConfig:{
- hosId:userData.user.currentHospital.id,
- model:"all"
- }
- };
-
- post("/simple/data/fetchDataList/hospitalConfig",postData).then((result) => {
- if (result.status == 200) {
- this.keyArr = []
- for(let i of result.list){
- if(i.key=='digitalSecretKey'){
- if(i.value==1){
- this.isNumberKey = true
- }else{
- this.isNumberKey = false
- }
- }else if(i.key=='numberDigitalSecretKey'){
- this.keyNum = Number(i.value)
- }
- }
- for(let i = 0; i < this.keyNum; i++){
- this.keyArr.push({
- value:null
- })
- }
- }
- });
-
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- // 查询标本配送业务
- post("/simple/data/fetchDataList/taskType",{
- "idx": 0,
- "sum": 10,
- "taskType": {
- "simpleQuery": true,
- "hosId": {
- "id": userData.user.currentHospital.id
- },
- "associationType": {
- "key": "association_types",
- "value": "specimen"
- }
- }
- }).then((res) => {
- if (res.status == 200) {
- let taskTypeDTO = res.list[0];
- if(taskTypeDTO){
- // 查询业务页面控制-标本
- post("/simple/data/fetchDataList/taskTypeConfig",{
- "idx": 0,
- "sum": 10,
- "taskTypeConfig": {
- taskTypeDTO,
- }
- }).then((res) => {
- if (res.status == 200) {
- let data = res.list[0];
- uni.hideLoading();
- if(data){
- // 输入动态数字密钥
- this.enterDynamicDigitalKey = data.enterDynamicDigitalKey
- console.log(55555,this.enterDynamicDigitalKey)
- }
- } else {
- uni.hideLoading();
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- });
- }else{
- uni.hideLoading();
- }
- } else {
- uni.hideLoading();
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- });
- },
- // 获取核对信息
- 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: res.msg || "接口获取数据失败!",
- });
- }
- })
- },
- // 返回
- goBack() {
- uni.navigateBack();
- },
- // 业务页面控制-标本-收取时需扫描二维码
- beforeScanning(fn) {
- this.handoverId = undefined;//扫动态码或静态码,后端会返回交接人,核对完成接口传过去
- this.handoverDeptId = undefined;//扫动态码或静态码,后端会返回科室,核对完成接口传过去
- // 判断开关
- const userData = uni.getStorageSync("userData");
- console.log('userData', userData);
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- // 查询标本配送业务
- post("/simple/data/fetchDataList/taskType",{
- "idx": 0,
- "sum": 10,
- "taskType": {
- "simpleQuery": true,
- "hosId": {
- "id": userData.user.currentHospital.id
- },
- "associationType": {
- "key": "association_types",
- "value": "specimen"
- }
- }
- }).then((res) => {
- if (res.status == 200) {
- let taskTypeDTO = res.list[0];
- if(taskTypeDTO){
- // 查询业务页面控制-标本
- post("/simple/data/fetchDataList/taskTypeConfig",{
- "idx": 0,
- "sum": 10,
- "taskTypeConfig": {
- taskTypeDTO,
- }
- }).then((res) => {
- if (res.status == 200) {
- let data = res.list[0];
- if(data){
- // 收取时需扫描二维码
- if(data.arriveScanCode == 1){
- // 扫描科室二维码
- uni.hideLoading();
- if(this.keyType=='key'){
- let postData = {
- code: this.contentData,
- type: 'specimen',
- hosId: userData.user.currentHospital.id,
- orderId: +this.queryObj.id,
- };
- console.log(postData)
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post("/workerOrder/arriveScanCheck", postData).then((res) => {
- uni.hideLoading();
- if (res.state == 200) {
- this.handoverId = res.handover;//扫动态码或静态码,后端会返回交接人,核对完成接口传过去
- this.handoverDeptId = res.handoverDeptId;//扫动态码或静态码,后端会返回科室,核对完成接口传过去
- fn();
- } else {
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- }else{
- SM().then((content) => {
- let postData = {
- code: content,
- type: 'specimen',
- hosId: userData.user.currentHospital.id,
- orderId: +this.queryObj.id,
- };
- console.log(postData)
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post("/workerOrder/arriveScanCheck", postData).then((res) => {
- uni.hideLoading();
- if (res.state == 200) {
- this.handoverId = res.handover;//扫动态码或静态码,后端会返回交接人,核对完成接口传过去
- this.handoverDeptId = res.handoverDeptId;//扫动态码或静态码,后端会返回科室,核对完成接口传过去
- fn();
- } else {
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- }).catch(err => {
-
- });
- }
- }else{
- uni.hideLoading();
- fn();
- }
- }else{
- uni.hideLoading();
- fn();
- }
- } else {
- uni.hideLoading();
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- });
- }else{
- uni.hideLoading();
- uni.showToast({
- icon: "none",
- title: "未查询到标本配送业务!",
- });
- }
- } else {
- uni.hideLoading();
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- });
-
-
-
- },
- // 完成核对
- Scanning_complete(type) {
- this.keyType = type
- this.beforeScanning(() => {
- 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: ress.msg || "接口获取数据失败!",
- });
- }
- })
- },
- // 取消
- 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: ress.msg || "接口获取数据失败!",
- });
- }
- })
- },
- // 取消
- 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: res.msg || "接口获取数据失败!",
- });
- }
- });
- } else {
- data.handover = this.handoverId || undefined;
- data.handoverDeptId = this.handoverDeptId || undefined;
- post("/workerOrder/finishSpes", data).then((res) => {
- // uni.hideLoading()
- if (res.status == 200) {
- uni.navigateTo({
- url: "../receiptpage/receiptpage",
- });
- } else {
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- });
- }
- },
- // 跳转到已扫描标本详情页
- 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);
- this.getConfig();
- // #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>
|