goods.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. <template>
  2. <!-- 物品信息 -->
  3. <view class="back">
  4. <view class="top">
  5. <view class="u-flex">
  6. <text class="title">{{i18n.item}}</text>
  7. <view class="mast">{{i18n.required}}</view>
  8. </view>
  9. <view v-if="goodname" class="" style="margin-top: 30rpx;">
  10. <view class="about u-flex"
  11. style="color: rgba(248, 50, 36, 1);border: 2rpx solid rgba(248, 50, 36, 1);justify-content: center;width: 420rpx;">
  12. <text style="margin-right: 18rpx;">{{goodname}}</text>
  13. <u-icon name="close" color="rgba(248, 50, 36, 1)" size="12" @click="goodname=''"></u-icon>
  14. </view>
  15. </view>
  16. <view class="">
  17. <view class="info">{{i18n.Filling}}</view>
  18. <view class="input">
  19. <input disabled type="text" :placeholder="i18n.Please" style="width: 100%;" @click="tosearch" />
  20. </view>
  21. <view v-if="goodname==''" class="u-flex " style="margin-top: 28rpx;flex-wrap: wrap;column-gap: 10rpx;">
  22. <view class="about" v-for="(item,idx) in goods" @click="activename(item)" style="overflow: hidden;">
  23. <text v-if="language =='zh-CN'">{{item.name_cn}}</text>
  24. <text v-if="language =='en-US'">{{item.name_en}}</text>
  25. <text v-if="language =='es-ES'">{{item.name_es}}</text>
  26. <text v-if="language =='it-IT'">{{item.name_ita}}</text>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="type u-flex u-row-between">
  32. <view class="u-flex">
  33. <text class="title">{{i18n.shoptype}}</text>
  34. <image src="../static/express/explain.png" style="width: 32rpx;height: 32rpx;margin-left: 10rpx;"
  35. mode=""></image>
  36. </view>
  37. <view class="u-flex">
  38. <view class="u-flex" @click="type('normal')" style="margin-right: 24rpx;">
  39. <image v-if="goodtype=='normal'" style="width: 24rpx;height: 24rpx;margin-right: 6rpx;"
  40. src="../static/express/active.png" mode=""></image>
  41. <image v-if="goodtype=='special'" style="width: 24rpx;height: 24rpx;margin-right: 6rpx;"
  42. src="../static/express/noactive.png" mode=""></image>
  43. <text class='special'>{{i18n.Normal}}</text>
  44. </view>
  45. <view class="u-flex" @click="type('special')">
  46. <image v-if="goodtype=='special'" style="width: 24rpx;height: 24rpx;margin-right: 6rpx;"
  47. src="../static/express/active.png" mode=""></image>
  48. <image v-if="goodtype=='normal'" style="width: 24rpx;height: 24rpx;margin-right: 6rpx;"
  49. src="../static/express/noactive.png" mode=""></image>
  50. <text class='special'>{{i18n.special}}</text>
  51. </view>
  52. </view>
  53. </view>
  54. <view class="abouta">
  55. <view class="u-flex u-row-between">
  56. <view class="title">{{i18n.estimated}}</view>
  57. <view class="">
  58. <u-number-box v-model="value">
  59. <view @click="changeweight" slot="minus" class="minus">
  60. <u-icon name="minus" size="12"></u-icon>
  61. </view>
  62. <!-- <text slot="input" style="width: 150rpx;text-align: center;" class="inpu">{{value}}kg</text> -->
  63. <view slot="input" class="u-flex"
  64. style="width: 150rpx;text-align: center;background: #f4f4f4;padding: 10rpx 20rpx;">
  65. <input type="text" v-model="weight" />
  66. <text>kg</text>
  67. <!-- <text class="inpu">{{value}}件</text> -->
  68. </view>
  69. <view @click="weight++" slot="plus" class="plus">
  70. <u-icon name="plus" color="#000000" size="12"></u-icon>
  71. </view>
  72. </u-number-box>
  73. </view>
  74. </view>
  75. <view class="u-flex u-row-between"
  76. style="border-top: 2rpx solid rgba(151, 151, 151, 0.1);padding-top: 30rpx;margin-top: 32rpx;">
  77. <view class="title">{{i18n.piece}}</view>
  78. <view class="">
  79. <u-number-box v-model="value">
  80. <view @click="changenumber" slot="minus" class="minus">
  81. <u-icon name="minus" size="12"></u-icon>
  82. </view>
  83. <view slot="input" class="u-flex"
  84. style="width: 150rpx;text-align: center;background: #f4f4f4;padding: 10rpx 20rpx;">
  85. <input type="text" v-model="number" />
  86. <text>件</text>
  87. <!-- <text class="inpu">{{value}}件</text> -->
  88. </view>
  89. <view @click="number++" slot="plus" class="plus">
  90. <u-icon name="plus" color="#000000" size="12"></u-icon>
  91. </view>
  92. </u-number-box>
  93. </view>
  94. </view>
  95. <view class="u-flex u-row-between" style="margin-top: 30rpx;">
  96. <text style="font-weight: 600;">{{i18n.volume}}</text>
  97. <text style="font-size: 20rpx;
  98. color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
  99. </view>
  100. <view class="u-flex u-row-between" style="margin-top: 32rpx;">
  101. <view class="vite u-flex">
  102. <input type="text" :placeholder="i18n.length" v-model="length" />
  103. <text>cm</text>
  104. </view>
  105. <view class="">*</view>
  106. <view class="vite u-flex">
  107. <input type="text" :placeholder="i18n.wide" v-model="width" />
  108. <text>cm</text>
  109. </view>
  110. <view class="">*</view>
  111. <view class="vite u-flex">
  112. <input type="text" :placeholder="i18n.height" v-model="height" />
  113. <text>cm</text>
  114. </view>
  115. </view>
  116. <view class="u-flex" style="margin-top: 28rpx;">
  117. <view class="zhu">
  118. {{i18n.Note}}
  119. <text class="rule"> {{i18n.rule}}</text>
  120. </view>
  121. </view>
  122. </view>
  123. <view class="btn">
  124. <view class="button" @click="enter">{{i18n.enter}}</view>
  125. </view>
  126. </view>
  127. </template>
  128. <script>
  129. export default {
  130. data() {
  131. return {
  132. value: 1,
  133. goods: [],
  134. language: 'zh-CN',
  135. goodname: '',
  136. number: 1,
  137. weight: 1,
  138. goodid: '', //物品信息id
  139. goodtype: 'normal', //商品类型
  140. length: '',
  141. width: '',
  142. height: '',
  143. typea:''
  144. };
  145. },
  146. computed: {
  147. i18n() {
  148. return this.$t('index')
  149. }
  150. },
  151. onLoad(options) {
  152. if (options.goodinfo) {
  153. var goodinfo = JSON.parse(decodeURIComponent(options.goodinfo));
  154. this.goodid = goodinfo.goodid
  155. this.goodname = goodinfo.goodname
  156. this.goodtype = goodinfo.goodtype
  157. this.height = goodinfo.height
  158. this.length = goodinfo.length
  159. this.number = goodinfo.number
  160. this.weight = goodinfo.weight
  161. this.width = goodinfo.width
  162. }
  163. if(options.goodtype){
  164. this.goodtype = options.goodtype
  165. console.log(this.goodtype);
  166. this.typea = 'pin'
  167. }
  168. this.getgoods()
  169. },
  170. onShow() {
  171. if (uni.getStorageSync('language') != '') {
  172. this.language = uni.getStorageSync('language')
  173. }
  174. uni.setNavigationBarTitle({
  175. title: this.i18n.item
  176. })
  177. },
  178. methods: {
  179. enter() {
  180. if (this.goodid == '') {
  181. this.$u.toast(this.i18n.itemtoSend)
  182. return
  183. }
  184. if (this.goodtype == '') {
  185. this.$u.toast(this.i18n.selectitemType)
  186. return
  187. }
  188. const eventchannel = this.getOpenerEventChannel();
  189. eventchannel.emit('goodinfo', {
  190. goodid: this.goodid,
  191. goodtype: this.goodtype,
  192. goodname: this.goodname,
  193. number: this.number,
  194. weight: this.weight,
  195. length: this.length,
  196. width: this.width,
  197. height: this.height,
  198. })
  199. uni.navigateBack()
  200. },
  201. changeweight() {
  202. if (this.weight == 1) {
  203. this.$u.toast(this.i18n.Weightnotlessthan)
  204. } else {
  205. this.weight--
  206. }
  207. },
  208. changenumber() {
  209. if (this.number == 1) {
  210. this.$u.toast(this.i18n.cannotbelessthan)
  211. } else {
  212. this.number--
  213. }
  214. },
  215. //商品类型
  216. type(type) {
  217. if(this.typea == 'pin'){
  218. }else{
  219. this.goodtype = type
  220. }
  221. },
  222. //选中哪个物品
  223. activename(item) {
  224. if (this.language == 'zh-CN') {
  225. this.goodname = item.name_cn
  226. } else if (this.language == 'en-US') {
  227. this.goodname = item.name_en
  228. } else if (this.language == 'es-ES') {
  229. this.goodname = item.name_es
  230. } else if (this.language == 'it-IT') {
  231. this.goodname = item.name_ita
  232. }
  233. this.goodid = item.id
  234. },
  235. getgoods() {
  236. uni.$u.http.get('/api/express-goods-info', {
  237. params: {
  238. is_hot: 1
  239. }
  240. }).then((res) => {
  241. this.goods = res
  242. }).catch(() => {
  243. })
  244. },
  245. tosearch() {
  246. var that = this
  247. uni.navigateTo({
  248. url: "/pageB/search",
  249. events: {
  250. searchinfo: function(res) {
  251. if (that.language == 'zh-CN') {
  252. that.goodname = res.name_cn
  253. } else if (that.language == 'en-US') {
  254. that.goodname = res.name_en
  255. } else if (that.language == 'es-ES') {
  256. that.goodname = res.name_es
  257. } else if (that.language == 'it-IT') {
  258. that.goodname = res.name_ita
  259. }
  260. that.goodid = res.id
  261. }
  262. }
  263. })
  264. }
  265. }
  266. }
  267. </script>
  268. <style lang="scss" scoped>
  269. .vite {
  270. width: 198rpx;
  271. height: 60rpx;
  272. background: #F4F4F4;
  273. border-radius: 36rpx;
  274. padding: 12rpx 28rpx;
  275. box-sizing: border-box;
  276. }
  277. .special {
  278. font-family: PingFangSC, PingFang SC;
  279. font-weight: 400;
  280. font-size: 26rpx;
  281. color: #444444;
  282. line-height: 36rpx;
  283. text-align: left;
  284. font-style: normal;
  285. }
  286. .minus {
  287. width: 22px;
  288. height: 22px;
  289. border-width: 1px;
  290. border-color: rgba(0, 0, 0, 0);
  291. border-style: solid;
  292. border-top-left-radius: 100px;
  293. border-top-right-radius: 100px;
  294. border-bottom-left-radius: 100px;
  295. border-bottom-right-radius: 100px;
  296. @include flex;
  297. justify-content: center;
  298. align-items: center;
  299. }
  300. .inpu {
  301. padding: 0 20px;
  302. width: 150rpx;
  303. height: 52rpx;
  304. background: #F4F4F4;
  305. text-align: center;
  306. line-height: 52rpx;
  307. }
  308. .plus {
  309. width: 22px;
  310. height: 22px;
  311. // background-color: #FF0000;
  312. border-radius: 50%;
  313. /* #ifndef APP-NVUE */
  314. display: flex;
  315. /* #endif */
  316. justify-content: center;
  317. align-items: center;
  318. }
  319. .back {
  320. padding: 20rpx 24rpx;
  321. .btn {
  322. width: 750rpx;
  323. height: 166rpx;
  324. background: #FFFFFF;
  325. position: fixed;
  326. bottom: 0;
  327. left: 0;
  328. padding: 18rpx 32rpx;
  329. box-sizing: border-box;
  330. .button {
  331. width: 686rpx;
  332. height: 88rpx;
  333. background: #F83224;
  334. border-radius: 44rpx;
  335. font-family: PingFangSC, PingFang SC;
  336. font-weight: 500;
  337. font-size: 32rpx;
  338. color: #FFFFFF;
  339. line-height: 88rpx;
  340. text-align: center;
  341. font-style: normal;
  342. }
  343. }
  344. .abouta {
  345. padding: 38rpx 20rpx;
  346. box-sizing: border-box;
  347. width: 702rpx;
  348. // height: 352rpx;
  349. background: #FFFFFF;
  350. border-radius: 16rpx;
  351. margin-top: 20rpx;
  352. .zhu {
  353. font-family: PingFangSC, PingFang SC;
  354. font-weight: 400;
  355. font-size: 24rpx;
  356. color: #7D7D7D;
  357. line-height: 42rpx;
  358. text-align: left;
  359. font-style: normal;
  360. }
  361. .rule {
  362. font-family: PingFangSC, PingFang SC;
  363. font-weight: 400;
  364. font-size: 24rpx;
  365. color: #F83224;
  366. line-height: 34rpx;
  367. text-align: left;
  368. font-style: normal;
  369. }
  370. }
  371. .title {
  372. font-family: PingFangSC, PingFang SC;
  373. font-weight: 600;
  374. font-size: 28rpx;
  375. color: #222222;
  376. line-height: 40rpx;
  377. text-align: left;
  378. font-style: normal;
  379. }
  380. .type {
  381. width: 704rpx;
  382. height: 96rpx;
  383. background: #FFFFFF;
  384. border-radius: 16rpx;
  385. margin-top: 20rpx;
  386. padding: 28rpx 20rpx;
  387. box-sizing: border-box;
  388. .change {
  389. font-family: PingFangSC, PingFang SC;
  390. font-weight: 400;
  391. font-size: 28rpx;
  392. color: #666666;
  393. line-height: 40rpx;
  394. text-align: left;
  395. font-style: normal;
  396. }
  397. }
  398. .top {
  399. width: 702rpx;
  400. // height: 484rpx;
  401. background: #FFFFFF;
  402. border-radius: 16rpx;
  403. padding: 24rpx 28rpx;
  404. box-sizing: border-box;
  405. .mast {
  406. // width: 62rpx;
  407. height: 30rpx;
  408. border-radius: 16rpx;
  409. border: 1rpx solid #F83224;
  410. font-family: PingFangSC, PingFang SC;
  411. font-weight: 400;
  412. font-size: 20rpx;
  413. color: #FF1515;
  414. line-height: 30rpx;
  415. text-align: center;
  416. font-style: normal;
  417. margin-left: 8rpx;
  418. padding: 0 6rpx;
  419. box-sizing: border-box;
  420. }
  421. .about {
  422. width: 202rpx;
  423. height: 60rpx;
  424. border-radius: 36rpx;
  425. border: 1rpx solid rgba(151, 151, 151, 0.5);
  426. font-family: PingFangSC, PingFang SC;
  427. font-weight: 400;
  428. font-size: 26rpx;
  429. color: #444444;
  430. line-height: 60rpx;
  431. text-align: center;
  432. font-style: normal;
  433. margin-bottom: 20rpx;
  434. }
  435. }
  436. .info {
  437. font-family: PingFangSC, PingFang SC;
  438. font-weight: 400;
  439. font-size: 24rpx;
  440. color: #222222;
  441. line-height: 34rpx;
  442. text-align: left;
  443. font-style: normal;
  444. margin-top: 20rpx;
  445. }
  446. .input {
  447. width: 646rpx;
  448. height: 68rpx;
  449. background: #F5F5F5;
  450. border-radius: 44rpx;
  451. padding: 14rpx 32rpx;
  452. margin-top: 20rpx;
  453. box-sizing: border-box;
  454. }
  455. }
  456. </style>