Files
electricity_bill_calc_wx/pages/workBench/components/reading/index.wxml

39 lines
896 B
Plaintext

<!--pages/workBench/components/reading/index.wxml-->
<van-field
value="{{ parkName }}"
placeholder="请选择园区"
label="园区"
readonly
border="{{ false }}"
use-button-slot
title-width="100rpx"
>
<van-button slot="button" size="small" type="primary" bind:click="onParkFocus">
选择
</van-button>
</van-field>
<search-select
show="{{show}}"
title="{{title}}"
type="{{type}}"
park="{{park}}"
bindconfirm="onConfirm"
bindcancel="onConcal"
/>
<van-empty description="请先选择园区" wx:if="{{!park}}" />
<view wx:else>
<van-cell
wx:for="{{list}}"
wx:key="id"
title="路线1"
label="包含12个抄表点"
>
<view slot="right-icon">
<van-button type="primary" size="small" type="primary"> 去抄表 </van-button>
</view>
</van-cell>
</view>