| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <van-sticky scroll-top="0">
- <van-search model:value="{{ searchText }}" bind:change="onSearchText" bind:search="doSearch" placeholder="输入客户名称/地址/电话"> </van-search>
- <van-dropdown-menu active-color="#1B365D">
- <van-dropdown-item id="statusItem2" title="{{ statusItem2.text }}">
- <dk-dropdown-switch dataList="{{statusList}}" bind:commit='dropdowncommit'></dk-dropdown-switch>
- </van-dropdown-item>
- <van-dropdown-item id="statusItem" title="{{ statusItem.text }}">
- <dk-dropdown-switch dataList="{{statusList}}" bind:commit='dropdowncommit'></dk-dropdown-switch>
- </van-dropdown-item>
- </van-dropdown-menu>
- </van-sticky>
- <view style="margin: 20rpx 34rpx 26rpx 34rpx;border-radius: 15rpx;box-shadow:2px 2px 5px #e5e5e6;">
- <view style="flex-direction: column;justify-content: center;align-items: flex-start;background: linear-gradient(90.12deg, #718AC6 0.84%, #4A5E98 99.43%);border-radius: 15rpx;">
- <view style="display: flex;color:#FFFFFF;padding:20rpx;padding-top: 40rpx;padding-bottom: 40rpx;">
- <view style="width: 50%;text-align: center;">
- <view style="font-size: 13px;">客户数</view>
- <view style="font-weight: 600;padding-top: 6rpx;">312</view>
- </view>
- <view style="width: 50%;text-align: center;">
- <view style="font-size: 13px;">客户应收统计</view>
- <view style="font-weight: 600;padding-top: 6rpx;">63.38.265.00</view>
- </view>
- </view>
- </view>
- </view>
- <view style="margin: 10px 32rpx 10px 32rpx;margin-top: 10px;border-radius: 15rpx;">
- <view wx:for="{{tableData}}" wx:key="index" wx:for-item="item" data-item="{{item}}" data-index="{{index}}" class="dk-card-class" style="margin-bottom: 20rpx;padding:10rpx; display: flex;justify-content: left;align-items: center;{{item.checked? 'border: 1px solid #1B365D;':''}}" catchtap="chooseData">
- <view style="width: 100%;">
- <van-field label-class="red-label" value="{{ item.name }}" input-align="left" label="客户名称" placeholder="" data-type='name' readonly="{{true}}" autosize border="{{ false }}">
- </van-field>
- <van-field label-class="nomal-label" value="{{ item.phone }}" input-align="left" label="客户电话" placeholder="" data-type='name' readonly="{{true}}" autosize border="{{ false }}">
- </van-field>
- <van-field label-class="nomal-label" value="{{ item.number }}" input-align="left" label="应收收款" placeholder="" data-type='name' readonly="{{true}}" autosize border="{{ false }}">
- </van-field>
- </view>
- </view>
- <view style="height: 220rpx;"></view>
- </view>
|