detail-navbar.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. <!-- 商品详情:商品/评价/详情的 nav -->
  2. <template>
  3. <su-fixed alway :bgStyles="{ background: '#fff' }" :val="0" noNav opacity :placeholder="false">
  4. <su-status-bar />
  5. <view class="ui-bar ss-flex ss-col-center ss-row-between ss-p-x-20"
  6. :style="[{ height: sys_navBar - sys_statusBar + 'px' }]">
  7. <!-- 左 -->
  8. <view class="icon-box ss-flex">
  9. <view class="icon-button icon-button-left ss-flex ss-row-center" @tap="onClickLeft">
  10. <text class="sicon-back" v-if="hasHistory" />
  11. <text class="sicon-home" v-else />
  12. </view>
  13. <view class="line"></view>
  14. <view class="icon-button icon-button-right ss-flex ss-row-center" @tap="onClickRight">
  15. <text class="sicon-more" />
  16. </view>
  17. </view>
  18. <!-- 中 -->
  19. <view class="detail-tab-card ss-flex-1" :style="[{ opacity: state.tabOpacityVal }]">
  20. <view class="tab-box ss-flex ss-col-center ss-row-around">
  21. <view class="tab-item ss-flex-1 ss-flex ss-row-center ss-col-center" v-for="item in state.tabList"
  22. :key="item.value" @tap="onTab(item)">
  23. <view class="tab-title" :class="state.curTab === item.value ? 'cur-tab-title' : ''">
  24. {{ item.label }}
  25. </view>
  26. <view v-show="state.curTab === item.value" class="tab-line"></view>
  27. </view>
  28. </view>
  29. </view>
  30. <!-- 右 -->
  31. <view class="ui-tabbar-box " :style="[{ opacity: state.tabOpacityVal }]">
  32. <view class="ui-tabbar ss-flex ss-col-center ss-row-between">
  33. <view class="ss-flex ss-col-center ss-row-between" >
  34. <view v-if="collectIcon"
  35. class="detail-tabbar-item ss-flex ss-flex-col ss-row-center ss-col-center"
  36. @tap="onFavorite">
  37. <block v-if="modelValue.favorite">
  38. <image class="item-icon"
  39. :src="sheep.$url.static('/static/img/shop/goods/collect_1.gif')" mode="aspectFit" />
  40. <!-- <view class="item-title">已收藏</view> -->
  41. </block>
  42. <block v-else>
  43. <image class="item-icon"
  44. :src="sheep.$url.static('/static/img/shop/goods/collect_0.png')" mode="aspectFit" />
  45. <!-- <view class="item-title">收藏</view> -->
  46. </block>
  47. </view>
  48. <view v-if="shareIcon" class="detail-tabbar-item ss-flex ss-flex-col ss-row-center ss-col-center"
  49. @tap="showShareModal">
  50. <image class="item-icon" :src="sheep.$url.static('/static/img/shop/goods/share.png')"
  51. mode="aspectFit" />
  52. <!-- <view class="item-title">分享</view> -->
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. <!-- #ifdef MP -->
  58. <view :style="[capsuleStyle]"></view>
  59. <!-- #endif -->
  60. </view>
  61. </su-fixed>
  62. </template>
  63. <script setup>
  64. import {
  65. reactive
  66. } from 'vue';
  67. import {
  68. onPageScroll
  69. } from '@dcloudio/uni-app';
  70. import sheep from '@/sheep';
  71. import throttle from '@/sheep/helper/throttle.js';
  72. import {
  73. showMenuTools,
  74. closeMenuTools
  75. } from '@/sheep/hooks/useModal';
  76. import {
  77. showShareModal
  78. } from '@/sheep/hooks/useModal';
  79. import FavoriteApi from '@/sheep/api/product/favorite';
  80. const sys_statusBar = sheep.$platform.device.statusBarHeight;
  81. const sys_navBar = sheep.$platform.navbar;
  82. const capsuleStyle = {
  83. width: sheep.$platform.capsule.width + 'px',
  84. height: sheep.$platform.capsule.height + 'px',
  85. };
  86. const state = reactive({
  87. tabOpacityVal: 0,
  88. curTab: 'goods',
  89. tabList: [{
  90. label: '商品',
  91. value: 'goods',
  92. to: 'detail-swiper-selector',
  93. },
  94. {
  95. label: '评价',
  96. value: 'comment',
  97. to: 'detail-comment-selector',
  98. },
  99. {
  100. label: '详情',
  101. value: 'detail',
  102. to: 'detail-content-selector',
  103. },
  104. ],
  105. });
  106. // 接收参数
  107. const props = defineProps({
  108. modelValue: {
  109. type: Object,
  110. default () {},
  111. },
  112. collectIcon: {
  113. type: Boolean,
  114. default: true,
  115. },
  116. shareIcon: {
  117. type: Boolean,
  118. default: true,
  119. },
  120. });
  121. const emits = defineEmits(['clickLeft']);
  122. const hasHistory = sheep.$router.hasHistory();
  123. function onClickLeft() {
  124. if (hasHistory) {
  125. sheep.$router.back();
  126. } else {
  127. sheep.$router.go('/pages/index/index');
  128. }
  129. emits('clickLeft');
  130. }
  131. function onClickRight() {
  132. showMenuTools();
  133. }
  134. let commentCard = {
  135. top: 0,
  136. bottom: 0,
  137. };
  138. function getCommentCardNode() {
  139. return new Promise((res, rej) => {
  140. uni.createSelectorQuery()
  141. .select('.detail-comment-selector')
  142. .boundingClientRect((data) => {
  143. if (data) {
  144. commentCard.top = data.top;
  145. commentCard.bottom = data.top + data.height;
  146. res(data);
  147. } else {
  148. res(null);
  149. }
  150. })
  151. .exec();
  152. });
  153. }
  154. function onTab(tab) {
  155. let scrollTop = 0;
  156. if (tab.value === 'comment') {
  157. scrollTop = commentCard.top - sys_navBar + 1;
  158. } else if (tab.value === 'detail') {
  159. scrollTop = commentCard.bottom - sys_navBar + 1;
  160. }
  161. uni.pageScrollTo({
  162. scrollTop,
  163. duration: 200,
  164. });
  165. }
  166. async function onFavorite() {
  167. // 情况一:取消收藏
  168. if (props.modelValue.favorite) {
  169. const {
  170. code
  171. } = await FavoriteApi.deleteFavorite(props.modelValue.id);
  172. if (code !== 0) {
  173. return
  174. }
  175. sheep.$helper.toast('取消收藏');
  176. props.modelValue.favorite = false;
  177. // 情况二:添加收藏
  178. } else {
  179. const {
  180. code
  181. } = await FavoriteApi.createFavorite(props.modelValue.id);
  182. if (code !== 0) {
  183. return
  184. }
  185. sheep.$helper.toast('收藏成功');
  186. props.modelValue.favorite = true;
  187. }
  188. }
  189. onPageScroll((e) => {
  190. state.tabOpacityVal = e.scrollTop > sheep.$platform.navbar ? 1 : e.scrollTop * 0.01;
  191. if (commentCard.top === 0) {
  192. throttle(() => {
  193. getCommentCardNode();
  194. }, 50);
  195. }
  196. if (e.scrollTop < commentCard.top - sys_navBar) {
  197. state.curTab = 'goods';
  198. } else if (
  199. e.scrollTop >= commentCard.top - sys_navBar &&
  200. e.scrollTop <= commentCard.bottom - sys_navBar
  201. ) {
  202. state.curTab = 'comment';
  203. } else {
  204. state.curTab = 'detail';
  205. }
  206. });
  207. </script>
  208. <style lang="scss" scoped>
  209. .ui-tabbar-box {
  210. // box-shadow: 0px -6px 10px 0px rgba(51, 51, 51, 0.2);
  211. }
  212. .ui-tabbar {
  213. display: flex;
  214. height: 100%;
  215. background: #fff;
  216. .detail-tabbar-item {
  217. width: 80rpx;
  218. .item-icon {
  219. width: 40rpx;
  220. height: 40rpx;
  221. }
  222. .item-title {
  223. font-size: 20rpx;
  224. font-weight: 500;
  225. line-height: 20rpx;
  226. margin-top: 12rpx;
  227. }
  228. }
  229. }
  230. .icon-box {
  231. box-shadow: 0px 0px 4rpx rgba(51, 51, 51, 0.08), 0px 4rpx 6rpx 2rpx rgba(102, 102, 102, 0.12);
  232. border-radius: 30rpx;
  233. width: 134rpx;
  234. height: 56rpx;
  235. margin-left: 8rpx;
  236. border: 1px solid rgba(#fff, 0.4);
  237. .line {
  238. width: 2rpx;
  239. height: 24rpx;
  240. background: #e5e5e7;
  241. }
  242. .sicon-back {
  243. font-size: 32rpx;
  244. color: #000;
  245. }
  246. .sicon-home {
  247. font-size: 32rpx;
  248. color: #000;
  249. }
  250. .sicon-more {
  251. font-size: 32rpx;
  252. color: #000;
  253. }
  254. .icon-button {
  255. width: 67rpx;
  256. height: 56rpx;
  257. &-left:hover {
  258. background: rgba(0, 0, 0, 0.16);
  259. border-radius: 30rpx 0px 0px 30rpx;
  260. }
  261. &-right:hover {
  262. background: rgba(0, 0, 0, 0.16);
  263. border-radius: 0px 30rpx 30rpx 0px;
  264. }
  265. }
  266. }
  267. .left-box {
  268. position: relative;
  269. width: 60rpx;
  270. height: 60rpx;
  271. display: flex;
  272. justify-content: center;
  273. align-items: center;
  274. .circle {
  275. position: absolute;
  276. left: 0;
  277. top: 0;
  278. width: 60rpx;
  279. height: 60rpx;
  280. background: rgba(#fff, 0.6);
  281. border: 1rpx solid #ebebeb;
  282. border-radius: 50%;
  283. box-sizing: border-box;
  284. z-index: -1;
  285. }
  286. }
  287. .right {
  288. position: relative;
  289. width: 60rpx;
  290. height: 60rpx;
  291. display: flex;
  292. justify-content: center;
  293. align-items: center;
  294. .circle {
  295. position: absolute;
  296. left: 0;
  297. top: 0;
  298. width: 60rpx;
  299. height: 60rpx;
  300. background: rgba(#ffffff, 0.6);
  301. border: 1rpx solid #ebebeb;
  302. box-sizing: border-box;
  303. border-radius: 50%;
  304. z-index: -1;
  305. }
  306. }
  307. .detail-tab-card {
  308. width: 50%;
  309. .tab-item {
  310. height: 80rpx;
  311. position: relative;
  312. z-index: 11;
  313. .tab-title {
  314. font-size: 30rpx;
  315. }
  316. .cur-tab-title {
  317. font-weight: $font-weight-bold;
  318. }
  319. .tab-line {
  320. width: 60rpx;
  321. height: 6rpx;
  322. border-radius: 6rpx;
  323. position: absolute;
  324. left: 50%;
  325. transform: translateX(-50%);
  326. bottom: 10rpx;
  327. background-color: var(--ui-BG-Main);
  328. z-index: 12;
  329. }
  330. }
  331. }
  332. </style>