noticeDetails.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view style="background-color: rgb(242,245,252);">
  3. <view class="customer-view clearfix">
  4. <view class="title">
  5. <!-- 【重要通知】易订货APP不在支持iOS9及9一下系统版本 -->
  6. {{list.title}}
  7. </view>
  8. <view class="time">
  9. 系统公告 {{$u.timeFormat(list.createTime, 'yyyy-mm-dd hh:MM:ss')}}
  10. </view>
  11. <view style="font-size: 28rpx;">
  12. <view>
  13. <!-- <view class="header">
  14. 尊敬的客户:
  15. </view> -->
  16. <view class="content">
  17. <!-- 苹果公司近期做了iOS上架政策调整(停止接受使用UIWebview
  18. API应用程序提交),为此易订货进行了iOS底层技术升级,升级后易订货不再支持iOS9及9以下系统版本。目前升级已完成,苹果手机用户如果手机系统版本在iOS9或者9以下,将无法正常使用易订货APP及定制APP。给您造成不便之处,敬请谅解。 -->
  19. {{list.content}}
  20. </view>
  21. </view>
  22. </view>
  23. <!-- <view class="explain">
  24. <view>
  25. <span style='font-weight: bold;'>
  26. 影响范围:
  27. </span>
  28. <span>
  29. 手机系统版本低于ios9(含9)的苹果手机用户,登录易订货APP及定制APP后会出现报错,无法正常使用APP功能。
  30. </span>
  31. </view>
  32. <view>
  33. <span style='font-weight: bold;'>
  34. 解决方案:
  35. </span>
  36. <span>
  37. 苹果手机用户将手机系统版本更新到最新,即可正常使用易订货APP。
  38. </span>
  39. </view>
  40. </view>
  41. <view class="signature">
  42. <view>
  43. 易订货
  44. </view>
  45. <view>
  46. 8月14日
  47. </view>
  48. </view> -->
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. id: '',
  57. list: []
  58. };
  59. },
  60. onLoad(options) {
  61. this.id = options.id
  62. this.getAnnouncementInfo()
  63. },
  64. methods: {
  65. getAnnouncementInfo() {
  66. this.$u.api.getAnnouncementInfo(this.id).then(res => {
  67. this.list = res.data
  68. })
  69. }
  70. }
  71. }
  72. </script>
  73. <style lang="scss" scoped>
  74. .customer-view {
  75. width: 100%;
  76. padding: 30rpx;
  77. background-color: #ffffff;
  78. .title {
  79. font-size: 36rpx;
  80. font-weight: bold;
  81. }
  82. .time {
  83. font-size: 24rpx;
  84. color: #999;
  85. margin-top: 10rpx;
  86. }
  87. .header {
  88. margin-top: 30rpx;
  89. }
  90. .content {
  91. text-indent: 2em;
  92. line-height: 50rpx;
  93. }
  94. .explain {
  95. margin-top: 60rpx;
  96. font-size: 28rpx;
  97. line-height: 50rpx;
  98. }
  99. .signature {
  100. float: right;
  101. margin-top: 90rpx;
  102. font-size: 28rpx;
  103. }
  104. }
  105. </style>