|
@@ -0,0 +1,48 @@
|
|
|
+<!-- <cu-custom bgColor="bg-gradual-blue" isBack="{{true}}">
|
|
|
+ <view slot="backText">返回</view>
|
|
|
+ <view slot="content">背景颜色</view>
|
|
|
+</cu-custom> -->
|
|
|
+<van-dialog id="van-dialog" />
|
|
|
+<cu-custom bgColor="bg-white" isNotice="{{true}}">
|
|
|
+ <view slot="content">
|
|
|
+ 操作条
|
|
|
+ </view>
|
|
|
+</cu-custom>
|
|
|
+<view class="bigcontainer">
|
|
|
+ <van-search value="{{ searchValue }}" bind:change="onChange" use-action-slot shape="round" background="#4fc08d" placeholder="请输入搜索关键词">
|
|
|
+ <view slot="action" bind:tap="changeSearch">搜索</view>
|
|
|
+ </van-search>
|
|
|
+ <view class="content0">
|
|
|
+ <view>aa</view>
|
|
|
+ <view>aa</view>
|
|
|
+ </view>
|
|
|
+ <view class="content1">
|
|
|
+ <view class="left">撒旦撒旦撒</view>
|
|
|
+ <view class="left">反反复复</view>
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <button class="cu-btn bg-green shadow" bindtap="showModal" data-target="DrawerModalR">右边</button>
|
|
|
+ </view>
|
|
|
+ <!-- 侧边抽屉 -->
|
|
|
+ <view class="cu-modal drawer-modal justify-end {{modalName=='DrawerModalR'?'show':''}}" bindtap="hideModal">
|
|
|
+ <view class="cu-dialog basis-xl" catchtap style="top:{{CustomBar}}px;height:calc(100vh - {{CustomBar}}px)">
|
|
|
+ <view class="cu-list menu text-left">
|
|
|
+ <view class="cu-item arrow" wx:for="{{5}}" wx:key="index">
|
|
|
+ <view class="content">
|
|
|
+ <view>Item {{index +1}}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view>
|
|
|
+ <van-dropdown-menu>
|
|
|
+ <van-dropdown-item value="{{ value1 }}" options="{{ option1 }}" />
|
|
|
+ <van-dropdown-item value="{{ value2 }}" options="{{ option2 }}" />
|
|
|
+ </van-dropdown-menu>
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <van-button type="danger" bind:click="clickdialog">确认dialog</van-button>
|
|
|
+ </view>
|
|
|
+</view>
|