Bläddra i källkod

Merge branch 'dev' of http://git.ycjcjy.com/SpaceOfCheng/admin into dev

许成详 6 år sedan
förälder
incheckning
2f5ff26562

+ 0
- 3
src/pages/system/dataStatistics/cardCouponUsedList/index.vue Visa fil

@@ -202,9 +202,6 @@ export default {
202 202
       }, {
203 203
         value: '已使用',
204 204
         id: 'used'
205
-      }, {
206
-        value: '逾期核销',
207
-        id: 'late'
208 205
       }, {
209 206
         value: '已失效',
210 207
         id: 'expire'

+ 1
- 1
src/pages/system/dataStatistics/courseVerifyList/index.vue Visa fil

@@ -105,7 +105,7 @@
105 105
           prop="Status"
106 106
           label="状态">
107 107
           <template slot-scope="scope">
108
-            {{scope.row.Status === 'useable' ? '未使用' : scope.row.Status === 'used' ? '已使用' : scope.row.Status === 'late' ? '逾期核销' : ''}}
108
+            {{scope.row.VerifyStatus === 'useable' ? '未使用' : scope.row.VerifyStatus === 'used' ? '已使用' : scope.row.VerifyStatus === 'late' ? '逾期核销' : ''}}
109 109
           </template>
110 110
         </el-table-column>
111 111
       </el-table>

+ 2
- 3
src/pages/system/newOrder/newOrderList/index.vue Visa fil

@@ -257,11 +257,10 @@ export default {
257 257
     },
258 258
     initWebSocket () {
259 259
       // console.log(this.user)
260
-      const wsPath = this.$api.system.notify.newGoodsOrders.url
261
-      const wsRealPath = replaceURLParams(wsPath, { grps: caseid, id })
262
-
263 260
       let caseid = this.caseid
264 261
       let id = this.userInfo.UserId
262
+      const wsPath = this.$api.system.notify.newGoodsOrders.url
263
+      const wsRealPath = replaceURLParams(wsPath, { grps: caseid, id })
265 264
       const wsuri = `${window.location.origin.replace('http', 'ws')}${wsRealPath}?token=${localStorage.getItem('JWT')}`
266 265
       // const wsuri = `ws://192.168.0.11/api/guest/MQ/websocket/${caseid}/${id}`
267 266
       try {