maritime.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. Page({
  2. data: {
  3. notices: [
  4. {
  5. title: "关于加强长江干线船舶污染防治的通知",
  6. date: "2024-01-15",
  7. unit: "江苏海事局",
  8. },
  9. {
  10. title: "2024年春运期间船舶安全管理要求",
  11. date: "2024-01-10",
  12. unit: "交通运输部海事局",
  13. },
  14. {
  15. title: "关于开展内河船舶安全专项检查的通知",
  16. date: "2024-01-05",
  17. unit: "南京海事局",
  18. },
  19. ],
  20. legalOrg: {
  21. name: "江苏海事法律援助中心",
  22. photoUrl: "../../images/new-version/pic.png",
  23. introduction:
  24. "江苏海事法律援助中心成立于2010年,是专门为船东、船员提供法律服务的专业机构。中心配备了多名具有海事海商法专业背景的律师,长期从事海事纠纷处理、海事诉讼代理等业务。我们致力于为内河航运企业和个人提供优质、高效的法律服务,包括船舶买卖、租赁合同纠纷、海事事故处理、保险理赔等方面的法律咨询和援助。中心秉持公正、专业、高效的服务理念,为促进航运业健康发展贡献力量。",
  25. },
  26. aidRequest: "",
  27. },
  28. handleInputChange(e) {
  29. this.setData({
  30. aidRequest: e.detail.value,
  31. });
  32. },
  33. submitAidRequest() {
  34. if (!this.data.aidRequest.trim()) {
  35. wx.showToast({
  36. title: "请输入法律援助需求",
  37. icon: "none",
  38. });
  39. return;
  40. }
  41. // TODO: 实现提交援助请求的接口调用
  42. wx.showToast({
  43. title: "申请提交成功",
  44. icon: "success",
  45. });
  46. this.setData({
  47. aidRequest: "",
  48. });
  49. },
  50. onLoad() {
  51. // TODO: 从服务器获取海事公告列表和法律援助机构信息
  52. },
  53. onShow() {
  54. if (typeof this.getTabBar === "function" && this.getTabBar()) {
  55. this.getTabBar().setData({
  56. selected: 2,
  57. });
  58. }
  59. },
  60. });