detail-navbar.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  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(modelValue.id)">
  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. computed
  67. } from 'vue';
  68. import {
  69. onPageScroll
  70. } from '@dcloudio/uni-app';
  71. import sheep from '@/sheep';
  72. import throttle from '@/sheep/helper/throttle.js';
  73. import {
  74. showMenuTools,
  75. closeMenuTools
  76. } from '@/sheep/hooks/useModal';
  77. import {
  78. showShareModal
  79. } from '@/sheep/hooks/useModal';
  80. import { showAuthModal } from '@/sheep/hooks/useModal';
  81. import FavoriteApi from '@/sheep/api/product/favorite';
  82. const isLogin = computed(() => sheep.$store('user').isLogin);
  83. const sys_statusBar = sheep.$platform.device.statusBarHeight;
  84. const sys_navBar = sheep.$platform.navbar;
  85. const capsuleStyle = {
  86. width: sheep.$platform.capsule.width + 'px',
  87. height: sheep.$platform.capsule.height + 'px',
  88. };
  89. const state = reactive({
  90. tabOpacityVal: 0,
  91. curTab: 'goods',
  92. tabList: [{
  93. label: '商品',
  94. value: 'goods',
  95. to: 'detail-swiper-selector',
  96. },
  97. {
  98. label: '评价',
  99. value: 'comment',
  100. to: 'detail-comment-selector',
  101. },
  102. {
  103. label: '详情',
  104. value: 'detail',
  105. to: 'detail-content-selector',
  106. },
  107. ],
  108. });
  109. // 接收参数
  110. const props = defineProps({
  111. modelValue: {
  112. type: Object,
  113. default () {},
  114. },
  115. collectIcon: {
  116. type: Boolean,
  117. default: true,
  118. },
  119. shareIcon: {
  120. type: Boolean,
  121. default: true,
  122. },
  123. });
  124. const emits = defineEmits(['clickLeft']);
  125. const hasHistory = sheep.$router.hasHistory();
  126. function onClickLeft() {
  127. if (hasHistory) {
  128. sheep.$router.back();
  129. } else {
  130. sheep.$router.go('/pages/index/index');
  131. }
  132. emits('clickLeft');
  133. }
  134. function onClickRight() {
  135. showMenuTools();
  136. }
  137. let commentCard = {
  138. top: 0,
  139. bottom: 0,
  140. };
  141. function getCommentCardNode() {
  142. return new Promise((res, rej) => {
  143. uni.createSelectorQuery()
  144. .select('.detail-comment-selector')
  145. .boundingClientRect((data) => {
  146. if (data) {
  147. commentCard.top = data.top;
  148. commentCard.bottom = data.top + data.height;
  149. res(data);
  150. } else {
  151. res(null);
  152. }
  153. })
  154. .exec();
  155. });
  156. }
  157. function onTab(tab) {
  158. let scrollTop = 0;
  159. if (tab.value === 'comment') {
  160. scrollTop = commentCard.top - sys_navBar + 1;
  161. } else if (tab.value === 'detail') {
  162. scrollTop = commentCard.bottom - sys_navBar + 1;
  163. }
  164. uni.pageScrollTo({
  165. scrollTop,
  166. duration: 200,
  167. });
  168. }
  169. // console.log(props.modelValue)
  170. async function onFavorite() {
  171. if(!isLogin.value){
  172. showAuthModal();
  173. return;
  174. }
  175. // 情况一:取消收藏
  176. if (props.modelValue.favorite) {
  177. const {
  178. code
  179. } = await FavoriteApi.deleteFavorite(props.modelValue.id);
  180. if (code !== 0) {
  181. return
  182. }
  183. sheep.$helper.toast('取消收藏');
  184. props.modelValue.favorite = false;
  185. // 情况二:添加收藏
  186. } else {
  187. // 收藏
  188. const {
  189. code
  190. } = await FavoriteApi.createFavorite(props.modelValue.id);
  191. // 调用收藏加身价的接口
  192. await FavoriteApi.createCollectBefore(props.modelValue.id)
  193. if (code !== 0) {
  194. return
  195. }
  196. sheep.$helper.toast('收藏成功');
  197. props.modelValue.favorite = true;
  198. }
  199. }
  200. onPageScroll((e) => {
  201. state.tabOpacityVal = e.scrollTop > sheep.$platform.navbar ? 1 : e.scrollTop * 0.01;
  202. if (commentCard.top === 0) {
  203. throttle(() => {
  204. getCommentCardNode();
  205. }, 50);
  206. }
  207. if (e.scrollTop < commentCard.top - sys_navBar) {
  208. state.curTab = 'goods';
  209. } else if (
  210. e.scrollTop >= commentCard.top - sys_navBar &&
  211. e.scrollTop <= commentCard.bottom - sys_navBar
  212. ) {
  213. state.curTab = 'comment';
  214. } else {
  215. state.curTab = 'detail';
  216. }
  217. });
  218. </script>
  219. <style lang="scss" scoped>
  220. .ui-tabbar-box {
  221. // box-shadow: 0px -6px 10px 0px rgba(51, 51, 51, 0.2);
  222. }
  223. .ui-tabbar {
  224. display: flex;
  225. height: 100%;
  226. background: #fff;
  227. .detail-tabbar-item {
  228. width: 80rpx;
  229. .item-icon {
  230. width: 40rpx;
  231. height: 40rpx;
  232. }
  233. .item-title {
  234. font-size: 20rpx;
  235. font-weight: 500;
  236. line-height: 20rpx;
  237. margin-top: 12rpx;
  238. }
  239. }
  240. }
  241. .icon-box {
  242. box-shadow: 0px 0px 4rpx rgba(51, 51, 51, 0.08), 0px 4rpx 6rpx 2rpx rgba(102, 102, 102, 0.12);
  243. border-radius: 30rpx;
  244. width: 134rpx;
  245. height: 56rpx;
  246. margin-left: 8rpx;
  247. border: 1px solid rgba(#fff, 0.4);
  248. .line {
  249. width: 2rpx;
  250. height: 24rpx;
  251. background: #e5e5e7;
  252. }
  253. .sicon-back {
  254. font-size: 32rpx;
  255. color: #000;
  256. }
  257. .sicon-home {
  258. font-size: 32rpx;
  259. color: #000;
  260. }
  261. .sicon-more {
  262. font-size: 32rpx;
  263. color: #000;
  264. }
  265. .icon-button {
  266. width: 67rpx;
  267. height: 56rpx;
  268. &-left:hover {
  269. background: rgba(0, 0, 0, 0.16);
  270. border-radius: 30rpx 0px 0px 30rpx;
  271. }
  272. &-right:hover {
  273. background: rgba(0, 0, 0, 0.16);
  274. border-radius: 0px 30rpx 30rpx 0px;
  275. }
  276. }
  277. }
  278. .left-box {
  279. position: relative;
  280. width: 60rpx;
  281. height: 60rpx;
  282. display: flex;
  283. justify-content: center;
  284. align-items: center;
  285. .circle {
  286. position: absolute;
  287. left: 0;
  288. top: 0;
  289. width: 60rpx;
  290. height: 60rpx;
  291. background: rgba(#fff, 0.6);
  292. border: 1rpx solid #ebebeb;
  293. border-radius: 50%;
  294. box-sizing: border-box;
  295. z-index: -1;
  296. }
  297. }
  298. .right {
  299. position: relative;
  300. width: 60rpx;
  301. height: 60rpx;
  302. display: flex;
  303. justify-content: center;
  304. align-items: center;
  305. .circle {
  306. position: absolute;
  307. left: 0;
  308. top: 0;
  309. width: 60rpx;
  310. height: 60rpx;
  311. background: rgba(#ffffff, 0.6);
  312. border: 1rpx solid #ebebeb;
  313. box-sizing: border-box;
  314. border-radius: 50%;
  315. z-index: -1;
  316. }
  317. }
  318. .detail-tab-card {
  319. width: 50%;
  320. .tab-item {
  321. height: 80rpx;
  322. position: relative;
  323. z-index: 11;
  324. .tab-title {
  325. font-size: 30rpx;
  326. }
  327. .cur-tab-title {
  328. font-weight: $font-weight-bold;
  329. }
  330. .tab-line {
  331. width: 60rpx;
  332. height: 6rpx;
  333. border-radius: 6rpx;
  334. position: absolute;
  335. left: 50%;
  336. transform: translateX(-50%);
  337. bottom: 10rpx;
  338. background-color: var(--ui-BG-Main);
  339. z-index: 12;
  340. }
  341. }
  342. }
  343. </style>