Commit 632138ce authored by leiqingsong's avatar leiqingsong

Merge branch 'dev_lqs' into 'master'

优化

See merge request !100
parents b9e4b5be 6e9613f8
......@@ -33,14 +33,15 @@ export default {
},
up: {
offset: 50,
isAuto: false,
isAuto: true,
contentnomore: '没有数据了~',
toTop: {
isEnable: false
},
callback() {
that.pageNo++;
that.$emit("upRefresh", that.pageNo);
that.miniRefresh.endUpLoading(false);
that.miniRefresh.endUpLoading(true);
}
}
});
......
......@@ -2,11 +2,11 @@
<div class="instructions">
<div class="content">
<p class="paragraph">
<span>
<span class="special">
日本西田森制药株式会社坐落在東京都千代田区東神田2丁目6番7号608,以'传递希望,传播爱'为企业理念
,让健康的"希望之光洒向世界每一寸森田"为愿景,开展企业经营活动。其核心业务包括【食品、医药品、保健品、化妆品等研发事业】
与【医疗健康消费者商品研发事业】研发并生产有助于人类健康的创新产品。
西田森将始终保持高度的伦理观,以健康产品为基点,创造新的价值为目标不断发展,从而成为“全球性的价值创造企业
西田森将始终保持高度的伦理观,以健康产品为基点,创造新的价值为目标不断发展,从而成为"全球性的价值创造企业"
</span>
</p>
</div>
......@@ -36,6 +36,10 @@ export default {
text-align: center;
margin-bottom: 10px;
}
.special {
font-size: 18px;
line-height: 42px;
}
.paragraph {
font-family: PingFang-SC-Regular;
font-size: 13px;
......
......@@ -258,6 +258,9 @@ export default {
};
});
this.pieOption.legend = legend;
if (!res.data.totalIncome) {
this.pieOption.graphic.children[1].style.text="暂无数据~"
}
}
});
}
......
......@@ -60,7 +60,7 @@ export default {
});
},
onRead(file) {
if (!localStorage.getItem("user").inviteCode) {
if (!JSON.parse(localStorage.getItem("user")).inviteCode) {
this.$toast.fail("当前用户没有邀请码");
return;
}
......
......@@ -3,7 +3,7 @@
<div class="bg">
<van-icon name="arrow-left" @click="handlerBack" />
<span class="title">本月进步最大奖励池</span>
<span class="award">{{ growthTotal }}</span>
<span class="award"><span v-if="growthTotal > 0"></span>{{ growthTotal }}</span>
</div>
<div class="rank">
<div class="header rank-flex">
......
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 to comment