You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.9 KiB
51 lines
1.9 KiB
<Tabs tabList="{{tabList}}" bind:tabChange="tabChange"/>
|
|
<view class="sub-tit">
|
|
<image src="../../../../images/statistics/sub-tit.png" mode="widthFix"/>
|
|
<text>不满意人员画像</text>
|
|
</view>
|
|
<picker
|
|
range="{{typeConditionList}}"
|
|
range-key="label"
|
|
model:value="{{ typeCondition }}"
|
|
bind:change="getData"
|
|
wx:if="{{tabValue === 'provinceAndSelf'}}"
|
|
>
|
|
<view class="picker">
|
|
{{typeConditionList[typeCondition].label}}
|
|
<image src="../../../../images/statistics/arrow_down.png" mode="widthFix"
|
|
style="width:20rpx;height:12rpx;"></image>
|
|
</view>
|
|
</picker>
|
|
<view class="portrait">
|
|
<view class="bg">
|
|
<image src="../../../../images/statistics/hx_bg.png" mode="widthFix"/>
|
|
</view>
|
|
<view class="tags">
|
|
<view class="tag" wx-if="{{gridName}}">
|
|
<view class="text">{{gridName}}</view>
|
|
</view>
|
|
<view class="tag" wx-if="{{ageClassification}}">
|
|
<view class="text">{{ageClassification}}</view>
|
|
</view>
|
|
<view class="tag" wx-if="{{residentTagName}}" wx:for="{{residentTagName}}">
|
|
<view class="text">{{item}}</view>
|
|
</view>
|
|
<view class="tag" wx-if="{{monthIncomeLevel}}">
|
|
<view class="text">{{monthIncomeLevel}}</view>
|
|
</view>
|
|
<view class="tag" wx-if="{{cultureName}}">
|
|
<view class="text">{{cultureName}}</view>
|
|
</view>
|
|
<view class="tag" wx-if="{{marriageName}}">
|
|
<view class="text">{{marriageName}}</view>
|
|
</view>
|
|
<view class="tag" wx-if="{{gender}}">
|
|
<view class="text">{{ gender === '1' ? '男' : gender === '2' ? '女' : gender === '0' ? '未知' : '' }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="btn" bind:tap="gotopage">
|
|
<text>按画像匹配到同类:{{ matchPeopleNum ? matchPeopleNum : 0 }}人</text>
|
|
<image src="../../../../images/statistics/btn_right.png" mode="widthFix"/>
|
|
</view>
|
|
|