Files
sphc/pages/my/apply_after_sales/apply_after_sales.wxml
quantulr 99c82fb2a2 bug fix
2024-06-07 16:43:09 +08:00

16 lines
960 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--pages/my/apply_after_sales/apply_after_sales.wxml-->
<view>
<view wx:for="{{packages}}" wx:key="id" class="package-card">
<view wx:if="{{packages.length>1}}" data-id="{{item.id}}" bind:tap="deletePackage" style="width: 36rpx;height: 36rpx;position: absolute;top: -18rpx;right: -18rpx;background-color: red;border-radius: 50%;font-size: 36rpx;display: flex;justify-content: center;align-items: center;color: white;">×</view>
<view class="package-index">包裹{{index+1}}</view>
<text class="form-label">快递单号</text>
<input class="package-input" placeholder="请输入快递单号" />
<picker range="{{goodsNames}}" class="add-goods">
<button size="mini" type="primary">添加商品</button>
<!-- <view class="">添加商品</view> -->
</picker>
</view>
<view class="display_J_C" style="margin-top: 24rpx;">
<button size="mini" type="primary" bind:tap="addPackage">添加包裹</button>
</view>
</view>