Browse Source

Merge branch 'feature-v2.0' into develop

feature/feature-compatible
huangww 7 years ago
parent
commit
70af47c0f1
1 changed files with 6 additions and 2 deletions
  1. 8
      src/view/poster.vue

8
src/view/poster.vue

@ -9,7 +9,7 @@
<i class="text" @click="show = true" v-if=" defaultCity != '' ">{{defaultCity}}</i>
</div>
<div class="page-content">
<img class="poster-img" v-if="imgSrc != ''" :src="imgSrc">
<img class="poster-img" v-if="imgSrc != ''" :src="imgSrc + '?' + now">
<!--<img src="" v-if="imgSrc != ''" :src="imgSrc">
<img src="../assets/images/hill.png">-->
<button class="create-poster" @click="createImg()">重新生成海报</button>
@ -248,7 +248,11 @@
var coupon = this.getParam("no")
this.wxShare({"coupon":coupon,"source":1,"url":encodeURIComponent(location.href)})
}
}
},
//
now(){
return Date.now();
}
},
mounted() {
this.getNo()

Loading…
Cancel
Save