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.
68 lines
3.3 KiB
68 lines
3.3 KiB
<!--pages/process/index.wxml-->
|
|
<wxs module="formate" src="../../formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white">
|
|
<view slot="content" style="color:black;font-size:36rpx">代卖服务</view>
|
|
</cu-custom>
|
|
|
|
<scroll-view scroll-y style="height: {{height}}rpx;">
|
|
|
|
<view style="padding: 0rpx 28rpx;margin-top:24rpx">
|
|
<view class="bg-white" style="border-radius: 20rpx;padding: 24rpx 0rpx">
|
|
<van-grid column-num="4" border="{{fasle}}">
|
|
<van-grid-item url="/pages/agent/agent-list/index" text="千鸟代卖">
|
|
<van-icon slot="icon" name="/assets/agent/icon-agent.png" size="76rpx" />
|
|
</van-grid-item>
|
|
<van-grid-item url="/pages/moment/new-list/index" text="纸厂情报">
|
|
<van-icon slot="icon" name="/assets/agent/icon-index.png" size="76rpx" />
|
|
</van-grid-item>
|
|
</van-grid>
|
|
</view>
|
|
</view>
|
|
|
|
<view style="padding: 0rpx 28rpx;margin-top:24rpx">
|
|
<view class="bg-white" style="border-radius: 20rpx;padding: 24rpx 0rpx">
|
|
<view class="flex flex-justify" style="padding: 0rpx 28rpx 8rpx 28rpx">
|
|
<view class="text-black text-sg text-bold">代卖订单</view>
|
|
<view class="flex flex-center" style="padding:4rpx 0rpx 4rpx 4rpx" bindtap="agentList">
|
|
<view class="text-gray text-sm" style="margin-right:8rpx">查看全部订单</view>
|
|
<van-icon name="arrow" color="#aaa"/>
|
|
</view>
|
|
</view>
|
|
<van-grid column-num="4" border="{{fasle}}">
|
|
<van-grid-item wx:for="{{ tabList }}" wx:key="index" data-status="{{item.status}}" bind:click="agentList" text="{{item.name}}">
|
|
<van-icon slot="icon" name="{{ item.icon }}" size="76rpx" info="{{item.badge}}" />
|
|
</van-grid-item>
|
|
</van-grid>
|
|
</view>
|
|
</view>
|
|
|
|
<view style="padding: 0rpx 28rpx;margin-top:24rpx" bindtap="settlementInfo">
|
|
<view class="bg-white" style="border-radius: 20rpx;padding: 24rpx 0rpx 8rpx 0rpx">
|
|
<view class="flex flex-justify" style="padding: 0rpx 28rpx 24rpx 28rpx">
|
|
<view class="text-black text-sg text-bold">钱包</view>
|
|
<view class="flex flex-center" style="padding:4rpx 0rpx 4rpx 4rpx">
|
|
<view class="text-gray text-sm" style="margin-right:8rpx">进入钱包</view>
|
|
<van-icon name="arrow" color="#aaa"/>
|
|
</view>
|
|
</view>
|
|
<view class="flex" style="padding:0rpx 0rpx 24rpx 0rpx">
|
|
<view style="flex:1;padding:0rpx 32rpx;margin-right:12rpx">
|
|
<view class="flex flex-center" style="justify-content: flex-start">
|
|
<view style="height:24rpx;width:6rpx;background:#007AFF"></view>
|
|
<view class="text-black text-sm" style="margin-left: 12rpx">账户余额</view>
|
|
</view>
|
|
<view class="text-xxl text-bold text-price" style="margin:12rpx 0rpx">{{banlanceInfo.accountMoney}}</view>
|
|
</view>
|
|
<view style="flex:1;padding:0rpx 32rpx;margin-left:12rpx">
|
|
<view class="flex flex-center" style="justify-content: flex-start">
|
|
<view style="height:24rpx;width:6rpx;background:#FF8413"></view>
|
|
<view class="text-black text-sm" style="margin-left: 12rpx">提现中余额</view>
|
|
</view>
|
|
<view class="text-xxl text-bold text-price" style="margin:12rpx 0rpx">{{banlanceInfo.frozenMoney}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="height:24rpx;"></view>
|
|
|
|
</scroll-view>
|