ypzycp/pages/examinee/information/report/report.js

22 lines
303 B
JavaScript
Raw Permalink Normal View History

2022-01-17 10:27:44 +00:00
Page({
data: {
isShow: true
},
onLoad() {
dd.setNavigationBar({
title: '专业定位测评报告',
backgroundColor: '#FFFFFF',
});
},
isOpen(){
this.setData({
isShow: false
})
},
isClose(){
this.setData({
isShow: true
})
}
});