From b05640960d38a08def00a44b44aa11ef216f911f Mon Sep 17 00:00:00 2001
From: liuchengxin <13104445455@163.com>
Date: 星期二, 17 五月 2022 16:13:09 +0800
Subject: [PATCH] 样式修改
---
src/views/components/school/index.vue | 42 +++++++++++++++++++++++++++++++++++++++++-
1 files changed, 41 insertions(+), 1 deletions(-)
diff --git a/src/views/components/school/index.vue b/src/views/components/school/index.vue
index 1679ecd..88aea1b 100644
--- a/src/views/components/school/index.vue
+++ b/src/views/components/school/index.vue
@@ -41,7 +41,6 @@
},
methods: {
getList() {
- this.loading = true;
listSchool(this.queryParams).then(r => {
this.list = r.data;
if (this.list.length > 0) {
@@ -60,6 +59,47 @@
};
</script>
<style scoped lang="scss">
+.tree-list-main {
+ display: flex;
+ flex-direction: column;
+ width: 270px;
+ height: 100%;
+ box-sizing: border-box;
+ .main-search {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ height: 32px;
+ border: 1px solid #EEEEF1;
+ border-radius: 3px;
+ padding: 0 10px;
+ margin-bottom: 10px;
+ width: 100%;
+ .search-input {
+ display: flex;
+ flex: 1;
+ background: none;
+ border: none;
+ font-size: 14px;
+ color: #000000;
+ }
+ .search-btn {
+ display: flex;
+ align-items: center;
+ cursor: pointer;
+ }
+ }
+ .main-tree {
+ display: flex;
+ flex-direction: column;
+ border: 1px solid #EEEEF1;
+ //height: 718px;
+ flex: 1;
+ border-radius: 3px;
+ padding: 10px 5px;
+ overflow: auto;
+ }
+}
.tree-search {
display: flex;
flex-direction: row;
--
Gitblit v1.9.1