quanwei
2 days ago 04102f7237efefa744090ed7c25f7b5d0807b679
mobile/pages/branch/activity/product/index.vue
@@ -35,8 +35,8 @@
            </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>
@@ -82,6 +82,7 @@
         latitude:'',
         is_previewing:false,
         activityDetail: [],
         words: {},
      };
   },
   computed: {},
@@ -130,10 +131,15 @@
               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;
            }
         );