| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- Page({
- data: {
- notices: [
- {
- title: "关于加强长江干线船舶污染防治的通知",
- date: "2024-01-15",
- unit: "江苏海事局",
- },
- {
- title: "2024年春运期间船舶安全管理要求",
- date: "2024-01-10",
- unit: "交通运输部海事局",
- },
- {
- title: "关于开展内河船舶安全专项检查的通知",
- date: "2024-01-05",
- unit: "南京海事局",
- },
- ],
- legalOrg: {
- name: "江苏海事法律援助中心",
- photoUrl: "../../images/new-version/pic.png",
- introduction:
- "江苏海事法律援助中心成立于2010年,是专门为船东、船员提供法律服务的专业机构。中心配备了多名具有海事海商法专业背景的律师,长期从事海事纠纷处理、海事诉讼代理等业务。我们致力于为内河航运企业和个人提供优质、高效的法律服务,包括船舶买卖、租赁合同纠纷、海事事故处理、保险理赔等方面的法律咨询和援助。中心秉持公正、专业、高效的服务理念,为促进航运业健康发展贡献力量。",
- },
- aidRequest: "",
- },
- handleInputChange(e) {
- this.setData({
- aidRequest: e.detail.value,
- });
- },
- submitAidRequest() {
- if (!this.data.aidRequest.trim()) {
- wx.showToast({
- title: "请输入法律援助需求",
- icon: "none",
- });
- return;
- }
- // TODO: 实现提交援助请求的接口调用
- wx.showToast({
- title: "申请提交成功",
- icon: "success",
- });
- this.setData({
- aidRequest: "",
- });
- },
- onLoad() {
- // TODO: 从服务器获取海事公告列表和法律援助机构信息
- },
- onShow() {
- if (typeof this.getTabBar === "function" && this.getTabBar()) {
- this.getTabBar().setData({
- selected: 2,
- });
- }
- },
- });
|