86 lines
1.3 KiB
Vue
86 lines
1.3 KiB
Vue
<template>
|
|
<view class="wait">
|
|
<view class="info">
|
|
<text class="title bold-500">待制作</text>
|
|
<text class="time u-m-l-16">预计等待09分钟56秒内完成</text>
|
|
</view>
|
|
<view class="u-text-center nr number">
|
|
号码
|
|
</view>
|
|
<view class="row-center u-m-t-54">
|
|
<view class="border">
|
|
0
|
|
</view>
|
|
<view class="border">
|
|
2
|
|
</view>
|
|
<view class="border">
|
|
4
|
|
</view>
|
|
</view>
|
|
<view class="bold-400 u-m-t-54 u-text-center">
|
|
前有4人在等待
|
|
</view>
|
|
|
|
<view class="btn u-m-t-52 text-fff u-text-center">
|
|
完成
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.wait {
|
|
.info {
|
|
margin: 242rpx 120rpx 58rpx;
|
|
.title {
|
|
font-size: 40rpx;
|
|
}
|
|
|
|
.time {
|
|
color: rgba(0, 0, 0, .6);
|
|
}
|
|
}
|
|
|
|
.numer {
|
|
color: #151515;
|
|
}
|
|
|
|
.border {
|
|
text-align: center;
|
|
width: 67rpx;
|
|
height: 68rpx;
|
|
line-height: 68rpx;
|
|
border: 2rpx solid #E7E7E7;
|
|
color: #FE6004;
|
|
font-size: 64rpx;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.border:first-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
.border:nth-child(2) {
|
|
border-right: 0;
|
|
}
|
|
|
|
.btn {
|
|
bottom: 106rpx;
|
|
margin: 0 64rpx;
|
|
height: 76rpx;
|
|
line-height: 76rpx;
|
|
background: #FE6004;
|
|
border-radius: 100rpx 100rpx 100rpx 100rpx;
|
|
}
|
|
}
|
|
</style> |