an-notice-bar.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view>
  3. <view class="an-notice-box">
  4. <view class="an-notice-l">
  5. <view class="iconfont icon-gonggao"></view>
  6. </view>
  7. <scroll-view class="an-notice-content">
  8. <swiper v-if="show" class="swiper" :autoplay="true" :interval="switchTime*1000" :duration="1500" :circular="true" :vertical="true">
  9. <swiper-item v-for="(item, index) in list" :key="index" class="an-notice-content-item">
  10. <view class="swiper-item">
  11. <view class="an-notice-content-item-text" :style="'color: '+color+';'">
  12. <!-- <text v-if="list.length > 1 || showSerial">{{index+1+'. '}}</text>-->
  13. <!-- 【{{item.author}}】 -->
  14. <view style="width: 85%;" @tap="$openrul('/src/pages/mine/notice/noticeDetail/index?id=' + item.id)">{{item.notice_title}}</view>
  15. </view>
  16. </view>
  17. </swiper-item>
  18. </swiper>
  19. </scroll-view>
  20. <!-- <view class="an-notice-content">
  21. <view v-for="(text, index) in list" :key="index" v-if="number == index" class="an-notice-content-item" :style="'animation: anotice '+switchTime+'s linear;'">
  22. <text class="an-notice-content-item-text" :style="'color: '+color+';'">
  23. <text v-if="showSerial">{{index+1+'. '}}</text>
  24. {{text}}
  25. </text>
  26. </view>
  27. </view> -->
  28. <view class="an-notice-more" @tap="$openrul('/src/pages/mine/notice/index')">
  29. <text class="an-notice-more-l">全部</text><view>></view>
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import uniIcons from '../uni-icon/uni-icon.vue'
  36. export default {
  37. components: {
  38. uniIcons
  39. },
  40. props:{
  41. message_list:{},
  42. color: {
  43. type: String,
  44. default: '#000'
  45. },
  46. bgColor: {
  47. type: String,
  48. default: '#fff'
  49. },
  50. switchTime: {
  51. type: Number,
  52. default: 3
  53. },
  54. showSerial: {
  55. type: Boolean,
  56. default: false
  57. }
  58. },
  59. data() {
  60. return {
  61. number: 0,
  62. list: this.message_list,
  63. copyText: '',
  64. show: '',
  65. };
  66. },
  67. mounted() {
  68. this.show = true;
  69. },
  70. watch: {
  71. message_list(){
  72. this.list=this.message_list
  73. }
  74. },
  75. methods: {
  76. more(){
  77. this.show = false;
  78. this.$emit('more')
  79. }
  80. }
  81. }
  82. </script>
  83. <style>
  84. .swiper{
  85. height: 60upx!important;
  86. }
  87. .an-notice-box{
  88. width: 94%;
  89. padding: 6px 12px;
  90. overflow: hidden;
  91. display: flex;
  92. justify-content: flex-start;
  93. }
  94. .an-notice-box .an-notice-l{
  95. display: flex;
  96. align-items: center;
  97. }
  98. .an-notice-box .iconfont{
  99. color: #3c7bfc;
  100. font-size: 21px;
  101. margin-top: -1px;
  102. margin-right: 2px;
  103. }
  104. .an-notice-box .an-notice-l-title {
  105. font-size: 17px;
  106. color: #fdd100;
  107. font-weight: bold;
  108. font-style: italic;
  109. margin-bottom: 2px;
  110. }
  111. .an-notice-icon{
  112. width: 60upx;
  113. height: 60upx;
  114. line-height: 50upx;
  115. text-align: center;
  116. position: relative;
  117. }
  118. .an-notice-content{
  119. width: calc(100% - 220upx);
  120. position: relative;
  121. font-size: 14px;
  122. padding-left: 6px;
  123. flex: 1;
  124. }
  125. .an-notice-content-item{
  126. width: 100%;
  127. height: 60upx;
  128. text-align: left;
  129. line-height: 60upx;
  130. }
  131. .an-notice-content-item-text{
  132. width: 96%;
  133. display: block;
  134. white-space: nowrap;
  135. text-overflow: ellipsis;
  136. overflow: hidden;
  137. }
  138. .an-notice-more {
  139. font-size: 13px;
  140. color: #b7b7b7;
  141. text-align: center;
  142. display: flex;
  143. align-items: center;
  144. }
  145. .an-notice-more-l{
  146. text-decoration: underline;
  147. margin-right: 3px;
  148. }
  149. @keyframes anotice {
  150. 0% {transform: translateY(100%);}
  151. 30% {transform: translateY(0);}
  152. 70% {transform: translateY(0);}
  153. 100% {transform: translateY(-100%);}
  154. }
  155. </style>