<template>
|
|
<view class="se-p-20">
|
|
<view class="se-p-20 se-bgc-white se-br-20 se-mb-20" v-for="(items,indexs) in list" :key="indexs">
|
|
<view class="se-flex se-flex-h">
|
|
<image class="se-a-80" src="../../static/image/6588.png" mode=""></image>
|
|
<view class="se-flex se-flex-v se-ml-30">
|
|
<text class="se-fs-28 se-c-black">天越翔园 4室2厅 66.45㎡ </text>
|
|
<view class="se-flex se-flex-ai-c se-pt-10">
|
|
<text class="se-c-red se-fs-30 se-fw-6">450万</text>
|
|
<text class="se-c-66 se-fs-22 se-ml-20">罗湖 莲塘</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="se-c-black se-fs-26 se-lh-40 se-pt-20">
|
|
<!-- 三层复试,中空挑高,厅出大阳台,使用率超高,天越翔园 -->
|
|
{{items.title}}
|
|
</view>
|
|
<view class="se-br-10 se-py-20">
|
|
<image class="se-br-10 se-w-p-100 se-h-360" :src="items.image" mode=""></image>
|
|
<!-- <video class="se-br-10 se-w-p-100 se-h-360" src="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4" controls></video> -->
|
|
</view>
|
|
<view class="se-bgc-f5 se-br-10 se-py-20 se-px-10 se-c-black se-fs-24 se-flex se-flex-ai-c">
|
|
<image class="se-a-30 se-br-p-50" src="../../static/image/6588.png" mode=""></image>
|
|
<text class="se-ml-10 se-fw-6">程敏</text>
|
|
</view>
|
|
</view>
|
|
<view class="se-pos-fixed se-pos-rc" style="right: 30rpx;">
|
|
<image @click="onNavigator()" class="se-a-150" src="@/static/image/discover.png" mode=""></image>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { commonIndexFindPageList,commonIndexFindDetail } from "@/common/api.js"
|
|
export default{
|
|
data(){
|
|
return{
|
|
classId:null,
|
|
pageNo:1,
|
|
pageSize:10,
|
|
list:[]
|
|
}
|
|
},
|
|
mounted() {
|
|
this.onCommonIndexFindPageList()
|
|
},
|
|
onPullDownRefresh() {
|
|
let that = this
|
|
that.pageNo = 1
|
|
that.list = []
|
|
that.onCommonIndexFindPageList()
|
|
},
|
|
onReachBottom() {
|
|
let that = this
|
|
that.pageNo = that.pageNo + 1
|
|
that.onCommonIndexFindPageList()
|
|
},
|
|
methods:{
|
|
onNavigator(){
|
|
uni.navigateTo({
|
|
url:"/pages_subpack/release/index"
|
|
})
|
|
},
|
|
onCommonIndexFindPageList(){
|
|
let that = this
|
|
let params={
|
|
classId:that.classId,
|
|
pageNo:that.pageNo,
|
|
pageSize:that.pageSize
|
|
}
|
|
commonIndexFindPageList(params).then((response) => {
|
|
console.info("responseindexsindexsindexs",response.result.records)
|
|
|
|
console.info('response.resultindexsindexsindexs',response.result.records)
|
|
that.list = that.list.concat(response.result.records)
|
|
}).catch((error) =>{
|
|
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
page{
|
|
background-color: #f5f5f5;
|
|
}
|
|
</style>
|