homepage.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <template>
  2. <view class="page">
  3. <!-- 页面渐变色背景 -->
  4. <view class="shadow"> </view>
  5. <!-- 页面渐变色背景 -->
  6. <view class="content">
  7. <view class="top-information">
  8. <image class="user-header" :src="userInfo.image" mode=""> </image>
  9. <view class="btn-list">
  10. <!--v-if="show" -->
  11. <button class="btn-1" @click="tochat">
  12. <u-icon color="#f83224" size="14" name="kefu-ermai"></u-icon>客服
  13. </button>
  14. <button
  15. v-if="isShow != '1' && userInfo.is_interest == 1"
  16. class="btn-1"
  17. @click="followTeam(0)"
  18. >
  19. <u-icon color="#f83224" size="14" name="plus"></u-icon>关注
  20. </button>
  21. <button
  22. class="btn-1"
  23. v-if="userInfo.is_interest == 0"
  24. @click="followTeam(1)"
  25. >
  26. 已关注
  27. </button>
  28. </view>
  29. <view class="name"> {{ userInfo.merchant_name }} </view>
  30. <view class="score">
  31. <u-rate
  32. count="5"
  33. disabled
  34. :allowHalf="true"
  35. :gutter="1"
  36. inactiveColor="#ffacab"
  37. activeColor="#FF1515"
  38. v-model="userInfo.score"
  39. :size="12"
  40. ></u-rate>
  41. <text class="num">{{ userInfo.score }}</text>
  42. </view>
  43. <view class="sale">
  44. <view class="">
  45. 销售量
  46. <text space="nbsp">{{ "&nbsp;" }} {{ userInfo.sales_num }}</text>
  47. </view>
  48. <text space="nbsp" class="shu"
  49. >{{ "&nbsp;&nbsp;" }} | {{ "&nbsp;&nbsp;" }}</text
  50. >
  51. <view class="">
  52. 评价总数
  53. <text space="nbsp">{{ "&nbsp;" }} {{ userInfo.comment_num }}</text>
  54. </view>
  55. </view>
  56. </view>
  57. <view class="goods-list">
  58. <view class="tab-list">
  59. <view :class="{ tab: selectTab == 1 }" @click="switchTab(1)">
  60. 默认
  61. </view>
  62. <view :class="{ tab: selectTab == 2 }" @click="switchTab(2)"
  63. >新品</view
  64. >
  65. <view :class="{ tab: selectTab == 3 }" @click="switchTab(3)"
  66. >销量</view
  67. >
  68. <view
  69. class="price"
  70. :class="{ tab: selectTab == 4 }"
  71. @click="switchTab(4)"
  72. >价格
  73. <view
  74. style="
  75. display: flex;
  76. flex-direction: column;
  77. justify-content: center;
  78. margin-left: 6rpx;
  79. margin-top: 4rpx;
  80. "
  81. >
  82. <u-icon
  83. name="arrow-up-fill"
  84. size="6"
  85. :color="iconUp == 1 ? '#f83224' : '#303133'"
  86. ></u-icon
  87. ><u-icon
  88. :color="iconUp == 2 ? '#f83224' : '#303133'"
  89. size="6"
  90. name="arrow-down-fill"
  91. ></u-icon>
  92. </view>
  93. </view>
  94. </view>
  95. <view class="goods">
  96. <GoodsCard
  97. v-for="item in goodsList"
  98. :key="item.id"
  99. :itemInfo="item"
  100. @toDetail="toDetail"
  101. />
  102. </view>
  103. </view>
  104. </view>
  105. </view>
  106. </template>
  107. <script>
  108. import GoodsCard from "./component/goodsCard.vue";
  109. export default {
  110. components: {
  111. GoodsCard,
  112. },
  113. data() {
  114. return {
  115. value: 4,
  116. selectTab: 0,
  117. iconUp: 0,
  118. isShow: "2", //是否可关注
  119. userId: "",
  120. userInfo: {}, //用户信息
  121. goodsList: [],
  122. user_other: {},
  123. user_other_no: "",
  124. show: "",
  125. };
  126. },
  127. onLoad(option) {
  128. if (option.page) {
  129. this.isShow = option.page;
  130. }
  131. if (option.user_other) {
  132. this.user_other = JSON.parse(decodeURIComponent(option.user_other));
  133. }
  134. this.show = option.show;
  135. this.userId = option.merchant_id;
  136. this.user_other_no = option.user_other_no;
  137. },
  138. methods: {
  139. tochat() {
  140. uni.navigateTo({
  141. url:
  142. "/pageA/chat/chat?user_other=" +
  143. encodeURIComponent(JSON.stringify(this.user_other)) +
  144. "&user_other_no=" +
  145. this.user_other_no,
  146. });
  147. },
  148. switchTab(num) {
  149. this.selectTab = num;
  150. if (num == 4) {
  151. // this.iconUp = this.iconUp == 0 ? 1:2
  152. // if(this.iconUp == 2){
  153. // this.iconUp =1
  154. // }
  155. switch (this.iconUp) {
  156. case 1:
  157. this.iconUp = 2;
  158. break;
  159. case 0:
  160. this.iconUp = 1;
  161. break;
  162. case 2:
  163. this.iconUp = 1;
  164. break;
  165. }
  166. } else {
  167. this.iconUp = 0;
  168. }
  169. },
  170. toDetail(item) {
  171. console.log(item);
  172. // return;
  173. uni.navigateTo({
  174. url: `/pageA/productdetails?id=${item.id}`,
  175. });
  176. },
  177. //关注 or 取消关注 店铺
  178. followTeam(num) {
  179. uni.$u.http
  180. .post(`/api/interest/follow`, {
  181. interest_type: 1,
  182. interest_id: this.userInfo.id,
  183. })
  184. .then((res) => {
  185. this.userInfo.is_interest = num;
  186. uni.showToast({
  187. title: !num ? "关注成功" : "取消关注",
  188. icon: "none",
  189. });
  190. });
  191. },
  192. getCommodityList(status = "") {
  193. //获取用户信息
  194. uni.$u.http
  195. .get(`/api/merchant/info?merchant_id=${this.userId}`)
  196. .then((res) => {
  197. this.userInfo = res;
  198. });
  199. //获取店铺商品
  200. uni.$u.http
  201. .post(`/api/goods/merchant_goods`, {
  202. page: 1,
  203. limit: 10,
  204. merchant_id: this.userId,
  205. status: status,
  206. keywords: this.keywords,
  207. source: this.source,
  208. })
  209. .then((res) => {
  210. this.goodsList = res.data;
  211. });
  212. },
  213. },
  214. mounted() {
  215. this.getCommodityList();
  216. //设置顶部导航栏颜色
  217. uni.setNavigationBarColor({
  218. frontColor: "#ffffff",
  219. backgroundColor: "#f74639",
  220. });
  221. },
  222. };
  223. </script>
  224. <style lang="scss" scoped>
  225. .page {
  226. .shadow {
  227. position: absolute;
  228. top: 0;
  229. height: 300px;
  230. width: 100%;
  231. background: linear-gradient(#f74639, #f4f4f4);
  232. z-index: -1;
  233. }
  234. .content {
  235. padding: 20rpx 24rpx;
  236. margin-top: 76rpx;
  237. .top-information {
  238. position: relative;
  239. border-radius: 20rpx;
  240. background-color: #fff;
  241. padding: 28rpx 24rpx;
  242. ::v-deep .u-icon__icon {
  243. color: #f83224 !important;
  244. }
  245. .user-header {
  246. width: 164rpx;
  247. height: 164rpx;
  248. border-radius: 50%;
  249. border: 2rpx solid #fff;
  250. position: absolute;
  251. top: -80rpx;
  252. left: 28rpx;
  253. }
  254. .btn-list {
  255. display: flex;
  256. align-items: center;
  257. justify-content: flex-end;
  258. height: 100rpx;
  259. .btn-1 {
  260. border: 2rpx solid #f83224;
  261. background-color: #fff;
  262. color: #f83224;
  263. padding: 0;
  264. margin: 0;
  265. display: flex;
  266. justify-content: space-around;
  267. align-items: center;
  268. height: 52rpx;
  269. border-radius: 24rpx;
  270. line-height: 52rpx;
  271. font-size: 26rpx;
  272. padding: 0 28rpx;
  273. margin-left: 20rpx;
  274. }
  275. }
  276. .name {
  277. margin-top: 28rpx;
  278. font-weight: 600;
  279. font-size: 32rpx;
  280. color: #333333;
  281. }
  282. .score {
  283. width: 30%;
  284. height: 28rpx;
  285. background-color: rgba(255, 27, 0, 0.1);
  286. display: flex;
  287. border-radius: 12rpx;
  288. margin-top: 16rpx;
  289. justify-content: space-around;
  290. .num {
  291. font-size: 22rpx;
  292. color: #ff1515;
  293. font-weight: 600;
  294. }
  295. }
  296. .sale {
  297. display: flex;
  298. align-items: center;
  299. font-size: 24rpx;
  300. color: #777;
  301. margin-top: 20rpx;
  302. .shu {
  303. font-size: 16rpx;
  304. color: #979797;
  305. opacity: 0.2;
  306. }
  307. }
  308. }
  309. }
  310. .goods-list {
  311. border-radius: 20rpx;
  312. background-color: #fff;
  313. padding: 0 20rpx;
  314. margin-top: 20rpx;
  315. .tab-list {
  316. height: 96rpx;
  317. display: flex;
  318. justify-content: space-around;
  319. align-items: center;
  320. font-size: 26rpx;
  321. color: #333333;
  322. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  323. margin-bottom: 20rpx;
  324. .tab {
  325. color: #000;
  326. font-weight: 600;
  327. }
  328. .price {
  329. display: flex;
  330. align-items: center;
  331. }
  332. }
  333. .goods {
  334. display: flex;
  335. flex-wrap: wrap;
  336. justify-content: space-between;
  337. }
  338. }
  339. }
  340. </style>