|
@@ -1,32 +1,35 @@
|
|
|
<template>
|
|
<template>
|
|
|
<view>
|
|
<view>
|
|
|
<view class="task-body m-20">
|
|
<view class="task-body m-20">
|
|
|
- <view class="row-c page-box-bg-fff m-b20 r-30 p-30 box-shadow-197" v-for="(item,index) in 10" :key="index"
|
|
|
|
|
|
|
+ <view class="row-c page-box-bg-fff m-b20 r-30 p-30 box-shadow-197" v-for="(item,index) in taskList" :key="index"
|
|
|
@click="onTaskDetails(item)">
|
|
@click="onTaskDetails(item)">
|
|
|
- <image class="wh-80" :src="getLeftImg(leftImg)" mode=""></image>
|
|
|
|
|
|
|
+ <image class="wh-80" :src="item.product_icon" mode=""></image>
|
|
|
<view class="flex m-l20">
|
|
<view class="flex m-l20">
|
|
|
<view class="row-justify-sb center flex">
|
|
<view class="row-justify-sb center flex">
|
|
|
- <text class="text-color-333 sys-weight-600">垫资还款</text>
|
|
|
|
|
|
|
+ <text class="text-color-333 sys-weight-600">{{item.product_name}}</text>
|
|
|
<view class="row-c line-40">
|
|
<view class="row-c line-40">
|
|
|
- <text class="size-26 text-color-333">刘芳芳{{index}}</text>
|
|
|
|
|
|
|
+ <text class="size-26 text-color-333">{{item.name}}</text>
|
|
|
<image class="wh-30 m-l16" src="/static/img/task/task-phone.png" mode=""></image>
|
|
<image class="wh-30 m-l16" src="/static/img/task/task-phone.png" mode=""></image>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view
|
|
<view
|
|
|
class="p-tb14 p-lr30 m-tb20 r-100 row-justify-sb center size-24 text-color-12 sys-from-background-color"
|
|
class="p-tb14 p-lr30 m-tb20 r-100 row-justify-sb center size-24 text-color-12 sys-from-background-color"
|
|
|
style="line-height: 40rpx;">
|
|
style="line-height: 40rpx;">
|
|
|
- <text class="size-28 text-color-E21 sys-weight-600">120万</text>
|
|
|
|
|
- <text>初审</text>
|
|
|
|
|
- <text>2024/12/24用款</text>
|
|
|
|
|
|
|
+ <text class="size-28 text-color-E21 sys-weight-600">{{item.quota}}万</text>
|
|
|
|
|
+ <text>{{item.stage_name}}</text>
|
|
|
|
|
+ <text>{{item.use_date}}用款</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="row-justify-sb center" style="line-height: 40rpx;">
|
|
<view class="row-justify-sb center" style="line-height: 40rpx;">
|
|
|
- <text class="size-24 text-color-999 flex">2024.10.11 12:45</text>
|
|
|
|
|
- <image style="width: 65rpx;height: 32rpx;" :src="getIconStatus(iconStatus)" v-if="type == 1">
|
|
|
|
|
|
|
+ <text class="size-24 text-color-999 flex">{{item.created_date}}</text>
|
|
|
|
|
+ <image style="width: 65rpx;height: 32rpx;" :src="getIconStatus(iconStatus)" v-if="type === 1">
|
|
|
</image>
|
|
</image>
|
|
|
<button class="button-background en_button sys-weight-500 text-color-fff size-28 r-100"
|
|
<button class="button-background en_button sys-weight-500 text-color-fff size-28 r-100"
|
|
|
style="width: 200rpx;height: 70rpx;line-height: 70rpx;" type="default"
|
|
style="width: 200rpx;height: 70rpx;line-height: 70rpx;" type="default"
|
|
|
- hover-class="is-hover" v-if="type == 2">领取任务</button>
|
|
|
|
|
- <view class="row-c" v-if="type == 3">
|
|
|
|
|
|
|
+ hover-class="is-hover" v-else-if="type === 2">领取任务</button>
|
|
|
|
|
+ <button class="button-background en_button sys-weight-500 text-color-fff size-28 r-100"
|
|
|
|
|
+ style="width: 200rpx;height: 70rpx;line-height: 70rpx;" type="default"
|
|
|
|
|
+ hover-class="is-hover" v-else-if="type === 4">去处理</button>
|
|
|
|
|
+ <view class="row-c" v-else-if="type === 3">
|
|
|
<button
|
|
<button
|
|
|
class="button-backgroun en_buttond left_button sys-weight-500 button_color-008FD6 size-26 r-100 m-r20"
|
|
class="button-backgroun en_buttond left_button sys-weight-500 button_color-008FD6 size-26 r-100 m-r20"
|
|
|
type="default" hover-class="is-hover">核算</button>
|
|
type="default" hover-class="is-hover">核算</button>
|