Przeglądaj źródła

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

许成详 6 lat temu
rodzic
commit
2f5ff26562

+ 0
- 3
src/pages/system/dataStatistics/cardCouponUsedList/index.vue Wyświetl plik

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

+ 1
- 1
src/pages/system/dataStatistics/courseVerifyList/index.vue Wyświetl plik

105
           prop="Status"
105
           prop="Status"
106
           label="状态">
106
           label="状态">
107
           <template slot-scope="scope">
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
           </template>
109
           </template>
110
         </el-table-column>
110
         </el-table-column>
111
       </el-table>
111
       </el-table>

+ 2
- 3
src/pages/system/newOrder/newOrderList/index.vue Wyświetl plik

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