1234567891011121314151617181920212223242526272829303132 |
- <template>
- <el-col :span="6" class="elColClasss">
- <TransferNum />
- </el-col>
- <el-col :span="6" class="elColClasss">
- <Operate />
- </el-col>
- </template>
- <script lang="ts" setup>
- import TransferNum from "@/views/process/components/transferNum.vue";
- import Operate from "@/views/process/components/operate.vue";
- </script>
- <style lang="scss" scoped>
- .bottomBtn {
- height: 80px;
- margin-top: 10px;
- width: 100%;
- display: flex;
- .btn {
- width: 100%;
- height: 80px;
- border-radius: 40px;
- .btnText {
- font-size: $f24;
- color: white;
- }
- }
- }
- </style>
|