123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <view class="titleHead">
- <wxs src="../../../../utils/util.wxs" module="tool"></wxs>
- <view class="after"></view>
- 行业结构
- <view class="btns">
- <picker mode="selector" bindchange="channelChange" range-key="text" value="{{select_act}}" range="{{select}}">
- <view class="select">
- {{select[select_act].text || "请选择"}}
- <van-icon name="arrow-down" />
- </view>
- </picker>
- </view>
- </view>
- <view style="margin-bottom: 10px;">
- <text class="title">硬广行业结构</text>
- </view>
- <!-- <view style="height: 70vh;">
- <f2 wx:if="{{onInitChart !== undefined}}" onInit="{{onInitChart}}" />
- </view> -->
- <view class="youshikehubody">
- <van-row class="rowText" wx:if="{{DayList.length}}" style="margin-top: 5px;text-align: center;font-size: 14px;">
- <van-col span="4">
- <view class="col">序号</view>
- </van-col>
- <van-col span="15">
- <view class="col">大行业名称</view>
- </van-col>
- <van-col span="5">
- <view class="col">{{select[select_act].text + '/' + select[select_act].unit}}</view>
- </van-col>
- </van-row>
- <van-row class="rowText" wx:if="{{DayList.length}}" style="margin-top: 5px;text-align: center;font-size: 14px;" wx:for="{{DayList}}" wx:key="index">
- <van-col span="4">
- <view class="col col1">{{index+1}}</view>
- </van-col>
- <van-col span="15">
- <view class="col col1">{{item.name}}</view>
- </van-col>
- <van-col span="5" wx:if="{{select_act === 0}}">
- <view class="col col1">{{tool.formmater(item[select[select_act].proportionType], 2)}}</view>
- </van-col>
- <van-col span="5" wx:if="{{select_act === 1}}">
- <view class="col col1">{{tool.formmater(item[select[select_act].proportionType], 2)}}</view>
- </van-col>
- <van-col span="5" wx:if="{{select_act === 2}}">
- <view class="col col1">{{tool.formmater(item[select[select_act].proportionType], 2)}}</view>
- </van-col>
- </van-row>
- </view>
- <view style="margin: 10px 0">
- <text class="title">软广行业结构</text>
- </view>
- <!-- <view style="height: 70vh;margin-bottom: 10px;">
- <f2 wx:if="{{onInitChart1 !== undefined}}" onInit="{{onInitChart1}}" />
- </view> -->
- <view class="youshikehubody">
- <van-row class="rowText" wx:if="{{DayList.length}}" style="margin-top: 5px;text-align: center;font-size: 14px;">
- <van-col span="4">
- <view class="col">序号</view>
- </van-col>
- <van-col span="15">
- <view class="col">大行业名称</view>
- </van-col>
- <van-col span="5">
- <view class="col">{{select[select_act].text + '/' + select[select_act].unit}}</view>
- </van-col>
- </van-row>
- <van-row class="rowText" wx:if="{{DayList.length}}" style="margin-top: 5px;text-align: center;font-size: 14px;" wx:for="{{DayList}}" wx:key="index">
- <van-col span="4">
- <view class="col col1">{{index+1}}</view>
- </van-col>
- <van-col span="15">
- <view class="col col1">{{item.name}}</view>
- </van-col>
- <van-col span="5" wx:if="{{select_act === 0}}">
- <view class="col col1">{{tool.formmater(item[select[select_act].proportionType], 2)}}</view>
- </van-col>
- <van-col span="5" wx:if="{{select_act === 1}}">
- <view class="col col1">{{tool.formmater(item[select[select_act].proportionType], 2)}}</view>
- </van-col>
- <van-col span="5" wx:if="{{select_act === 2}}">
- <view class="col col1">{{tool.formmater(item[select[select_act].proportionType], 2)}}</view>
- </van-col>
- </van-row>
- </view>
|