You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
964 B
61 lines
964 B
<template>
|
|
<div class="container">
|
|
pay
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'Pay',
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.container {
|
|
padding: 0 20px 20px 20px;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
margin-top: 12px;
|
|
|
|
&-left {
|
|
flex: 1;
|
|
margin-right: 16px;
|
|
overflow: hidden;
|
|
// background-color: var(--color-bg-2);
|
|
|
|
:deep(.arco-tabs-nav-tab) {
|
|
margin-left: 16px;
|
|
}
|
|
}
|
|
|
|
&-right {
|
|
width: 332px;
|
|
}
|
|
|
|
.tab-pane-wrapper {
|
|
padding: 0 16px 16px 16px;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style lang="less" scoped>
|
|
.mobile {
|
|
.content {
|
|
display: block;
|
|
&-left {
|
|
margin-right: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
&-right {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|