| | |
| | | </view> |
| | | |
| | | <!-- 没有记录 --> |
| | | <view class="none-data-box" v-if="listData.length == 0 && !loading"> |
| | | <image src="/static/none.png" mode="widthFix"></image> |
| | | <view class="none-data-box" v-if="listData.length==0 && !loading"> |
| | | <image :src="remoteImg('no_thing')" mode="widthFix"></image> |
| | | <text>暂无数据</text> |
| | | </view> |
| | | </scroll-view> |
| | |
| | | latitude:'', |
| | | is_previewing:false, |
| | | activityDetail: [], |
| | | words: {}, |
| | | }; |
| | | }, |
| | | computed: {}, |
| | |
| | | activity_id: self.activity_id, |
| | | }, |
| | | function (res) { |
| | | self.words = res.data.words; |
| | | self.listData = res.data.list; |
| | | self.cart_total_num = res.data.cart_total_num; |
| | | self.activityDetail = res.data.activityDetail; |
| | | uni.hideLoading(); |
| | | /*设置标题*/ |
| | | uni.setNavigationBarTitle({ |
| | | title: self.words.activity_shopping.value |
| | | }); |
| | | self.loading = false; |
| | | } |
| | | ); |