shopping.vue 8.9 KB

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