+
{{desc}}
diff --git a/src/components/list/ApplicationList.vue b/src/components/list/Search/ApplicationList.vue
similarity index 58%
rename from src/components/list/ApplicationList.vue
rename to src/components/list/Search/ApplicationList.vue
index e9c6ce0..ca1e2f8 100644
--- a/src/components/list/ApplicationList.vue
+++ b/src/components/list/Search/ApplicationList.vue
@@ -1,16 +1,18 @@
diff --git a/src/components/list/ArticleList.vue b/src/components/list/Search/ArticleList.vue
similarity index 57%
rename from src/components/list/ArticleList.vue
rename to src/components/list/Search/ArticleList.vue
index 72d4411..c1e9859 100644
--- a/src/components/list/ArticleList.vue
+++ b/src/components/list/Search/ArticleList.vue
@@ -1,16 +1,18 @@
diff --git a/src/components/list/ProjectList.vue b/src/components/list/Search/ProjectList.vue
similarity index 57%
rename from src/components/list/ProjectList.vue
rename to src/components/list/Search/ProjectList.vue
index 0f46f2a..31b20d5 100644
--- a/src/components/list/ProjectList.vue
+++ b/src/components/list/Search/ProjectList.vue
@@ -1,16 +1,18 @@
diff --git a/src/components/list/Search/SearchForm.vue b/src/components/list/Search/SearchForm.vue
new file mode 100644
index 0000000..1f26b06
--- /dev/null
+++ b/src/components/list/Search/SearchForm.vue
@@ -0,0 +1,46 @@
+
+
+
+
+
+ 科目一
+ 科目一
+ 科目一
+ 科目一
+ 科目一
+ 科目一
+ 科目一
+ 科目一
+ 科目一
+ 科目一
+ 科目一
+
+
+
+
+
+
+
+
+
diff --git a/src/components/list/SearchLayout.vue b/src/components/list/Search/SearchLayout.vue
similarity index 94%
rename from src/components/list/SearchLayout.vue
rename to src/components/list/Search/SearchLayout.vue
index 64fd6eb..1f9b833 100644
--- a/src/components/list/SearchLayout.vue
+++ b/src/components/list/Search/SearchLayout.vue
@@ -32,11 +32,11 @@ export default {
components: {ATabPane, ATabs, AInputSearch, AButton, AInputGroup, AInput},
data () {
return {
- activeKey: ''
+ activeKey: '1'
}
},
watch: {
- '$route': (val) => {
+ '$route': function (val) {
switch (val.path) {
case '/list/search/article':
this.activeKey = '1'
@@ -48,12 +48,13 @@ export default {
this.activeKey = '3'
break
default:
- this.activeKey = '1'
+ this.activeKey = '2'
}
}
},
methods: {
navigate (key) {
+ this.activeKey = key
switch (key) {
case '1':
this.$router.push('/list/search/article')
diff --git a/src/components/page/PageHeader.vue b/src/components/page/PageHeader.vue
index 4a82712..c072980 100644
--- a/src/components/page/PageHeader.vue
+++ b/src/components/page/PageHeader.vue
@@ -14,8 +14,8 @@
@@ -80,6 +80,7 @@ export default {
font-size: 20px;
font-weight: 500;
color: rgba(0,0,0,.85);
+ margin-bottom: 16px;
}
.content{
margin-bottom: 16px;
diff --git a/src/components/tool/TagSelect.vue b/src/components/tool/TagSelect.vue
new file mode 100644
index 0000000..9297bed
--- /dev/null
+++ b/src/components/tool/TagSelect.vue
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
diff --git a/src/components/tool/TagSelectOption.vue b/src/components/tool/TagSelectOption.vue
new file mode 100644
index 0000000..74d2d38
--- /dev/null
+++ b/src/components/tool/TagSelectOption.vue
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/router/index.js b/src/router/index.js
index 551c7cc..a7ddb12 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -16,10 +16,10 @@ import Error from '@/components/result/Error'
import QueryList from '@/components/list/QueryList'
import StandardList from '@/components/list/StandardList'
import CardList from '@/components/list/CardList'
-import SearchLayout from '@/components/list/SearchLayout'
-import ArticleList from '@/components/list/ArticleList'
-import ApplicationList from '@/components/list/ApplicationList'
-import ProjectList from '@/components/list/ProjectList'
+import SearchLayout from '@/components/list/search/SearchLayout'
+import ArticleList from '@/components/list/search/ArticleList'
+import ApplicationList from '@/components/list/search/ApplicationList'
+import ProjectList from '@/components/list/search/ProjectList'
import WorkPlace from '@/components/dashboard/WorkPlace'
import Login from '@/components/login/Login'