shopping.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. <template>
  2. <!-- 十元购 -->
  3. <view style="position: relative">
  4. <view class="back" style="z-index: -1"> </view>
  5. <u-navbar bgColor="#FE2E2E" :safeAreaInsetTop="true" :placeholder="true">
  6. <view class="u-nav-slot" slot="left">
  7. <image
  8. v-if="language == 'zh-CN'"
  9. src="../../static/shopping/title.png"
  10. style="width: 390rpx; height: 48rpx"
  11. mode=""
  12. ></image>
  13. <image
  14. v-if="language == 'en-US'"
  15. src="/static/shopping/title1.png"
  16. style="width: 390rpx; height: 48rpx"
  17. mode=""
  18. >
  19. </image>
  20. <image
  21. v-if="language == 'es-ES'"
  22. src="/static/shopping/title2.png"
  23. style="width: 390rpx; height: 48rpx"
  24. mode=""
  25. >
  26. </image>
  27. <image
  28. v-if="language == 'it-IT'"
  29. src="/static/shopping/title3.png"
  30. style="width: 390rpx; height: 48rpx"
  31. mode=""
  32. >
  33. </image>
  34. </view>
  35. </u-navbar>
  36. <view class="input u-flex u-row-between" style="margin-top: 16rpx">
  37. <view class="u-flex">
  38. <image
  39. src="../../static/shopping/search.png"
  40. style="width: 32rpx; height: 32rpx"
  41. mode=""
  42. ></image>
  43. <input
  44. v-model="keyword"
  45. type="text"
  46. :placeholder="i18n.Searchcon"
  47. style="width: 500rpx; margin-left: 14rpx"
  48. />
  49. </view>
  50. <view class="search" @click="search">{{ i18n.search }}</view>
  51. </view>
  52. <view class="content">
  53. <view class="">
  54. <!-- <u-tabs lineColor="#f56c6c" :activeStyle="{
  55. color: 'rgba(248, 53, 39, 1)',
  56. fontWeight: 'bold',
  57. transform: 'scale(1.05)'
  58. }" :list="list1" @click="click"></u-tabs> -->
  59. <u-tabs
  60. :activeStyle="{
  61. color: 'rgba(248, 53, 39, 1)',
  62. fontWeight: 'bold',
  63. transform: 'scale(1.05)',
  64. }"
  65. :list="list1"
  66. lineColor="rgba(248, 53, 39, 1)"
  67. @change="changetab"
  68. ></u-tabs>
  69. </view>
  70. <view
  71. class="u-flex u-row-between"
  72. style="margin-top: 24rpx; flex-wrap: wrap"
  73. >
  74. <view
  75. @click="todetail(item.id)"
  76. class="item"
  77. v-for="(item, idx) in list"
  78. :key="idx"
  79. style="margin-bottom: 20rpx"
  80. >
  81. <image
  82. :src="item.goods.image"
  83. style="width: 340rpx; height: 340rpx"
  84. mode=""
  85. ></image>
  86. <view class="" style="padding: 20rpx; box-sizing: border-box">
  87. <!-- <text class="title">可心柔 V9系列婴儿保wadhbiuawd</text> -->
  88. <text class="title" v-if="language == 'zh-CN'">
  89. {{ item.goods.name_cn }}
  90. </text>
  91. <view class="title" v-if="language == 'en-US'">
  92. {{ item.goods.name_en }}
  93. </view>
  94. <view class="title" v-if="language == 'es-ES'">
  95. {{ item.goods.name_es }}
  96. </view>
  97. <view class="title" v-if="language == 'it-IT'">
  98. {{ item.goods.name_ita }}
  99. </view>
  100. <view
  101. class="u-flex"
  102. style="margin-top: 12rpx; flex-wrap: wrap; column-gap: 12rpx"
  103. >
  104. <view
  105. class="tabsa"
  106. v-for="(child, idx) in item.goods.label_arr"
  107. :key="idx"
  108. >
  109. <text class="titl" v-if="language == 'zh-CN'">
  110. {{ child.name_cn }}
  111. </text>
  112. <view class="titl" v-if="language == 'en-US'">
  113. {{ child.name_en }}
  114. </view>
  115. <view class="titl" v-if="language == 'es-ES'">
  116. {{ child.name_es }}
  117. </view>
  118. <view class="titl" v-if="language == 'it-IT'">
  119. {{ child.name_ita }}
  120. </view>
  121. </view>
  122. </view>
  123. <!-- <view class="num">
  124. {{i18n.Soldout}}{{item.goods.sale_num}}{{i18n.piece}}
  125. </view> -->
  126. <view class="num">
  127. {{ i18n.Soldout }}{{ item.goods.sale_num }}
  128. </view>
  129. <view class="" style="margin-top: 16rpx; position: relative">
  130. <image
  131. src="/static/shopping/btn.png"
  132. style="
  133. width: 300rpx;
  134. height: 68rpx;
  135. position: absolute;
  136. top: 0;
  137. left: 0;
  138. "
  139. mode=""
  140. ></image>
  141. <view
  142. class="u-flex u-row-between"
  143. style="
  144. padding: 10rpx 20rpx 0 26rpx;
  145. width: 85%;
  146. position: relative;
  147. z-index: 1;
  148. "
  149. >
  150. <view class="" style="margin-top: 10rpx">
  151. <text class="money">¥</text>
  152. <text class="money" style="font-size: 40rpx">{{
  153. item.goods.discount_price
  154. }}</text>
  155. </view>
  156. <image
  157. v-if="language == 'zh-CN'"
  158. src="../../static/shopping/shop.png"
  159. style="width: 82rpx; height: 38rpx"
  160. mode=""
  161. >
  162. </image>
  163. <image
  164. v-if="language == 'en-US'"
  165. src="/static/shopping/shop1.png"
  166. style="width: 80rpx; height: 44rpx"
  167. mode=""
  168. >
  169. </image>
  170. <image
  171. v-if="language == 'es-ES'"
  172. src="/static/shopping/shop2.png"
  173. style="width: 74rpx; height: 20rpx"
  174. mode=""
  175. >
  176. </image>
  177. <image
  178. v-if="language == 'it-IT'"
  179. src="/static/shopping/shop3.png"
  180. style="width: 62rpx; height: 44rpx"
  181. mode=""
  182. >
  183. </image>
  184. </view>
  185. </view>
  186. </view>
  187. </view>
  188. </view>
  189. </view>
  190. <view class="" style="height: 80rpx"></view>
  191. <view class="" style="height: 160rpx"></view>
  192. <kj-tabbar :value1="1" ref="kjTabbar"></kj-tabbar>
  193. </view>
  194. </template>
  195. <script>
  196. export default {
  197. data() {
  198. return {
  199. list1: [],
  200. language: "zh-CN", //语言
  201. list: [],
  202. keyword: "",
  203. parent_id: "",
  204. page: 1,
  205. last_page: "",
  206. };
  207. },
  208. computed: {
  209. i18n() {
  210. return this.$t("index");
  211. },
  212. },
  213. onShow() {
  214. if (uni.getStorageSync("language") != "") {
  215. this.language = uni.getStorageSync("language");
  216. }
  217. this.category();
  218. this.shipp();
  219. this.$refs.kjTabbar.getNumber();
  220. },
  221. methods: {
  222. onReachBottom() {
  223. if (this.page == this.last_page) {
  224. this.$u.toast(this.i18n.Nofurtherdata);
  225. } else {
  226. // if (this.current != 0) {
  227. this.page++;
  228. this.shipp();
  229. // }
  230. }
  231. },
  232. //跳转详情
  233. todetail(id) {
  234. uni.navigateTo({
  235. url: "/pageA/productdetails?id=" + id,
  236. });
  237. },
  238. //搜索
  239. search() {
  240. this.shipp(this.parent_id);
  241. },
  242. //10元购
  243. shipp() {
  244. uni.$u.http
  245. .post("/api/goods/ten_yuan_goods", {
  246. parent_id: this.parent_id,
  247. keyword: this.keyword,
  248. page: this.page,
  249. })
  250. .then((res) => {
  251. console.log(res);
  252. this.last_page = res.last_page;
  253. if (this.page == 1) {
  254. this.list = res.data;
  255. } else {
  256. this.list = this.list.concat(res.data);
  257. }
  258. })
  259. .catch(() => {});
  260. },
  261. //商品分类列表
  262. category() {
  263. uni.$u.http
  264. .get("/api/goods/category", {
  265. params: {
  266. parent_id: 0,
  267. },
  268. })
  269. .then((res) => {
  270. const categoryArr = res;
  271. this.list1 = [
  272. {
  273. name: "",
  274. category_id: "",
  275. },
  276. ];
  277. if (this.language == "en-US") {
  278. categoryArr.forEach((item) => {
  279. item.name = item.name_en;
  280. });
  281. this.list1[0].name = "selection";
  282. }
  283. if (this.language == "es-ES") {
  284. categoryArr.forEach((item) => {
  285. item.name = item.name_es;
  286. });
  287. this.list1[0].name = "Una selección de";
  288. }
  289. if (this.language == "it-IT") {
  290. categoryArr.forEach((item) => {
  291. item.name = item.name_ita;
  292. });
  293. this.list1[0].name = "selezionate";
  294. }
  295. if (this.language == "zh-CN") {
  296. categoryArr.forEach((item) => {
  297. item.name = item.name_cn;
  298. });
  299. this.list1[0].name = "精选";
  300. }
  301. this.list1 = this.list1.concat(categoryArr);
  302. console.log(this.list1);
  303. })
  304. .catch(() => {});
  305. },
  306. changetab(item) {
  307. this.list = [];
  308. this.page = 1;
  309. this.parent_id = item.id;
  310. console.log("item", item);
  311. this.shipp(item.id);
  312. },
  313. },
  314. computed: {
  315. i18n() {
  316. return this.$t("index");
  317. },
  318. },
  319. };
  320. </script>
  321. <style lang="scss" scoped>
  322. .content {
  323. width: 750rpx;
  324. min-height: calc(100vh - 40rpx);
  325. background: linear-gradient(180deg, #fdfcfb 0%, #f4f4f4 100%);
  326. border-radius: 30rpx 30rpx 0rpx 0rpx;
  327. margin-top: 32rpx;
  328. padding: 32rpx;
  329. box-sizing: border-box;
  330. .item {
  331. width: 340rpx;
  332. // height: 592rpx;
  333. background: #ffffff;
  334. border-radius: 16rpx;
  335. .title {
  336. font-family: PingFangSC, PingFang SC;
  337. font-weight: 400;
  338. font-size: 26rpx;
  339. color: #222222;
  340. line-height: 36rpx;
  341. text-align: left;
  342. font-style: normal;
  343. display: block;
  344. width: 100%;
  345. height: 70rpx;
  346. overflow: hidden;
  347. text-overflow: ellipsis;
  348. -webkit-line-clamp: 2;
  349. display: -webkit-box;
  350. -webkit-box-orient: vertical;
  351. word-break: break-all;
  352. }
  353. .tabsa {
  354. // width: 96rpx;
  355. // height: 32rpx;
  356. margin-top: 10rpx;
  357. border-radius: 4rpx;
  358. border: 1rpx solid #ed0909;
  359. font-family: PingFangSC, PingFang SC;
  360. font-weight: 400;
  361. font-size: 20rpx;
  362. color: #ed0909;
  363. // line-height: 32rpx;
  364. text-align: center;
  365. font-style: normal;
  366. display: inline;
  367. padding: 0 4rpx;
  368. box-sizing: border-box;
  369. }
  370. .num {
  371. font-family: SFPro, SFPro;
  372. font-weight: 400;
  373. font-size: 20rpx;
  374. color: #555555;
  375. line-height: 24rpx;
  376. text-align: left;
  377. font-style: normal;
  378. margin-top: 16rpx;
  379. }
  380. .money {
  381. font-family: HarmonyOS_Sans_Medium;
  382. font-size: 20rpx;
  383. color: #f83224;
  384. line-height: 26rpx;
  385. text-align: left;
  386. font-style: normal;
  387. }
  388. }
  389. }
  390. .back {
  391. position: absolute;
  392. top: 0;
  393. left: 0;
  394. width: 750rpx;
  395. height: 800rpx;
  396. background: #fe2e2e;
  397. }
  398. .input {
  399. width: 702rpx;
  400. height: 68rpx;
  401. background: #ffffff;
  402. border-radius: 34rpx;
  403. margin-left: 24rpx;
  404. box-sizing: border-box;
  405. padding: 0 8rpx 0 24rpx;
  406. .search {
  407. width: 100rpx;
  408. height: 56rpx;
  409. background: #f83224;
  410. border-radius: 28rpx;
  411. font-family: PingFangSC, PingFang SC;
  412. font-weight: 400;
  413. font-size: 26rpx;
  414. color: #ffffff;
  415. line-height: 56rpx;
  416. text-align: center;
  417. font-style: normal;
  418. }
  419. }
  420. </style>