| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <template>
- <view class="p-t20">
- <view class="task-body m-lr20 animate__animated animate__fadeIn" v-if="taskList.length>0">
- <view class="row-c page-box-bg-fff m-b20 r-30 box-shadow-197 loan-item" v-for="(item,index) in taskList"
- :key="index">
- <view class="main_string" :style="{background:lineColor[item.product_id%3]}"></view>
- <view class="row-c flex p-30 p-t60">
- <image class="wh-80" :src="item.product_icon" mode=""></image>
- <view class="flex m-l20">
- <view class="row-justify-sb center flex">
- <text class="text-color-333 sys-weight-600">{{item.product_name}}</text>
- <view class="row-c line-40" @click.stop="makCall(item.phone)">
- <text class="size-26 text-color-333">{{item.name}}</text>
- <image class="wh-30 m-l16"
- src="https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/new-xcx/task/task-phone.png"
- mode=""></image>
- </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 sys-weight-600"
- style="line-height: 40rpx;">
- <text class="size-28 text-color-E21">{{(item.loans_money/10000).toFixed(2)}}万</text>
- <view class="">
- <text>{{item.refund_num-item.residue_num}}/{{item.refund_num}}</text><text
- class="sys-weight-400">期</text>
- </view>
- <view class="" v-if="item.status === 1">
- <text>{{(item.repayment_money*1).toFixed(2)}}</text><text
- class="sys-weight-400">元</text>
- </view>
- <text class="color-FF730E">{{(item.interest_rate*1).toFixed(2)}}%</text>
- </view>
- <view class="row-justify-sb center" v-if="item.status === 1">
- <text></text>
- <view class="row-c">
- <button
- 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" @click="onCalculate(item,1)">核算</button>
- <button
- class="button-background en_button left_button right_button sys-weight-500 button_color-008FD6 size-26 r-100"
- type="default" hover-class="is-hover"
- @click.stop="onCalculate(item,2)">客户分类</button>
- </view>
- </view>
- </view>
- <view class="accomplish-text" :class="{'unfinished':item.status === 1}">
- {{item.status === 2?'已完成':'未完成'}}
- </view>
- </view>
- </view>
- <view class="placeholder sys-list-background-color" v-if="is_bottom && taskList.length"></view>
- </view>
- <en-blank v-else></en-blank>
- </view>
- </template>
- <script>
- import EnButton from "@/components/en-utils/en-button/en-button.vue";
- import tools from "@/service/tools";
- import EnBlank from "@/components/en-utils/en-blank/en-blank.vue";
- import ClientType from "@/pages/loan/components/clientType.vue";
- export default {
- components: {
- ClientType,
- EnBlank,
- EnButton
- },
- props: {
- type: {
- type: Number,
- default: 1
- },
- taskList: {
- type: Array,
- default: () => [1]
- },
- iconStatus: {
- type: Number,
- default: 1
- },
- leftImgStatus: {
- type: Number,
- default: 0
- },
- opacity: {
- type: Number,
- default: 0
- },
- back: {
- type: Boolean,
- default: false
- },
- is_bottom: {
- type: Boolean,
- default: false
- },
- },
- data() {
- return {
- leftImg: ['task-house', 'task-business', 'task-repayment'],
- iconList: ['task-audit', 'task-do', 'task-stay'],
- lineColor: ['#EF8F27', '#DE5847', '#0FB160'],
- isAjax: false,
- item: {}
- }
- },
- methods: {
- moveHandle() {
- return false
- },
- onCalculate(item, type) {
- this.$emit('onCalculate', {
- 'item': item,
- 'type': type
- })
- },
- makCall(phone) {
- tools.makingCall(phone)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .en_button {
- border: none;
- }
- .task-body {
- height: 100%;
- }
- .left_button {
- height: 56rpx;
- color: #008FD6;
- line-height: 56rpx;
- background: #FFFFFF;
- border: 1rpx solid #008FD6;
- border-radius: 100rpx;
- }
- .right_button {}
- .placeholder {
- height: 40rpx;
- }
- .main_string {
- width: 6rpx;
- height: 60rpx;
- border-radius: 100rpx;
- background: red;
- }
- .loan-item {
- position: relative;
- }
- .accomplish-text {
- font-size: 24rpx;
- color: #00994D;
- background-color: #e7f7ef;
- padding: 6rpx 30rpx;
- line-height: 30rpx;
- border-radius: 0 30rpx 0 30rpx;
- position: absolute;
- right: 0;
- top: 0;
- }
- .unfinished {
- color: #F64646;
- background-color: #feeded;
- }
- button::after {
- border: none;
- }
- </style>
|