修改发票显示问题和暂存工作台修改
This commit is contained in:
98
pages/workBench/components/account/index.wxml
Normal file
98
pages/workBench/components/account/index.wxml
Normal file
@@ -0,0 +1,98 @@
|
||||
<!--pages/workBench/components/account/index.wxml-->
|
||||
<view>
|
||||
<van-field
|
||||
required
|
||||
value="{{ parkName }}"
|
||||
label="园区"
|
||||
placeholder="请选择园区"
|
||||
border="{{ true }}"
|
||||
readonly
|
||||
use-button-slot
|
||||
>
|
||||
<van-button slot="button" size="small" type="primary" bind:click="onParkFocus">
|
||||
选择
|
||||
</van-button>
|
||||
</van-field>
|
||||
<van-field
|
||||
required
|
||||
value="{{ tenementName }}"
|
||||
label="商户"
|
||||
placeholder="请选择商户"
|
||||
border="{{ true }}"
|
||||
readonly
|
||||
use-button-slot
|
||||
>
|
||||
<van-button slot="button" size="small" type="primary" bind:click="onTenementFocus">
|
||||
选择
|
||||
</van-button>
|
||||
</van-field>
|
||||
</view>
|
||||
<van-empty wx:if="{{!tenement}}" description="选择园区和商户后查看" />
|
||||
<view wx:else>
|
||||
<van-field
|
||||
value="{{item.tenement.name}}"
|
||||
label="商户名称"
|
||||
readonly
|
||||
title-width="140rpx"
|
||||
/>
|
||||
|
||||
<van-field
|
||||
value="{{item.meterNo}}"
|
||||
label="商户简称"
|
||||
readonly
|
||||
title-width="140rpx"
|
||||
/>
|
||||
<van-field
|
||||
value="{{item.address}}"
|
||||
label="收费类型"
|
||||
readonly
|
||||
title-width="140rpx"
|
||||
/>
|
||||
<van-field
|
||||
value="{{item.address}}"
|
||||
label="预留电话"
|
||||
readonly
|
||||
title-width="140rpx"
|
||||
/>
|
||||
<view wx:if="{{list.length}}">
|
||||
<view class="tableWrapper">
|
||||
<view class="table">
|
||||
<view class="thead">
|
||||
<view class="th" style="width: 70rpx"> 序号 </view>
|
||||
<view class="th" style="width: 200rpx"> 昵称 </view>
|
||||
<view class="th" style="width: 200rpx"> 手机号 </view>
|
||||
<view class="th" style="width: 200rpx"> 操作 </view>
|
||||
</view>
|
||||
<view class="tbody">
|
||||
<van-radio-group value="{{ record }}" bind:change="onChangeSelectRecharge">
|
||||
<block wx:for="{{list}}" wx:for-index="itemIndex" wx:key="item">
|
||||
<view class="tr">
|
||||
<view class="th" style="width: 200rpx"> {{ index }} </view>
|
||||
<view class="th" style="width: 200rpx"> {{ item.tenement.shortName }} </view>
|
||||
<view class="th" style="width: 200rpx"> {{ item.money }} </view>
|
||||
<view class="th" style="width: 200rpx">
|
||||
<view class="primaryTextBtn" bind:tap="handleDelete" data-id="{{item.id}}">
|
||||
移除
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</van-radio-group>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="operateBox">
|
||||
<van-button type="primary" size="small" style="margin-right: 20rpx;"> 添加子账号 </van-button>
|
||||
<van-button type="primary" size="small" style="margin-right: 20rpx;"> 修改主账号 </van-button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<search-select
|
||||
show="{{show}}"
|
||||
title="{{title}}"
|
||||
type="{{type}}"
|
||||
park="{{park}}"
|
||||
bindconfirm="onConfirm"
|
||||
bindcancel="onConcal"
|
||||
/>
|
||||
<kaihu park="{{park}}" visible="{{kaihuVisible}}" />
|
Reference in New Issue
Block a user