12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <view class="container">
-
- <view class="tui-header-screen">
- <view class="cu-bar search bg-white">
- <view class="search-form round">
- <text class="cuIcon-search"></text>
- <input type="text" placeholder="输入方案名称" confirm-type="search" value="{{searchParams.schemeName}}"
- data-name="searchParams.schemeName" catchinput="inputedit" bindblur="inputedit"></input>
- </view>
- <view class="action">
- <button class="cu-btn bg-blue shadow-blur round" bindtap="btnSearch">搜索</button>
- </view>
- </view>
- <picker bindchange="bindStorePickerChange" value="{{index}}" range="{{storeList}}" range-key="storeName">
- <tui-list-cell hover="{{false}}">
- <view class="tui-line-cell">
- <view class="tui-title">门店</view>
- <input placeholder-class="phcolor" class="tui-input" placeholder="请选择门店" type="text" disabled="true"
- value="{{searchParams.storeName}}" />
- </view>
- </tui-list-cell>
- </picker>
- </view>
-
-
- <view class="bg-white store-grid">
- <view class="grid col-2" >
- <view wx:for="{{schemeList}}">
- <view class="margin-xs padding-sm radius shadow-warp store-list-row" bindtap="toEdit" data-id="{{item.id}}">
- <view style="width:100%;">
- <view class="padding-bottom-sm store-name">{{item.schemeName}}</view>
- <view class="store-mobile">{{item.storeName}}</view>
- </view>
- <view class="store-img">
- <tui-icon name="feedback" size="60" color="#5677fc"></tui-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view style="height:10rpx"></view>
-
- <tui-loadmore visible="{{loadding}}" index="{{3}}" type="red"></tui-loadmore>
- <tui-nomore style="margin-bottom:60rpx" visible="{{!pullUpOn}}" bgcolor="#fafafa"></tui-nomore>
-
-
- <tui-button type="blue" height="98rpx" shape="rightAngle" bindtap="toAddScheme" style="position:fixed;bottom:0;width:100%;z-index:2">新增方案</tui-button>
-
- <time-picker pickerShow="{{isPickerShow}}" id="picker" wx:if="{{isPickerRender}}" bind:hidePicker="pickerHide"
- bind:setPickerTime="setPickerTime" config="{{pickerConfig}}"></time-picker>
-
- </view>
|