mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 12:46:43 +08:00
[FIX]【商品商城】登录信息页样式调整;商城详情、商城列表页,图片地址修改
This commit is contained in:
@@ -101,8 +101,8 @@ export default {
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.login-msg-container {
|
||||
/deep/.van-cell {
|
||||
.login-msg-container div {
|
||||
div:last-child.van-cell {
|
||||
border-bottom: 1px solid #ebedf0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<van-notice-bar wrapable :scrollable="false" text="温馨提示:您即将离开本站,访问的链接来源于第三方网站,可能存在风险,请谨慎操作!" />
|
||||
</div>
|
||||
<div>
|
||||
<img :src="detail.imgUrl" alt="" width="100%" />
|
||||
<img :src="$assetsUrl + detail.imgUrl" alt="" width="100%" />
|
||||
</div>
|
||||
<div class="p5 pb0 mb40" v-if="isWeixin">
|
||||
<van-field v-model="loginInfo.aname" required label="登录账号" v-validate="'required'" name="登录账号" placeholder="请输入" clearable />
|
||||
@@ -63,8 +63,8 @@ export default {
|
||||
this.mallId = this.$route.query.mallId
|
||||
if (this.isWeixin) {
|
||||
window.localStorage.setItem('token', this.$route.query.token)
|
||||
this.loginInfo.aname = this.$route.query.aname
|
||||
this.loginInfo.password = this.$route.query.password
|
||||
this.loginInfo.aname = unescape(this.$route.query.aname)
|
||||
this.loginInfo.password = unescape(this.$route.query.password)
|
||||
this.shareId = this.$route.query.shareId
|
||||
this.name = this.$route.query.name
|
||||
this.saveShareTrack({ id: this.shareId, mallId: this.mallId })
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<div v-for="(item, index) in list" :key="index" @click="goDetail(item)">
|
||||
<van-grid :border="false" :gutter="10" :column-num="3">
|
||||
<van-grid-item>
|
||||
<van-image :src="item.iconUrl" />
|
||||
<van-image :src="$assetsUrl + item.iconUrl" />
|
||||
<van-grid-item :text="item.name" />
|
||||
</van-grid-item>
|
||||
</van-grid>
|
||||
|
||||
Reference in New Issue
Block a user