receiptRegistrationList.vue 2.12 KB
<template>
	<view>
		<view>
			<view v-for="(item, index) in list" :key="index" class="top-box" @click="gopath('/pages/receiptRegistration/receiptRegistrationDetail?item=' +JSON.stringify(item))">
				<view>{{item.chiAdoptCaseRegistrationPo.reportTime}}<span style="margin-left: 20rpx;color: #547DFF;">{{item.chiAdoptCaseFlowExecuteNodeHistoryList[item.chiAdoptCaseFlowExecuteNodeHistoryList.length-1].approvalStatus}}</span></view>
				<view class="top-box-img">
					<image src="../../static/right2.png" mode="widthFix"></image>
				</view>
			</view>
		</view>
		<view v-if="list.length == 0" style="width: 100%;text-align: center;margin-top: 100rpx;font-size: 30rpx;">
			暂无数据
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				form:{
					userId:uni.getStorageSync('USERS_KEY').userId,
				},
				list:[]
			}
		},
		onLoad() {
			this.getHistory();
		},
		methods: {
			gopath(e) {
				uni.navigateTo({
					url: e
				})
			},
			getHistory(){
				this.API.getHistory(this.form).then(res => {
					if (res.code == 200) {
						this.list = res.data;
					}
				})
				
			}
		}
	}
</script>

<style lang="scss">
	.top-box {
		display: flex;
		justify-content: space-between;
		margin: 30rpx;
		font-size: 28rpx;
		font-weight: bold;
		background-color: #fff;
		border-radius: 21rpx;
		padding: 30rpx;
	
		.top-box-img {
			image {
				width: 30rpx;
				// height: 40rpx;
			}
		}
	}
	.content{
		padding: 20rpx;
		.box_item{
			background-color: #fff;
			display: flex;
			padding: 20rpx 40rpx;
			border-radius: 20rpx;
			align-items: center;
			.box_left{
				display: flex;
				flex-direction: column;
				justify-content: space-between;
				width: 58%;
				margin-right: 2%;
				.f1{
					font-size: 35rpx;
					font-weight: 600;
					display: block;
					margin-bottom: 20rpx;
				}
				.f2{
					color: #ababab;
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 1;
					overflow: hidden;
				}
			}
			.box_right{
				width: 40%;
				text-align: right;
			}
		}
	}
</style>