shoplist.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <template>
  2. <view>
  3. <u-tabs lineColor="rgba(0,0,0,0)" :activeStyle="{
  4. color: 'rgba(255, 21, 21, 1)',
  5. fontWeight: 'bold',
  6. transform: 'scale(1.05)'
  7. }" :list="list1" @click="click"></u-tabs>
  8. <view class="box" style="position: relative;">
  9. <view class="u-flex u-row-between">
  10. <view @click="current=0" class="u-flex" :style="{color:current==0?'rgba(255, 21, 21, 1)':''}">
  11. {{i18n.synthesis}}
  12. <view>
  13. </view>
  14. <u-icon name="arrow-down-fill" color="rgba(255, 21, 21, 1)" size="8"></u-icon>
  15. </view>
  16. <text @click="current=1" :style="{color:current==1?'rgba(255, 21, 21, 1)':''}">{{i18n.sell}}</text>
  17. <view @click="current=2" class=" u-flex" :style="{color:current==2?'rgba(255, 21, 21, 1)':''}">
  18. <view>{{i18n.Pricea}}</view>
  19. <image src="static/images/up.png" style="width: 16rpx;height: 16rpx;" mode=""></image>
  20. </view>
  21. <text @click="current=3" :style="{color:current==3?'rgba(255, 21, 21, 1)':''}">≤1kg</text>
  22. <text>|</text>
  23. <view class="u-flex" :style="{color:current==4?'rgba(255, 21, 21, 1)':''}" @click="shaixuan">
  24. <view style="margin-right: 10rpx;">{{i18n.screen}}</view>
  25. <image v-if="current==4" src="static/images/shaixuana.png" style="width: 24rpx;height: 24rpx;"
  26. mode=""></image>
  27. <image v-else src="static/images/shaixuan.png" style="width: 24rpx;height: 24rpx;" mode=""></image>
  28. </view>
  29. </view>
  30. <liu-waterfall :dataList="data" :column="columns" @click="detail"></liu-waterfall>
  31. <view class="pop" style="position: absolute;top:80rpx" v-if="shai&&current==4">
  32. <!-- 价格区间 -->
  33. <view class=" title">{{i18n.Pricerange}}</view>
  34. <view class="u-flex u-row-between">
  35. <view class="input u-flex u-row-center">
  36. <input style="text-align: center;" type="text" :placeholder="i18n.Bottomprice"
  37. v-model="price_range_start" />
  38. </view>
  39. <text>-</text>
  40. <view class="input u-flex u-row-center">
  41. <input style="text-align: center;" type="text" :placeholder="i18n.highestprice"
  42. v-model="price_range_end" />
  43. </view>
  44. </view>
  45. <!-- 重量区间 -->
  46. <view class="title" style="margin-top: 36rpx;">{{i18n.Weightinterval}}</view>
  47. <view class="u-flex u-row-between">
  48. <view class="input u-flex u-row-center">
  49. <input style="text-align: center;" type="text" :placeholder="i18n.Bottomprice"
  50. v-model="weight_range_start" />
  51. </view>
  52. <text>-</text>
  53. <view class="input u-flex u-row-center">
  54. <input style="text-align: center;" type="text" :placeholder="i18n.highestprice"
  55. v-model="weight_range_end" />
  56. </view>
  57. </view>
  58. <!-- 品牌 -->
  59. <view style="margin-top: 36rpx;" class="title">{{i18n.brand}}</view>
  60. <view class="u-flex " style="flex-wrap: wrap;column-gap: 34rpx;">
  61. <view @click="changei(item,idx)" v-for="(item,idx) in brandlist" :key="idx">
  62. <view :class="index==idx?'acitem':'item'" class="" v-if="language =='zh-CN'">
  63. {{item.name_cn}}
  64. </view>
  65. <view :class="index==idx?'acitem':'item'" class="" v-if="language =='en-US'">
  66. {{item.name_en}}
  67. </view>
  68. <view :class="index==idx?'acitem':'item'" class="" v-if="language =='es-ES'">
  69. {{item.name_es}}
  70. </view>
  71. <view :class="index==idx?'acitem':'item'" class="" v-if="language =='it-IT'">
  72. {{item.name_ita}}
  73. </view>
  74. </view>
  75. </view>
  76. <view style="margin-top: 36rpx;" class="title">{{i18n.Proprietary}}</view>
  77. <view :class="yes==true?'acitem':'item'" @click="yesa">
  78. <!-- {{yes}} -->
  79. {{i18n.yes}}
  80. </view>
  81. <view class="bottom u-flex" style="margin-top: 58rpx;">
  82. <view class="btn1">
  83. {{i18n.reset}}
  84. </view>
  85. <view class="btn2" @click="enter">
  86. {{i18n.enter}}
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </view>
  92. </template>
  93. <script>
  94. export default {
  95. data() {
  96. return {
  97. yes: false,
  98. shai: false,
  99. current: 0,
  100. curess: 0,
  101. index: '',
  102. list1: [],
  103. data: [],
  104. columns: 2,
  105. goodsid: '',
  106. title: '',
  107. parent_id: '',
  108. language: '',
  109. page: 1,
  110. weight_range_start: '', //重量区间 start
  111. weight_range_end: '', //重量区间 end
  112. brand_id: '', //品牌id
  113. price_range_start: '', //价格区间
  114. price_range_end: '', //价格区间
  115. brandlist: []
  116. };
  117. },
  118. onLoad(options) {
  119. this.goodsid = options.id
  120. this.title = options.title
  121. this.parent_id = options.parent_id
  122. this.curess = options.index
  123. console.log(options.index);
  124. },
  125. onShow() {
  126. uni.setNavigationBarTitle({
  127. title: this.title
  128. })
  129. this.goods(this.goodsid)
  130. this.category(this.parent_id)
  131. if (uni.getStorageSync('language') != '') {
  132. this.language = uni.getStorageSync('language')
  133. }
  134. this.brand()
  135. },
  136. computed: {
  137. i18n() {
  138. return this.$t('index')
  139. }
  140. },
  141. methods: {
  142. enter() {
  143. this.shai = false
  144. this.goods(this.goodsid)
  145. },
  146. yesa() {
  147. this.yes = !this.yes
  148. },
  149. //商品详情
  150. detail(item) {
  151. console.log(item);
  152. uni.navigateTo({
  153. url: '/pageA/productdetails?id=' + item.id
  154. })
  155. },
  156. //商品分类
  157. category(id) {
  158. uni.$u.http.get('/api/goods/category', {
  159. params: {
  160. parent_id: id,
  161. limit: 10,
  162. page: this.page
  163. }
  164. }).then((res) => {
  165. const categoryArr = res
  166. if (this.language == 'en-US') {
  167. categoryArr.forEach(item => {
  168. item.name = item.name_en
  169. })
  170. }
  171. if (this.language == 'es-ES') {
  172. categoryArr.forEach(item => {
  173. item.name = item.name_es
  174. })
  175. }
  176. if (this.language == 'it-IT') {
  177. categoryArr.forEach(item => {
  178. item.name = item.name_ita
  179. })
  180. }
  181. if (this.language == 'zh-CN') {
  182. categoryArr.forEach(item => {
  183. item.name = item.name_cn
  184. })
  185. }
  186. this.list1 = categoryArr.reverse()
  187. }).catch(() => {
  188. })
  189. },
  190. //商品列表
  191. goods(id) {
  192. uni.$u.http.get('/api/goods', {
  193. params: {
  194. category_id: id,
  195. limit: 10,
  196. page: this.page,
  197. weight_range_start: this.weight_range_start,
  198. weight_range_end: this.weight_range_end,
  199. brand_id: this.brand_id,
  200. price_range_start: this.price_range_start,
  201. price_range_end: this.price_range_end
  202. }
  203. }).then((res) => {
  204. this.data = res.data
  205. }).catch(() => {
  206. })
  207. },
  208. //品牌列表
  209. brand(id) {
  210. uni.$u.http.get('/api/goods/brand', {
  211. params: {}
  212. }).then((res) => {
  213. console.log(res);
  214. this.brandlist = res
  215. }).catch(() => {
  216. })
  217. },
  218. shaixuan() {
  219. this.shai = true,
  220. this.current = 4
  221. },
  222. click(item) {
  223. console.log('item', item);
  224. this.curess = item.index
  225. this.title = item.title
  226. this.goods(item.id)
  227. if (this.language == 'en-US') {
  228. uni.setNavigationBarTitle({
  229. title: item.name_en
  230. })
  231. }
  232. if (this.language == 'es-ES') {
  233. uni.setNavigationBarTitle({
  234. title: item.name_es
  235. })
  236. }
  237. if (this.language == 'it-IT') {
  238. uni.setNavigationBarTitle({
  239. title: item.name_ita
  240. })
  241. }
  242. if (this.language == 'zh-CN') {
  243. uni.setNavigationBarTitle({
  244. title: item.name_cn
  245. })
  246. }
  247. },
  248. changei(item,idx) {
  249. this.brand_id = item.id
  250. this.index = idx
  251. }
  252. }
  253. }
  254. </script>
  255. <style lang="scss" scoped>
  256. .box {
  257. width: 750rpx;
  258. min-height: 1360rpx;
  259. background: #FFFFFF;
  260. border-radius: 28rpx 28rpx 0rpx 0rpx;
  261. padding: 38rpx 20rpx 20rpx;
  262. box-sizing: border-box;
  263. margin-top: 20rpx;
  264. }
  265. .pop {
  266. width: 750rpx;
  267. // height: 904rpx;
  268. background: #FFFFFF;
  269. padding: 36rpx 32rpx;
  270. box-sizing: border-box;
  271. .btn1 {
  272. width: 702rpx;
  273. height: 84rpx;
  274. background: rgba(248, 50, 36, 0.1);
  275. border-radius: 42rpx;
  276. font-family: PingFangSC, PingFang SC;
  277. font-weight: 500;
  278. font-size: 32rpx;
  279. color: #F83224;
  280. line-height: 84rpx;
  281. text-align: center;
  282. font-style: normal;
  283. border-radius: 42rpx 0 0 42rpx;
  284. }
  285. .btn2 {
  286. width: 702rpx;
  287. height: 84rpx;
  288. background: #F83224;
  289. border-radius: 42rpx;
  290. font-family: PingFangSC, PingFang SC;
  291. font-weight: 500;
  292. font-size: 32rpx;
  293. color: #FFFFFF;
  294. line-height: 84rpx;
  295. text-align: center;
  296. font-style: normal;
  297. border-radius: 0rpx 42rpx 42rpx 0;
  298. }
  299. .item {
  300. width: 206rpx;
  301. height: 64rpx;
  302. background: #F4F4F4;
  303. border-radius: 36rpx;
  304. font-family: PingFangSC, PingFang SC;
  305. font-weight: 400;
  306. font-size: 24rpx;
  307. color: #131415;
  308. line-height: 64rpx;
  309. text-align: center;
  310. font-style: normal;
  311. margin-top: 26rpx;
  312. }
  313. .acitem {
  314. width: 206rpx;
  315. height: 64rpx;
  316. font-family: PingFangSC, PingFang SC;
  317. font-weight: 400;
  318. border-radius: 36rpx;
  319. font-size: 24rpx;
  320. color: rgba(248, 50, 36, 1);
  321. line-height: 64rpx;
  322. text-align: center;
  323. font-style: normal;
  324. margin-top: 26rpx;
  325. background: rgba(248, 50, 36, 0.1);
  326. border: 1rpx solid #F83224;
  327. box-sizing: border-box;
  328. }
  329. .title {
  330. font-family: PingFangSC, PingFang SC;
  331. font-weight: 500;
  332. font-size: 26rpx;
  333. color: #131415;
  334. line-height: 36rpx;
  335. text-align: left;
  336. font-style: normal;
  337. margin-bottom: 24rpx;
  338. }
  339. .input {
  340. width: 312rpx;
  341. height: 64rpx;
  342. background: #F4F4F4;
  343. border-radius: 36rpx;
  344. }
  345. }
  346. </style>