purchase.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <view class="content">
  3. <view class="title">订单信息</view>
  4. <view class="box">
  5. <view class="box_item hflex acenter">
  6. <view class="left">联系人</view>
  7. <u-input v-model="name" border="none" placeholder="请输入联系人姓名"></u-input>
  8. </view>
  9. <view class="box_item hflex acenter">
  10. <view class="left">联系电话</view>
  11. <u-input v-model="phone" border="none" placeholder="请输入手机号"></u-input>
  12. </view>
  13. </view>
  14. <view class="hflex acenter jbetween" style="padding-right: 30rpx;">
  15. <view class="title">商品信息</view>
  16. <view class="hflex acenter ">
  17. <image src="/static/images/common/add_icon2.png" style="width: 36rpx;height: 36rpx;"></image>
  18. <view class="add_text">添加</view>
  19. </view>
  20. </view>
  21. <block v-for="item in index">
  22. <view class="box">
  23. <view class="box_item hflex acenter">
  24. <view class="left">商品{{item}}</view>
  25. <u-input v-model="items[item].name" border="none" placeholder="请输入标题"></u-input>
  26. </view>
  27. <view class="box_item hflex acenter">
  28. <view class="left">规格</view>
  29. <u-input v-model="items[item].spec" border="none" placeholder="如颜色/尺寸等"></u-input>
  30. </view>
  31. <view class="box_item hflex acenter">
  32. <view class="left">数量</view>
  33. <u-input v-model="items[item].number" border="none" placeholder="请输入数量"></u-input>
  34. </view>
  35. <view class="box_item1">
  36. <view class="left">质量标准</view>
  37. <u-textarea v-model="items[item].standard" placeholder="请填写质量标准要求"></u-textarea>
  38. </view>
  39. <view class="box_item hflex acenter">
  40. <view class="left">原采购价</view>
  41. <u-input v-model="items[item].price" border="none" placeholder="请输入原采购价格"></u-input>
  42. </view>
  43. </view>
  44. </block>
  45. </view>
  46. </template>
  47. <script>
  48. import $api from '@/static/js/api.js'
  49. var that = ''
  50. export default {
  51. data() {
  52. return {
  53. name: '',
  54. phone: '',
  55. index: 1,
  56. items: [],
  57. }
  58. },
  59. onLoad() {
  60. that = this
  61. },
  62. methods: {
  63. },
  64. }
  65. </script>
  66. <style lang="scss" scoped>
  67. .content {
  68. background: #F5F5F5;
  69. .title {
  70. font-size: 30rpx;
  71. font-weight: 500;
  72. color: #222222;
  73. line-height: 42rpx;
  74. padding: 24rpx 0 14rpx 30rpx;
  75. }
  76. .add_text {
  77. font-size: 28rpx;
  78. font-weight: 500;
  79. color: #222222;
  80. line-height: 40rpx;
  81. padding-left: 2rpx;
  82. }
  83. .box {
  84. width: 100%;
  85. box-sizing: border-box;
  86. padding: 0 30rpx;
  87. background: #fff;
  88. .box_item {
  89. padding: 28rpx 0;
  90. border-bottom: 1rpx solid #F5F5F5;
  91. .left {
  92. width: 156rpx;
  93. font-size: 30rpx;
  94. font-weight: 400;
  95. color: #222222;
  96. line-height: 42rpx;
  97. }
  98. }
  99. }
  100. }
  101. </style>