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.
95 lines
6.0 KiB
95 lines
6.0 KiB
<!--pages/main/index.wxml-->
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">全部纸厂</view>
|
|
</cu-custom>
|
|
<view class="flex flex-justify"
|
|
style="width:100%;height:80rpx;font-size: 28px;color: rgba(0,0,0,0.65);letter-spacing: 0;padding: 0rpx 32rpx;">
|
|
<view class="text-df text-gray" style="flex:1;overflow: hidden;">纸厂名称</view>
|
|
<view class="text-df text-gray flex flex-center" style="flex:1;text-align: center" bindtap="changeSort">
|
|
<view>价格涨跌</view>
|
|
<image style="width:30rpx;height:30rpx" src="{{pximg}}"></image>
|
|
</view>
|
|
<view class="text-df text-gray" style="flex:0.8;text-align: center">纸厂排队</view>
|
|
<view class="text-df text-gray" style="flex:1;text-align:center">最近扣点</view>
|
|
</view>
|
|
<scroll-view scroll-y="true" style='height:{{height}}rpx;width:100%;background-color:white'>
|
|
<view class="img-nodata" style="height:{{height}}rpx" wx:if="{{!orderList.length}}">
|
|
<view class="load-spinner text-gray" style="margin-bottom:24px" wx:if="{{loading}}" />
|
|
<image class="onDataImg" src="/assets/info/noData.png" wx:else></image>
|
|
<view
|
|
style="font-family: PingFangSC-Medium;font-size: 40rpx;color: #000000;letter-spacing: 0;text-align: left;margin-top:30rpx">
|
|
{{loading? '正在加载' : '暂无关注'}}</view>
|
|
<view class="top-nodata-text1">可前往纸厂列表添加关注</view>
|
|
<view wx:if="{{loading==false}}" class="top-nodata-text2" id="toAttentionFactory" bindtap="toPage">添加关注</view>
|
|
</view>
|
|
<!-- <view class="bg-white" wx:else> -->
|
|
<view class="bg-white">
|
|
<view wx:for="{{orderList}}" wx:key="index" class="tableStyle">
|
|
<view class="flex flex-justify" style="border-top:2rpx solid #f3f3f3;padding: 0rpx 32rpx;" id="toFactoryDetails"
|
|
data-factoryId="{{item.paperMillId}}" catchtap="toPage">
|
|
<view class="text-df text-balck" style="flex:1">
|
|
{{item.shortName}}
|
|
<view wx:if="{{item.hasFollowed==true}}" class="yesAttention">已关注</view>
|
|
<view wx:if="{{item.hasFollowed==false}}" class="noAttention">未关注</view>
|
|
</view>
|
|
<view
|
|
class="text-df {{item.biggestFloatPrice>0?'text-red':(item.biggestFloatPrice<0?'text-green':'text-black')}}"
|
|
style="flex:1">
|
|
<text
|
|
style="margin-left:40rpx;">{{ formate.formateDrice(item.unitPrice)}}<text style="font-size: 32rpx;">{{item.biggestFloatPrice>0?'↑':(item.biggestFloatPrice<0?'↓':'')}}</text></text>
|
|
<text wx:if="{{item.biggestFloatPrice != 0}}"
|
|
style="margin-left: 12rpx;font-size:26rpx">{{ item.biggestFloatPrice > 0 ? '+' : '' }}{{ formate.formateDrice(item.biggestFloatPrice)}}</text>
|
|
</view>
|
|
<view class="text-df text-balck" style="flex:0.8;text-align: center">{{item.yesterdayTotalQuantity || 0}}辆
|
|
</view>
|
|
<view class="flex flex-center text-df text-balck" style="flex:1;text-align: center">
|
|
<view style="flex:1.5;text-align: center">
|
|
<view style="line-height:32rpx">{{formate.formateDescripe(item.minimumDeductionPoint)}}</view>
|
|
<view class="text-gray" style="font-size:24rpx;line-height:32rpx">
|
|
{{formate.substring(item.priceDate, 0, 10)}}</view>
|
|
</view>
|
|
<view class="text-df text-balck" style="flex:0.5;text-align: center" id="{{item.paperMillId}}"
|
|
catchtap="changeTable" wx:if="{{tableSgin==item.paperMillId}}">
|
|
<image style="width:28rpx;height:28rpx;" src="/assets/info/factoryUp.png"></image>
|
|
</view>
|
|
<view class="text-df text-balck" style="flex:0.5;text-align: center" id="{{item.paperMillId}}"
|
|
catchtap="changeTable" wx:if="{{tableSgin !== item.paperMillId}}">
|
|
<image style="width:28rpx;height:28rpx;" src="/assets/info/factoryDown.png"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{tableSgin==item.paperMillId}}"
|
|
style="width:100%;background-color:#f3f3f3;padding-left:10rpx;padding:10rpx 24rpx 15rpx 24rpx">
|
|
<view class="flex flex-justify" style="">
|
|
<view class="text-df text-gray" style="flex:1;text-align: center">品类</view>
|
|
<view class="text-df text-gray" style="flex:1;text-align: center">价格</view>
|
|
<view class="text-df text-gray" style="flex:1;text-align: center">涨跌</view>
|
|
<view class="text-df text-gray" style="flex:1;text-align: center">最近扣点</view>
|
|
<view class="text-df text-gray" style="flex:1;text-align: center">操作</view>
|
|
</view>
|
|
<view class="flex flex-justify" style="margin-top:20rpx" wx:for="{{ item.paperCategoryList }}"
|
|
wx:for-item="cell" wx:key="index" style="background-color:white;margin-top:10rpx">
|
|
<view class="text-df {{cell.categoryName>0?'text-red':(cell.categoryName<0?'text-green':'text-black')}}"
|
|
style="flex:1;text-align: center">{{cell.categoryName|| '---'}}</view>
|
|
<view class="text-df {{cell.floatPrice>0?'text-red':(cell.floatPrice<0?'text-green':'text-black')}}"
|
|
style="flex:1;text-align: center;">
|
|
{{formate.formatePrice(cell.unitPrice)}}<text style="font-size:32rpx">{{cell.floatPrice>0?'↑':(cell.floatPrice<0?'↓':'')}}</text></view>
|
|
<view class="text-df {{cell.floatPrice>0?'text-red':(cell.floatPrice<0?'text-green':'text-black')}}"
|
|
style="flex:1;text-align: center;font-size:26rpx">{{formate.formatePrice(cell.floatPrice)}}</view>
|
|
<view
|
|
class="text-df {{cell.curDeductionPoint>0?'text-red':(cell.curDeductionPoint<0?'text-green':'text-black')}}"
|
|
style="flex:1;text-align: center">{{cell.curDeductionPoint|| 0}}</view>
|
|
<view class="text-df text-balck" style="flex:1;text-align: center" id="toDmai"
|
|
data-fcId="{{item.paperMillId}}" data-paperId="{{cell.categoryId}}" data-operations="{{item.isOperations}}" data-msg="{{item.manageNotifyMessage}}" catchtap="toPage">
|
|
<view class="son-table-btn">代卖</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
<!-- <view class="gzBtn" id="toAttentionPaperFctory" bindtap="toPage">
|
|
<view class="gzBtnIcon"><image style="width:36rpx;height:36rpx" src="/assets/info/addgzicon.png"></image></view>
|
|
<view class="gzBtnText">关注纸厂</view>
|
|
</view> -->
|