纸通宝商家版本的小程序,原生微信开发。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

86 lines
5.1 KiB

<import src="../template/index.wxml" />
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">打包站详情</view>
</cu-custom>
<scroll-view scroll-y style="height:{{height}}rpx" wx:if="{{factoryInfo}}">
<van-cell border="{{false}}">
<view class="flex" slot="title">
<van-image use-loading-slot width="160rpx" height="160rpx" radius="4" lazy-load src="{{factoryInfo.factoryAvatarUrl}}">
<image class="image-load" slot="loading" src="/assets/image/def_image.png"></image>
</van-image>
<view style="flex:1;margin-left: 20rpx;">
<view class="flex flex-justify">
<view class="text-xl text-black text-bold">{{factoryInfo.name}}</view>
<view class="text-black text-sm">{{factoryInfo.distance}}km</view>
</view>
<view class="flex flex-center text-cut" style="justify-content: flex-start;">
<image style="height:24rpx;width:24rpx" src="/assets/icon/address.png"></image>
<text class="text-gray text-sm" style="margin-left: 8rpx;">{{factoryInfo.locDetail}}</text>
</view>
<view class="flex flex-justify text-df text-cut">
<text wx:if="{{factoryInfo.categoryProductionCapacityPerMonth}}">月出货量:{{factoryInfo.categoryProductionCapacityPerMonth}}吨</text>
<text wx:if="{{factoryInfo.recentlyShipmentsPaperMill}}">最近出货:{{factoryInfo.recentlyShipmentsPaperMill}}</text>
</view>
<view class="flex flex-justify text-df text-cut">
<text wx:if="{{factoryInfo.packageFactoryArea}}">场地面积:{{factoryInfo.packageFactoryArea}}㎡</text>
<text>打包机型号:{{factoryInfo.packerType || '- -'}}</text>
</view>
</view>
</view>
</van-cell>
<view class="bg-white" style="padding: 0rpx 32rpx 16rpx 32rpx;">
<view class="van-hairline--top"></view>
</view>
<view class="bg-white" style="padding-left: 32rpx;padding-bottom: 16rpx;">
<view class="text-sm">出货品类:</view>
<view class="flex" style="margin-top: 12rpx;">
<view class="tag" wx:for="{{factoryInfo.mainCategoryList}}" wx:key="index">{{item}}</view>
</view>
</view>
<view class="bg-white" style="padding: 0rpx 32rpx 16rpx 32rpx;" wx:if="{{factoryInfo.responsiblePersonName}}">
<view class="van-hairline--top"></view>
</view>
<view class="bg-white flex flex-center text-cut contract" wx:if="{{factoryInfo.responsiblePersonName}}">
<image style="height:24rpx;width:24rpx" src="/assets/icon/phone.png"></image>
<text class="text-df" style="margin-left: 8rpx;">联系人:{{factoryInfo.responsiblePersonName}}</text>
<text class="text-df" style="margin-left: 24rpx;">{{factoryInfo.responsiblePersonMobile || ''}}</text>
</view>
<view style="height: 20rpx;"></view>
<view class="flex flex-center bg-white" style="justify-content: flex-start;padding: 16rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">最近出货</view>
</view>
<view wx:if="{{factoryInfo.factoryList && factoryInfo.factoryList.length}}">
<view class="flex flex-center" style="padding: 24rpx 32rpx;">
<view style="width: 15%;font-size: 24rpx;color: #888888;">时间</view>
<view style="width: 28%;font-size: 24rpx;color: #888888">品类</view>
<view style="width: 17%;font-size: 24rpx;color: #888888">重量(吨)</view>
<view style="width: 25%;font-size: 24rpx;color: #888888">渠道</view>
<view style="width: 15%;font-size: 24rpx;color: #888888">扣点(%)</view>
</view>
<view class="bg-white flex flex-center" style="padding: 24rpx 32rpx;">
<view style="width: 15%;font-size: 24rpx;">1个月前</view>
<view style="width: 28%;font-size: 24rpx;">纺线管(长小管)</view>
<view style="width: 17%;font-size: 24rpx;">26.56</view>
<view style="width: 25%;font-size: 24rpx;">江门**纸厂</view>
<view style="width: 15%;font-size: 24rpx;">12.6</view>
</view>
</view>
<view class="bg-white list-empty" style="height:400rpx" wx:else>
<image class="img-empty" src="/assets/image/list_empty.png"></image>
<view class="text-empty">暂无数据</view>
</view>
<view style="height: 20rpx;"></view>
<view class="flex flex-center bg-white" style="justify-content: flex-start;padding: 16rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">周边包站</view>
</view>
<view class="bg-white list-empty" style="height:400rpx" wx:if="{{!factoryInfo.surroundingPackingFactoryList.length}}">
<image class="img-empty" src="/assets/image/list_empty.png"></image>
<view class="text-empty">暂无周边包站数据</view>
</view>
<view wx:for="{{factoryInfo.surroundingPackingFactoryList}}" wx:key="index">
<station-item item="{{item}}" type="1"></station-item>
</view>
</scroll-view>