修复安卓机上定位出现bug得问题

修复安卓机上定位出现bug得问题,以及添加投诉模块
parent 65ae9605
...@@ -15,6 +15,11 @@ ...@@ -15,6 +15,11 @@
"navigationBarTitleText": "方正服务中心", "navigationBarTitleText": "方正服务中心",
"navigationBarTextStyle": "black" "navigationBarTextStyle": "black"
}, },
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"tabBar": { "tabBar": {
"color": "#333", "color": "#333",
"borderStyle": "white", "borderStyle": "white",
......
...@@ -10,6 +10,11 @@ Page({ ...@@ -10,6 +10,11 @@ Page({
url: 'call/call' url: 'call/call'
}) })
}, },
toProposalJsp: function () {
wx.navigateTo({
url: 'proposal/proposal'
})
},
toUseragree:function(){ toUseragree:function(){
wx.navigateTo({ wx.navigateTo({
url: 'useragree/useragree' url: 'useragree/useragree'
......
...@@ -9,6 +9,12 @@ ...@@ -9,6 +9,12 @@
<text class='news'>联系我们</text> <text class='news'>联系我们</text>
<icon class="fa fa-angle-right right"></icon> <icon class="fa fa-angle-right right"></icon>
</view> </view>
<button class="zdy-btn-j" open-type="contact" session-from='{"kefu":["{{3045}}"],"nickName":"{{userInfo.nickName}}","avatarUrl":"{{userInfo.avatarUrl}}"}'>
<view class="cnxw pd">
<text class='news'>建议投诉</text>
<icon class="fa fa-angle-right right"></icon>
</view>
</button>
<view class="cnxw pd" bindtap="toUseragree"> <view class="cnxw pd" bindtap="toUseragree">
<text class='news'>用户协议</text> <text class='news'>用户协议</text>
<icon class="fa fa-angle-right right"></icon> <icon class="fa fa-angle-right right"></icon>
......
...@@ -12,4 +12,5 @@ page { background-color: #F6F6F6; } ...@@ -12,4 +12,5 @@ page { background-color: #F6F6F6; }
.cnxw .right { .cnxw .right {
line-height: 50px; line-height: 50px;
} }
.zdybtn{width:100%;height:36px;line-height:36px;position: fixed;bottom: 10px;background: red;} .zdybtn{width:100%;height:36px;line-height:36px;position: fixed;bottom: 10px;background: red;}
\ No newline at end of file .zdy-btn-j{padding:0;text-align: left;}
\ No newline at end of file
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})
\ No newline at end of file
{
"navigationBarTitleText": "建议投诉"
}
\ No newline at end of file
<view class="call">
<view class="call-line">
<view class="call-icon">
<icon class="fa fa-qq relative"></icon>
</view>
<text class='call-text' selectable="true">736072668</text>
</view>
<view class="call-line">
<view class="call-icon">
<icon class="fa fa-envelope-o relative"></icon>
</view>
<text class='call-text' selectable="true">cao_peng@FOUNDER.COM.CN</text>
</view>
<view class="call-line">
<view class="call-icon">
<icon class="fa fa-phone relative"></icon>
</view>
<text class='call-text' selectable="true">15129457465</text>
</view>
</view>
\ No newline at end of file
@import '../../wxss/font-awesome.min.wxss';
@import '../../wxss/fontclass.wxss';
page { background-color: #F6F6F6; }
.call{background:#fff;width:95%;margin:5px auto;box-shadow: 0px 5px 5px #ccc;}
.call-line{height:60px;line-height:60px;border-bottom:1px solid #F6F6F6;}
.call-icon{width:35px;height:35px;border-radius: 50%;display:inline-block;border:1px solid #f6f6f6;text-align: center;line-height:30px;margin:5px;color:#0E75C1;}
.relative{position: relative;top:-2px;}
.call-text{float:right;display: inline-block;width:72%;padding-right:10px;text-align: right;font-size:14px;}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment