27 lines
337 B
Vue
27 lines
337 B
Vue
|
<template>
|
||
|
<view>
|
||
|
<status-container titlet="地址新增" returnc="#FFFFFF">
|
||
|
<view slot="content" style="margin-top: -20rpx;">
|
||
|
<view class="bacf"></view>
|
||
|
</view>
|
||
|
</status-container>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|