counter.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. <template>
  2. <!-- 物流报价器 -->
  3. <view class="back">
  4. <!-- 城市 -->
  5. <view class="add u-flex u-row-around">
  6. <text class='address' @click="change(0)">{{original||i18n.Starting}}</text>
  7. <image src="static/images/arrows.png" mode="" style="width: 130rpx;height: 10rpx;"></image>
  8. <text class='address' @click="change(1)">{{bourn||i18n.destination}}</text>
  9. </view>
  10. <!-- 商品类型 -->
  11. <view class="type">
  12. <view class="title u-flex">
  13. <text>{{i18n.shoptype}}</text>
  14. <image src="" mode="" style="width: 12rpx;height: 12rpx;"></image>
  15. </view>
  16. <view class="u-flex" style="margin-top: 24rpx;">
  17. <view :class="index==idx?'left':'right'" @click="good(idx)" style="margin-right: 20rpx;"
  18. v-for="(item,idx) in goods" :key="idx">{{item.name}}</view>
  19. <!-- <view class="right" style="margin-left: 20rpx;">特殊商品</view> -->
  20. </view>
  21. </view>
  22. <!-- 跨境物流 -->
  23. <view class="logistics u-flex u-row-between">
  24. <text style="font-weight: 600;">{{i18n.flow}}</text>
  25. <view class="u-flex" @click="logshow=true">
  26. <text class="change">{{i18n.selection}}</text>
  27. <u-icon name="arrow-right" size='16'></u-icon>
  28. </view>
  29. </view>
  30. <!-- 商品重量 -->
  31. <view class="weight u-flex u-row-between">
  32. <text style="font-weight: 600;">{{i18n.Commodity}}</text>
  33. <u-number-box v-model="value">
  34. <view slot="minus" class="minus">
  35. <u-icon name="minus" size="12"></u-icon>
  36. </view>
  37. <text slot="input" style="width: 50px;text-align: center;display: block;height: 30px;line-height: 30px;background: #f5f5f5;" class="input">{{value}}kg</text>
  38. <view slot="plus" class="plus">
  39. <u-icon name="plus" size="12"></u-icon>
  40. </view>
  41. </u-number-box>
  42. </view>
  43. <!-- 获取价格 -->
  44. <view @click="gain" :class="gat==1?'yuan':'price'">
  45. {{i18n.Acquisition}}
  46. </view>
  47. <view class="gain" v-if="gatShow">
  48. <view class="">
  49. <text class='weigh'>{{i18n.Calculated}}:</text>
  50. <text class='weigh' style="color: rgba(34, 34, 34, 1);">30.00kg</text>
  51. </view>
  52. <view class="u-flex u-row-between"
  53. style="border-top: 2rpx solid #979797;margin-top: 32rpx;padding-top: 20rpx;">
  54. <view class="">
  55. <text class='weigh'>{{i18n.Estimated}}</text>
  56. <text style="margin-left: 6rpx;" class='red'>¥</text>
  57. <text class='red' style="font-size: 32rpx;">3619</text>
  58. <text class='red'>起</text>
  59. </view>
  60. <view class="info" @click="logistics">{{i18n.details}}</view>
  61. </view>
  62. </view>
  63. <!-- 地址选择 -->
  64. <u-picker :show="show" ref="uPicker" :columns="columns" @confirm="confirm" @change="changeHandler"></u-picker>
  65. <!-- 跨境物流 -->
  66. <u-popup round='28' :show="logshow" @close="close">
  67. <view class="pop">
  68. <kj-flow @success='success' @close='logshow=false'></kj-flow>
  69. </view>
  70. </u-popup>
  71. </view>
  72. </template>
  73. <script>
  74. export default {
  75. data() {
  76. return {
  77. logshow: false, //物流选择
  78. value: 1,
  79. show: false,
  80. original: '', //起始地
  81. bourn: '', //目的地
  82. type: 0,
  83. gat: 0,
  84. gatShow: false,
  85. columns: [
  86. ['中国', '美国'],
  87. ['深圳', '厦门', '上海', '拉萨']
  88. ],
  89. columnData: [
  90. ['深圳', '厦门', '上海', '拉萨'],
  91. ['得州', '华盛顿', '纽约', '阿拉斯加']
  92. ],
  93. goods: [],
  94. index: 0
  95. };
  96. },
  97. onLoad() {
  98. this.goods = [{
  99. name: this.i18n.Normal
  100. },
  101. {
  102. name: this.i18n.special
  103. }
  104. ]
  105. },
  106. onShow() {
  107. uni.setNavigationBarTitle({
  108. title:this.i18n.compute
  109. })
  110. },
  111. computed: {
  112. i18n() {
  113. return this.$t('index')
  114. }
  115. },
  116. methods: {
  117. success() {
  118. this.logshow = false
  119. },
  120. close() {
  121. this.logshow = false
  122. },
  123. //切换商品类型
  124. good(idx) {
  125. this.index = idx
  126. },
  127. //物流详情
  128. logistics() {
  129. uni.navigateTo({
  130. url: '/pageA/logisticsinfo'
  131. })
  132. },
  133. //获取价格
  134. gain() {
  135. this.gat = 1
  136. this.gatShow = true
  137. },
  138. //开启地址选择器
  139. change(type) {
  140. this.type = type
  141. this.show = true
  142. },
  143. changeHandler(e) {
  144. const {
  145. columnIndex,
  146. value,
  147. values, // values为当前变化列的数组内容
  148. index,
  149. // 微信小程序无法将picker实例传出来,只能通过ref操作
  150. picker = this.$refs.uPicker
  151. } = e
  152. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  153. if (columnIndex === 0) {
  154. // picker为选择器this实例,变化第二列对应的选项
  155. picker.setColumnValues(1, this.columnData[index])
  156. }
  157. },
  158. // 回调参数为包含columnIndex、value、values
  159. confirm(e) {
  160. console.log('confirm', e)
  161. this.show = false
  162. if (this.type == 0) {
  163. this.original = e.value[0] + '-' + e.value[1]
  164. // console.log(e.value[0]);
  165. } else {
  166. this.bourn = e.value[0] + '-' + e.value[1]
  167. }
  168. }
  169. }
  170. }
  171. </script>
  172. <style lang="scss" scoped>
  173. .pop {
  174. font-family: PingFangSC, PingFang SC;
  175. font-weight: 500;
  176. font-size: 36rpx;
  177. color: #333333;
  178. line-height: 50rpx;
  179. text-align: left;
  180. font-style: normal;
  181. padding: 32rpx 28rpx 0 0;
  182. box-sizing: border-box;
  183. }
  184. .back {
  185. background-color: rgba(244, 244, 244, 1);
  186. padding: 20rpx 24rpx;
  187. box-sizing: border-box;
  188. .yuan {
  189. width: 702rpx;
  190. height: 96rpx;
  191. background: #F83224;
  192. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  193. border-radius: 48rpx;
  194. margin-top: 62rpx;
  195. font-family: PingFangSC, PingFang SC;
  196. font-weight: 500;
  197. font-size: 32rpx;
  198. color: #FFFFFF;
  199. line-height: 96rpx;
  200. text-align: center;
  201. font-style: normal;
  202. }
  203. .gain {
  204. width: 702rpx;
  205. height: 208rpx;
  206. background: #FFFFFF;
  207. border-radius: 16rpx;
  208. margin-top: 68rpx;
  209. padding: 40rpx 24rpx 34rpx 24rpx;
  210. box-sizing: border-box;
  211. .weigh {
  212. font-family: PingFangSC, PingFang SC;
  213. font-weight: 400;
  214. font-size: 28rpx;
  215. color: #777777;
  216. line-height: 40rpx;
  217. text-align: left;
  218. font-style: normal;
  219. }
  220. .info {
  221. font-family: PingFangSC, PingFang SC;
  222. font-weight: 400;
  223. font-size: 24rpx;
  224. color: #333333;
  225. line-height: 34rpx;
  226. text-align: left;
  227. font-style: normal;
  228. }
  229. .red {
  230. font-family: HarmonyOS_Sans_Medium;
  231. font-size: 20rpx;
  232. color: #F83224;
  233. line-height: 26rpx;
  234. text-align: left;
  235. font-style: normal;
  236. }
  237. }
  238. //步进器
  239. .minus {
  240. width: 22px;
  241. height: 22px;
  242. // border-width: 1px;
  243. // border-color: #E6E6E6;
  244. // border-style: solid;
  245. border-top-left-radius: 100px;
  246. border-top-right-radius: 100px;
  247. border-bottom-left-radius: 100px;
  248. border-bottom-right-radius: 100px;
  249. @include flex;
  250. justify-content: center;
  251. align-items: center;
  252. }
  253. .input {
  254. padding: 0 10px;
  255. }
  256. .plus {
  257. width: 22px;
  258. height: 22px;
  259. // background-color: #FF0000;
  260. border-radius: 50%;
  261. /* #ifndef APP-NVUE */
  262. display: flex;
  263. /* #endif */
  264. justify-content: center;
  265. align-items: center;
  266. }
  267. //商品重量
  268. .weight {
  269. padding: 34rpx 20rpx;
  270. box-sizing: border-box;
  271. width: 702rpx;
  272. height: 108rpx;
  273. background: #FFFFFF;
  274. border-radius: 16rpx;
  275. margin-top: 20rpx;
  276. }
  277. //获取价格
  278. .price {
  279. width: 702rpx;
  280. height: 96rpx;
  281. background: #F83224;
  282. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  283. border-radius: 48rpx;
  284. position: fixed;
  285. bottom: 72rpx;
  286. left: 24rpx;
  287. font-family: PingFangSC, PingFang SC;
  288. font-weight: 500;
  289. font-size: 32rpx;
  290. color: #FFFFFF;
  291. line-height: 96rpx;
  292. text-align: center;
  293. font-style: normal;
  294. }
  295. //跨境物流
  296. .logistics {
  297. width: 702rpx;
  298. height: 96rpx;
  299. background: #FFFFFF;
  300. border-radius: 16rpx;
  301. padding: 28rpx 22rpx;
  302. box-sizing: border-box;
  303. margin-top: 20rpx;
  304. .change {
  305. font-family: PingFangSC, PingFang SC;
  306. font-weight: 400;
  307. font-size: 28rpx;
  308. color: #F83224;
  309. line-height: 40rpx;
  310. text-align: left;
  311. font-style: normal;
  312. margin-right: 8rpx;
  313. }
  314. }
  315. // 商品类型
  316. .type {
  317. padding: 28rpx 20rpx;
  318. box-sizing: border-box;
  319. width: 702rpx;
  320. height: 190rpx;
  321. background: #FFFFFF;
  322. border-radius: 16rpx;
  323. margin-top: 20rpx;
  324. .title {
  325. font-family: PingFangSC, PingFang SC;
  326. font-weight: 600;
  327. font-size: 28rpx;
  328. color: #222222;
  329. line-height: 40rpx;
  330. text-align: left;
  331. font-style: normal;
  332. }
  333. .left {
  334. // width: 202rpx;
  335. padding: 0 30rpx;
  336. height: 60rpx;
  337. border-radius: 36rpx;
  338. border: 1rpx solid #F83224;
  339. font-family: PingFangSC, PingFang SC;
  340. font-weight: 400;
  341. font-size: 26rpx;
  342. color: #F83224;
  343. line-height: 60rpx;
  344. text-align: center;
  345. font-style: normal;
  346. box-sizing: border-box;
  347. }
  348. .right {
  349. // width: 202rpx;
  350. height: 60rpx;
  351. padding: 0 30rpx;
  352. border-radius: 36rpx;
  353. border: 1rpx solid #979797;
  354. font-family: PingFangSC, PingFang SC;
  355. font-weight: 400;
  356. font-size: 26rpx;
  357. color: #979797;
  358. line-height: 60rpx;
  359. box-sizing: border-box;
  360. text-align: center;
  361. font-style: normal;
  362. }
  363. }
  364. //城市
  365. .add {
  366. width: 702rpx;
  367. height: 144rpx;
  368. background: #FFFFFF;
  369. border-radius: 16rpx;
  370. padding: 50rpx 76rpx;
  371. box-sizing: border-box;
  372. .address {
  373. font-family: PingFangSC, PingFang SC;
  374. font-weight: 600;
  375. font-size: 32rpx;
  376. color: #222222;
  377. line-height: 44rpx;
  378. text-align: right;
  379. font-style: normal;
  380. }
  381. }
  382. }
  383. </style>