Commit 50ff4145 by LJM

css

parent 81018e08
Showing with 13 additions and 4 deletions
...@@ -91,14 +91,14 @@ ...@@ -91,14 +91,14 @@
</view> </view>
<view class="h2">币种</view> <view class="h2">币种</view>
<view class="tab row"> <view class="tab row">
<view class="box curr row rowCenter verCenter">全部</view> <view class="box curr row rowCenter verCenter" v-for="(ite)">全部</view>
<view class="box row rowCenter verCenter">人民币</view> <view class="box row rowCenter verCenter">人民币</view>
<view class="box row rowCenter verCenter">美元</view> <view class="box row rowCenter verCenter">美元</view>
</view> </view>
</view> </view>
<view class="btn row bothSide verCenter"> <view class="btn row bothSide verCenter">
<view class="btn0 row rowCenter verCenter">重置</view> <view class="btn0 row rowCenter verCenter">重置</view>
<view class="btn1 row rowCenter verCenter">筛选</view> <view class="btn1 row rowCenter verCenter" @click="filterChange()">筛选</view>
</view> </view>
</view> </view>
</uni-popup> </uni-popup>
...@@ -119,11 +119,16 @@ export default { ...@@ -119,11 +119,16 @@ export default {
arr: ['全部', '待付款', '待收货', '已完结订单'], arr: ['全部', '待付款', '待收货', '已完结订单'],
curr: 0, curr: 0,
list: [], list: [],
currencyIndex: 0,
currency_arr: ['全部', '人民币', '美元'],
searchParams: { searchParams: {
order_sn: '', order_sn: '',
p: 1, p: 1,
limit: 500, limit: 1000,
status: 0 status: 0,
currency: 0,
stime: '',
etime: ''
} }
}; };
}, },
...@@ -176,6 +181,10 @@ export default { ...@@ -176,6 +181,10 @@ export default {
this.date = e.detail.value; this.date = e.detail.value;
}, },
/** /**
* 筛选
*/
filterChange() {},
/**
* 立即支付 * 立即支付
* @param {Object} order_id * @param {Object} order_id
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment