|
@@ -58,13 +58,13 @@
|
|
|
</view>
|
|
|
<view></view>
|
|
|
</view>
|
|
|
- <view class="industry-box" @click="isClickHandle(tradeList.CategoryId)">
|
|
|
+ <view class="industry-box" @click="isClickHandle(item.CategoryId)" v-for="item in tradeList" :key="item.CategoryId">
|
|
|
<view class="box-left">
|
|
|
- {{tradeList.SubCategoryName}}
|
|
|
- <text v-if="tradeList.IsRed"></text>
|
|
|
+ {{item.MatchTypeName}}
|
|
|
+ <text v-if="item.IsRed"></text>
|
|
|
</view>
|
|
|
<view class="box-right">
|
|
|
- <text>{{tradeList.UpdateTime}}更新</text>
|
|
|
+ <text>{{item.UpdateTime}}更新</text>
|
|
|
<u-icon name="arrow-right" color="#BDBDBD" size="34"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -164,7 +164,7 @@
|
|
|
strategyIndex:null,
|
|
|
strategyIndexTwo:0,
|
|
|
isSwitchover:1,
|
|
|
- tradeList:null,
|
|
|
+ tradeList:[],
|
|
|
OrderColumn:'',
|
|
|
industryList:[],
|
|
|
loadText: {
|
|
@@ -275,7 +275,7 @@
|
|
|
}).then(res=>{
|
|
|
if(res.Ret==200){
|
|
|
if(res.Data.List){
|
|
|
- this.tradeList=res.Data.List[0]
|
|
|
+ this.tradeList=res.Data.List
|
|
|
}else{
|
|
|
this.tradeList=null
|
|
|
}
|