1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <view class="wrapper">
- <view
- class="list"
- wx:for="{{[1]}}"
- wx:key="item">
- <view
- class="icon-wrap">
- <image
- src=""
- hidden="{{true}}"></image>
- <image
- src=""
- hidden="{{false}}"></image>
- </view>
- <view
- class="goods-wrap">
- <view class="photo-wrap">
- <image src=""></image>
- </view>
- <view class="info">
- <view class="name-wrap">
- <text
- class="goods-name">名字名字名字名字名字名字名字名字名字名字名字</text>
- <text
- class="partner-name"
- user-select>上三村合作社名字名字名字名字名字名字名字名字名字名字名字</text>
- <text class="price">¥12.00</text>
- </view>
- <view class="count-wrap">
- <image
- class="del"
- src=""></image>
- <text class="count">9</text>
- <image
- class="add"
- src=""></image>
- </view>
- </view>
- </view>
- </view>
- <view class="business-info">
- <view class="label">商家信息</view>
- <view
- class="value"
- bind:tap="openLocationBridge">
- <image class="icon-map" src=""></image>
- <view class="address-wrap">
- <view class="address">地址:浙江省杭州市余杭区道浙江省杭州市余杭区道浙江省杭州市余杭区道浙江省杭州市余杭区道
- </view>
- <text class="phone" user-select>12345678910</text>
- </view>
- <image class="icon-arrow" src=""></image>
- </view>
- </view>
- <view class="qrcode">
- <image src=""></image>
- </view>
- <view class="tip">长按扫码,添加微信</view>
- <button
- class="btn-business"
- type="primary"
- bind:tap="showActionSheet">点击联系
- </button>
- </view>
- <van-action-sheet
- show="{{ booShow }}"
- actions="{{ actions }}"
- cancel-text="取消"
- description="13429176706可能是一个电话号码,你可以"
- close-on-click-overlay="{{false}}"
- bind:cancel="hideActionSheet"
- bind:select="onSelect"
- />
|