Browse Source

大扫描错误页

seimin 1 year ago
parent
commit
73ea0548e5

+ 2 - 2
components/bigScreen/bigScreen.vue

@@ -141,7 +141,7 @@
141 141
         if (accountObj) {
142 142
           list.handover = [accountObj.accountId];
143 143
         }
144
-        
144
+
145 145
         post("/workerOrder/" + type, list).then((res) => {
146 146
           console.log(this.tabType)
147 147
           uni.hideLoading();
@@ -419,7 +419,7 @@
419 419
                     } else {
420 420
                       if(res.bigScanSpecialMsg){
421 421
                         uni.navigateTo({
422
-                          url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
422
+                          url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
423 423
                         });
424 424
                       }else{
425 425
                         uni.navigateTo({

+ 8 - 0
pages.json

@@ -58,6 +58,14 @@
58 58
       }
59 59
     },
60 60
     {
61
+      "path": "pages/scanning_big_Result/scanning_big_Result", //大扫描结果->错误->new
62
+      "style": {
63
+        "h5": {
64
+          "titleNView": false
65
+        }
66
+      }
67
+    },
68
+    {
61 69
       "path": "pages/scanning_result_seimin/scanning_result_seimin", //药包扫描----知道了
62 70
       "style": {
63 71
         "h5": {

+ 1 - 30
pages/scanning_Result/scanning_Result.vue

@@ -28,14 +28,10 @@
28 28
       <view class="Scanning_top_icon">
29 29
         <text class="cubeic-close icon_transport transport-shibai"></text>
30 30
       </view>
31
-      <view class="Scanning_top_text" v-if="!queryObj.bigScanSpecialMsg">
31
+      <view class="Scanning_top_text">
32 32
         <view class="text1"> 操作失败 </view>
33 33
         <view class="text1 f30" v-if="queryObj.qrcode !== undefined"> 扫描内容:{{queryObj.qrcode}} </view>
34 34
       </view>
35
-      <view class="Scanning_top_text" v-if="queryObj.bigScanSpecialMsg">
36
-        <view class="text1"> 签到失败 </view>
37
-        <view class="text1 f30" v-if="queryObj.qrcode !== undefined"> 扫描内容:{{queryObj.qrcode}} </view>
38
-      </view>
39 35
     </view>
40 36
 
41 37
     <view class="Scanning_cont" v-if="
@@ -130,12 +126,6 @@
130 126
     <view class="Scanning_cont" v-if="res.status != 200">
131 127
       <view class="Scanning_cont_center" v-if="res.status != 11111">
132 128
         {{ res.msg === "undefined" || !res.msg ? "" : res.msg }}
133
-        <view class="bigScanSpecialMsg" v-if="queryObj.bigScanSpecialMsg">
134
-          <view class="bigScanSpecialMsgList" v-for="item in queryObj.bigScanSpecialMsg" :key="item.id">
135
-            <view class="bigScanSpecialMsgListTitle">{{item.name}}</view>
136
-            <view class="bigScanSpecialMsgListDesc">{{item.desc}}</view>
137
-          </view>
138
-        </view>
139 129
       </view>
140 130
     </view>
141 131
     <view class="foot_btn_spe" v-if="
@@ -889,9 +879,6 @@
889 879
       }
890 880
       console.log(options, "result");
891 881
       this.queryObj = options;
892
-      if(this.queryObj.bigScanSpecialMsg){
893
-        this.queryObj.bigScanSpecialMsg = JSON.parse( this.queryObj.bigScanSpecialMsg);
894
-      }
895 882
       this.isKs = this.queryObj.isKs;
896 883
       if (options.infoData && options.infoData != "undefined") {
897 884
         this.infoDATA = JSON.parse(options.infoData);
@@ -937,22 +924,6 @@
937 924
 <style lang="less">
938 925
   .Scanning_Result {
939 926
     padding: 0 20rpx;
940
-    
941
-    .bigScanSpecialMsg{
942
-      text-align: left;
943
-      padding: 0 87rpx;
944
-      .bigScanSpecialMsgList{
945
-        margin-top: 50rpx;
946
-        font-size: 32rpx;
947
-        .bigScanSpecialMsgListTitle{
948
-          color: red;
949
-        }
950
-        .bigScanSpecialMsgListDesc{
951
-          line-height: 48rpx;
952
-          margin-top: 15rpx;
953
-        }
954
-      }
955
-    }
956 927
 
957 928
     .Scanning_top {
958 929
       .Scanning_top_icon {

+ 179 - 0
pages/scanning_big_Result/scanning_big_Result.vue

@@ -0,0 +1,179 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <scroll-view class="Scanning_Result_inWrap" scroll-y>
4
+      <view class="Scanning_top">
5
+        <view class="Scanning_top_icon">
6
+          <text class="cubeic-close icon_transport transport-shibai"></text>
7
+        </view>
8
+        <view class="Scanning_top_text" v-if="queryObj.bigScanSpecialMsg">
9
+          <view class="text1"> 签到失败 </view>
10
+          <view class="text1 f30" v-if="queryObj.qrcode !== undefined"> 扫描内容:{{queryObj.qrcode}} </view>
11
+        </view>
12
+      </view>
13
+
14
+      <view class="Scanning_cont">
15
+        <view class="Scanning_cont_center">
16
+          {{ res.msg }}
17
+          <view class="bigScanSpecialMsg" v-if="queryObj.bigScanSpecialMsg">
18
+            <view class="bigScanSpecialMsgList" v-for="item in queryObj.bigScanSpecialMsg" :key="item.id">
19
+              <view class="bigScanSpecialMsgListTitle">{{item.name}}</view>
20
+              <view class="bigScanSpecialMsgListDesc">{{item.desc}}</view>
21
+            </view>
22
+          </view>
23
+        </view>
24
+      </view>
25
+    </scroll-view>
26
+    <view class="foot_btn">
27
+      <view class="btn3" @click="showAlert(dataId)"> 知道了 </view>
28
+    </view>
29
+  </view>
30
+</template>
31
+<script>
32
+  import {
33
+    get,
34
+    post,
35
+    SM,
36
+    webHandle
37
+  } from "../../http/http.js";
38
+  export default {
39
+    data() {
40
+      return {
41
+        res: {},
42
+        queryObj: {}, //路由传递过来的数据
43
+      };
44
+    },
45
+    methods: {
46
+      // 知道了
47
+      showAlert(id) {
48
+        uni.navigateTo({
49
+          url: "../receiptpage/receiptpage"
50
+        });
51
+      },
52
+    },
53
+    onLoad(options) {
54
+      console.log(options, "result");
55
+      this.queryObj = options;
56
+      if(this.queryObj.bigScanSpecialMsg){
57
+        this.queryObj.bigScanSpecialMsg = JSON.parse( this.queryObj.bigScanSpecialMsg);
58
+      }
59
+      this.res["msg"] = options.msg;
60
+      // #ifdef APP-PLUS
61
+      webHandle("no", "app");
62
+      // #endif
63
+      // #ifdef H5
64
+      webHandle("no", "wx");
65
+      // #endif
66
+    },
67
+  };
68
+</script>
69
+<style lang="less">
70
+  .Scanning_Result {
71
+    padding: 0 20rpx;
72
+    display: flex;
73
+    flex-direction: column;
74
+    height: 100vh;
75
+
76
+    .Scanning_Result_inWrap{
77
+      flex: 1;
78
+      min-height: 0;
79
+    }
80
+
81
+    .bigScanSpecialMsg{
82
+      text-align: left;
83
+      padding: 0 87rpx;
84
+      .bigScanSpecialMsgList{
85
+        margin-top: 50rpx;
86
+        font-size: 32rpx;
87
+        .bigScanSpecialMsgListTitle{
88
+          color: red;
89
+        }
90
+        .bigScanSpecialMsgListDesc{
91
+          line-height: 48rpx;
92
+          margin-top: 15rpx;
93
+        }
94
+      }
95
+    }
96
+
97
+    .Scanning_top {
98
+      .Scanning_top_icon {
99
+        width: 140rpx;
100
+        height: 140rpx;
101
+        margin: 0 auto;
102
+        padding-top: 116rpx;
103
+        border-radius: 50%;
104
+        line-height: 140rpx;
105
+
106
+        .speNum{
107
+          text-align: center;
108
+          font-size: 140rpx;
109
+        }
110
+
111
+        .cubeic-ok {
112
+          font-size: 140rpx;
113
+          color: #35b34a;
114
+        }
115
+
116
+        .cubeic-close {
117
+          font-size: 140rpx;
118
+          color: #ff3b53;
119
+        }
120
+      }
121
+
122
+      .Scanning_top_text {
123
+        .text1 {
124
+          font-size: 48rpx;
125
+          text-align: center;
126
+        }
127
+
128
+        .success_tips {
129
+          color: red;
130
+          font-size: 30rpx;
131
+        }
132
+      }
133
+    }
134
+
135
+    .Scanning_cont {
136
+      font-size: 32rpx;
137
+      text-align: center;
138
+
139
+      view {
140
+        margin-bottom: 16rpx;
141
+      }
142
+
143
+      .Scanning_cont_center {
144
+        text-align: center;
145
+      }
146
+
147
+      .text {
148
+        margin-top: 24rpx;
149
+        color: #35b34a;
150
+      }
151
+
152
+      .text1 {
153
+        margin-top: 24rpx;
154
+        color: #ff3b53;
155
+      }
156
+    }
157
+
158
+    .foot_btn {
159
+      line-height: 88rpx;
160
+      height: 100rpx;
161
+      display: flex;
162
+      justify-content: center;
163
+
164
+      .btn1,
165
+      .btn2,
166
+      .btn3 {
167
+        height: 88rpx;
168
+        flex: 1;
169
+        margin: 0 1%;
170
+        background-image: linear-gradient(to right, #72c172, #3bb197);
171
+        color: #fff;
172
+        border-radius: 8rpx;
173
+        font-size: 32rpx;
174
+        margin-top: 16rpx;
175
+        text-align: center;
176
+      }
177
+    }
178
+  }
179
+</style>