|
@@ -65,7 +65,7 @@ page {
|
|
|
:key="item.title"
|
|
|
@click="changePage(item.url)"
|
|
|
>
|
|
|
- <div class="each-row">
|
|
|
+ <div class="each-row">
|
|
|
<div class="each-box">
|
|
|
<div class="title">{{item.title}}</div>
|
|
|
<div class="text">{{item.text}}</div>
|
|
@@ -76,9 +76,13 @@ page {
|
|
|
/>
|
|
|
</div>
|
|
|
|
|
|
- <div class="divider" v-if="idx != arr.length-1"> </div>
|
|
|
+ <div
|
|
|
+ class="divider"
|
|
|
+ v-if="idx != arr.length-1"
|
|
|
+ > </div>
|
|
|
|
|
|
</div>
|
|
|
+ <footer :justText="true"></footer>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -101,10 +105,10 @@ wepy.page({
|
|
|
computed: {},
|
|
|
methods: {
|
|
|
iconClickedEmitId() {
|
|
|
- wx.navigateTo({url: '/packagesEnv/pages/personalCenter/index'})
|
|
|
+ wx.navigateTo({ url: '/packagesEnv/pages/personalCenter/index' })
|
|
|
},
|
|
|
changePage(url) {
|
|
|
- wx.navigateTo({url: url})
|
|
|
+ wx.navigateTo({ url: url })
|
|
|
}
|
|
|
},
|
|
|
// 生命周期 - 创建完成(可以访问当前this实例)
|
|
@@ -123,8 +127,8 @@ wepy.page({
|
|
|
backgroundColor: '#EBF5FA',
|
|
|
usingComponents: {
|
|
|
'page-top-bar': '~@/components/common/page-top-bar',
|
|
|
- 'footer':'./footer'
|
|
|
- }
|
|
|
+ 'footer':'~@/components/coustome/footer'
|
|
|
+ },
|
|
|
}
|
|
|
|
|
|
</config>
|