|
|
@@ -1,6 +1,6 @@
|
|
|
<config>
|
|
|
{
|
|
|
- "navigationBarBackgroundColor": "#FF7F1F",
|
|
|
+ "navigationBarBackgroundColor": "#ff6c00",
|
|
|
"navigationBarTextStyle": "black",
|
|
|
"backgroundTextStyle":"light"
|
|
|
}
|
|
|
@@ -9,7 +9,7 @@
|
|
|
<div class="container">
|
|
|
<div class="box-top">
|
|
|
<p>卖家已发货</p>
|
|
|
- <h3>宝贝正在飞奔到你的怀中</h3>
|
|
|
+ <h3>宝贝正在飞奔到你的怀中!</h3>
|
|
|
</div>
|
|
|
<div class="box-adderss">
|
|
|
<div class="box-adderss-con">
|
|
|
@@ -18,7 +18,7 @@
|
|
|
<p>南京市场八部的 王智元 揽件</p>
|
|
|
<span class="box-adderss-span">2019-05-20 08:45:56</span>
|
|
|
</div>
|
|
|
- <div class="box-adderss-right">></div>
|
|
|
+ <div class="box-adderss-right" @click="logistics">></div>
|
|
|
</div>
|
|
|
<div class="box-border"></div>
|
|
|
<div class="box-adderss-con">
|
|
|
@@ -40,12 +40,11 @@
|
|
|
</div>
|
|
|
<div class="box-con">
|
|
|
<div class="box-con-Cards">
|
|
|
- <div class="box-con-left"><img src="../static/imgs/4.jpeg" alt="" /></div>
|
|
|
+ <img src="../static/imgs/4.jpeg" alt="" />
|
|
|
<div class="box-con-right">
|
|
|
<p class="box-con-tit">1105皇权破晓</p>
|
|
|
<div class="box-con-today">
|
|
|
- <p class="box-con-p">卡盒选号:</p>
|
|
|
- <p class="box-con-p2">卡包02—A</p>
|
|
|
+ <p>卡盒选号: 卡包02—A</p>
|
|
|
</div>
|
|
|
<div class="box-con-money">
|
|
|
<div class="box-con-num">
|
|
|
@@ -113,24 +112,41 @@
|
|
|
<div class="box-footer">
|
|
|
<div class="box-footer-con">
|
|
|
<p>成交时间</p>
|
|
|
- <p class="box-footer-p">2021-05-20 07:54:36</p>
|
|
|
+ <p class="box-footer-p">2021-05-20 07:54:46</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="box-footer-nav">
|
|
|
- <van-notice-bar
|
|
|
- color="#FF6C00"
|
|
|
- background="#ecf9ff"
|
|
|
- text="为了保障您的售后服务,收货时请拍摄完整的快递开封视频避免纠纷"
|
|
|
- />
|
|
|
+ <van-notice-bar color="#FF6C00" text="为了保障您的售后服务,收货时请拍摄完整的快递开封视频避免纠纷" />
|
|
|
<div class="box-btn">
|
|
|
- <div class="box-btn-left" :style="{ background: `url${require('../static/imgs/btn_02@3x.png')}` }">
|
|
|
- 查看物流
|
|
|
+ <div class="box-btn-left" :style="{ backgroundImage: `url(/native/imgs/btn_02@3x.png)` }">
|
|
|
+ 删除订单
|
|
|
+ </div>
|
|
|
+ <div class="box-btn-right" :style="{ backgroundImage: `url(/native/imgs/btn_01@3x.png)` }">
|
|
|
+ 申请售后
|
|
|
</div>
|
|
|
- <!--<div class="box-btn-right">查看物流</div> -->
|
|
|
- <img src="../static/imgs/btn_02@3x.png" alt="" />
|
|
|
- <img src="../static/imgs/btn_01@3x.png" alt="" />
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <van-dialog use-slot title="快递详情" :showConfirmButton="false" :show="show">
|
|
|
+ <div v-for="(item, index) in steps" :key="index">
|
|
|
+ <div class="dialog-con">
|
|
|
+ <div>
|
|
|
+ <span>物流快递:百世快递</span>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <span>物流单号:46313451613311020</span>
|
|
|
+ <span class="dialog-cv">复制</span>
|
|
|
+ </div>
|
|
|
+ <div class="dialog-border"></div>
|
|
|
+ </div>
|
|
|
+ <div class="steps-con">
|
|
|
+ <div class="steps-time">{{ item.time }}</div>
|
|
|
+ <van-steps :steps="steps" direction="vertical">
|
|
|
+ <div>{{ item.text }}</div>
|
|
|
+ <div>{{ item.desc }}</div>
|
|
|
+ </van-steps>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </van-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -138,30 +154,47 @@
|
|
|
export default {
|
|
|
name: '',
|
|
|
data() {
|
|
|
- return {};
|
|
|
+ return {
|
|
|
+ show: false,
|
|
|
+ steps: [
|
|
|
+ {
|
|
|
+ text: '江苏省南京市玄武区派件员 王智元',
|
|
|
+ desc: '15686868686正在为你派件',
|
|
|
+ activeColor: '#000',
|
|
|
+ time: '02-20 08:28'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ logistics() {
|
|
|
+ this.show = true;
|
|
|
+ console.log(this.steps);
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
.container {
|
|
|
+ /deep/ .van-step__circle-container {
|
|
|
+ height: 0;
|
|
|
+ }
|
|
|
padding-bottom: 120px;
|
|
|
.box-top {
|
|
|
- height: 190px;
|
|
|
+ height: 102px;
|
|
|
background: #ff6c00;
|
|
|
margin-bottom: 20px;
|
|
|
p {
|
|
|
height: 34px;
|
|
|
font-size: 24px;
|
|
|
- font-family: PingFangSC-Medium, PingFang SC;
|
|
|
- font-weight: 500;
|
|
|
+ font-weight: bold;
|
|
|
color: #ffffff;
|
|
|
line-height: 34px;
|
|
|
- padding: 91px 0 0 20px;
|
|
|
+ padding: 11px 0 0 20px;
|
|
|
}
|
|
|
h3 {
|
|
|
height: 24px;
|
|
|
font-size: 14px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #ffffff;
|
|
|
line-height: 24px;
|
|
|
@@ -187,23 +220,20 @@ export default {
|
|
|
span {
|
|
|
height: 24px;
|
|
|
font-size: 14px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
- font-weight: 400;
|
|
|
+ font-weight: bold;
|
|
|
color: #000000;
|
|
|
line-height: 24px;
|
|
|
}
|
|
|
p {
|
|
|
height: 24px;
|
|
|
font-size: 14px;
|
|
|
- font-family: PingFangSC-Medium, PingFang SC;
|
|
|
- font-weight: 500;
|
|
|
+ font-weight: bold;
|
|
|
color: #000000;
|
|
|
line-height: 24px;
|
|
|
}
|
|
|
.box-adderss-span {
|
|
|
height: 24px;
|
|
|
font-size: 13px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #c8c9cc;
|
|
|
line-height: 24px;
|
|
|
@@ -243,8 +273,7 @@ export default {
|
|
|
p {
|
|
|
height: 22px;
|
|
|
font-size: 14px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
- font-weight: 400;
|
|
|
+ font-weight: bold;
|
|
|
color: #000000;
|
|
|
line-height: 22px;
|
|
|
margin-left: 2px;
|
|
|
@@ -253,7 +282,6 @@ export default {
|
|
|
.box-tit-seller {
|
|
|
height: 22px;
|
|
|
font-size: 14px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #ff6c00;
|
|
|
line-height: 22px;
|
|
|
@@ -266,12 +294,10 @@ export default {
|
|
|
.box-con-Cards {
|
|
|
margin: 16px 0 20px 20px;
|
|
|
display: flex;
|
|
|
- .box-con-left {
|
|
|
- img {
|
|
|
- width: 90px;
|
|
|
- height: 130px;
|
|
|
- border-radius: 6px;
|
|
|
- }
|
|
|
+ img {
|
|
|
+ width: 90px;
|
|
|
+ height: 130px;
|
|
|
+ border-radius: 6px;
|
|
|
}
|
|
|
.box-con-right {
|
|
|
width: 237px;
|
|
|
@@ -279,12 +305,10 @@ export default {
|
|
|
.box-con-tit {
|
|
|
height: 24px;
|
|
|
font-size: 16px;
|
|
|
- font-family: PingFangSC-Medium, PingFang SC;
|
|
|
- font-weight: 500;
|
|
|
+ font-weight: bold;
|
|
|
color: #000000;
|
|
|
line-height: 24px;
|
|
|
margin: 5px 0 10px 0;
|
|
|
- // margin-bottom: 10px;
|
|
|
}
|
|
|
}
|
|
|
.box-con-today {
|
|
|
@@ -294,22 +318,12 @@ export default {
|
|
|
border-radius: 6px;
|
|
|
width: 142px;
|
|
|
align-items: center;
|
|
|
- .box-con-p {
|
|
|
- height: 24px;
|
|
|
- font-size: 14px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
- font-weight: 400;
|
|
|
- color: #303133;
|
|
|
- line-height: 24px;
|
|
|
- }
|
|
|
- .box-con-p2 {
|
|
|
+ p {
|
|
|
height: 24px;
|
|
|
font-size: 14px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #303133;
|
|
|
line-height: 24px;
|
|
|
- margin-left: 5px;
|
|
|
}
|
|
|
}
|
|
|
.box-con-money {
|
|
|
@@ -327,7 +341,6 @@ export default {
|
|
|
p {
|
|
|
height: 22px;
|
|
|
font-size: 14px;
|
|
|
- font-family: OSP-DIN, OSP;
|
|
|
font-weight: normal;
|
|
|
color: #c8c9cc;
|
|
|
line-height: 22px;
|
|
|
@@ -336,7 +349,6 @@ export default {
|
|
|
p {
|
|
|
height: 24px;
|
|
|
font-size: 14px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #c8c9cc;
|
|
|
line-height: 24px;
|
|
|
@@ -353,23 +365,20 @@ export default {
|
|
|
p {
|
|
|
height: 20px;
|
|
|
font-size: 14px;
|
|
|
- font-family: PingFangSC-Medium, PingFang SC;
|
|
|
- font-weight: 500;
|
|
|
+ font-weight: bold;
|
|
|
color: #000000;
|
|
|
line-height: 20px;
|
|
|
}
|
|
|
.box-buttom-p {
|
|
|
height: 22px;
|
|
|
font-size: 16px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
- font-weight: 400;
|
|
|
+ font-weight: bold;
|
|
|
color: #000000;
|
|
|
line-height: 22px;
|
|
|
}
|
|
|
.box-buttom-p2 {
|
|
|
height: 22px;
|
|
|
font-size: 13px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #c8c9cc;
|
|
|
}
|
|
|
@@ -389,7 +398,6 @@ export default {
|
|
|
border-radius: 2px;
|
|
|
border: 1px solid #c8c9cc;
|
|
|
font-size: 12px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #c8c9cc;
|
|
|
line-height: 20px;
|
|
|
@@ -399,7 +407,6 @@ export default {
|
|
|
p {
|
|
|
height: 24px;
|
|
|
font-size: 13px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #939599;
|
|
|
line-height: 24px;
|
|
|
@@ -407,7 +414,6 @@ export default {
|
|
|
.box-footer-p {
|
|
|
height: 22px;
|
|
|
font-size: 13px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #000000;
|
|
|
line-height: 22px;
|
|
|
@@ -428,7 +434,6 @@ export default {
|
|
|
p {
|
|
|
text-align: center;
|
|
|
font-size: 13px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #000000;
|
|
|
line-height: 44px;
|
|
|
@@ -438,20 +443,68 @@ export default {
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
margin: 6px 20px 0 20px;
|
|
|
- img {
|
|
|
+ .box-btn-left {
|
|
|
width: 163px;
|
|
|
height: 48px;
|
|
|
+ background-position: center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #ffffff;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 48px;
|
|
|
}
|
|
|
- .box-btn-left {
|
|
|
-
|
|
|
+ .box-btn-right {
|
|
|
width: 163px;
|
|
|
height: 48px;
|
|
|
+ background-position: center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #ffffff;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 48px;
|
|
|
}
|
|
|
- .box-btn-right {
|
|
|
- // background: url('../static/imgs/btn_01@3x.png') no-repeat;
|
|
|
- // width: 163px;
|
|
|
- // height: 48px;
|
|
|
- // }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .dialog-con {
|
|
|
+ margin: 12px 0 0 9px;
|
|
|
+ span {
|
|
|
+ height: 20px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #1a1a1a;
|
|
|
+ line-height: 20px;
|
|
|
+ }
|
|
|
+ .dialog-cv {
|
|
|
+ width: 40px;
|
|
|
+ height: 20px;
|
|
|
+ border-radius: 2px;
|
|
|
+ border: 1px solid #c8c9cc;
|
|
|
+ font-size: 12px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #c8c9cc;
|
|
|
+ line-height: 20px;
|
|
|
+ text-align: center;
|
|
|
+ margin-left: 8px;
|
|
|
+ }
|
|
|
+ .dialog-border {
|
|
|
+ width: 315px;
|
|
|
+ height: 1px;
|
|
|
+ background: #f2f4f5;
|
|
|
+ margin: 10px 0 15px 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .steps-con {
|
|
|
+ display: flex;
|
|
|
+ .steps-time {
|
|
|
+ width: 37px;
|
|
|
+ height: 34px;
|
|
|
+ font-size: 12px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #1a1a1a;
|
|
|
+ line-height: 17px;
|
|
|
+ margin: 10px 0 22px 11px;
|
|
|
}
|
|
|
}
|
|
|
}
|