Commit 215d8fc1 by 肖康

Merge branch 'master' of http://git.ichunt.net/xiaokang/H5_2.0

parents b2188f1b 111d70c9
Showing with 6 additions and 4 deletions
......@@ -3,4 +3,5 @@
/unpackage
/*.hbuilderx
/.DS_Store
/node_modules
\ No newline at end of file
/node_modules
/node_modules/query-string
......@@ -91,7 +91,7 @@
</view>
<view class="h2">币种</view>
<view class="tab row">
<view class="box row rowCenter verCenter" v-for="(item, index) in currency_arr" :class="{ curr: currencyIndex == index }" :key="index">{{ item }}</view>
<view class="box row rowCenter verCenter" v-for="(item, index) in currency_arr" :class="{ curr: currencyIndex == index }" :key="index" @click="filterTab(index)">{{ item }}</view>
</view>
</view>
<view class="btn row bothSide verCenter">
......@@ -181,7 +181,9 @@ export default {
/**
* 筛选
*/
filterChange() {},
filterChange(index) {
this.currencyIndex = index;
},
/**
* 立即支付
* @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