From 7e59b9cc3680a05acdf227d03b19f00351ec7b95 Mon Sep 17 00:00:00 2001 From: MrShi <1878285526@qq.com> Date: 星期五, 10 一月 2025 09:19:21 +0800 Subject: [PATCH] 页面 --- admin/src/views/finance/collectionSettings.vue | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 51 insertions(+), 2 deletions(-) diff --git a/admin/src/views/finance/collectionSettings.vue b/admin/src/views/finance/collectionSettings.vue index 891f73a..6e428e0 100644 --- a/admin/src/views/finance/collectionSettings.vue +++ b/admin/src/views/finance/collectionSettings.vue @@ -1,10 +1,59 @@ <template> - + <div class="box"> + <div class="content"> + <div class="content_form"> + <el-form ref="form" :model="form" label-width="120px"> + <el-form-item label="鐭俊妯℃澘"> + <div style="display: flex; align-items: self-start;"> + <el-input type="textarea" rows="5" v-model="form.desc"></el-input> + <el-button type="primary" style="margin-left: 10px;">淇濆瓨</el-button> + </div> + </el-form-item> + <el-form-item label="閭妯℃澘"> + <div style="display: flex; align-items: self-start;"> + <el-input type="textarea" rows="5" v-model="form.desc"></el-input> + <el-button type="primary" style="margin-left: 10px;">淇濆瓨</el-button> + </div> + </el-form-item> + </el-form> + </div> + <el-button @click="$refs.templateKeywords.open('妯℃澘鍏抽敭瀛�')">妯℃澘鍏抽敭瀛�</el-button> + </div> + <templateKeywords ref="templateKeywords" /> + </div> </template> <script> + import templateKeywords from './components/templateKeywords' export default { - name: 'collectionSettings' + name: 'collectionSettings', + data() { + return { + form: { + desc: '' + } + } + }, + components: { templateKeywords } } </script> +<style lang="scss" scoped> + .box { + width: 100%; + padding: 20px; + box-sizing: border-box; + .content { + width: 100%; + padding: 20px; + box-sizing: border-box; + background: #ffffff; + display: flex; + align-items: self-start; + justify-content: space-between; + .content_form { + width: 60%; + } + } + } +</style> -- Gitblit v1.9.3