| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <view class="diy-notice" :style="{ padding: itemData.style.paddingTop + 'px' + ' 10px', background: itemData.style.background }" @click="gotoPages(item)">
- <view class="notice-icon"><image :src="itemData.params.icon" mode="aspectFill"></image></view>
- <view class="notice-text flex-1 text-ellipsisss">
- <text :style="{ color: itemData.style.textColor }">{{ textData }}</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- textData:''
- };
- },
- props: ['itemData'],
- created() {
- this.textData=this.itemData.params.text;
- this.horseRaceLamp();
- },
- methods: {
-
- horseRaceLamp(){
- let self=this;
- setTimeout(function(){
- let firstWord=self.textData.slice(0,1);
- let afterWord=self.textData.slice(1,self.textData.length);
- self.textData=afterWord+firstWord;
- self.horseRaceLamp();
-
- },200);
- },
-
- /*跳转页面*/
- gotoPages(e) {
- this.gotoPage(e.linkUrl);
- }
- }
- };
- </script>
- <style>
- .diy-notice {
- margin: 20rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- border-radius: 20rpx;
- /* box-shadow: 0 0 8rpx rgba(0, 0, 0, 0.1); */
- }
- .diy-notice .notice-icon {
- width: 32px;
- height: 32px;
- }
- .diy-notice .notice-icon image {
- width: 100%;
- height: 100%;
- }
- .diy-notice .notice-text {
- overflow: hidden;
- white-space: nowrap;
- margin-left: 10px;
- }
- </style>
|