| 12345678910111213141516171819202122232425262728293031 | <view class="title">装箱明细</view><view class="binding-box" wx:for="{{list}}" wx:key="sa_logistics_boxid">	<view class="boxnum">		箱码:{{item.boxnum}}	</view>	<block wx:for="{{item.logisticsBox}}" wx:for-item="it" wx:for-index="i" wx:key="i">		<view class="numno">			订货单:{{it.billno}}		</view>		<view class="product" url="#">			<view class="image">				<van-image width="100%" height="100%" fit="cover" src="{{it.attinfos[0].subfiles[0].url}}" use-loading-slot use-error-slot lazy-load>					<van-loading slot="loading" type="spinner" size="20" vertical />					<text slot="error">加载失败</text>				</van-image>			</view>			<view class="content">				<view class="content-title">{{it.itemname||' --'}}</view>				<view class="row">					<text>编号:{{it.itemno || ' --'}}</text>					<text>规格:{{it.spec || ' --'}}</text>				</view>				<view class="row">					<text>型号:{{it.model || ' --'}}</text>					<text class="qty">x{{it.qty||0}}</text>				</view>			</view>		</view>	</block></view><Yl_Empty wx:if="{{list.length==0}}" />
 |