Commit e9f4f8ee authored by tangfh's avatar tangfh

+

parent e0fce7f3
...@@ -20,8 +20,8 @@ ...@@ -20,8 +20,8 @@
<uni-load-more :status="loadMoreStatus" :icon-size="16" v-if="detail || items.length > 0" <uni-load-more :status="loadMoreStatus" :icon-size="16" v-if="detail || items.length > 0"
:content-text="loadMoreViewContentText" /> :content-text="loadMoreViewContentText" />
</scroll-view> </scroll-view>
<view class="com-view-bottom" :style="{paddingBottom: bottomBtnPaddingBottom}"> <view class="com-v-bottom-btn-parent">
<text class="text-bottom-btn" @click="onBottomBtnClick">{{btnText}}</text> <c-button-1 :ui="bottomBtnUI" @onClick="onBottomBtnClick"></c-button-1>
</view> </view>
</view> </view>
</template> </template>
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
this.refresh(); this.refresh();
}, },
onNavBarLeftClick() { onNavBarLeftClick() {
uni.navigateBack(); util.navigateBack();
}, },
onClickTitleRightIcon() { onClickTitleRightIcon() {
console.log("click..."); console.log("click...");
...@@ -105,6 +105,7 @@ ...@@ -105,6 +105,7 @@
refresh() { refresh() {
let _this = this; let _this = this;
setTimeout(() => { setTimeout(() => {
_this.refreshFlag = true;
_this.refresherTriggered = true; _this.refresherTriggered = true;
}, 35); }, 35);
}, },
......
...@@ -36,7 +36,9 @@ ...@@ -36,7 +36,9 @@
</swiper-item> </swiper-item>
</swiper> </swiper>
<text class="text-bottom-btn center active2" @click="onAddEmployeeBtnClick">添加店员</text> <view class="com-v-bottom-btn-parent">
<c-button-1 :ui="bottomBtnUI" @onClick="onBottomBtnClick"></c-button-1>
</view>
<c-pop-passcard-filter ref="filter" @onEnsureBtnClick="onFilterEnsureBtnClick"></c-pop-passcard-filter> <c-pop-passcard-filter ref="filter" @onEnsureBtnClick="onFilterEnsureBtnClick"></c-pop-passcard-filter>
</view> </view>
...@@ -155,6 +157,7 @@ ...@@ -155,6 +157,7 @@
refresh() { refresh() {
var tab = this.tabBars[this.tabIndex]; var tab = this.tabBars[this.tabIndex];
setTimeout(() => { setTimeout(() => {
tab.content.refreshFlag = true;
tab.content.refreshing = true; tab.content.refreshing = true;
}, 35) }, 35)
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment