|
@@ -1,5 +1,12 @@
|
|
<template>
|
|
<template>
|
|
<u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
|
|
<u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
|
|
|
|
+ <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" :title="`${state.productName}(${state.total})`" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
|
|
|
|
+ <template #left>
|
|
|
|
+ <view class="u-navbar__content__left__item">
|
|
|
|
+ <u-icon name="arrow-left" size="20" color="#000"></u-icon>
|
|
|
|
+ </view>
|
|
|
|
+ </template>
|
|
|
|
+ </u-navbar>
|
|
<u-tabs
|
|
<u-tabs
|
|
:list="state.tabsList"
|
|
:list="state.tabsList"
|
|
:current="state.tabsCurrent"
|
|
:current="state.tabsCurrent"
|
|
@@ -97,9 +104,9 @@ function selectListApi() {
|
|
state.dataList = requset.data.records;
|
|
state.dataList = requset.data.records;
|
|
state.total = requset.data.total;
|
|
state.total = requset.data.total;
|
|
|
|
|
|
- uni.setNavigationBarTitle({
|
|
|
|
- title: `${state.productName}(${state.total})`,
|
|
|
|
- });
|
|
|
|
|
|
+ // uni.setNavigationBarTitle({
|
|
|
|
+ // title: `${state.productName}(${state.total})`,
|
|
|
|
+ // });
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|