Commit 1fd2430c by 赖慧粮

fix(img): 图片去除oss后缀

parent a0e2ca1a
......@@ -24,7 +24,7 @@ export default {
bannerImg() {
const { banner } = this.lotteryInfo
const img = banner || CONFIG.defBanner
return `${img}?x-oss-process=style/mobilebackground`
return img
},
bannerLink() {
return this.lotteryInfo.url || false
......
......@@ -21,7 +21,7 @@ export default {
bannerImg() {
const { banner } = this.info
const img = banner || CONFIG.defBanner
return `${img}?x-oss-process=style/mobilebackground`
return img
},
bannerLink() {
const { url } = this.info
......
......@@ -78,7 +78,7 @@ export default {
},
bannerImg(url) {
const img = url || CONFIG.defBanner
return `${img}?x-oss-process=style/mobilebackground`
return img
},
jumpToLottery(sessionId) {
this.$router.push({ path: '/index', query: { ...this.$route.query, sessionId } })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment