导航栏
qh.setNavigationBarTitle
解释:动态设置当前页面的标题。
方法参数: Object object
object
参数说明:
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
title | String | 是 | - | 页面标题 |
success | Function | 否 | - | 接口调用成功的回调函数 |
fail | Function | 否 | - | 接口调用失败的回调函数 |
complete | Function | 否 | - | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例:
- 在 html 文件中
<div>
<se-button type="primary" @click="setNavigationBarTitle">setNavigationBarTitle</se-button>
</div>
- 在 js 文件中
Page({
methods: {
setNavigationBarTitle(e) {
qh.setNavigationBarTitle({
title: 'newTitle'
});
}
}
});
qh.setNavigationBarColor
解释:动态设置当前页面导航条的颜色。
方法参数: Object object
object
参数说明:
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
backgroundColor | String | 是 | - | 背景颜色值,有效值为十六进制颜色。 |
success | Function | 否 | - | 接口调用成功的回调函数 |
fail | Function | 否 | - | 接口调用失败的回调函数 |
complete | Function | 否 | - | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例:
- 在 html 文件中
<div>
<se-button type="primary" @click="setNavigationBarColor">setNavigationBarColor</se-button>
</div>
- 在 js 文件中
Page({
methods: {
setNavigationBarColor() {
qh.setNavigationBarColor({
backgroundColor: '#ff0000',
success: function () {
console.log('setNavigationBarColor success');
},
fail: function (err) {
console.log('setNavigationBarColor fail', err);
}
});
}
}
});
qh.setNavigationBarTextStyle
解释:动态设置navigationBar的样式。
方法参数: Object object
object
参数说明:
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
textStyle | String | 是 | - | navigationBar的样式, 只支持white和black |
success | Function | 否 | - | 接口调用成功的回调函数 |
fail | Function | 否 | - | 接口调用失败的回调函数 |
complete | Function | 否 | - | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例:
- 在 html 文件中
<div>
<se-button type="primary" @click="setNavigationBarTextStyle">setNavigationBarTextStyle</se-button>
</div>
- 在 js 文件中
Page({
methods: {
setNavigationBarTextStyle() {
qh.setNavigationBarTextStyle({
textStyle: 'black',
success: function () {
console.log('setNavigationBarTextStyle success');
},
fail: function (err) {
console.log('setNavigationBarTextStyle fail', err);
}
});
}
}
});