goods.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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 @click="toxieyi('product_type_description')" 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" @click="toxieyi('regole_di_fatturazione')"> {{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. toxieyi(code){
  180. uni.navigateTo({
  181. url:'/pageB/xieyi?code='+ code
  182. })
  183. },
  184. enter() {
  185. if (this.goodid == '') {
  186. this.$u.toast(this.i18n.itemtoSend)
  187. return
  188. }
  189. if (this.goodtype == '') {
  190. this.$u.toast(this.i18n.selectitemType)
  191. return
  192. }
  193. const eventchannel = this.getOpenerEventChannel();
  194. eventchannel.emit('goodinfo', {
  195. goodid: this.goodid,
  196. goodtype: this.goodtype,
  197. goodname: this.goodname,
  198. number: this.number,
  199. weight: this.weight,
  200. length: this.length,
  201. width: this.width,
  202. height: this.height,
  203. })
  204. uni.navigateBack()
  205. },
  206. changeweight() {
  207. if (this.weight == 1) {
  208. this.$u.toast(this.i18n.Weightnotlessthan)
  209. } else {
  210. this.weight--
  211. }
  212. },
  213. changenumber() {
  214. if (this.number == 1) {
  215. this.$u.toast(this.i18n.cannotbelessthan)
  216. } else {
  217. this.number--
  218. }
  219. },
  220. //商品类型
  221. type(type) {
  222. if(this.typea == 'pin'){
  223. }else{
  224. this.goodtype = type
  225. }
  226. },
  227. //选中哪个物品
  228. activename(item) {
  229. if (this.language == 'zh-CN') {
  230. this.goodname = item.name_cn
  231. } else if (this.language == 'en-US') {
  232. this.goodname = item.name_en
  233. } else if (this.language == 'es-ES') {
  234. this.goodname = item.name_es
  235. } else if (this.language == 'it-IT') {
  236. this.goodname = item.name_ita
  237. }
  238. this.goodid = item.id
  239. },
  240. getgoods() {
  241. uni.$u.http.get('/api/express-goods-info', {
  242. params: {
  243. is_hot: 1
  244. }
  245. }).then((res) => {
  246. this.goods = res
  247. }).catch(() => {
  248. })
  249. },
  250. tosearch() {
  251. var that = this
  252. uni.navigateTo({
  253. url: "/pageB/search",
  254. events: {
  255. searchinfo: function(res) {
  256. if (that.language == 'zh-CN') {
  257. that.goodname = res.name_cn
  258. } else if (that.language == 'en-US') {
  259. that.goodname = res.name_en
  260. } else if (that.language == 'es-ES') {
  261. that.goodname = res.name_es
  262. } else if (that.language == 'it-IT') {
  263. that.goodname = res.name_ita
  264. }
  265. that.goodid = res.id
  266. }
  267. }
  268. })
  269. }
  270. }
  271. }
  272. </script>
  273. <style lang="scss" scoped>
  274. .vite {
  275. width: 198rpx;
  276. height: 60rpx;
  277. background: #F4F4F4;
  278. border-radius: 36rpx;
  279. padding: 12rpx 28rpx;
  280. box-sizing: border-box;
  281. }
  282. .special {
  283. font-family: PingFangSC, PingFang SC;
  284. font-weight: 400;
  285. font-size: 26rpx;
  286. color: #444444;
  287. line-height: 36rpx;
  288. text-align: left;
  289. font-style: normal;
  290. }
  291. .minus {
  292. width: 22px;
  293. height: 22px;
  294. border-width: 1px;
  295. border-color: rgba(0, 0, 0, 0);
  296. border-style: solid;
  297. border-top-left-radius: 100px;
  298. border-top-right-radius: 100px;
  299. border-bottom-left-radius: 100px;
  300. border-bottom-right-radius: 100px;
  301. @include flex;
  302. justify-content: center;
  303. align-items: center;
  304. }
  305. .inpu {
  306. padding: 0 20px;
  307. width: 150rpx;
  308. height: 52rpx;
  309. background: #F4F4F4;
  310. text-align: center;
  311. line-height: 52rpx;
  312. }
  313. .plus {
  314. width: 22px;
  315. height: 22px;
  316. // background-color: #FF0000;
  317. border-radius: 50%;
  318. /* #ifndef APP-NVUE */
  319. display: flex;
  320. /* #endif */
  321. justify-content: center;
  322. align-items: center;
  323. }
  324. .back {
  325. padding: 20rpx 24rpx;
  326. .btn {
  327. width: 750rpx;
  328. height: 166rpx;
  329. background: #FFFFFF;
  330. position: fixed;
  331. bottom: 0;
  332. left: 0;
  333. padding: 18rpx 32rpx;
  334. box-sizing: border-box;
  335. .button {
  336. width: 686rpx;
  337. height: 88rpx;
  338. background: #F83224;
  339. border-radius: 44rpx;
  340. font-family: PingFangSC, PingFang SC;
  341. font-weight: 500;
  342. font-size: 32rpx;
  343. color: #FFFFFF;
  344. line-height: 88rpx;
  345. text-align: center;
  346. font-style: normal;
  347. }
  348. }
  349. .abouta {
  350. padding: 38rpx 20rpx;
  351. box-sizing: border-box;
  352. width: 702rpx;
  353. // height: 352rpx;
  354. background: #FFFFFF;
  355. border-radius: 16rpx;
  356. margin-top: 20rpx;
  357. .zhu {
  358. font-family: PingFangSC, PingFang SC;
  359. font-weight: 400;
  360. font-size: 24rpx;
  361. color: #7D7D7D;
  362. line-height: 42rpx;
  363. text-align: left;
  364. font-style: normal;
  365. }
  366. .rule {
  367. font-family: PingFangSC, PingFang SC;
  368. font-weight: 400;
  369. font-size: 24rpx;
  370. color: #F83224;
  371. line-height: 34rpx;
  372. text-align: left;
  373. font-style: normal;
  374. }
  375. }
  376. .title {
  377. font-family: PingFangSC, PingFang SC;
  378. font-weight: 600;
  379. font-size: 28rpx;
  380. color: #222222;
  381. line-height: 40rpx;
  382. text-align: left;
  383. font-style: normal;
  384. }
  385. .type {
  386. width: 704rpx;
  387. height: 96rpx;
  388. background: #FFFFFF;
  389. border-radius: 16rpx;
  390. margin-top: 20rpx;
  391. padding: 28rpx 20rpx;
  392. box-sizing: border-box;
  393. .change {
  394. font-family: PingFangSC, PingFang SC;
  395. font-weight: 400;
  396. font-size: 28rpx;
  397. color: #666666;
  398. line-height: 40rpx;
  399. text-align: left;
  400. font-style: normal;
  401. }
  402. }
  403. .top {
  404. width: 702rpx;
  405. // height: 484rpx;
  406. background: #FFFFFF;
  407. border-radius: 16rpx;
  408. padding: 24rpx 28rpx;
  409. box-sizing: border-box;
  410. .mast {
  411. // width: 62rpx;
  412. height: 30rpx;
  413. border-radius: 16rpx;
  414. border: 1rpx solid #F83224;
  415. font-family: PingFangSC, PingFang SC;
  416. font-weight: 400;
  417. font-size: 20rpx;
  418. color: #FF1515;
  419. line-height: 30rpx;
  420. text-align: center;
  421. font-style: normal;
  422. margin-left: 8rpx;
  423. padding: 0 6rpx;
  424. box-sizing: border-box;
  425. }
  426. .about {
  427. width: 202rpx;
  428. height: 60rpx;
  429. border-radius: 36rpx;
  430. border: 1rpx solid rgba(151, 151, 151, 0.5);
  431. font-family: PingFangSC, PingFang SC;
  432. font-weight: 400;
  433. font-size: 26rpx;
  434. color: #444444;
  435. line-height: 60rpx;
  436. text-align: center;
  437. font-style: normal;
  438. margin-bottom: 20rpx;
  439. }
  440. }
  441. .info {
  442. font-family: PingFangSC, PingFang SC;
  443. font-weight: 400;
  444. font-size: 24rpx;
  445. color: #222222;
  446. line-height: 34rpx;
  447. text-align: left;
  448. font-style: normal;
  449. margin-top: 20rpx;
  450. }
  451. .input {
  452. width: 646rpx;
  453. height: 68rpx;
  454. background: #F5F5F5;
  455. border-radius: 44rpx;
  456. padding: 14rpx 32rpx;
  457. margin-top: 20rpx;
  458. box-sizing: border-box;
  459. }
  460. }
  461. </style>