shopping.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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="请输入商品名称搜索"
  18. style="width: 500rpx;margin-left: 14rpx;" />
  19. </view>
  20. <view class="search" @click="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.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. onShow() {
  111. if (uni.getStorageSync('language') != '') {
  112. this.language = uni.getStorageSync('language')
  113. }
  114. this.category()
  115. this.shipp()
  116. },
  117. methods: {
  118. onReachBottom() {
  119. if (this.page == this.last_page) {
  120. this.$u.toast('已无更多数据')
  121. } else {
  122. // if (this.current != 0) {
  123. this.page++
  124. this.shipp()
  125. // }
  126. }
  127. },
  128. //跳转详情
  129. todetail(id) {
  130. uni.navigateTo({
  131. url: '/pageA/productdetails?id=' + id
  132. })
  133. },
  134. //搜索
  135. search() {
  136. this.shipp(this.parent_id)
  137. },
  138. //10元购
  139. shipp() {
  140. uni.$u.http.post('/api/goods/ten_yuan_goods', {
  141. parent_id: this.parent_id,
  142. keyword: this.keyword,
  143. page: this.page
  144. }).then((res) => {
  145. if (this.page == 1) {
  146. this.list = res.data
  147. this.last_page = res.data.last_page
  148. } else {
  149. this.list.concat(res.data)
  150. }
  151. }).catch(() => {
  152. })
  153. },
  154. //商品分类列表
  155. category() {
  156. uni.$u.http.get('/api/goods/category', {
  157. params: {
  158. parent_id: 0,
  159. }
  160. }).then((res) => {
  161. const categoryArr = res
  162. this.list1 = [{
  163. name: '',
  164. category_id: ''
  165. }]
  166. if (this.language == 'en-US') {
  167. categoryArr.forEach(item => {
  168. item.name = item.name_en
  169. })
  170. this.list1[0].name = 'selection'
  171. }
  172. if (this.language == 'es-ES') {
  173. categoryArr.forEach(item => {
  174. item.name = item.name_es
  175. })
  176. this.list1[0].name = 'Una selección de'
  177. }
  178. if (this.language == 'it-IT') {
  179. categoryArr.forEach(item => {
  180. item.name = item.name_ita
  181. })
  182. this.list1[0].name = 'selezionate'
  183. }
  184. if (this.language == 'zh-CN') {
  185. categoryArr.forEach(item => {
  186. item.name = item.name_cn
  187. })
  188. this.list1[0].name = '精选'
  189. }
  190. this.list1 = this.list1.concat(categoryArr)
  191. console.log(this.list1);
  192. }).catch(() => {
  193. })
  194. },
  195. changetab(item) {
  196. this.parent_id = item.id
  197. console.log('item', item);
  198. this.shipp(item.id)
  199. }
  200. },
  201. computed: {
  202. i18n() {
  203. return this.$t('index')
  204. }
  205. },
  206. }
  207. </script>
  208. <style lang="scss" scoped>
  209. .content {
  210. width: 750rpx;
  211. // height: 1332rpx;
  212. background: linear-gradient(180deg, #FDFCFB 0%, #F4F4F4 100%);
  213. border-radius: 30rpx 30rpx 0rpx 0rpx;
  214. margin-top: 32rpx;
  215. padding: 32rpx;
  216. box-sizing: border-box;
  217. .item {
  218. width: 340rpx;
  219. // height: 592rpx;
  220. background: #FFFFFF;
  221. border-radius: 16rpx;
  222. .title {
  223. font-family: PingFangSC, PingFang SC;
  224. font-weight: 400;
  225. font-size: 26rpx;
  226. color: #222222;
  227. line-height: 36rpx;
  228. text-align: left;
  229. font-style: normal;
  230. display: block;
  231. width: 100%;
  232. height: 70rpx;
  233. overflow: hidden;
  234. text-overflow: ellipsis;
  235. -webkit-line-clamp: 2;
  236. display: -webkit-box;
  237. -webkit-box-orient:vertical;
  238. }
  239. .tabsa {
  240. // width: 96rpx;
  241. // height: 32rpx;
  242. margin-top: 10rpx;
  243. border-radius: 4rpx;
  244. border: 1rpx solid #ED0909;
  245. font-family: PingFangSC, PingFang SC;
  246. font-weight: 400;
  247. font-size: 20rpx;
  248. color: #ED0909;
  249. // line-height: 32rpx;
  250. text-align: center;
  251. font-style: normal;
  252. display: inline;
  253. padding: 0 4rpx;
  254. box-sizing: border-box;
  255. }
  256. .num {
  257. font-family: SFPro, SFPro;
  258. font-weight: 400;
  259. font-size: 20rpx;
  260. color: #555555;
  261. line-height: 24rpx;
  262. text-align: left;
  263. font-style: normal;
  264. margin-top: 16rpx;
  265. }
  266. .money {
  267. font-family: HarmonyOS_Sans_Medium;
  268. font-size: 20rpx;
  269. color: #F83224;
  270. line-height: 26rpx;
  271. text-align: left;
  272. font-style: normal;
  273. }
  274. }
  275. }
  276. .back {
  277. position: absolute;
  278. top: 0;
  279. left: 0;
  280. width: 750rpx;
  281. height: 800rpx;
  282. background: #FE2E2E;
  283. }
  284. .input {
  285. width: 702rpx;
  286. height: 68rpx;
  287. background: #FFFFFF;
  288. border-radius: 34rpx;
  289. margin-left: 24rpx;
  290. box-sizing: border-box;
  291. padding: 0 8rpx 0 24rpx;
  292. .search {
  293. width: 100rpx;
  294. height: 56rpx;
  295. background: #F83224;
  296. border-radius: 28rpx;
  297. font-family: PingFangSC, PingFang SC;
  298. font-weight: 400;
  299. font-size: 26rpx;
  300. color: #FFFFFF;
  301. line-height: 56rpx;
  302. text-align: center;
  303. font-style: normal;
  304. }
  305. }
  306. </style>