35 lines
585 B
Vue
35 lines
585 B
Vue
<template>
|
|
<view class="mine">
|
|
<view class="mine-top">
|
|
<view class="top">
|
|
<!-- <img src="" alt="" /> -->
|
|
<view></view>
|
|
<view></view>
|
|
</view>
|
|
<view class="bottom"></view>
|
|
</view>
|
|
<view class="mine-container">
|
|
<view class="order"></view>
|
|
<view class="tool"></view>
|
|
<view class="more-tool"></view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
title: "2"
|
|
};
|
|
},
|
|
onLoad() {},
|
|
methods: {}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.mine {
|
|
|
|
}
|
|
</style>
|