You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
2.2 KiB
111 lines
2.2 KiB
// pages/look-detail/look-detail.js |
|
Page({ |
|
|
|
/** |
|
* 页面的初始数据 |
|
*/ |
|
data: { |
|
state: true, |
|
tabList: [{id:1,name:'公告信息'},{id:2,name:'成交信息'},{id:3,name:'呈现项目'}], |
|
sedTabList: [{id:4,name:'基础测算'},{id:5,name:'高级测算'}], |
|
active: 2, |
|
markShow: false, |
|
annoutInfo:{}, |
|
clinchInfo: { |
|
list: [{ |
|
lable: '是否成交', |
|
info: '是' |
|
}, |
|
{ |
|
lable: '出让方式', |
|
info: '挂牌' |
|
}, |
|
{ |
|
lable: '受让单位', |
|
info: '重庆市文杰房地产开发有限公司' |
|
}, |
|
{ |
|
lable: '企业简称', |
|
info: '重庆文杰' |
|
}, |
|
{ |
|
lable: '成交总价', |
|
info: '2100000万元' |
|
}, |
|
{ |
|
lable: '无偿移交', |
|
info: '0%' |
|
}, |
|
{ |
|
lable: '自持', |
|
info: '0%' |
|
}, |
|
{ |
|
lable: '成交楼面价', |
|
info: '4800元/m' |
|
}, |
|
{ |
|
lable: '溢价率', |
|
info: '5%' |
|
}, |
|
{ |
|
lable: '参拍企业', |
|
info: '重庆文杰、蓝光、协信、卓越、金科、龙湖、华宇、禹洲、东原' |
|
} |
|
], |
|
message: [] |
|
}, |
|
presentInfo:{}, |
|
basisInfo:{}, |
|
seniorInfo:{}, |
|
}, |
|
|
|
setMark(e){ |
|
let {markShow} = this.data |
|
if(markShow){ |
|
let active = Number(e.currentTarget.dataset.id) |
|
this.setData({state:false,markShow:false,active}) |
|
}else{ |
|
this.setData({markShow:true}) |
|
} |
|
}, |
|
|
|
tabDowm(e){ |
|
let active = Number(e.currentTarget.dataset.id) |
|
if(active!==this.data.active){ |
|
this.setData({active}) |
|
} |
|
}, |
|
|
|
comeBack(){ |
|
wx.navigateBack({ |
|
delta: 1 |
|
}) |
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面加载 |
|
*/ |
|
onLoad: function (options) { |
|
|
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面初次渲染完成 |
|
*/ |
|
onReady: function () { |
|
|
|
}, |
|
|
|
/** |
|
* 生命周期函数--监听页面显示 |
|
*/ |
|
onShow: function () { |
|
if (typeof this.getTabBar === 'function' && |
|
this.getTabBar()) { |
|
this.getTabBar().setData({ |
|
selected: 1 |
|
}) |
|
} |
|
}, |
|
}) |