Merge branch 'master' of http://git.luyuan.tk/pplokijuhyg/deguodaigou into pplok
This commit is contained in:
commit
7de4636081
@ -43,7 +43,7 @@
|
|||||||
- chooseaddr/address 地址列表(单个)
|
- chooseaddr/address 地址列表(单个)
|
||||||
- chooseaddr/addradd 添加按钮
|
- chooseaddr/addradd 添加按钮
|
||||||
|
|
||||||
- pages/addaddress/addaddress 选择地址 <br>
|
- pages/addaddress/addaddress 添加地址 <br>
|
||||||
- addaddress/shuru 添加地址的输入的每一项
|
- addaddress/shuru 添加地址的输入的每一项
|
||||||
- pages/particulars/particulars 待付款 <br>
|
- pages/particulars/particulars 待付款 <br>
|
||||||
- particulars/orderchooseaddr 地址
|
- particulars/orderchooseaddr 地址
|
||||||
@ -65,4 +65,8 @@
|
|||||||
- pages/sales1/sales1 退货1 <br>
|
- pages/sales1/sales1 退货1 <br>
|
||||||
- sales/merchandises 商品信息
|
- sales/merchandises 商品信息
|
||||||
- pages/sales2/sales2 退货3 <br>
|
- pages/sales2/sales2 退货3 <br>
|
||||||
- sales/merchandises 商品信息
|
- sales/merchandises 商品信息
|
||||||
|
|
||||||
|
- pages/member/member 会员商品 <br>
|
||||||
|
- member/membertop 会员商品顶部的字
|
||||||
|
- member/membershop 单个商品
|
||||||
|
5
app.json
5
app.json
@ -1,5 +1,9 @@
|
|||||||
{
|
{
|
||||||
"pages": [
|
"pages": [
|
||||||
|
"pages/share/share",
|
||||||
|
"pages/yongjin/yongjin",
|
||||||
|
"pages/yue/yue",
|
||||||
|
"pages/member/member",
|
||||||
"pages/sales2/sales2",
|
"pages/sales2/sales2",
|
||||||
"pages/sales1/sales1",
|
"pages/sales1/sales1",
|
||||||
"pages/accomplish/accomplish",
|
"pages/accomplish/accomplish",
|
||||||
@ -27,5 +31,4 @@
|
|||||||
},
|
},
|
||||||
"style": "v2",
|
"style": "v2",
|
||||||
"sitemapLocation": "sitemap.json"
|
"sitemapLocation": "sitemap.json"
|
||||||
|
|
||||||
}
|
}
|
23
components/member/membershop/membershop.js
Normal file
23
components/member/membershop/membershop.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// components/member/membershop/membershop.js
|
||||||
|
Component({
|
||||||
|
/**
|
||||||
|
* 组件的属性列表
|
||||||
|
*/
|
||||||
|
properties: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的方法列表
|
||||||
|
*/
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
4
components/member/membershop/membershop.json
Normal file
4
components/member/membershop/membershop.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
29
components/member/membershop/membershop.scss
Normal file
29
components/member/membershop/membershop.scss
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
.membershop {
|
||||||
|
width: 373rpx;
|
||||||
|
height: 557rpx;
|
||||||
|
background-color: #FBFBFB;
|
||||||
|
.pic {
|
||||||
|
width: 113rpx;
|
||||||
|
height: 256rpx;
|
||||||
|
background-color: white;
|
||||||
|
margin: 0 auto;
|
||||||
|
position: relative;
|
||||||
|
top: 64rpx;
|
||||||
|
}
|
||||||
|
.shopname {
|
||||||
|
width: 273rpx;
|
||||||
|
color: #333333;
|
||||||
|
font-size: 30rpx;
|
||||||
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
top: 111rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.pri {
|
||||||
|
position: relative;
|
||||||
|
top: 127rpx;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #09BB07;
|
||||||
|
}
|
||||||
|
}
|
6
components/member/membershop/membershop.wxml
Normal file
6
components/member/membershop/membershop.wxml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<view class="membershop">
|
||||||
|
<view class="pic"></view>
|
||||||
|
<view class="shopname">产品名产品名产品名
|
||||||
|
产品名产品名</view>
|
||||||
|
<view class="pri">$123</view>
|
||||||
|
</view>
|
32
components/member/membershop/membershop.wxss
Normal file
32
components/member/membershop/membershop.wxss
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
.membershop {
|
||||||
|
width: 373rpx;
|
||||||
|
height: 557rpx;
|
||||||
|
background-color: #FBFBFB;
|
||||||
|
}
|
||||||
|
|
||||||
|
.membershop .pic {
|
||||||
|
width: 113rpx;
|
||||||
|
height: 256rpx;
|
||||||
|
background-color: white;
|
||||||
|
margin: 0 auto;
|
||||||
|
position: relative;
|
||||||
|
top: 64rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.membershop .shopname {
|
||||||
|
width: 273rpx;
|
||||||
|
color: #333333;
|
||||||
|
font-size: 30rpx;
|
||||||
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
top: 111rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.membershop .pri {
|
||||||
|
position: relative;
|
||||||
|
top: 127rpx;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #09BB07;
|
||||||
|
}
|
23
components/member/membertop/membertop.js
Normal file
23
components/member/membertop/membertop.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// components/member/membertop/membertop.js
|
||||||
|
Component({
|
||||||
|
/**
|
||||||
|
* 组件的属性列表
|
||||||
|
*/
|
||||||
|
properties: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的方法列表
|
||||||
|
*/
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
4
components/member/membertop/membertop.json
Normal file
4
components/member/membertop/membertop.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
9
components/member/membertop/membertop.scss
Normal file
9
components/member/membertop/membertop.scss
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
.membertop {
|
||||||
|
width: 100%;
|
||||||
|
height: 86rpx;
|
||||||
|
border-top: 2rpx solid #E8E8E8;
|
||||||
|
color: #999999;
|
||||||
|
font-size: 24rpx;
|
||||||
|
line-height: 86rpx;
|
||||||
|
text-indent: 30rpx;
|
||||||
|
}
|
3
components/member/membertop/membertop.wxml
Normal file
3
components/member/membertop/membertop.wxml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<view class="membertop">
|
||||||
|
购买下方商品成为会员
|
||||||
|
</view>
|
9
components/member/membertop/membertop.wxss
Normal file
9
components/member/membertop/membertop.wxss
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
.membertop {
|
||||||
|
width: 100%;
|
||||||
|
height: 86rpx;
|
||||||
|
border-top: 2rpx solid #E8E8E8;
|
||||||
|
color: #999999;
|
||||||
|
font-size: 24rpx;
|
||||||
|
line-height: 86rpx;
|
||||||
|
text-indent: 30rpx;
|
||||||
|
}
|
23
components/yue/share/share.js
Normal file
23
components/yue/share/share.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// components/yue/yongjintop/yongjintop.js
|
||||||
|
Component({
|
||||||
|
/**
|
||||||
|
* 组件的属性列表
|
||||||
|
*/
|
||||||
|
properties: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的方法列表
|
||||||
|
*/
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
4
components/yue/share/share.json
Normal file
4
components/yue/share/share.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
70
components/yue/share/share.scss
Normal file
70
components/yue/share/share.scss
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
.box {
|
||||||
|
width: 690rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding-bottom: 41rpx;
|
||||||
|
border-bottom: 2rpx solid #EEEEEE;
|
||||||
|
.img {
|
||||||
|
width: 40rpx;
|
||||||
|
height: 39rpx;
|
||||||
|
background-color: #999999;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
.yongjintop {
|
||||||
|
width: 317rpx;
|
||||||
|
// height: 196rpx;
|
||||||
|
margin-top: 71rpx;
|
||||||
|
margin-left: 30rpx;
|
||||||
|
display: flex;
|
||||||
|
.photo {
|
||||||
|
width: 130rpx;
|
||||||
|
height: 130rpx;
|
||||||
|
background-color: gold;
|
||||||
|
margin-bottom: 52rpx;
|
||||||
|
border-radius: 90%;
|
||||||
|
}
|
||||||
|
.tel {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
margin-top: 33rpx;
|
||||||
|
margin-left: 35rpx;
|
||||||
|
.mingpian {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
margin-top: 18rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid {
|
||||||
|
width: 100%;
|
||||||
|
height: 175rpx;
|
||||||
|
border-bottom: 20rpx solid #FBFBFB;
|
||||||
|
// justify-content: space-around;
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
text-align: center;
|
||||||
|
.midbox {
|
||||||
|
width: 478rpx;
|
||||||
|
height: 175rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.way {
|
||||||
|
margin-top: 46rpx;
|
||||||
|
margin-bottom: 14rpx;
|
||||||
|
}
|
||||||
|
.money {
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
.money1 {
|
||||||
|
color: #F81F1F;
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
width: 2rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
margin: auto 0;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
}
|
||||||
|
}
|
30
components/yue/share/share.wxml
Normal file
30
components/yue/share/share.wxml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<view class="box">
|
||||||
|
<view class="img"></view>
|
||||||
|
<view class="yongjintop">
|
||||||
|
<view class="photo"></view>
|
||||||
|
<view class="tel">
|
||||||
|
<view>156***578</view>
|
||||||
|
<view class="mingpian">我的名片</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="mid">
|
||||||
|
<view class="midbox">
|
||||||
|
<view>
|
||||||
|
<view class="way">昨日收益</view>
|
||||||
|
<view class="money">
|
||||||
|
<text class="money1">657.00</text>
|
||||||
|
<text>RMB</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="line"></view>
|
||||||
|
<view>
|
||||||
|
<view class="way">昨日收益</view>
|
||||||
|
<view class="money">
|
||||||
|
<text class="money1">657.00</text>
|
||||||
|
<text>RMB</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
</view>
|
78
components/yue/share/share.wxss
Normal file
78
components/yue/share/share.wxss
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
.box {
|
||||||
|
width: 690rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding-bottom: 41rpx;
|
||||||
|
border-bottom: 2rpx solid #EEEEEE;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box .img {
|
||||||
|
width: 40rpx;
|
||||||
|
height: 39rpx;
|
||||||
|
background-color: #999999;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box .yongjintop {
|
||||||
|
width: 317rpx;
|
||||||
|
margin-top: 71rpx;
|
||||||
|
margin-left: 30rpx;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box .yongjintop .photo {
|
||||||
|
width: 130rpx;
|
||||||
|
height: 130rpx;
|
||||||
|
background-color: gold;
|
||||||
|
margin-bottom: 52rpx;
|
||||||
|
border-radius: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box .yongjintop .tel {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
margin-top: 33rpx;
|
||||||
|
margin-left: 35rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box .yongjintop .tel .mingpian {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
margin-top: 18rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid {
|
||||||
|
width: 100%;
|
||||||
|
height: 175rpx;
|
||||||
|
border-bottom: 20rpx solid #FBFBFB;
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .midbox {
|
||||||
|
width: 478rpx;
|
||||||
|
height: 175rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .way {
|
||||||
|
margin-top: 46rpx;
|
||||||
|
margin-bottom: 14rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .money {
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .money1 {
|
||||||
|
color: #F81F1F;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .line {
|
||||||
|
width: 2rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
margin: auto 0;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
}
|
23
components/yue/yongjintop/yongjintop.js
Normal file
23
components/yue/yongjintop/yongjintop.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// components/yue/yongjintop/yongjintop.js
|
||||||
|
Component({
|
||||||
|
/**
|
||||||
|
* 组件的属性列表
|
||||||
|
*/
|
||||||
|
properties: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的方法列表
|
||||||
|
*/
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
4
components/yue/yongjintop/yongjintop.json
Normal file
4
components/yue/yongjintop/yongjintop.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
56
components/yue/yongjintop/yongjintop.scss
Normal file
56
components/yue/yongjintop/yongjintop.scss
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
.box {
|
||||||
|
width: 690rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding-bottom: 41rpx;
|
||||||
|
border-bottom: 2rpx solid #EEEEEE;
|
||||||
|
.yongjintop {
|
||||||
|
width: 152rpx;
|
||||||
|
height: 196rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-top: 40rpx;
|
||||||
|
.photo {
|
||||||
|
width: 130rpx;
|
||||||
|
height: 130rpx;
|
||||||
|
background-color: gold;
|
||||||
|
margin-bottom: 44rpx;
|
||||||
|
border-radius: 90%;
|
||||||
|
}
|
||||||
|
.tel {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid {
|
||||||
|
width: 100%;
|
||||||
|
height: 175rpx;
|
||||||
|
border-bottom: 20rpx solid #FBFBFB;
|
||||||
|
// justify-content: space-around;
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
text-align: center;
|
||||||
|
.midbox {
|
||||||
|
width: 478rpx;
|
||||||
|
height: 175rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.way {
|
||||||
|
margin-top: 46rpx;
|
||||||
|
margin-bottom: 14rpx;
|
||||||
|
}
|
||||||
|
.money {
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
.money1 {
|
||||||
|
color: #F81F1F;
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
width: 2rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
margin: auto 0;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
}
|
||||||
|
}
|
26
components/yue/yongjintop/yongjintop.wxml
Normal file
26
components/yue/yongjintop/yongjintop.wxml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<view class="box">
|
||||||
|
<view class="yongjintop">
|
||||||
|
<view class="photo"></view>
|
||||||
|
<view class="tel">156***578</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="mid">
|
||||||
|
<view class="midbox">
|
||||||
|
<view>
|
||||||
|
<view class="way">昨日收益</view>
|
||||||
|
<view class="money">
|
||||||
|
<text class="money1">657.00</text>
|
||||||
|
<text>RMB</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="line"></view>
|
||||||
|
<view>
|
||||||
|
<view class="way">昨日收益</view>
|
||||||
|
<view class="money">
|
||||||
|
<text class="money1">657.00</text>
|
||||||
|
<text>RMB</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
</view>
|
63
components/yue/yongjintop/yongjintop.wxss
Normal file
63
components/yue/yongjintop/yongjintop.wxss
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
.box {
|
||||||
|
width: 690rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding-bottom: 41rpx;
|
||||||
|
border-bottom: 2rpx solid #EEEEEE;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box .yongjintop {
|
||||||
|
width: 152rpx;
|
||||||
|
height: 196rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-top: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box .yongjintop .photo {
|
||||||
|
width: 130rpx;
|
||||||
|
height: 130rpx;
|
||||||
|
background-color: gold;
|
||||||
|
margin-bottom: 44rpx;
|
||||||
|
border-radius: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box .yongjintop .tel {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid {
|
||||||
|
width: 100%;
|
||||||
|
height: 175rpx;
|
||||||
|
border-bottom: 20rpx solid #FBFBFB;
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .midbox {
|
||||||
|
width: 478rpx;
|
||||||
|
height: 175rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .way {
|
||||||
|
margin-top: 46rpx;
|
||||||
|
margin-bottom: 14rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .money {
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .money1 {
|
||||||
|
color: #F81F1F;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mid .line {
|
||||||
|
width: 2rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
margin: auto 0;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
}
|
23
components/yue/yuedetail/yuedetail.js
Normal file
23
components/yue/yuedetail/yuedetail.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// components/yue/yuedetail/yuedetai;.js
|
||||||
|
Component({
|
||||||
|
/**
|
||||||
|
* 组件的属性列表
|
||||||
|
*/
|
||||||
|
properties: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的方法列表
|
||||||
|
*/
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
4
components/yue/yuedetail/yuedetail.json
Normal file
4
components/yue/yuedetail/yuedetail.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
23
components/yue/yuedetail/yuedetail.scss
Normal file
23
components/yue/yuedetail/yuedetail.scss
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
.yuedetail {
|
||||||
|
width: 100%;
|
||||||
|
height: 100rpx;
|
||||||
|
border-bottom: 2rpx solid #EEEEEE;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
.left {
|
||||||
|
font-size: 28rpx;
|
||||||
|
margin-left: 30rpx;
|
||||||
|
.date {
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
.time {
|
||||||
|
color: #999999;
|
||||||
|
margin-top: 5rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.right {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 36rpx;
|
||||||
|
margin-right: 30rpx;
|
||||||
|
}
|
||||||
|
}
|
7
components/yue/yuedetail/yuedetail.wxml
Normal file
7
components/yue/yuedetail/yuedetail.wxml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<view class="yuedetail">
|
||||||
|
<view class="left">
|
||||||
|
<view class="date">2017-02-21</view>
|
||||||
|
<view class="time">17:23:25</view>
|
||||||
|
</view>
|
||||||
|
<view class="right">-1234.00</view>
|
||||||
|
</view>
|
27
components/yue/yuedetail/yuedetail.wxss
Normal file
27
components/yue/yuedetail/yuedetail.wxss
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
.yuedetail {
|
||||||
|
width: 100%;
|
||||||
|
height: 100rpx;
|
||||||
|
border-bottom: 2rpx solid #EEEEEE;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yuedetail .left {
|
||||||
|
font-size: 28rpx;
|
||||||
|
margin-left: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yuedetail .left .date {
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yuedetail .left .time {
|
||||||
|
color: #999999;
|
||||||
|
margin-top: 5rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yuedetail .right {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 36rpx;
|
||||||
|
margin-right: 30rpx;
|
||||||
|
}
|
23
components/yue/yuetitle/yuetitle.js
Normal file
23
components/yue/yuetitle/yuetitle.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// components/yue/yuetitle/yuetitle.js
|
||||||
|
Component({
|
||||||
|
/**
|
||||||
|
* 组件的属性列表
|
||||||
|
*/
|
||||||
|
properties: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的方法列表
|
||||||
|
*/
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
4
components/yue/yuetitle/yuetitle.json
Normal file
4
components/yue/yuetitle/yuetitle.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
6
components/yue/yuetitle/yuetitle.scss
Normal file
6
components/yue/yuetitle/yuetitle.scss
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
.yuetitle {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 31rpx;
|
||||||
|
}
|
3
components/yue/yuetitle/yuetitle.wxml
Normal file
3
components/yue/yuetitle/yuetitle.wxml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<view class="yuetitle">
|
||||||
|
累计消费
|
||||||
|
</view>
|
6
components/yue/yuetitle/yuetitle.wxss
Normal file
6
components/yue/yuetitle/yuetitle.wxss
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
.yuetitle {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 31rpx;
|
||||||
|
}
|
23
components/yue/yuetop/yuetop.js
Normal file
23
components/yue/yuetop/yuetop.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// components/yue/yuetop/yuetop.js
|
||||||
|
Component({
|
||||||
|
/**
|
||||||
|
* 组件的属性列表
|
||||||
|
*/
|
||||||
|
properties: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的方法列表
|
||||||
|
*/
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
4
components/yue/yuetop/yuetop.json
Normal file
4
components/yue/yuetop/yuetop.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
23
components/yue/yuetop/yuetop.scss
Normal file
23
components/yue/yuetop/yuetop.scss
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
.yuetop {
|
||||||
|
width: 690rpx;
|
||||||
|
// height: 189rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
border-bottom: 2rpx solid #EEEEEE;
|
||||||
|
.all {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
padding-top: 63rpx;
|
||||||
|
padding-bottom: 25rpx;
|
||||||
|
}
|
||||||
|
.money {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 48rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
padding-bottom: 37rpx;
|
||||||
|
.chong {
|
||||||
|
color: #09BB07;
|
||||||
|
font-size: 26rpx;
|
||||||
|
margin-left: 35rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
7
components/yue/yuetop/yuetop.wxml
Normal file
7
components/yue/yuetop/yuetop.wxml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<view class="yuetop">
|
||||||
|
<view class="all">总资产</view>
|
||||||
|
<view class="money">
|
||||||
|
<text>615.96</text>
|
||||||
|
<text class="chong">充值</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
25
components/yue/yuetop/yuetop.wxss
Normal file
25
components/yue/yuetop/yuetop.wxss
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
.yuetop {
|
||||||
|
width: 690rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
border-bottom: 2rpx solid #EEEEEE;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yuetop .all {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 28rpx;
|
||||||
|
padding-top: 63rpx;
|
||||||
|
padding-bottom: 25rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yuetop .money {
|
||||||
|
color: #333333;
|
||||||
|
font-size: 48rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
padding-bottom: 37rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yuetop .money .chong {
|
||||||
|
color: #09BB07;
|
||||||
|
font-size: 26rpx;
|
||||||
|
margin-left: 35rpx;
|
||||||
|
}
|
66
pages/member/member.js
Normal file
66
pages/member/member.js
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
// pages/member/member.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad: function (options) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage: function () {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
6
pages/member/member.json
Normal file
6
pages/member/member.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {
|
||||||
|
"membertop": "/components/member/membertop/membertop",
|
||||||
|
"membershop": "/components/member/membershop/membershop"
|
||||||
|
}
|
||||||
|
}
|
11
pages/member/member.scss
Normal file
11
pages/member/member.scss
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
.membershops {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
.membershop {
|
||||||
|
// margin-right: 4rpx;
|
||||||
|
margin-bottom: 4rpx;
|
||||||
|
}
|
||||||
|
.membershop:nth-child(odd) {
|
||||||
|
margin-right: 4rpx;
|
||||||
|
}
|
||||||
|
}
|
32
pages/member/member.wxml
Normal file
32
pages/member/member.wxml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<view class="top">
|
||||||
|
<membertop></membertop>
|
||||||
|
<view class="membershops">
|
||||||
|
<view class="membershop">
|
||||||
|
<membershop></membershop>
|
||||||
|
</view>
|
||||||
|
<view class="membershop">
|
||||||
|
<membershop></membershop>
|
||||||
|
</view>
|
||||||
|
<view class="membershop">
|
||||||
|
<membershop></membershop>
|
||||||
|
</view>
|
||||||
|
<view class="membershop">
|
||||||
|
<membershop></membershop>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="membershop">
|
||||||
|
<membershop></membershop>
|
||||||
|
</view>
|
||||||
|
<view class="membershop">
|
||||||
|
<membershop></membershop>
|
||||||
|
</view>
|
||||||
|
<view class="membershop">
|
||||||
|
<membershop></membershop>
|
||||||
|
</view>
|
||||||
|
<view class="membershop">
|
||||||
|
<membershop></membershop>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
|
||||||
|
</view>
|
12
pages/member/member.wxss
Normal file
12
pages/member/member.wxss
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
.membershops {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.membershops .membershop {
|
||||||
|
margin-bottom: 4rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.membershops .membershop:nth-child(odd) {
|
||||||
|
margin-right: 4rpx;
|
||||||
|
}
|
66
pages/share/share.js
Normal file
66
pages/share/share.js
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
// pages/share/share.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad: function (options) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage: function () {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
6
pages/share/share.json
Normal file
6
pages/share/share.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {
|
||||||
|
"share": "/components/yue/share/share",
|
||||||
|
"yuedetail": "/components/yue/yuedetail/yuedetail"
|
||||||
|
}
|
||||||
|
}
|
7
pages/share/share.scss
Normal file
7
pages/share/share.scss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.share {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail {
|
||||||
|
margin-top: 41rpx;
|
||||||
|
}
|
15
pages/share/share.wxml
Normal file
15
pages/share/share.wxml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<view class="share">
|
||||||
|
<share></share>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
</view>
|
7
pages/share/share.wxss
Normal file
7
pages/share/share.wxss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.share {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail {
|
||||||
|
margin-top: 41rpx;
|
||||||
|
}
|
66
pages/yongjin/yongjin.js
Normal file
66
pages/yongjin/yongjin.js
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
// pages/yongjin/yongjin.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad: function (options) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom: function () {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage: function () {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
7
pages/yongjin/yongjin.json
Normal file
7
pages/yongjin/yongjin.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {
|
||||||
|
"yongjintop": "/components/yue/yongjintop/yongjintop",
|
||||||
|
"yuedetail": "/components/yue/yuedetail/yuedetail",
|
||||||
|
"yuetitle": "/components/yue/yuetitle/yuetitle"
|
||||||
|
}
|
||||||
|
}
|
7
pages/yongjin/yongjin.scss
Normal file
7
pages/yongjin/yongjin.scss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.detail {
|
||||||
|
margin-top: 41rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
margin-top: 40rpx
|
||||||
|
}
|
18
pages/yongjin/yongjin.wxml
Normal file
18
pages/yongjin/yongjin.wxml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<view class="yongjin">
|
||||||
|
<yongjintop></yongjintop>
|
||||||
|
<view class="title">
|
||||||
|
<yuetitle></yuetitle>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
</view>
|
7
pages/yongjin/yongjin.wxss
Normal file
7
pages/yongjin/yongjin.wxss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.detail {
|
||||||
|
margin-top: 41rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
margin-top: 40rpx;
|
||||||
|
}
|
23
pages/yue/yue.js
Normal file
23
pages/yue/yue.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// pages/yue/yue.js
|
||||||
|
Component({
|
||||||
|
/**
|
||||||
|
* 组件的属性列表
|
||||||
|
*/
|
||||||
|
properties: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 组件的方法列表
|
||||||
|
*/
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
8
pages/yue/yue.json
Normal file
8
pages/yue/yue.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {
|
||||||
|
"yuetop": "/components/yue/yuetop/yuetop",
|
||||||
|
"yuetitle": "/components/yue/yuetitle/yuetitle",
|
||||||
|
"yuedetail": "/components/yue/yuedetail/yuedetail"
|
||||||
|
}
|
||||||
|
}
|
8
pages/yue/yue.scss
Normal file
8
pages/yue/yue.scss
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
.yue {
|
||||||
|
.title {
|
||||||
|
margin-top: 40rpx
|
||||||
|
}
|
||||||
|
.detail {
|
||||||
|
margin-top: 41rpx;
|
||||||
|
}
|
||||||
|
}
|
19
pages/yue/yue.wxml
Normal file
19
pages/yue/yue.wxml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<view class="yue">
|
||||||
|
<yuetop></yuetop>
|
||||||
|
<view class="title">
|
||||||
|
<yuetitle></yuetitle>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
<view class="detail">
|
||||||
|
<yuedetail></yuedetail>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
</view>
|
7
pages/yue/yue.wxss
Normal file
7
pages/yue/yue.wxss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.yue .title {
|
||||||
|
margin-top: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yue .detail {
|
||||||
|
margin-top: 41rpx;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user