123456789101112131415161718192021222324 |
- <nav type="back" background-color="#46a9a4" title="{{id?'编辑桌台':'添加桌台'}}" />
- <view class="top">
- <!-- <input bindblur="blur" type="text" class="input" data-name="name" value="{{name}}" placeholder="桌台名称"></input> -->
- <view class="top-input">
- <view class="top-txt">
- <input bindblur="blur" type="text" class="inputs" data-name="name" value="{{name}}"
- placeholder="桌台名称"></input>
- <view>名称</view>
- </view>
- <view class="top-txt">
- <input bindblur="blur" type="number" class="inputs" data-name="number" value="{{number}}"
- placeholder="桌台编号"></input>
- <view>编号</view>
- </view>
- </view>
- </view>
- <view class="goods-title">
- <view class="goods-txt">是否上架商品</view>
- <van-switch checked="{{ checked }}" bind:change="onChange" />
- </view>
- <view class="buttoms">
- <buttom class="buttoms-bottom2" bindtap="submit">提交</buttom>
- </view>
|