import route_util from '../../../utils/route_util.js'; import route_constant from '../../../utils/route_constant.js'; Page({ data: { nvabarData: { showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示 title: '关于我们', //导航栏 中间的标题 }, }, go(e) { var param = '?type=' + e.currentTarget.dataset.index; route_util.jumpParam(route_constant.aboutInfo, param); }, })