goods.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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 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;">
  12. <text style="margin-right: 18rpx;">文件</text>
  13. <u-icon name="close" color="rgba(248, 50, 36, 1)" size="12"></u-icon>
  14. </view>
  15. </view> -->
  16. <view class="">
  17. <view class="info">填写准确的寄送物品可帮助您推荐更合适的产品</view>
  18. <view class="input">
  19. <input disabled type="text" placeholder="请输入物品名称" style="width: 100%;" @click="tosearch"/>
  20. </view>
  21. <view class="u-flex u-row-between" style="margin-top: 28rpx;flex-wrap: wrap;">
  22. <view class="about" v-for="(item,idx) in 10">文件</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="type u-flex u-row-between">
  27. <view class="">
  28. <text class="title">{{i18n.shoptype}}</text>
  29. </view>
  30. <view class="">
  31. <text class="change">{{i18n.selection}}</text>
  32. <image src="../static/express/next1.png" style="width: 26rpx;height: 26rpx;" mode=""></image>
  33. </view>
  34. </view>
  35. <view class="abouta">
  36. <view class="u-flex u-row-between">
  37. <view class="title">{{i18n.estimated}}</view>
  38. <view class="">
  39. <u-number-box v-model="value">
  40. <view slot="minus" class="minus">
  41. <u-icon name="minus" size="12"></u-icon>
  42. </view>
  43. <text slot="input" style="width: 150rpx;text-align: center;" class="inpu">{{value}}kg</text>
  44. <view slot="plus" class="plus">
  45. <u-icon name="plus" color="#000000" size="12"></u-icon>
  46. </view>
  47. </u-number-box>
  48. </view>
  49. </view>
  50. <view class="u-flex u-row-between"
  51. style="border-top: 2rpx solid rgba(151, 151, 151, 0.1);padding-top: 30rpx;margin-top: 32rpx;">
  52. <view class="title">{{i18n.piece}}</view>
  53. <view class="">
  54. <u-number-box v-model="value">
  55. <view slot="minus" class="minus">
  56. <u-icon name="minus" size="12"></u-icon>
  57. </view>
  58. <text slot="input" style="width: 150rpx;text-align: center;" class="inpu">{{value}}件</text>
  59. <view slot="plus" class="plus">
  60. <u-icon name="plus" color="#000000" size="12"></u-icon>
  61. </view>
  62. </u-number-box>
  63. </view>
  64. </view>
  65. <view class="u-flex" style="margin-top: 28rpx;">
  66. <view class="zhu">
  67. 注:实际重量体积以收派员确定为准,物品在
  68. <text class="rule"> {{i18n.rule}}</text>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="btn">
  73. <view class="button">{{i18n.enter}}</view>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. export default {
  79. data() {
  80. return {
  81. value: 1
  82. };
  83. },
  84. computed: {
  85. i18n() {
  86. return this.$t('index')
  87. }
  88. },
  89. onShow() {
  90. uni.setNavigationBarTitle({
  91. title: this.i18n.item
  92. })
  93. },
  94. methods:{
  95. tosearch(){
  96. uni.navigateTo({
  97. url:"/pageB/search"
  98. })
  99. }
  100. }
  101. }
  102. </script>
  103. <style lang="scss" scoped>
  104. .minus {
  105. width: 22px;
  106. height: 22px;
  107. border-width: 1px;
  108. border-color: rgba(0, 0, 0, 0);
  109. border-style: solid;
  110. border-top-left-radius: 100px;
  111. border-top-right-radius: 100px;
  112. border-bottom-left-radius: 100px;
  113. border-bottom-right-radius: 100px;
  114. @include flex;
  115. justify-content: center;
  116. align-items: center;
  117. }
  118. .inpu {
  119. padding: 0 20px;
  120. width: 150rpx;
  121. height: 52rpx;
  122. background: #F4F4F4;
  123. text-align: center;
  124. line-height: 52rpx;
  125. }
  126. .plus {
  127. width: 22px;
  128. height: 22px;
  129. // background-color: #FF0000;
  130. border-radius: 50%;
  131. /* #ifndef APP-NVUE */
  132. display: flex;
  133. /* #endif */
  134. justify-content: center;
  135. align-items: center;
  136. }
  137. .back {
  138. padding: 20rpx 24rpx;
  139. .btn {
  140. width: 750rpx;
  141. height: 166rpx;
  142. background: #FFFFFF;
  143. position: fixed;
  144. bottom: 0;
  145. left: 0;
  146. padding: 18rpx 32rpx;
  147. box-sizing: border-box;
  148. .button {
  149. width: 686rpx;
  150. height: 88rpx;
  151. background: #F83224;
  152. border-radius: 44rpx;
  153. font-family: PingFangSC, PingFang SC;
  154. font-weight: 500;
  155. font-size: 32rpx;
  156. color: #FFFFFF;
  157. line-height: 88rpx;
  158. text-align: center;
  159. font-style: normal;
  160. }
  161. }
  162. .abouta {
  163. padding: 38rpx 20rpx;
  164. box-sizing: border-box;
  165. width: 702rpx;
  166. height: 352rpx;
  167. background: #FFFFFF;
  168. border-radius: 16rpx;
  169. margin-top: 20rpx;
  170. .zhu {
  171. font-family: PingFangSC, PingFang SC;
  172. font-weight: 400;
  173. font-size: 24rpx;
  174. color: #7D7D7D;
  175. line-height: 42rpx;
  176. text-align: left;
  177. font-style: normal;
  178. }
  179. .rule {
  180. font-family: PingFangSC, PingFang SC;
  181. font-weight: 400;
  182. font-size: 24rpx;
  183. color: #F83224;
  184. line-height: 34rpx;
  185. text-align: left;
  186. font-style: normal;
  187. }
  188. }
  189. .title {
  190. font-family: PingFangSC, PingFang SC;
  191. font-weight: 600;
  192. font-size: 28rpx;
  193. color: #222222;
  194. line-height: 40rpx;
  195. text-align: left;
  196. font-style: normal;
  197. }
  198. .type {
  199. width: 704rpx;
  200. height: 96rpx;
  201. background: #FFFFFF;
  202. border-radius: 16rpx;
  203. margin-top: 20rpx;
  204. padding: 28rpx 20rpx;
  205. box-sizing: border-box;
  206. .change {
  207. font-family: PingFangSC, PingFang SC;
  208. font-weight: 400;
  209. font-size: 28rpx;
  210. color: #666666;
  211. line-height: 40rpx;
  212. text-align: left;
  213. font-style: normal;
  214. }
  215. }
  216. .top {
  217. width: 702rpx;
  218. // height: 484rpx;
  219. background: #FFFFFF;
  220. border-radius: 16rpx;
  221. padding: 24rpx 28rpx;
  222. box-sizing: border-box;
  223. .mast {
  224. // width: 62rpx;
  225. height: 30rpx;
  226. border-radius: 16rpx;
  227. border: 1rpx solid #F83224;
  228. font-family: PingFangSC, PingFang SC;
  229. font-weight: 400;
  230. font-size: 20rpx;
  231. color: #FF1515;
  232. line-height: 30rpx;
  233. text-align: center;
  234. font-style: normal;
  235. margin-left: 8rpx;
  236. padding: 0 6rpx;
  237. box-sizing: border-box;
  238. }
  239. .about {
  240. width: 202rpx;
  241. height: 60rpx;
  242. border-radius: 36rpx;
  243. border: 1rpx solid rgba(151, 151, 151, 0.5);
  244. font-family: PingFangSC, PingFang SC;
  245. font-weight: 400;
  246. font-size: 26rpx;
  247. color: #444444;
  248. line-height: 60rpx;
  249. text-align: center;
  250. font-style: normal;
  251. margin-bottom: 20rpx;
  252. }
  253. }
  254. .info {
  255. font-family: PingFangSC, PingFang SC;
  256. font-weight: 400;
  257. font-size: 24rpx;
  258. color: #222222;
  259. line-height: 34rpx;
  260. text-align: left;
  261. font-style: normal;
  262. margin-top: 20rpx;
  263. }
  264. .input {
  265. width: 646rpx;
  266. height: 68rpx;
  267. background: #F5F5F5;
  268. border-radius: 44rpx;
  269. padding: 14rpx 32rpx;
  270. margin-top: 20rpx;
  271. box-sizing: border-box;
  272. }
  273. }
  274. </style>