From 07c1ebfe7589fd68363a9cb72301359f953658d3 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期五, 10 一月 2025 17:57:32 +0800
Subject: [PATCH] Merge branch '2.0.1' of http://139.186.142.91:10010/r/productDev/funingyunwei into 2.0.1
---
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