修改图片
This commit is contained in:
@@ -3,22 +3,22 @@
|
|||||||
<view>
|
<view>
|
||||||
<view class="bild">
|
<view class="bild">
|
||||||
<view class="bildLeft">
|
<view class="bildLeft">
|
||||||
<text>充值金额</text>
|
<text>我的余额</text>
|
||||||
<view>12</view>
|
<view>12</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="bildRight">
|
<view class="bildRight">
|
||||||
<text>剩余次数(次)</text>
|
<text>我的积分</text>
|
||||||
<view>12</view>
|
<view>12</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="navTop">
|
<view class="navTop">
|
||||||
<view @click="clickEvent(1)">
|
<view @click="clickEvent(1)">
|
||||||
充值
|
余额明细
|
||||||
<view :class="[active==1?'xian':'']" style="left: 8rpx;"> </view>
|
<view :class="[active==1?'xian':'']" style="left: 36rpx;"> </view>
|
||||||
</view>
|
</view>
|
||||||
<view @click="clickEvent(2)">
|
<view @click="clickEvent(2)">
|
||||||
消费
|
积分明细
|
||||||
<view :class="[active==2?'xian':'']" style="left: 8rpx;"> </view>
|
<view :class="[active==2?'xian':'']" style="left: 36rpx;"> </view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="listStyle">
|
<view class="listStyle">
|
||||||
@@ -51,7 +51,12 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
active: 1,
|
active: 1,
|
||||||
list: []
|
list: [],
|
||||||
|
form:{
|
||||||
|
page:1,
|
||||||
|
pageSize:10,
|
||||||
|
memberId:''
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
@@ -59,7 +64,13 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getlist() {
|
getlist() {
|
||||||
|
// member/queryMemberAccount
|
||||||
|
// get
|
||||||
|
|
||||||
|
// memberId string 必需 示例值: 11
|
||||||
|
// page string 必需 示例值: 1
|
||||||
|
// pageSize string
|
||||||
|
|
||||||
},
|
},
|
||||||
clickEvent(i) {
|
clickEvent(i) {
|
||||||
this.active = i
|
this.active = i
|
||||||
|
|||||||
Reference in New Issue
Block a user