72 lines
1.2 KiB
Vue
72 lines
1.2 KiB
Vue
<template>
|
||
<view class="app">
|
||
<view class="myorder titles">
|
||
<view class="title">
|
||
姓 名:99999
|
||
</view>
|
||
</view>
|
||
<view class="myorder titles">
|
||
<view class="title">
|
||
性 别:99999
|
||
</view>
|
||
</view>
|
||
<view class="myorder titles">
|
||
<view class="title">
|
||
身份证号:372926199812158850
|
||
</view>
|
||
</view>
|
||
<view class="myorder titles">
|
||
<view class="title">
|
||
家庭住址:山东省济南市
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
|
||
}
|
||
},
|
||
methods: {
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.app {
|
||
background-color: #fff;
|
||
height: 100vh;
|
||
overflow: hidden;
|
||
|
||
.myorder {
|
||
position: relative;
|
||
|
||
.orderStatus {
|
||
text-align: center;
|
||
margin: 60rpx auto 30rpx;
|
||
width: 90%;
|
||
background: red;
|
||
// display: flex;
|
||
// justify-content: space-around;
|
||
padding-bottom: 30rpx;
|
||
}
|
||
|
||
.title {
|
||
font-size: 28rpx;
|
||
font-family: SourceHanSansSC-Medium, SourceHanSansSC;
|
||
font-weight: 500;
|
||
color: #333333;
|
||
margin-left: 30rpx;
|
||
height: 110rpx;
|
||
line-height: 110rpx;
|
||
border-bottom: 1rpx solid #E6E6E6;
|
||
width: 93%;
|
||
}
|
||
}
|
||
|
||
}
|
||
</style> |