shopping.vue 8.3 KB

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