index.wxml 1.38 KB
<!--template/operate_btn/index.wxml-->

<template name="operate_btn">
  <view style='position:fixed;bottom: 0rpx;height:140rpx;background-color:white;'>
    <view class='kg-separater' style='height:4rpx;'></view>
    <view class='kg-operate-btn-bg'>
      <button class='kg-operate-btn kg-btn-no-border' bindtap='operateTap'>{{title}}</button>
    </view>
  </view>
</template>

<!--通用的分区标题-->
<template name='section_header'>
  <view class='kg-section-header'>
    <view style='width:10rpx; height:33rpx;background-color:#f9aa76; margin-left:20rpx'></view>
    <view class='kg-text-normal-gray' style='margin-left:16rpx'>{{title}}</view>
  </view>
</template>

<template name='quantity_cell'>
  <view class='kg-flex-row '>
    <view class='g-text-normal-dark'>张小华</view>
    <!-- 输入型cell -->
    <view class='kg-flex-row' hidden="{{type != 'input'}}">
      <input class='kg-border' style='width:140rpx;margin-right:10rpx;'></input>
      <view class='kg-text-normal-gray'>{{unit}}</view>
    </view>
    <!-- 选择型cell -->
    <view class='kg-flex-row' hidden="{{type != 'select'}}">
      <view wx:for="{{options}}">
        <view class="eat_category_btn {{selectIndex == index ? 'selected' : ''}}" bindtap='tap' data-index='{{index}}' style='width: 120rpx;margin-right: 0rpx;margin-bottom: 0rpx;margin-left:20rpx;'>{{item}}</view>
      </view>
    </view>
  </view>
</template>