许成详 6 年前
父节点
当前提交
2596dc350c

+ 1
- 1
dist/index.html 查看文件

1
-<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel=stylesheet href=//at.alicdn.com/t/font_775069_dwqa9wy3lkh.css><title>城的空间后台管理系统</title><link href=./static/css/app.e6375a30929d491dc6b534d0abbdd641.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.992319e39e0ff64940a3.js></script><script type=text/javascript src=./static/js/app.e125f0b3cf29da3fe6a6.js></script></body></html>
1
+<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel=stylesheet href=//at.alicdn.com/t/font_775069_dwqa9wy3lkh.css><title>城的空间后台管理系统</title><link href=./static/css/app.ca5c568553d422363d3de51590c1ce78.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.992319e39e0ff64940a3.js></script><script type=text/javascript src=./static/js/app.09d071b18239c91b0a7d.js></script></body></html>

+ 8
- 0
src/pages/system/cardAndCouponManager/couponManager/edit.vue 查看文件

808
           ...this.postData,
808
           ...this.postData,
809
           caseid: this.couponInfo.CaseId
809
           caseid: this.couponInfo.CaseId
810
         }).then((res) => {
810
         }).then((res) => {
811
+          this.goodsList = []
812
+          for (var n = 0; n < res.list.length; n++) {
813
+            this.goodsList.push({ ...res.list[n], TypeId: this.returnGoodsType(res.list[n].TypeId) })
814
+          }
811
           this.total = res.pagenum
815
           this.total = res.pagenum
812
         })
816
         })
813
       } else if (this.couponInfo.CouponType === 'course') {
817
       } else if (this.couponInfo.CouponType === 'course') {
815
           ...this.postData,
819
           ...this.postData,
816
           caseid: this.couponInfo.CaseId
820
           caseid: this.couponInfo.CaseId
817
         }).then((res) => {
821
         }).then((res) => {
822
+          this.courseList = []
823
+          for (var n = 0; n < res.list.length; n++) {
824
+            this.courseList.push({ ...res.list[n], BeginDate: this.toolClass.dateFormat(res.list[n].BeginDate), EndDate: this.toolClass.dateFormat(res.list[n].EndDate) })
825
+          }
818
           this.total = res.pagenum
826
           this.total = res.pagenum
819
         })
827
         })
820
       }
828
       }

+ 14
- 1
src/pages/system/verificationManager/qrcodeVerification/verificationList/index.vue 查看文件

47
                 label="操作">
47
                 label="操作">
48
                 <template slot-scope="scope">
48
                 <template slot-scope="scope">
49
                   <el-button
49
                   <el-button
50
+                    size="mini"
51
+                    type="success"
52
+                    v-if="scope.row.VerifyStatus==='useable'"
53
+                    @click="check(scope.row)">核销</el-button>
54
+                  <el-button
55
+                    size="mini"
56
+                    type="info"
57
+                    v-if="scope.row.VerifyStatus==='late'">逾期核销</el-button>
58
+                  <el-button
59
+                    size="mini"
60
+                    type="info"
61
+                    v-if="scope.row.VerifyStatus==='used'">已完成</el-button>
62
+                  <!-- <el-button
50
                     size="mini"
63
                     size="mini"
51
                     type="success"
64
                     type="success"
52
                     v-if="scope.row.VerifyStatus!=='used'"
65
                     v-if="scope.row.VerifyStatus!=='used'"
53
                     @click="check(scope.row)">核销</el-button>
66
                     @click="check(scope.row)">核销</el-button>
54
-                  <span v-else>已完成</span>
67
+                  <span v-else>已完成</span> -->
55
                 </template>
68
                 </template>
56
               </el-table-column>
69
               </el-table-column>
57
             </el-table>
70
             </el-table>