subsidy.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <template>
  2. <!-- 百万补贴 -->
  3. <view style="position: relative;">
  4. <image src="static/images/back.png"
  5. style="width: 750rpx;height: 468rpx;position: absolute;top: 0;left: 0;z-index: -1;" mode=""></image>
  6. <u-navbar :autoBack='true' :safeAreaInsetTop="true" bgColor="rgba(0,0,0,0)" :placeholder='true'>
  7. <view class="u-nav-slot u-flex" slot="left">
  8. <u-icon name="arrow-left" size="19" color='rgba(253, 252, 251, 1)'></u-icon>
  9. <view class="input">
  10. <u-icon name="search" color="rgba(153, 153, 153, 1)" size="32"></u-icon>
  11. <input type="text" :placeholder="Pleaseproductname" />
  12. </view>
  13. </view>
  14. </u-navbar>
  15. <!-- 标签 -->
  16. <view class=" u-row-center" style="margin-top: 52rpx;display: flex;flex-direction: column;align-items: center;">
  17. <image v-if="show==1" src="static/images/img1.png" style="width: 484rpx;height: 52rpx;" mode=""></image>
  18. <image v-if="show==2" src="static/images/img2.png" style="width: 346rpx;height: 64rpx;" mode=""></image>
  19. <image v-if="show==3" src="static/images/goshop.png" style="width: 382rpx;height: 52rpx;" mode=""></image>
  20. <!-- <image src="static/images/img1.png" style="width: 484rpx;height: 52rpx;" mode=""></image> -->
  21. <view class="biaopqian" style="margin-top: 20rpx;">
  22. <text>{{i18n.Goodgoods}}</text>
  23. <text style='margin-left:20rpx;margin-right:20rpx'>|</text>
  24. <text>{{i18n.Saveeverything}}</text>
  25. <text style='margin-left:20rpx;margin-right:20rpx'>|</text>
  26. <text>{{i18n.willpay}}</text>
  27. </view>
  28. </view>
  29. <!-- 商品 -->
  30. <view class="box">
  31. <view class="" style="margin-left: -22rpx;">
  32. <u-tabs :activeStyle="{
  33. color: 'rgba(248, 53, 39, 1)',
  34. fontWeight: 'bold',
  35. transform: 'scale(1.05)'
  36. }" :list="list1" lineColor='rgba(248, 53, 39, 1)' @change='changetab'></u-tabs>
  37. </view>
  38. <view class="item u-flex" v-for="(child,index) in list" @click="todetail(child.id)">
  39. <image :src="child.image" style="width: 232rpx;height: 232rpx;" mode=""></image>
  40. <view class="u-row-between"
  41. style="height: 232rpx;display: flex;flex-direction: column;margin-left: 20rpx;">
  42. <view class="">
  43. <view class="titl" v-if="language =='zh-CN'">
  44. {{child.name_cn}}
  45. </view>
  46. <view class="titl" v-if="language =='en-US'">
  47. {{child.name_en}}
  48. </view>
  49. <view class="titl" v-if="language =='es-ES'">
  50. {{child.name_es}}
  51. </view>
  52. <view class="titl" v-if="language =='it-IT'">
  53. {{child.name_ita}}
  54. </view>
  55. <view class="u-flex" style="margin-top: 18rpx;column-gap: 18rpx;">
  56. <text class="tabs baoyou"
  57. style="background:rgba(248, 50, 36, 1) ;border: 2rpx solid rgba(248, 50, 36, 0);color:#FFFFFF ;">{{i18n.postage}}</text>
  58. <text class="tabs" v-for="(item,idx) in 2" :key="idx">
  59. {{i18n.willpay}}
  60. </text>
  61. </view>
  62. </view>
  63. <view class="backimg" style="position: relative;">
  64. <image src="./static/images/tab.png"
  65. style="width: 100%;height: 100%;position: absolute;left: 0;top: 0;z-index: 0;" mode="">
  66. </image>
  67. <view v-if="show==1" class="u-flex u-row-between"
  68. style="position: relative;z-index: 1;padding:0 24rpx ;text-align: center;line-height: 68rpx;">
  69. <view class="">
  70. <text class="textone">{{i18n.Subsidized}}</text>
  71. <text class='texttwo' style="margin-left: 12rpx;">¥</text>
  72. <text class='texttwo' style="font-size: 40rpx;">{{child.price.slice(0,-3)}}</text>
  73. <text class='texttwo'>{{child.price.slice(-3)}}</text>
  74. </view>
  75. <view class="">
  76. <text class="textthree">{{i18n.fill}}</text>
  77. <text class='textfour' style="margin-left: 8rpx;">¥</text>
  78. <text class='textfour'
  79. style="font-size: 28rpx;">{{(child.price*1000 - child.discount_price*1000)/1000}}</text>
  80. </view>
  81. </view>
  82. <view v-if="show==2 || show==3" class="u-flex u-row-between"
  83. style="position: relative;z-index: 1;padding:0 60rpx 0 24rpx ;text-align: center;line-height: 68rpx;">
  84. <view class="">
  85. <text v-if="show==2" class="textone">{{i18n.Subsidized}}</text>
  86. <text v-if="show==3" class="textone">{{i18n.postage}}</text>
  87. <text class='texttwo' style="margin-left: 12rpx;">¥</text>
  88. <text class='texttwo' style="font-size: 40rpx;">{{child.price.slice(0,-3)}}</text>
  89. <text class='texttwo'>{{child.price.slice(-3)}}</text>
  90. </view>
  91. <view class="u-flex">
  92. <image src="static/images/qiang.png" style="width: 48rpx;height: 38rpx;" mode="">
  93. </image>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. </view>
  99. </view>
  100. </view>
  101. </template>
  102. <script>
  103. export default {
  104. data() {
  105. return {
  106. list1: [],
  107. show: 1,
  108. list: [], //数据
  109. Pleaseproductname: '', //搜索内容
  110. language: '', //语言
  111. };
  112. },
  113. computed: {
  114. i18n() {
  115. return this.$t('index')
  116. }
  117. },
  118. onLoad(options) {
  119. this.show = options.show
  120. },
  121. onShow() {
  122. if (uni.getStorageSync('language') != '') {
  123. this.language = uni.getStorageSync('language')
  124. }
  125. if (this.show == 1) {
  126. this.subsid() //百万补贴
  127. }
  128. if (this.show == 2) {
  129. this.pack() //拼包好物
  130. }
  131. if (this.show == 3) {
  132. this.shipp() //海外包邮
  133. }
  134. this.category()
  135. },
  136. methods: {
  137. //跳转详情
  138. todetail(id) {
  139. console.log(id);
  140. uni.navigateTo({
  141. url: '/pageA/productdetails?id=' + id
  142. })
  143. },
  144. //标签切换
  145. changetab(e) {
  146. if (this.show == 1) {
  147. this.subsid(e.id) //百万补贴
  148. }
  149. if (this.show == 2) {
  150. this.pack(e.id) //拼包好物
  151. }
  152. if (this.show == 3) {
  153. this.shipp(e.id) //海外包邮
  154. }
  155. },
  156. //商品分类列表
  157. category() {
  158. uni.$u.http.get('/api/goods/category', {
  159. params: {
  160. parent_id: 0
  161. }
  162. }).then((res) => {
  163. const categoryArr = res
  164. this.list1 = [{
  165. name: '',
  166. category_id: ''
  167. }]
  168. if (this.language == 'en-US') {
  169. categoryArr.forEach(item => {
  170. item.name = item.name_en
  171. })
  172. this.list1[0].name = 'selection'
  173. }
  174. if (this.language == 'es-ES') {
  175. categoryArr.forEach(item => {
  176. item.name = item.name_es
  177. })
  178. this.list1[0].name = 'Una selección de'
  179. }
  180. if (this.language == 'it-IT') {
  181. categoryArr.forEach(item => {
  182. item.name = item.name_ita
  183. })
  184. this.list1[0].name = 'selezionate'
  185. }
  186. if (this.language == 'zh-CN') {
  187. categoryArr.forEach(item => {
  188. item.name = item.name_cn
  189. })
  190. this.list1[0].name = '精选'
  191. }
  192. this.list1 = this.list1.concat(categoryArr)
  193. }).catch(() => {
  194. })
  195. },
  196. //海外包邮接口
  197. shipp(id) {
  198. uni.$u.http.post('api/goods/shipping', {
  199. parent_id: id
  200. }).then((res) => {
  201. this.list = res
  202. }).catch(() => {
  203. })
  204. },
  205. //拼包好物接口
  206. pack(id) {
  207. uni.$u.http.post('/api/goods/pack', {
  208. parent_id: id
  209. }).then((res) => {
  210. this.list = res
  211. }).catch(() => {
  212. })
  213. },
  214. //百万补贴接口
  215. subsid(id) {
  216. uni.$u.http.post('/api/goods/subsidy', {
  217. parent_id: id
  218. }).then((res) => {
  219. this.list = res
  220. }).catch(() => {
  221. })
  222. },
  223. }
  224. }
  225. </script>
  226. <style lang="scss" scoped>
  227. .titl {
  228. font-family: PingFangSC, PingFang SC;
  229. font-weight: 500;
  230. font-size: 30rpx;
  231. color: #444444;
  232. line-height: 42rpx;
  233. text-align: left;
  234. font-style: normal;
  235. width: 400rpx;
  236. overflow: hidden;
  237. text-overflow: ellipsis;
  238. white-space: nowrap;
  239. }
  240. .box {
  241. width: 750rpx;
  242. height: 1266rpx;
  243. background: #F4F4F4;
  244. border-radius: 24rpx 24rpx 0rpx 0rpx;
  245. margin-top: 36rpx;
  246. padding: 32rpx;
  247. box-sizing: border-box;
  248. .baoyou {
  249. font-family: PingFangSC, PingFang SC;
  250. font-weight: 400;
  251. font-size: 20rpx;
  252. color: #FFFFFF;
  253. line-height: 28rpx;
  254. text-align: left;
  255. font-style: normal;
  256. }
  257. .textone {
  258. font-family: PingFangSC, PingFang SC;
  259. font-weight: 400;
  260. font-size: 20rpx;
  261. color: #F83224;
  262. line-height: 28rpx;
  263. text-align: left;
  264. font-style: normal;
  265. }
  266. .texttwo {
  267. font-family: HarmonyOS_Sans_Medium;
  268. font-size: 24rpx;
  269. color: #F83224;
  270. line-height: 34rpx;
  271. text-align: left;
  272. font-style: normal;
  273. }
  274. .textthree {
  275. font-family: PingFangSC, PingFang SC;
  276. font-weight: 400;
  277. font-size: 20rpx;
  278. color: #FDFCFB;
  279. line-height: 28rpx;
  280. text-align: left;
  281. font-style: normal;
  282. }
  283. .textfour {
  284. font-family: PingFangSC, PingFang SC;
  285. font-weight: 400;
  286. font-size: 20rpx;
  287. color: #FDFCFB;
  288. line-height: 28rpx;
  289. text-align: left;
  290. font-style: normal;
  291. }
  292. .backimg {
  293. width: 418rpx;
  294. height: 68rpx;
  295. }
  296. .item {
  297. margin-top: 36rpx;
  298. background: #FDFCFB;
  299. border-radius: 16rpx;
  300. width: 702rpx;
  301. padding: 28rpx 16rpx;
  302. box-sizing: border-box;
  303. // height: 256rpx;
  304. }
  305. .tabs {
  306. padding: 0 8rpx;
  307. height: 32rpx;
  308. border-radius: 4rpx;
  309. border: 1rpx solid #E5BC78;
  310. font-family: PingFangSC, PingFang SC;
  311. font-weight: 400;
  312. font-size: 20rpx;
  313. color: #D48700;
  314. line-height: 28rpx;
  315. text-align: center;
  316. font-style: normal;
  317. }
  318. }
  319. .input {
  320. width: 458rpx;
  321. height: 64rpx;
  322. background: #FDFCFB;
  323. border-radius: 36rpx;
  324. padding: 0 24rpx;
  325. box-sizing: border-box;
  326. margin-left: 16rpx;
  327. display: flex;
  328. align-items: center;
  329. }
  330. .biaopqian {
  331. font-family: PingFangSC, PingFang SC;
  332. font-weight: 400;
  333. font-size: 24rpx;
  334. color: #FFFFFF;
  335. line-height: 34rpx;
  336. text-align: left;
  337. font-style: normal;
  338. }
  339. </style>