混凝土运输管理微信小程序、替班
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.6 KiB

2 weeks ago
  1. <template>
  2. <view class="content">
  3. <navbar title="公告详情" leftClick @leftClick="$utils.navigateBack" />
  4. <view style="margin:32rpx auto 0rpx;width:calc(100vw - 64rpx)">
  5. <view>
  6. <view style="text-indent:1em;color:#555;font-size:30rpx;font-weight:normal;line-height:1.5">
  7. {{ notifyContent }}
  8. </view>
  9. </view>
  10. <view v-if="isEmpty" class="re-empty">
  11. <view>暂无数据</view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. import navbar from '@/components/base/navbar.vue'
  18. export default {
  19. components: {
  20. navbar
  21. },
  22. name: 'BaseNotify',
  23. data() {
  24. return {
  25. isEmpty: false,
  26. notifyContent: `砼聚人平台公告
  27. 尊敬的用户
  28. 欢迎使用砼聚人平台我们致力于为混凝土行业提供专业的设备代驾服务连接企业与优秀的操作手共同推动行业发展
  29. 平台特色
  30. 1. 专业的泵车搅拌车代驾服务
  31. 2. 严格的司机资质审核
  32. 3. 完善的保险保障体系
  33. 4. 7x24小时客服支持
  34. 使用须知
  35. 请确保提供真实有效的个人信息
  36. 严格遵守平台服务协议
  37. 如遇问题请及时联系客服
  38. 我们的愿景是让行业的兄弟活得更有尊严实现工作自由度高劳动强度低收入高结算快的未来工作场景
  39. 感谢您的信任与支持
  40. 砼聚人平台
  41. 2024年1月`
  42. }
  43. },
  44. onLoad() {
  45. uni.setNavigationBarTitle({
  46. title: '平台公告'
  47. });
  48. }
  49. }
  50. </script>
  51. <style scoped lang="scss">
  52. .content {
  53. padding: 20rpx;
  54. min-height: 100vh;
  55. background-color: #f5f5f5;
  56. }
  57. .re-empty {
  58. text-align: center;
  59. padding: 100rpx 0;
  60. color: #999;
  61. font-size: 28rpx;
  62. }
  63. </style>