| 123456789101112131415161718192021222324252627282930 | <view class="title">送货明细</view><view class="binding-box" wx:for="{{list}}" wx:key="i">	<view class="numno">		发货通知单:{{item.billno}}	</view>	<view class="product" url="#">		<view class="image">			<van-image width="100%" height="100%" fit="cover" src="{{item.cover||12321}}" 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">{{item.itemname||' --'}}</view>			<view class="row">				<text>编号:{{item.itemno || ' --'}}</text>				<text>规格:{{item.spec || ' --'}}</text>			</view>			<view class="row">				<text>型号:{{item.model || ' --'}}</text>				<text class="qty">x{{item.qty||0}}</text>			</view>		</view>	</view></view><Yl_Empty wx:if="{{list.length==0}}" />
 |