diff --git a/pages.json b/pages.json index b229dba..1563cc0 100644 --- a/pages.json +++ b/pages.json @@ -99,6 +99,24 @@ "navigationBarTextStyle": "black" } }, + { + "path" : "pages/common/my_message", + "style": { + "navigationBarTitleText": "我的消息", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#292929", + "navigationBarTextStyle": "white" + } + }, + { + "path" : "pages/common/sys_msg_list", + "style": { + "navigationBarTitleText": "系统消息", + "navigationStyle": "default", + "navigationBarBackgroundColor": "#292929", + "navigationBarTextStyle": "white" + } + }, { "path" : "pages/student/my/update_pass", "style": { diff --git a/pages/common/my_message.vue b/pages/common/my_message.vue new file mode 100644 index 0000000..189da0b --- /dev/null +++ b/pages/common/my_message.vue @@ -0,0 +1,209 @@ + + + + + + \ No newline at end of file diff --git a/pages/common/sys_msg_list.vue b/pages/common/sys_msg_list.vue new file mode 100644 index 0000000..48f8097 --- /dev/null +++ b/pages/common/sys_msg_list.vue @@ -0,0 +1,206 @@ + + + + + + \ No newline at end of file diff --git a/pages/market/clue/index.vue b/pages/market/clue/index.vue index ac96fa8..dfbd933 100644 --- a/pages/market/clue/index.vue +++ b/pages/market/clue/index.vue @@ -61,10 +61,10 @@ - + - + @@ -308,6 +308,22 @@ export default { await this.getList() }, + //跳转页面-我的消息 + openViewMyMessage(item) { + let user_id = item.user_id + uni.navigateTo({ + url: `/pages/common/my_message?user_id=${user_id}` + }) + }, + + //拨打电话 + dialTel(item) { + let tel = item.phone + uni.makePhoneCall({ + phoneNumber: tel + }) + }, + clue_info() { uni.navigateTo({ url: '/pages/market/clue/clue_info' diff --git a/static/images/common/yong_hu.png b/static/images/common/yong_hu.png new file mode 100644 index 0000000..82a925a Binary files /dev/null and b/static/images/common/yong_hu.png differ