95 lines
3.7 KiB
Vue
95 lines
3.7 KiB
Vue
<template>
|
||
<view class="page">
|
||
<nav-bar title="Details" bgColor="#fff"></nav-bar>
|
||
<view style="width: 92%; margin: 20px auto;">
|
||
<view style="font-weight: 700;font-size: 20px;color: #3D3D3D;line-height: 28px;text-transform: none;">
|
||
Bitcoin breaks $100,000!
|
||
</view>
|
||
<view style="font-size: 12px; font-weight: 400; color: #999; margin-bottom: 20px;">
|
||
2025/05/08 22:23:45
|
||
</view>
|
||
<view class="table_content"><jyf-parser :html="html"></jyf-parser></view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import jyfParser from '@/components/common/jyf-parser/jyf-parser';
|
||
import {
|
||
mapState,
|
||
mapMutations
|
||
} from 'vuex';
|
||
export default {
|
||
components: {
|
||
jyfParser
|
||
},
|
||
data() {
|
||
return {
|
||
html: `<p>微信小程序直播自2月14日开放内侧以来,关注度一直居高不下,现在商淘软件多个电商系统都已接入小程序直播,今天,商家云以多商户系统为例,讲解<span style="color: #e03e2d;"><a style="color: #e03e2d;" href="https://www.kemean.com/">微信小程序直播</a></span>在设计时应该注意到哪些方面呢?</p>
|
||
<p>1. 能让人耳目一新的版面设计</p>
|
||
<p>在我们所见到的直播系统当中,虽说每个直播间看起来大同小异,但是仔细的观察还是略微不同,所以我们在直播功能设计的时候一定要充分的考虑到人的视觉观感,让人耳目一新。</p>
|
||
<p>2. 无缝对接商城会员体系</p>
|
||
<p>小程序直播的主播在直播带货的过程中,直播充分讲解产品的卖点,让消费者充分的了解到商城里面的产品,这时观众点击商品跳转到小程序商城购物,中间需要能无缝对接,不要让人有还需要登录之类的操作,以免降低转化。</p>
|
||
<p><img src="http://qn.kemean.cn/xinshidai/202005/09/ee1db57c428243d1a3dd5e9243391ce970ca306109754626bb833df482b4c03a.jpg" alt="" width="500" height="300"></p>
|
||
<p>3. 要有回放功能</p>
|
||
<p>用户有时间观看直播,那他可以准时到直播间进行观看,如果他没时间,需要考虑到回放的功能,这样用户才能有更好的体验。</p>
|
||
<p>以上就是商家云在小程序直播功能设计上的一点见解。商淘软件目前已经开发完成,能完美的与商城结合。始终以客户体验为第一需求,以雄厚的技术团队和专业的设计团队帮助企业快速搭建商城系统平台,提供全方位的技术指导和售后服务。</p>
|
||
<p> </p>`
|
||
};
|
||
},
|
||
computed: {
|
||
...mapState(['userInfo'])
|
||
},
|
||
//第一次加载
|
||
onLoad(e) {
|
||
|
||
},
|
||
//页面显示
|
||
onShow() {},
|
||
//方法
|
||
methods: {
|
||
handleClick(tab, event) {
|
||
|
||
}
|
||
},
|
||
//页面隐藏
|
||
onHide() {},
|
||
//页面卸载
|
||
onUnload() {},
|
||
//页面下来刷新
|
||
onPullDownRefresh() {},
|
||
//页面上拉触底
|
||
onReachBottom() {},
|
||
//用户点击分享
|
||
onShareAppMessage(e) {
|
||
return this.wxShare();
|
||
}
|
||
};
|
||
</script>
|
||
<style lang="scss" scoped>
|
||
@import '@/style/mixin.scss';
|
||
body{background-color: #fff;}
|
||
.page{ min-height: 100vh;background-color: #fff;}
|
||
.wallet1{
|
||
border-radius: 10px; padding: 20px 15px; width: 84%; margin: 10px auto;
|
||
background: url('/static/images/w1.png') #2B66F6; background-repeat: no-repeat; background-position: 92% 5px;
|
||
}
|
||
.cell_list .t{
|
||
color: #3d3d3d; font-size: 16px; font-weight: 400; line-height: 25px;
|
||
}
|
||
.cell_list .d{
|
||
color: #999; font-size: 12px; font-weight: 400; line-height: 20px; clear: both;
|
||
}
|
||
.cell_list .u{
|
||
color: #1D61E7; font-weight: 600;float: right; font-size: 16px;
|
||
}
|
||
.cell_list .u1{
|
||
color: #333; font-weight: 600;float: right;font-size: 16px;
|
||
}
|
||
.w{
|
||
background-color: #F8F8F8; border-radius: 10px; padding: 20px 10px;
|
||
}
|
||
.w .t{
|
||
text-align: center; margin-top: 10px; font-size: 14px;
|
||
}
|
||
</style> |