|
@@ -16,7 +16,7 @@
|
|
<view class="list" v-for="(item, index) in bilist" @click="nav(item)">
|
|
<view class="list" v-for="(item, index) in bilist" @click="nav(item)">
|
|
<view class="list-item flex">
|
|
<view class="list-item flex">
|
|
<view class="list-item-left">
|
|
<view class="list-item-left">
|
|
- <view class="list-title">{{ item.title }}</view>
|
|
|
|
|
|
+ <view class="list-title">{{ item.name.toUpperCase() }}</view>
|
|
<view class="list-tip">{{ item.title }}</view>
|
|
<view class="list-tip">{{ item.title }}</view>
|
|
</view>
|
|
</view>
|
|
<view class="list-item-right">
|
|
<view class="list-item-right">
|
|
@@ -62,6 +62,7 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
loadData() {
|
|
loadData() {
|
|
czcoin({ name: this.keyworld }).then(e => {
|
|
czcoin({ name: this.keyworld }).then(e => {
|
|
|
|
+ console.log(e.data);
|
|
this.bilist = e.data;
|
|
this.bilist = e.data;
|
|
});
|
|
});
|
|
},
|
|
},
|