diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..c3e597b
Binary files /dev/null and b/.DS_Store differ
diff --git a/assets/.DS_Store b/assets/.DS_Store
new file mode 100644
index 0000000..519cb4c
Binary files /dev/null and b/assets/.DS_Store differ
diff --git a/assets/images/.DS_Store b/assets/images/.DS_Store
new file mode 100644
index 0000000..c663786
Binary files /dev/null and b/assets/images/.DS_Store differ
diff --git a/assets/images/矩形.png b/assets/images/tab-tag.png
similarity index 100%
rename from assets/images/矩形.png
rename to assets/images/tab-tag.png
diff --git a/pages/index/index.js b/pages/index/index.js
index 21d3239..35e669a 100644
--- a/pages/index/index.js
+++ b/pages/index/index.js
@@ -4,7 +4,16 @@ const app = getApp()
Page({
data: {
-
+ active: 1,
+ tabList:[{id:1,name:'已挂牌'},{id:2,name:'拟挂牌'},{id:3,name:'土地推介'},{id:4,name:'报告'},{id:5,name:'研究'}],
+ list:[
+ {title:'CQ210003-九龙坡区大桥石S区十组245-2',timer:'2021/01/01',state:1},
+ {title:'CQ210003-九龙坡区大桥石S区十组245-2',timer:'2021/01/01',state:2},
+ {title:'CQ210003-九龙坡区大桥石S区十组245-2',timer:'2021/01/01',state:3},
+ {title:'CQ210003-九龙坡区大桥石S区十组245-2',timer:'2021/01/01',state:2},
+ {title:'CQ210003-九龙坡区大桥石S区十组245-2',timer:'2021/01/01',state:3},
+ {title:'CQ210003-九龙坡区大桥石S区十组245-2',timer:'2021/01/01',state:1},
+ ],
},
onShow(){
if (typeof this.getTabBar === 'function' &&
@@ -13,5 +22,11 @@ Page({
selected: 2
})
}
+ },
+ tabDowm(e){
+ let active = e.currentTarget.dataset.id
+ if(active!==this.data.active){
+ this.setData({active})
+ }
}
})
diff --git a/pages/index/index.wxml b/pages/index/index.wxml
index 7514239..7a219cb 100644
--- a/pages/index/index.wxml
+++ b/pages/index/index.wxml
@@ -1,4 +1,49 @@
+
+ var setTag = function(state) {
+ var obj = {}
+ if(state===1){
+ obj = {
+ sname:'ycj',
+ text:'已成交'
+ }
+ }else if(state===2){
+ obj = {
+ sname:'wcj',
+ text:'未成交'
+ }
+ }else{
+ obj = {
+ sname:'gsz',
+ text:'公示中'
+ }
+ }
+ return obj
+ };
+ module.exports = {setTag:setTag};
+
-
+
+
+
+ {{item.name}}
+
+
+
+
+
+
+
+
+ {{item.title}}
+
+
+ {{filter.setTag(item.state).text}}
+
+
+ 挂牌日期:{{item.timer}}
+
+
+
+
\ No newline at end of file
diff --git a/pages/index/index.wxss b/pages/index/index.wxss
index eb64203..6f90013 100644
--- a/pages/index/index.wxss
+++ b/pages/index/index.wxss
@@ -1,19 +1,102 @@
/**index.wxss**/
-.userinfo {
+.main{
+ padding-bottom: 0;
+}
+
+.tab{
+ display: flex;
+ justify-content: space-between;
+ padding: 30rpx;
+}
+
+.tab-item{
display: flex;
flex-direction: column;
align-items: center;
- color: #aaa;
}
-.userinfo-avatar {
- overflow: hidden;
- width: 128rpx;
- height: 128rpx;
- margin: 20rpx;
- border-radius: 50%;
+.tab-title{
+ font-size: 30rpx;
+ font-weight: bold;
+ color: #565A6B;
+}
+
+.tab-tag{
+ width: 44rpx;
+ height: 10rpx;
+ display: none;
+}
+
+.active .tab-title{
+ font-size: 34rpx;
+ font-weight: bold;
+ color: #262936;
+}
+
+.active .tab-tag{
+ display: block;
+}
+
+.list{
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ align-items: center ;
+}
+
+.list-item{
+ width: 688rpx;
+ height: 208rpx;
+ background: #FFFFFF;
+ box-shadow: 0 2rpx 23rpx 0 rgba(191, 191, 191, 0.15);
+ border-radius: 18rpx;
+ margin-bottom: 24rpx;
+ padding: 30rpx;
+ box-sizing: border-box;
+}
+
+.list-info{
+ display: flex;
+ justify-content: space-between;
+}
+
+.list-title{
+ max-width: 488rpx;
+ font-size: 33rpx;
+ color: #262936;
+ line-height: 47rpx;
+}
+
+.list-tag{
+ width: 89rpx;
+ height: 34rpx;
+ line-height: 34rpx;
+ border-radius: 4rpx;
+ font-size: 22rpx;
+ font-weight: bold;
+ color: #FFFFFF;
+ margin-top: 10rpx;
+}
+
+.ycj{
+ background-color: #FF652F;
+}
+
+.wcj{
+ background-color: #666A7A;
+}
+
+.gsz{
+ background-color: #02D775;
+}
+
+.list-timer{
+ margin-top: 10rpx;
+ font-size: 26rpx;
+ color: #838B99;
}
-.usermotto {
- margin-top: 200px;
+.bottom{
+ width: 688rpx;
+ height: 208rpx;
}
\ No newline at end of file
diff --git a/project.config.json b/project.config.json
index 7adec4a..6190b7f 100644
--- a/project.config.json
+++ b/project.config.json
@@ -30,6 +30,7 @@
"outputPath": ""
},
"enableEngineNative": false,
+ "bundle": false,
"useIsolateContext": true,
"useCompilerModule": true,
"userConfirmedUseCompilerModuleSwitch": false,
diff --git a/project.private.config.json b/project.private.config.json
index 7c0f7f8..8e26ba2 100644
--- a/project.private.config.json
+++ b/project.private.config.json
@@ -23,6 +23,12 @@
"pathName": "pages/message/message",
"query": "",
"scene": null
+ },
+ {
+ "name": "AIR",
+ "pathName": "pages/index/index",
+ "query": "",
+ "scene": null
}
]
}