Initial Commit

This commit is contained in:
unknown
2021-04-08 11:46:50 +08:00
commit ac3446f881
492 changed files with 15301 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<view>
<view wx:if="{{show}}" class="goeasy-custom-message">
<view class="custom-message-box">
<view class="goeasy-custom-message-title">发送订单</view>
<view class="content">
<view>
<view class="order-item">编号:</view>
<view class="order-item">商品:</view>
<view class="order-item">金额:</view>
</view>
<view>
<view class="order-input">
<input class="input" type="text" bindinput="setNumber" maxlength="20"/>
</view>
<view class="order-input">
<input class="input" type="text" bindinput="setGoods" maxlength="20"/>
</view>
<view class="order-input">
<input class="input" type="text" bindinput="setPrice" maxlength="10" />
</view>
<view class="action-btn">
<view class="cancel-btn" bindtap="close">取消</view>
<view class="send-btn" bindtap="createCustomMessage">发送</view>
</view>
</view>
</view>
</view>
</view>
</view>