parent
c7e5ab645a
commit
ea34afc967
@ -0,0 +1,66 @@
|
||||
// pages/dingdanInfo/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"usingComponents": {
|
||||
"van-field": "@vant/weapp/field/index"
|
||||
},
|
||||
"navigationBarTitleText": "订单详情"
|
||||
}
|
@ -0,0 +1,127 @@
|
||||
/* pages/dingdanInfo/index.wxss */
|
||||
page{
|
||||
background: #F6F6F6;
|
||||
box-sizing: border-box;
|
||||
padding: 30rpx 20rpx;
|
||||
}
|
||||
.top{
|
||||
width: 100%;
|
||||
min-height: 300rpx;
|
||||
background: #fff;
|
||||
border-radius: 8rpx;
|
||||
box-sizing: border-box;
|
||||
padding: 20rpx;
|
||||
}
|
||||
.middle,.bottom{
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
.info-title{
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
font-weight: 400;
|
||||
font-family: "Alibaba-PuHuiTi-Medium.otf";
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
.info-data{
|
||||
width: 100%;
|
||||
min-height: 150rpx;
|
||||
background: #fff;
|
||||
border-radius: 8rpx;
|
||||
box-sizing: border-box;
|
||||
padding: 6rpx;
|
||||
}
|
||||
.dingdan{
|
||||
min-height: 250rpx;
|
||||
}
|
||||
.dingdan-result{
|
||||
box-sizing: border-box;
|
||||
border-bottom: 1px solid rgb(238, 236, 236);
|
||||
|
||||
}
|
||||
.result-title{
|
||||
font-size: 40rpx;
|
||||
color: #446C4C;
|
||||
font-family: "Alibaba-PuHuiTi-Medium.otf";
|
||||
font-weight: 500;
|
||||
}
|
||||
.result-subtitle{
|
||||
margin: 10rpx 0;
|
||||
font-size: 22rpx;
|
||||
color: #999;
|
||||
font-size: 400;
|
||||
}
|
||||
.dingdan-item-data{
|
||||
display: flex;
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
.item-data-iamge{
|
||||
width: 130rpx;
|
||||
height: 90rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
.item-data-iamge image{
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
.item-data-text{
|
||||
flex: 1;
|
||||
box-sizing: border-box;
|
||||
padding-left: 20rpx;
|
||||
}
|
||||
.data-text-title{
|
||||
font-size: 26rpx;
|
||||
font-family: "Alibaba-PuHuiTi-Regular.otf";
|
||||
color: #333;
|
||||
font-weight: 500;
|
||||
}
|
||||
.data-text-subtitle{
|
||||
font-size: 22rpx;
|
||||
color: #999;
|
||||
font-weight: 400;
|
||||
}
|
||||
.price-zj{
|
||||
color: #999;
|
||||
}
|
||||
.price-zj text:nth-child(1){
|
||||
font-size: 20rpx;
|
||||
}
|
||||
.price-zj text:nth-child(2){
|
||||
font-size: 26rpx;
|
||||
}
|
||||
.price-beishu{
|
||||
text-align: right;
|
||||
font-size: 20rpx;
|
||||
color: #999;
|
||||
}
|
||||
.jiesuan{
|
||||
text-align: right;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
.jiesuan text:nth-child(1){
|
||||
color: #333;
|
||||
font-family: "Alibaba-PuHuiTi-Regular.otf";
|
||||
font-size: 24rpx;
|
||||
|
||||
}
|
||||
.jiesuan text:nth-child(2){
|
||||
font-size: 20rpx;
|
||||
color: #446C4C;
|
||||
}
|
||||
.jiesuan text:nth-child(3){
|
||||
font-size: 32rpx;
|
||||
color: #446C4C;
|
||||
}
|
||||
.van-cell {
|
||||
padding: 10rpx 30rpx !important;
|
||||
}
|
||||
.van-field__label{
|
||||
font-size: 26rpx !important;
|
||||
color: #999 !important;
|
||||
font-family: "Alibaba-PuHuiTi-Regular.otf" !important;
|
||||
}
|
||||
.input-boxed{
|
||||
color:#333;
|
||||
font-size: 24rpx;
|
||||
border: 1px solid;
|
||||
}
|
Loading…
Reference in new issue