detail-navbar.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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/images/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/images/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/images/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. // 收藏
  180. const {
  181. code
  182. } = await FavoriteApi.createFavorite(props.modelValue.id);
  183. // 调用收藏加身价的接口
  184. await FavoriteApi.createCollectBefore(props.modelValue.id)
  185. if (code !== 0) {
  186. return
  187. }
  188. sheep.$helper.toast('收藏成功');
  189. props.modelValue.favorite = true;
  190. }
  191. }
  192. onPageScroll((e) => {
  193. state.tabOpacityVal = e.scrollTop > sheep.$platform.navbar ? 1 : e.scrollTop * 0.01;
  194. if (commentCard.top === 0) {
  195. throttle(() => {
  196. getCommentCardNode();
  197. }, 50);
  198. }
  199. if (e.scrollTop < commentCard.top - sys_navBar) {
  200. state.curTab = 'goods';
  201. } else if (
  202. e.scrollTop >= commentCard.top - sys_navBar &&
  203. e.scrollTop <= commentCard.bottom - sys_navBar
  204. ) {
  205. state.curTab = 'comment';
  206. } else {
  207. state.curTab = 'detail';
  208. }
  209. });
  210. </script>
  211. <style lang="scss" scoped>
  212. .ui-tabbar-box {
  213. // box-shadow: 0px -6px 10px 0px rgba(51, 51, 51, 0.2);
  214. }
  215. .ui-tabbar {
  216. display: flex;
  217. height: 100%;
  218. background: #fff;
  219. .detail-tabbar-item {
  220. width: 80rpx;
  221. .item-icon {
  222. width: 40rpx;
  223. height: 40rpx;
  224. }
  225. .item-title {
  226. font-size: 20rpx;
  227. font-weight: 500;
  228. line-height: 20rpx;
  229. margin-top: 12rpx;
  230. }
  231. }
  232. }
  233. .icon-box {
  234. box-shadow: 0px 0px 4rpx rgba(51, 51, 51, 0.08), 0px 4rpx 6rpx 2rpx rgba(102, 102, 102, 0.12);
  235. border-radius: 30rpx;
  236. width: 134rpx;
  237. height: 56rpx;
  238. margin-left: 8rpx;
  239. border: 1px solid rgba(#fff, 0.4);
  240. .line {
  241. width: 2rpx;
  242. height: 24rpx;
  243. background: #e5e5e7;
  244. }
  245. .sicon-back {
  246. font-size: 32rpx;
  247. color: #000;
  248. }
  249. .sicon-home {
  250. font-size: 32rpx;
  251. color: #000;
  252. }
  253. .sicon-more {
  254. font-size: 32rpx;
  255. color: #000;
  256. }
  257. .icon-button {
  258. width: 67rpx;
  259. height: 56rpx;
  260. &-left:hover {
  261. background: rgba(0, 0, 0, 0.16);
  262. border-radius: 30rpx 0px 0px 30rpx;
  263. }
  264. &-right:hover {
  265. background: rgba(0, 0, 0, 0.16);
  266. border-radius: 0px 30rpx 30rpx 0px;
  267. }
  268. }
  269. }
  270. .left-box {
  271. position: relative;
  272. width: 60rpx;
  273. height: 60rpx;
  274. display: flex;
  275. justify-content: center;
  276. align-items: center;
  277. .circle {
  278. position: absolute;
  279. left: 0;
  280. top: 0;
  281. width: 60rpx;
  282. height: 60rpx;
  283. background: rgba(#fff, 0.6);
  284. border: 1rpx solid #ebebeb;
  285. border-radius: 50%;
  286. box-sizing: border-box;
  287. z-index: -1;
  288. }
  289. }
  290. .right {
  291. position: relative;
  292. width: 60rpx;
  293. height: 60rpx;
  294. display: flex;
  295. justify-content: center;
  296. align-items: center;
  297. .circle {
  298. position: absolute;
  299. left: 0;
  300. top: 0;
  301. width: 60rpx;
  302. height: 60rpx;
  303. background: rgba(#ffffff, 0.6);
  304. border: 1rpx solid #ebebeb;
  305. box-sizing: border-box;
  306. border-radius: 50%;
  307. z-index: -1;
  308. }
  309. }
  310. .detail-tab-card {
  311. width: 50%;
  312. .tab-item {
  313. height: 80rpx;
  314. position: relative;
  315. z-index: 11;
  316. .tab-title {
  317. font-size: 30rpx;
  318. }
  319. .cur-tab-title {
  320. font-weight: $font-weight-bold;
  321. }
  322. .tab-line {
  323. width: 60rpx;
  324. height: 6rpx;
  325. border-radius: 6rpx;
  326. position: absolute;
  327. left: 50%;
  328. transform: translateX(-50%);
  329. bottom: 10rpx;
  330. background-color: var(--ui-BG-Main);
  331. z-index: 12;
  332. }
  333. }
  334. }
  335. </style>