123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view >
- <uni-nav-bar id="nav-bar" status-bar="true" @clickLeft="onBack()"
- color="#000000" title="我的成就" fixed="true" :border="false">
- <view slot="left">
- <view class="flex align-center margin-left">
- <image class="p-left-arrow" src="../../../static/p-left-arrow.png"></image>
- </view>
- </view>
- </uni-nav-bar>
- <view style="height: 8px; background-color: #EEEEEE;"></view>
-
- <view class="cu-form-group">
- <view class="grid col-4 flex-sub" >
- <view class="flex flex-direction align-center padding" v-for="(item,index) in 10" :key="index">
- <image style="width: 110rpx;height:110rpx;" src="../../../static/achievement/11-01@2x.png"></image>
- <text>成就名称</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- onBack(){
- uni.navigateBack({
- delta:1
- })
- }
- }
- }
- </script>
- <style>
- page{
- background-color: #FFFFFF;
- }
- </style>
|