mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-03-04 02:50:59 +08:00
78 lines
1.6 KiB
Vue
78 lines
1.6 KiB
Vue
<template>
|
|
<div class="proposal-section">
|
|
<div class="proposal-row">
|
|
<span class="proposal-row-title rule">
|
|
<info-icon class="proposal-description-title-icon" />提案规则说明</span
|
|
>
|
|
<div class="proposal-description-content">
|
|
<p>提案规则1</p>
|
|
<p>提案规则</p>
|
|
<p>提案规则</p>
|
|
<p>提案规则</p>
|
|
</div>
|
|
</div>
|
|
<div class="proposal-row">
|
|
<span class="proposal-row-title">拟议分类名称</span>
|
|
<BaseInput v-model="data.proposedName" placeholder="请输入分类名称" />
|
|
</div>
|
|
<div class="proposal-row">
|
|
<span class="proposal-row-title">提案描述</span>
|
|
<BaseInput v-model="data.proposalDescription" placeholder="简要说明提案目的与理由" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import BaseInput from '~/components/BaseInput.vue'
|
|
|
|
defineProps({
|
|
data: { type: Object, required: true },
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
.proposal-section {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
margin-bottom: 200px;
|
|
}
|
|
|
|
.proposal-row-title {
|
|
font-size: 16px;
|
|
color: var(--text-color);
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.proposal-row-title.rule {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.proposal-row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.proposal-activity {
|
|
margin-top: 20px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.proposal-description-title-text {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.proposal-description-title-icon {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.proposal-description-content {
|
|
font-size: 12px;
|
|
opacity: 0.8;
|
|
}
|
|
</style>
|