currentProduction.vue 591 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <el-col :span="6" class="elColClasss">
  3. <TransferNum />
  4. </el-col>
  5. <el-col :span="6" class="elColClasss">
  6. <Operate />
  7. </el-col>
  8. </template>
  9. <script lang="ts" setup>
  10. import TransferNum from "@/views/process/components/transferNum.vue";
  11. import Operate from "@/views/process/components/operate.vue";
  12. </script>
  13. <style lang="scss" scoped>
  14. .bottomBtn {
  15. height: 80px;
  16. margin-top: 10px;
  17. width: 100%;
  18. display: flex;
  19. .btn {
  20. width: 100%;
  21. height: 80px;
  22. border-radius: 40px;
  23. .btnText {
  24. font-size: $f24;
  25. color: white;
  26. }
  27. }
  28. }
  29. </style>