This commit is contained in:
2020-06-02 15:35:19 +08:00
parent 04855a770c
commit 5b36365a76
6 changed files with 207 additions and 23 deletions

View File

@@ -2,8 +2,8 @@
<view class="mine">
<view class="mine-top">
<view class="top">
<!-- <img src="" alt="" /> -->
<view class="avatar"></view>
<img src="../static/mine/23.png" class="avatar" />
<!-- <view class="avatar"></view> -->
<view class="user-info">
<view class="info-left">
<view class="user-nickname">小同学</view>
@@ -89,7 +89,7 @@
<img src="../static/mine/19.png" />
<view>美甲</view>
</view>
<view>
<view @click="toOtherPage('MineHistory')">
<img src="../static/mine/18.png" />
<view>足迹</view>
</view>
@@ -106,7 +106,7 @@
<img src="../static/mine/9.png" />
<view>售后政策</view>
</view>
<view>
<view @click="toOtherPage('MineHelp')">
<img src="../static/mine/16.png" />
<view>使用帮助</view>
</view>
@@ -128,7 +128,13 @@ export default {
};
},
onLoad() {},
methods: {}
methods: {
toOtherPage(url) {
uni.navigateTo({
url: '/pageE/mine/' + url
});
}
}
};
</script>
<style lang="scss" scoped>