index.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="centent">
  3. <view class="boby_hr" v-for="(item, index) in 3" :key="index">
  4. <view class="vontent_boby" @click="warehous">
  5. <view class="uicon-volume_text">
  6. <text>物料名称:原料</text>
  7. </view>
  8. <view class="uicon-volume_text">
  9. <text>规格:FESA-02131-345K</text>
  10. </view>
  11. </view>
  12. <view class="vontent_boby">
  13. <view class="uicon-volume_text">
  14. <text>净重:300</text>
  15. </view>
  16. <view class="uicon-volume_text">
  17. <text>型号:FESA-02131-345K</text>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. let _this;
  25. export default {
  26. data() {
  27. return { dynamicTitle: "出库" };
  28. },
  29. onLoad() {},
  30. mounted() {},
  31. methods: {
  32. warehous() {
  33. uni.navigateTo({
  34. url: "/pages/Warehousing/index",
  35. });
  36. },
  37. },
  38. };
  39. </script>
  40. <style scoped>
  41. /deep/.u-icon--right {
  42. flex-direction: row;
  43. align-items: center;
  44. display: flex;
  45. justify-content: center;
  46. }
  47. </style>
  48. <style lang="scss" scoped>
  49. .centent {
  50. .boby_hr {
  51. border-bottom: 1px solid #b9b9b9;
  52. .vontent_boby {
  53. padding: 15px 15px 0;
  54. margin-bottom: 10px;
  55. display: flex;
  56. justify-content: space-between;
  57. font-size: 17px;
  58. color: #838383;
  59. }
  60. }
  61. }
  62. </style>