This commit is contained in:
parent
ff81695eb6
commit
41dc6a562f
|
@ -724,8 +724,9 @@
|
||||||
orderList: [],
|
orderList: [],
|
||||||
loading: true,
|
loading: true,
|
||||||
customStyle: {
|
customStyle: {
|
||||||
backgroundColor: '#e5e5e5',
|
backgroundColor: '#ffffff',
|
||||||
color: '#FFFFFF',
|
border:' 1px solid #999',
|
||||||
|
color: '#333',
|
||||||
|
|
||||||
// #ifdef MP-WEIXIN
|
// #ifdef MP-WEIXIN
|
||||||
width: "310upx",
|
width: "310upx",
|
||||||
|
@ -2493,7 +2494,6 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
/deep/.btns{
|
/deep/.btns{
|
||||||
border: 1rpx solid #e5e5e5 ;
|
|
||||||
color: #333333 !important;
|
color: #333333 !important;
|
||||||
margin-left: 10rpx !important;
|
margin-left: 10rpx !important;
|
||||||
}
|
}
|
||||||
|
@ -2891,8 +2891,8 @@
|
||||||
margin-top: 24rpx;
|
margin-top: 24rpx;
|
||||||
}
|
}
|
||||||
.add-lin{
|
.add-lin{
|
||||||
height: 80rpx;
|
height: 74rpx;
|
||||||
line-height: 80rpx;
|
line-height: 74rpx;
|
||||||
}
|
}
|
||||||
.add-con-title{
|
.add-con-title{
|
||||||
color: #999;
|
color: #999;
|
||||||
|
@ -2901,7 +2901,7 @@
|
||||||
.add-con-cont{
|
.add-con-cont{
|
||||||
color: #666;
|
color: #666;
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
line-height: 80rpx;
|
line-height: 74rpx;
|
||||||
text-align:right;
|
text-align:right;
|
||||||
}
|
}
|
||||||
.level_button{
|
.level_button{
|
||||||
|
|
|
@ -43,29 +43,29 @@
|
||||||
<view class="padding margin-top-sm header-view">
|
<view class="padding margin-top-sm header-view">
|
||||||
<view v-if="!detailaddress">请选择地址</view>
|
<view v-if="!detailaddress">请选择地址</view>
|
||||||
<view class="margin-right-xs">
|
<view class="margin-right-xs">
|
||||||
<view class="flex justify-between margin-top-lg">
|
<view class="jusitify-line">
|
||||||
<view class="header-view-text">联系人</view>
|
<view class="line-word">联系人</view>
|
||||||
<view class="header-view-data">
|
<view class="line-word-r">
|
||||||
<text>{{name}}</text>
|
<text>{{name}}</text>
|
||||||
<text class="xuanzhe" @click="getAddressList()">修改</text>
|
<text class="xuanzhe" @click="getAddressList()">修改</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex justify-between margin-top-lg">
|
<view class="jusitify-line">
|
||||||
<view class="header-view-text">手机号码</view>
|
<view class="line-word">手机号码</view>
|
||||||
<view class="header-view-data">
|
<view class="line-word-r">
|
||||||
{{mobile}}
|
{{mobile}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex justify-between margin-top-lg">
|
<view class="jusitify-line">
|
||||||
<view class="header-view-text">详细地址</view>
|
<view class="line-word">详细地址</view>
|
||||||
<view class="flex adders-view">
|
<view class="line-word-r" style="width: 73%; text-align: right;">
|
||||||
<span>
|
<span>
|
||||||
{{province}}/{{city}}/{{district}}/{{detailaddress}}
|
{{province}}/{{city}}/{{district}}/{{detailaddress}}
|
||||||
</span>
|
</span>
|
||||||
<span class="view-more"></span>
|
<span class="view-more"></span>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="flex justify-between margin-top-lg" v-if="order.remark">
|
<!-- <view class="jusitify-line" v-if="order.remark">
|
||||||
<view style="width: 170rpx;">备注内容</view>
|
<view style="width: 170rpx;">备注内容</view>
|
||||||
<view class="flex">
|
<view class="flex">
|
||||||
<view class="">
|
<view class="">
|
||||||
|
@ -1335,6 +1335,24 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
.jusitify-line{
|
||||||
|
height: 78rpx;
|
||||||
|
padding: 20rpx 0;
|
||||||
|
font-size: 30rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.jusitify-line-end{
|
||||||
|
height:1px;
|
||||||
|
border-bottom: 1px #e5e5e5 solid;
|
||||||
|
margin: 30rpx 0;
|
||||||
|
}
|
||||||
|
.line-word{
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
.line-word-r{
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
.tetx-sm{
|
.tetx-sm{
|
||||||
color: #888888;
|
color: #888888;
|
||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
|
@ -2007,13 +2025,13 @@
|
||||||
}
|
}
|
||||||
.que-btn{
|
.que-btn{
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 90%;
|
width: 92%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background: linear-gradient(90deg, #019C88, #28BA92, #35C495);
|
background: linear-gradient(90deg, #019C88, #28BA92, #35C495);
|
||||||
height: 38px;
|
height: 40px;
|
||||||
border-radius: 28px;
|
border-radius: 40px;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
line-height: 38px;
|
line-height: 39px;
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
font-size: 34rpx;
|
font-size: 34rpx;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue