onlinePost.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // pages/onlinePost/onlinePost.js
  2. const app = getApp()
  3. const host = app.globalData.host;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. step:1
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad: function (options) {
  15. this.init()
  16. wx.request({
  17. url: host + '/api/wx/sujectitem',
  18. success: res => {
  19. // let list = res.data.data.filter(item => item.name == options.name)
  20. console.log(res.data.data,"列表")
  21. this.setData({
  22. list: res.data.data
  23. })
  24. }
  25. })
  26. },
  27. init: function () {
  28. const query = wx.createSelectorQuery()
  29. const that = this
  30. query.select('#editor').context(function (res) {
  31. res.context.setContents({
  32. html: `<p style="text-align: center; line-height: normal;"><strong><span style="font-size: 20px;">特种作业人员操作证办理办事指南</span></strong><span style="font-size: 20px;"><br/></span></p><p style="line-height: normal;"><strong><span style="font-size: 20px;">一、特种作业操作证的办理</span></strong><span style="font-size: 20px;"><br/><strong>办理所需条件:</strong><br/>1、年满18周岁,且不超过国家法定退休年龄;</span></p><p style="line-height: normal;"><span style="font-size: 20px;">2、无妨碍从事相应特种作业的器质性心脏病、癫痫病、美尼尔氏症、眩晕症、癔病、震颤麻痹症、精神病、痴呆症以及其他疾病和生理缺陷;</span></p><p style="line-height: normal;"><span style="font-size: 20px;">3、具有初中及以上文化程度;<br/>4、具备必要的安全技术知识与技能;<br/>5、相应特种作业规定的其他条件;<br/>6、按规定接受培训、考核合格。<br/>危险化学品特种作业人员除符合前款第1项、第2项、第4项和第5项规定的条件外,应当具备高中或者相当于高中及以上文化程度。<br/></span></p><p style="line-height: normal;"><strong><span style="font-size: 20px;">办理需提交资料:</span></strong></p><p><span style="font-size: 20px;">特种作业(新办、复审、换证)办证所需资料:(可通过在线报名系统按照提示拍照提交相关资料,不用再向培训机构提交纸质资料)</span></p><p><strong><span style="font-size: 20px;">二、安全合格证的办理:</span></strong></p><p style="line-height: normal;"><strong><span style="font-size: 20px;">办事规程:</span></strong></p><p style="line-height: normal;"><span style="font-size: 20px;">申请人参加由国家、省、市应急管理部门审定的安全生产培训考核单位举办的安全生产培训班的学习培训、考核。</span></p><p style="line-height: normal;"><strong><span style="font-size: 20px;">办理需提交资料:</span></strong></p><p style="line-height: normal;"><span style="font-size: 20px;">安全培训合格证(新办、复审、换证)办证所需资料:(可通过在线报名系统按照提示拍照提交相关资料,不用再向培训机构提交纸质资料)</span><span style="font-size: 20px;"><br/></span></p><p style="line-height: normal;"><strong><span style="font-size: 20px;">备注(在线报名流程):</span></strong><span style="font-size: 20px;">在线报名成功后>管理员审核提交的资料>学员缴纳相关费用>开具发票给学员>学员在线模拟练题>通知学员培训>通知学员考试>考试通过领证</span></p><p><br/></p><p><br/></p>`
  33. })
  34. })
  35. .exec()
  36. },
  37. next:function(){
  38. this.setData({
  39. step:2
  40. })
  41. },
  42. gotoForm:function(e){
  43. console.log(e)
  44. let id = e.currentTarget.dataset.id, name = e.currentTarget.dataset.name
  45. wx.navigateTo({
  46. url: '../post/post?type=1&&s_id='+id+'&&s_name='+name,
  47. })
  48. },
  49. /**
  50. * 生命周期函数--监听页面初次渲染完成
  51. */
  52. onReady: function () {
  53. },
  54. /**
  55. * 生命周期函数--监听页面显示
  56. */
  57. onShow: function () {
  58. },
  59. /**
  60. * 生命周期函数--监听页面隐藏
  61. */
  62. onHide: function () {
  63. },
  64. /**
  65. * 生命周期函数--监听页面卸载
  66. */
  67. onUnload: function () {
  68. },
  69. /**
  70. * 页面相关事件处理函数--监听用户下拉动作
  71. */
  72. onPullDownRefresh: function () {
  73. },
  74. /**
  75. * 页面上拉触底事件的处理函数
  76. */
  77. onReachBottom: function () {
  78. },
  79. /**
  80. * 用户点击右上角分享
  81. */
  82. onShareAppMessage: function () {
  83. }
  84. })