123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <template>
- <view class="Scanning_Result">
- <view class="Scanning_top">
- <view class="Scanning_top_icon">
- <text class="cubeic-ok newicon newicon-duigou"></text>
- </view>
- </view>
- <view class="Scanning_cont">
- <scroll-view scroll-y class="scrollContent">
- <view class="column">
- <view class="name">单号:</view>
- <view class="value">{{drugsBag.batchNo}}</view>
- </view>
- <view class="column">
- <view class="name">申请科室:</view>
- <view class="value">{{drugsBag.target ? drugsBag.target.dept : ''}}</view>
- </view>
- <view class="column">
- <view class="name">发药科室:</view>
- <view class="value">{{drugsBag.launch ? drugsBag.launch.dept : ''}}</view>
- </view>
- <view class="column">
- <view class="name">种类数:</view>
- <view class="value">{{drugsBag.drugsTypeCount}}</view>
- </view>
- <view class="column">
- <view class="name">药品数:</view>
- <view class="value">{{drugsBag.drugsCount}}</view>
- </view>
- </scroll-view>
- </view>
- <view class="foot_btn_spe">
- <view class="column">
- <view class="btn" @click="goIndex()">知道了</view>
- <view class="btn" @click="createOrBuildOrder()" v-if="queryObj.type === 'build' && config.drugsCreateSign === 1">建单并签到</view>
- <view class="btn" @click="createOrBuildOrder(orderId)" v-if="queryObj.type === 'receive' && config.drugsReceiveSign === 1">接单并签到</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- get,
- post,
- SM,
- webHandle
- } from "@/http/http.js";
- export default {
- data() {
- return {
- queryObj: {},
- drugsBag: {},
- config: {},
- orderId: undefined,
- };
- },
- methods: {
-
- goIndex(){
- uni.redirectTo({
- url: `/pages/receiptpage/receiptpage`,
- });
- },
-
- pageNavigateByConfig(config, responseData, queryObj){
- let drugsBagType = queryObj.drugsBagType;
- let orderId = responseData.orderId;
- let drugsBagId = queryObj.drugsBagId;
- let orderStateValue = responseData.orderStateValue;
- if(config.drugsModel === 1){
-
- if(responseData.orderStateValue == 4){
-
- if(config.drugsStartCheck === 1){
-
- uni.navigateTo({
- url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
- });
- }else{
-
- if(config.drugsStartPhoto === 1){
-
- uni.navigateTo({
- url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
- });
- }else{
-
- this.completeOrder(responseData, queryObj);
- }
- }
- }else if(responseData.orderStateValue == 5){
-
- if(config.drugsEndCheck === 1){
-
- uni.navigateTo({
- url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
- });
- }else{
-
- if(config.drugsEndPhoto === 1){
-
- uni.navigateTo({
- url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
- });
- }else{
-
- this.completeOrder(responseData, queryObj);
- }
- }
- }
- }else if(config.drugsModel === 2){
-
- uni.navigateTo({
- url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${drugsBagType}&orderId=${orderId}&drugsBagId=${drugsBagId}&orderStateValue=${orderStateValue}`,
- });
- }
- },
-
- completeOrder(responseData, queryObj){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- "type": queryObj.drugsBagType,
- "orderId": responseData.orderId,
- };
- post('/transflow/checkComplete', postData).then(res => {
- uni.hideLoading();
- if(res.state == 200){
- uni.showToast({
- icon: "none",
- title: responseData.orderStateValue == 4 ? "交接成功,请尽快送达科室!" : (responseData.orderStateValue == 5 ? "交接成功,完成配送!" : ""),
- duration: 60000,
- mask: true,
- complete(){
- setTimeout(() => {
- uni.hideToast();
- uni.redirectTo({
- url: `/pages/receiptpage/receiptpage`,
- });
- }, 2000)
- }
- });
- }else{
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- },
-
- createOrBuildOrder(orderId){
- uni.showModal({
- title: "提示",
- content: `请确认是否${orderId ? '接' : '建'}单并签到?`,
- success: (result) => {
- if (result.confirm) {
- console.log("用户点击确定");
- let postData = {
- type: this.queryObj.drugsBagType,
- id: +this.queryObj.drugsBagId,
- orderId,
- };
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post(`/transflow/createOrTakeOrder`, postData).then((ress) => {
- uni.hideLoading();
- if (ress.state == 200) {
- if(ress.data.msg){
- uni.showToast({
- icon: "none",
- title: ress.data.msg || "接口获取数据失败!",
- });
- }else{
- this.pageNavigateByConfig(this.config, ress.data, this.queryObj);
- }
- } else {
- uni.showToast({
- icon: "none",
- title: ress.msg || "接口获取数据失败!",
- });
- }
- });
- } else if (result.cancel) {
- console.log("用户点击取消");
- }
- },
- });
- },
-
- getInfo(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- post(`/transflow/scanInfo`, {type: this.queryObj.drugsBagType, id: +this.queryObj.drugsBagId, orderStateValue: '4'}).then(res => {
- uni.hideLoading();
- if(res.state == 200){
- if(res.data){
- this.drugsBag = res.data.dto || {};
- this.orderId = this.queryObj.orderId;
- this.config = res.data.taskTypeConfig || {};
- }
- }else{
- uni.showToast({
- icon: "none",
- title: res.msg || "接口获取数据失败!",
- });
- }
- })
- },
- },
- onLoad(options) {
- console.log(options, "options");
- this.queryObj = options;
- this.getInfo();
-
- webHandle("no", "app");
-
-
- webHandle("no", "wx");
-
- },
- };
- </script>
- <style lang="less" scoped>
- .Scanning_Result {
- background: #FAFBFD;
- padding: 0 24rpx;
- display: flex;
- flex-direction: column;
- height: 100vh;
- .Scanning_top {
- margin: 50rpx auto 64rpx;
- .Scanning_top_icon {
- width: 128rpx;
- height: 128rpx;
- border-radius: 50%;
- .cubeic-ok {
- font-size: 128rpx;
- color: #35b34a;
- }
- }
- }
- .Scanning_cont {
- flex: 1;
- min-height: 0;
- display: flex;
- flex-direction: column;
- .scrollContent{
- flex: 1;
- min-height: 0;
- }
- .column{
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 30rpx;
- margin-bottom: 32rpx;
- .name{
- font-weight: bold;
- word-break: break-all;
- flex-shrink: 0;
- }
- .value{
- word-break: break-all;
- }
- }
- }
- .foot_btn_spe {
- margin: 24rpx 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 24rpx;
- font-weight: bold;
- .column{
- width: 100%;
- height: 78rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 24rpx;
- .btn {
- height: 100%;
- flex: 1;
- background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
- color: #fff;
- border-radius: 4rpx;
- font-size: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- }
- </style>
|