|
|
|
@ -53,7 +53,7 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view v-if="curTab == 'device'"> |
|
|
|
<view class="flex-col section_3" v-for="(item, index) in deviceList" :key="index" @click="go2('device-info', { id: item.id })"> |
|
|
|
<view class="flex-col section_3" v-for="(item, index) in deviceList" :key="index" @click="go2('device-info', { id: item.id, operation: 'info' })"> |
|
|
|
<image mode="aspectFit" @click.stop="preview(item)" :src="item.imgItemList[0].url" class="image_5" /> |
|
|
|
<view class="flex-col"> |
|
|
|
<view class="justify-between group_13"> |
|
|
|
@ -67,7 +67,12 @@ |
|
|
|
</view> |
|
|
|
<view v-if="curTab == 'production'"> |
|
|
|
<view class="grid"> |
|
|
|
<view class="flex-col grid-item" v-for="production in productionList" :key="production.id" @click="go2('production-info', { id: production.id })"> |
|
|
|
<view |
|
|
|
class="flex-col grid-item" |
|
|
|
v-for="production in productionList" |
|
|
|
:key="production.id" |
|
|
|
@click="go2('production-info', { id: production.id, operation: 'info' })" |
|
|
|
> |
|
|
|
<text>{{ production.name }}</text> |
|
|
|
<image mode="aspectFit" :src="production.imgItemList[0].url" class="image_7" /> |
|
|
|
</view> |
|
|
|
@ -78,7 +83,7 @@ |
|
|
|
<view class="group_13"> |
|
|
|
<text class="text_8">{{ item.name }}</text> |
|
|
|
</view> |
|
|
|
<image mode="aspectFit" @click.stop="preview(item)" :src="item.pictureUrl" class="image_5" /> |
|
|
|
<image mode="aspectFit" :src="item.pictureUrl" class="image_5" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="observer">{{ hasMore ? '加载中~' : '没有更多~' }}</view> |
|
|
|
|