myZiyuan.vue 2.51 KB
<template>
	<view class="page">
		<view class="screen-list">
			<view class="list">
				<u-input v-model="pageindex.start" type="select" @click="typeShow = true" placeholder='状态筛选' />
			</view>
		</view>
		<!-- 记录列表 -->
		<view class="record-list">
			<view class="record-list-box" v-for="(item,index) in recordList" :key="index" @click="recordXq(item)">
				<view class="list">
					<view class="title">
						<view class="left">{{item.cereBasicInformationShop&&item.cereBasicInformationShop.shopName?item.cereBasicInformationShop.shopName:item.cereBasicInformationVenue&&item.cereBasicInformationVenue.venueName?item.cereBasicInformationVenue.venueName:item.cereAdvertisingInformation&&item.cereAdvertisingInformation.advertisingName?item.cereAdvertisingInformation.advertisingName:''}}</view>
						<view class="right"><u-icon name="arrow-rightward"></u-icon></view>
					</view>
					<view class="info-item">申请时间:{{item.applicationTime}}</view>
					<view class="info-item">状态:<span style="color: #0FBB59;">{{item.auditStatus =='1'?'待审核':item.auditStatus =='2'?'待签约':item.auditStatus =='3'?'已驳回':item.auditStatus =='4'?'已签约':'已终止'}}</span></view>
				</view>
			</view>
		</view>
		<u-select v-model="typeShow" :list="activesType" @confirm="typeChange"></u-select>
	</view>
</template>

<script>
	export default {
		data() {
			return {
			
			pageindex: {
				pageNumber: 1,
				pageSize: 10
			},
				activesType: [{
					value: 1,
					label: '租赁中'
				},
				{
					value: 2,
					label: '已终止'
				},
				],
				typeShow:false,
				recordList:[],
				pageindex: {
					pageNumber: 0,
					pageSize: 10
				},
			}
		},
		mounted(){
			this.getALL()
		},
		methods: {
			getALL(){
				this.pageindex.applicant =uni.getStorageSync('user').phone
				this.$http.sendRequest('/cereBusinessInfo/queryByPage', 'POST', this.pageindex,1).then(res => {
					//成功回调
					
					this.$http.sendRequest('/cereAdvertiserInfo/queryByPage', 'POST', this.pageindex, 1).then(item => {
					
					this.recordList =  [...res.data.data.content,...item.data.data.content]
					
					})
				})
				
			},
			recordXq(item){
			
				 const encodedItem = encodeURIComponent(JSON.stringify(item));
				uni.navigateTo({
				 url: `/pagesA/myZiyuan/myZiDetails?item=${encodedItem}`,
				 })
			},
			contractdetail(){
				// uni.navigateTo({
				
				// })
			},
			typeChange(e) {
				this.pageindex.start = e[0].label;
			},
		}
	}
</script>

<style scoped lang="scss">
	@import 'myZiyuan.scss';
</style>