101 lines
2.2 KiB
Vue
101 lines
2.2 KiB
Vue
<template>
|
|
<view class="container">
|
|
<tui-list-cell :lineLeft="false">
|
|
<view class="tui-item-box">
|
|
<view class="tui-msg-box">
|
|
<view class="tui-list-cell_name">转运公司</view>
|
|
</view>
|
|
<view class="tui-right">钦州市时代环保科技有限公司</view>
|
|
</view>
|
|
</tui-list-cell>
|
|
<tui-list-cell :lineLeft="false">
|
|
<view class="tui-item-box">
|
|
<view class="tui-msg-box">
|
|
<view class="tui-list-cell_name">地址</view>
|
|
</view>
|
|
<view class="tui-right">钦州市钦南区沙埠海棠村石门坎</view>
|
|
</view>
|
|
</tui-list-cell>
|
|
<view class="bar"></view>
|
|
<!--内容部分-->
|
|
<tui-list-cell :lineLeft="false">
|
|
<view class="tui-item-box">
|
|
<view class="tui-msg-box">
|
|
<view class="tui-list-cell_name">转运车牌</view>
|
|
</view>
|
|
<view class="tui-right">桂NP9259</view>
|
|
</view>
|
|
</tui-list-cell>
|
|
<tui-list-cell :lineLeft="false">
|
|
<view class="tui-item-box">
|
|
<view class="tui-msg-box">
|
|
<view class="tui-list-cell_name">司机名称</view>
|
|
</view>
|
|
<view class="tui-right">李杰</view>
|
|
</view>
|
|
</tui-list-cell>
|
|
<tui-list-cell>
|
|
<view class="tui-item-box">
|
|
<text class="tui-list-cell_name">服务机构</text>
|
|
<view class="tui-right">11</view>
|
|
</view>
|
|
</tui-list-cell>
|
|
</tui-list-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import myapp from '@/common/js/myapp.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
apiHost: myapp.apiHost,
|
|
user:{}
|
|
}
|
|
},
|
|
onShow: function() {
|
|
let user = myapp.checkLogin()
|
|
this.user = user
|
|
uni.setStorageSync('lastPagePath', '/packagePage/pages/basic_info/basic_info')
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.container {
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
.bar{
|
|
height:10px;
|
|
background-color:whitesmoke;
|
|
}
|
|
.tui-item-box {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
/* border:1px solid red; */
|
|
}
|
|
|
|
.tui-list-cell_name {
|
|
font-size: 28rpx;
|
|
padding-left: 20rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color:#868686;
|
|
/* border:1px solid red; */
|
|
}
|
|
|
|
.tui-ml-auto {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.tui-right {
|
|
margin-left: auto;
|
|
margin-right: 34rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
</style>
|