| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!-- 前台导入wxmlUtil.wxs -->
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <!-- 顶部信息 -->
- <van-sticky scroll-top="0">
- <!-- 查询条件 -->
- <dk-dropdown-menu model:value="{{searchForm}}" menuList="{{searchContent}}" pullMenuList="{{pullMenuList}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['unit','remarks'])}}">
- </dk-dropdown-menu>
- </van-sticky>
- <!-- 内容列表 -->
- <view style="width: 100%;">
- <view wx:for="{{tableData}}" wx:key="index" class="main-class">
- <van-swipe-cell right-width="{{ 65 }}">
- <view bind:tap="toChecked" data-index="{{index}}"data-item="{{item}}" class="{{item.checked ? 'main-foot-1' : 'main-foot'}}" style="border-radius:15rpx;">
- <view class="table-content">
- <view class="table-content-row">
- <view style="display: flex;">
- <view style="font-size: 14px;font-weight: 600;width: 70%;margin-left: 20rpx;">
- {{item.unitName}}
- </view>
- <view style="font-size: 14px;font-weight: 600;width: 20%;margin-left: 20rpx;">
- {{'小数:' +item.decimalPlaces}}
- </view>
- </view>
- </view>
- </view>
- </view>
- <view data-index="{{index}}" bind:tap="onCloseDel" slot="right">{{item.flagValue ? '停用' : '启用'}}</view>
- </van-swipe-cell>
- </view>
- <!-- 保留高度 -->
- <view style="height: 220rpx;"></view>
- </view>
- <dk-popup type="basic" priceTitle="" priceCol="pricePromotion" subCol="desc" title="{{formDataName}}" value="{{dataItem}}" show="{{showPop}}" routeObjName="{{routeObjName}}" contentObj="{{popContent}}" bind:commit="editItems" validFlag ="{{true}}">
- </dk-popup>
- <!-- 底部加号 -->
- <view style="position: fixed;bottom: 230rpx;right: 30rpx;">
- <view bind:tap="toAdd" style="background: #CAA977;border-radius: 50%;display: flex;justify-content: center;align-items: center;padding:20rpx;box-shadow: 0px 17px 22px 0px #1B365D33;">
- <van-icon name="plus" color="#FFFFFF" size="60rpx" />
- </view>
- </view>
- <!-- 底部信息 -->
- <!-- <dk-save-bottom flagTypeName="product-file-add-select" bottomClass="{{true}}" bind:submit="toClose" bind:allClean="toAdd" /> -->
|