|
@@ -9,7 +9,7 @@
|
|
|
<view v-for="(item,index) in listArray" :key="index" class="loop-list-item" @click="onClick(item)">
|
|
|
<view class="item-content">
|
|
|
<view class="item-title">
|
|
|
- <view class="title-line">{{ item.title }}</view>
|
|
|
+ <view class="title-line">{{ filterApplicationType(item.fklx) }}</view>
|
|
|
<view class="title-company" :class="filterApplicationBgColor(item.fkzt)">{{ filterApplicationStatus(item.fkzt) }}</view>
|
|
|
</view>
|
|
|
<view class="part-line"></view>
|
|
@@ -28,7 +28,11 @@
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import { defineProps,ref } from "vue";
|
|
|
- import { filterApplicationStatus,filterApplicationBgColor } from '@/lib/util'
|
|
|
+ import {
|
|
|
+ filterApplicationStatus,
|
|
|
+ filterApplicationType,
|
|
|
+ filterApplicationBgColor,
|
|
|
+ } from '@/lib/util'
|
|
|
|
|
|
const emit = defineEmits(['click','nextPage']) // 定义 success 事件,用于操作成功后的回调
|
|
|
// 定义 props 类型
|
|
@@ -71,7 +75,7 @@
|
|
|
margin-bottom: 24rpx;
|
|
|
border-radius: 10rpx;
|
|
|
background: #fff;
|
|
|
- padding: 30rpx 0 20rpx;
|
|
|
+ padding: 14rpx 0 20rpx;
|
|
|
.item-content {
|
|
|
.item-title{
|
|
|
padding: 0 20rpx;
|