<!-- 举报指南 --> <template> <view class="supervisor"> <image src="http://111.198.10.15:11604/png/back_ts.png" style="position:absolute;top: -4rpx;left: 0;z-index: -999; width:100%;height: 460rpx;"></image> <view class="title">申请流程</view> <!-- 1 --> <view class="first"> <!-- <image :src="back1" style="width:100%;height: 360rpx;"></image> --> <view class="process-title"> <text style="font-size: 46rpx;margin-right: 20rpx;">①</text> <text>申报资料填写</text> </view> <view class="content"> 请前往官方网站下载,填写申请表 </view> </view> <!-- 2 --> <view class="second first"> <view class="process-title"> <text style="font-size: 46rpx;margin-right: 20rpx;">②</text> <text>当地组织报备</text> </view> <view class="content"> <!-- 请将申报表提交所在组织(所在地网信办或所属组织)报备、审查 --> 请将申报表提交所在组织报备、审查 </view> </view> <!-- 3 --> <view class="third second"> <view class="process-title"> <text style="font-size: 46rpx;margin-right: 20rpx;">③</text> <text>组织审核</text> </view> <view class="content"> <!-- 等待自治区网信办审核通过 --> 等待审核通过 </view> </view> </view> </template> <script> export default { data() { return { back1: 'http://111.198.10.15:11604/png/back3.png', back2: 'http://111.198.10.15:11604/png/back2.png', back3: 'http://111.198.10.15:11604/png/back3.png', } }, mounted(){ uni.showShareMenu({ withShareTicket: true, menus: ["shareAppMessage", "shareTimeline"] }); }, //分享好友 onShareAppMessage() { return { title: '新疆网络举报', imageUrl: '@/static/share.png', }; }, //分享朋友圈 onShareTimeline() { return { title: '新疆网络举报', } }, } </script> <style lang="scss" scoped> .supervisor { padding: 40rpx; .title { color: #fff; font-size: 44rpx; font-weight: 600; } .process-title { display: flex; align-items: center; font-size: 40rpx; color: #3b84f5; font-weight: 600; letter-spacing: 2rpx; } .first { margin-top: 100rpx; width: 100%; height: 360rpx; background: url('http://111.198.10.15:11604/png/back3.png') no-repeat center; background-size: contain; padding: 60rpx 32rpx; box-sizing: border-box; .content { color: #3b84f5; text-align: center; margin-top: 68rpx; } } .second { width: 100%; height: 460rpx; background: url('http://111.198.10.15:11604/png/back2.png') no-repeat center; background-size: contain; margin-top: -94rpx; color: #343333; .content { color: #4b4e54; text-align: center; margin-top: 32rpx; } .process-title { color: #343333; margin-top: 86rpx; } } .third { width: 100%; height: 460rpx; background: url('http://111.198.10.15:11604/png/back1.png') no-repeat center; background-size: contain; margin-top: -146rpx; color: #343333; box-sizing: border-box; padding: 60rpx 32rpx; .content { margin-top: 54rpx; color: #4b4e54; } } } </style>