Browse Source

静态页面

1002884655 4 years ago
parent
commit
a9c76ca041
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/pages/index/DingDanXiangQing/index.vue

+ 2
- 2
src/pages/index/DingDanXiangQing/index.vue View File

48
             </div>
48
             </div>
49
             <input type="file" ref="CpFile" @change="CpFileChange" style="display: none">
49
             <input type="file" ref="CpFile" @change="CpFileChange" style="display: none">
50
           </div>
50
           </div>
51
-          <img v-else :src="DetailInfo.bettingDetail.betting.lotteryPicture" width="100%" alt="">
51
+          <img v-else v-for="(item, index) in DetailInfo.bettingDetail.betting.lotteryPicture.split(',')" :src="item" :key="index" width="100%" style="margin-top: 0.15rem" alt="">
52
         </div>
52
         </div>
53
 
53
 
54
         <div class="Bottom">
54
         <div class="Bottom">
127
       }).then(() => {
127
       }).then(() => {
128
         if (this.DataLock) return
128
         if (this.DataLock) return
129
         this.DataLock = true
129
         this.DataLock = true
130
-        this.ProcessOrder({ data: { lotteryPicture: this.CpImgArr.length ? this.CpImgArr[0] : null, orderId: this.DetailInfo.orderId } }).then((res) => {
130
+        this.ProcessOrder({ data: { lotteryPicture: this.CpImgArr.length ? this.CpImgArr.join(',') : null, orderId: this.DetailInfo.orderId } }).then((res) => {
131
           this.Toast('出票成功')
131
           this.Toast('出票成功')
132
           this.DetailInfo.status = 1
132
           this.DetailInfo.status = 1
133
           this.DetailInfo.bettingDetail.betting.isDrawn = true
133
           this.DetailInfo.bettingDetail.betting.isDrawn = true