|
|
@@ -3,10 +3,10 @@
|
|
|
<view class="billing_box_bg">
|
|
|
<view class="input-wrap" >
|
|
|
<view style="padding:0upx 0upx 0upx 0upx;margin-right:10upx;" >
|
|
|
- <button class="admin-button-com middle blue" @click="selectFlowerNumFn()">选分类</button>
|
|
|
+ <button class="admin-button-com middle blue" @click="selectFlowerNumFn()">图片分类</button>
|
|
|
</view>
|
|
|
<view class="search-bar">
|
|
|
- <app-search-module v-model="py" placeholder="输入拼音首字母搜索" @input="searchFn" />
|
|
|
+ <app-search-module v-model="py" placeholder="输拼音首字母也可以搜" @input="searchFn" />
|
|
|
</view>
|
|
|
<view style="float:right">
|
|
|
<button class="admin-button-com middle blue" @click="removeFromSave(0)">清除花材</button>
|
|
|
@@ -15,6 +15,15 @@
|
|
|
|
|
|
<view class="scroll-middle_bx">
|
|
|
|
|
|
+ <scroll-view scroll-y scroll-with-animation class="tab-view">
|
|
|
+ <!--分类 start -->
|
|
|
+ <div v-for="(item, index) in globalClassItemList" :key="index" class="tab-bar-item" :class="classIndex == index ? 'active' : ''" :data-current="index" @tap.stop="swichClass(index)">
|
|
|
+ <text>{{ item.className || "" }}</text>
|
|
|
+ </div>
|
|
|
+ <!--分类 end -->
|
|
|
+ <view style="height: 120upx"></view>
|
|
|
+ </scroll-view>
|
|
|
+
|
|
|
<scroll-view scroll-y class="right-box" :scroll-into-view="scroll_into_view" scroll-with-animation="true" @scroll="scroll_detail" lower-threshold="100" @scrolltolower="scroll_bottom">
|
|
|
<!--花材列表 start -->
|
|
|
<block v-if="!$util.isEmpty(globalClassItemList)">
|