1、效果展示


2、關(guān)鍵代碼
wxml代碼
<button bindtap="openSettingTap">小程序設(shè)置</button> |
js代碼
Page({
openSettingTap:function(){
wx.openSetting({
success: function(res) {
}
})
}
})
|
css代碼
button{
margin:10px;
color: white;
background: green;
}
|
3、在編寫調(diào)起客戶端小程序設(shè)置界面的過程中有任何不明白的地方,