diff --git a/pages/contacts/contacts.js b/pages/contacts/contacts.js
new file mode 100644
index 0000000..0e20765
--- /dev/null
+++ b/pages/contacts/contacts.js
@@ -0,0 +1,34 @@
+import UserApi from '../../assets/js/http/userApi'
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+ statusBarHeight: wx.getSystemInfoSync()['statusBarHeight'],
+ pageTitle:'联系人'
+ },
+ // 编辑联系人信息
+ editContactsInfo(e) {
+
+ },
+ goBack(){
+ wx.navigateBack()
+ },
+
+ loadData(){
+ const that = this
+ // wx.showToast({
+ // title: '加载中...',
+ // icon: 'loading'
+ // })
+ },
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad: function (options) {
+ this.data.type = options.type
+ this.loadData()
+ }
+})
+
\ No newline at end of file
diff --git a/pages/contacts/contacts.json b/pages/contacts/contacts.json
new file mode 100644
index 0000000..ced5b27
--- /dev/null
+++ b/pages/contacts/contacts.json
@@ -0,0 +1,4 @@
+{
+ "navigationStyle": "custom",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/pages/contacts/contacts.wxml b/pages/contacts/contacts.wxml
new file mode 100644
index 0000000..5d96402
--- /dev/null
+++ b/pages/contacts/contacts.wxml
@@ -0,0 +1,16 @@
+
+
+
+ {{pageTitle}}
+
+
+
+
+
+
+
+ 企业名称:
+
+
+
+
\ No newline at end of file
diff --git a/pages/contacts/contacts.wxss b/pages/contacts/contacts.wxss
new file mode 100644
index 0000000..308a7ce
--- /dev/null
+++ b/pages/contacts/contacts.wxss
@@ -0,0 +1,27 @@
+/* pages/meeting/meeting.wxss */
+page {
+ background-color: #F5F5F5;
+}
+/* 头部筛选 start */
+.select-list {
+ border-top: 0.5px solid #F5F5F5;
+ height: 40px;
+ font-size: 14px;
+ display: flex;
+ align-items: center;
+ background-color: #fff;
+}
+
+.select-item {
+ flex: 1;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.select-item image {
+ width: 11px;
+ height: 6px;
+ margin-left: 9px;
+}
+/* 头部筛选end */