diff --git a/src/components/noteList/index.vue b/src/components/noteList/index.vue
new file mode 100644
index 0000000..f27d6a0
--- /dev/null
+++ b/src/components/noteList/index.vue
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/orderList/index.vue b/src/components/orderList/index.vue
new file mode 100644
index 0000000..af9bf67
--- /dev/null
+++ b/src/components/orderList/index.vue
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/partyList/index.vue b/src/components/partyList/index.vue
new file mode 100644
index 0000000..c502634
--- /dev/null
+++ b/src/components/partyList/index.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/utils/ruoyi.ts b/src/utils/ruoyi.ts
index c197de7..a91fdd6 100644
--- a/src/utils/ruoyi.ts
+++ b/src/utils/ruoyi.ts
@@ -251,7 +251,7 @@ export const autoTableHeight = () => {
let allHeight = window.innerHeight;
let element = [document.getElementById('topBar'), document.getElementById('search_div'), document.getElementById('table_page')];
let domHeight = element.map((item) => (item.offsetHeight ? item.offsetHeight : 0));
- let tableHeight = allHeight - domHeight[0] - domHeight[1] - 80 - 50;
+ let tableHeight = allHeight - domHeight[0] - domHeight[1] - 80 - 10;
console.log('全局计算表格高度:', tableHeight, allHeight, domHeight[0], domHeight[1], domHeight[2]);
return tableHeight;
};
diff --git a/src/views/manage/articleManage/index.vue b/src/views/manage/articleManage/index.vue
index f22ba78..a93600b 100644
--- a/src/views/manage/articleManage/index.vue
+++ b/src/views/manage/articleManage/index.vue
@@ -29,40 +29,38 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
diff --git a/src/views/manage/bannedUser/index.vue b/src/views/manage/bannedUser/index.vue
new file mode 100644
index 0000000..e69de29
diff --git a/src/views/manage/bannerManage/index.vue b/src/views/manage/bannerManage/index.vue
index 4e7f949..373443d 100644
--- a/src/views/manage/bannerManage/index.vue
+++ b/src/views/manage/bannerManage/index.vue
@@ -29,8 +29,8 @@
-
-
+
+
@@ -57,7 +57,7 @@
-
+
@@ -84,7 +84,7 @@
-
+
@@ -124,47 +124,17 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
@@ -191,7 +161,7 @@ const ids = ref>([]);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
-
+const activeName = ref('0');
const queryFormRef = ref();
const articleFormRef = ref();
const note_publish_list = ref([
@@ -361,15 +331,10 @@ const handleDelete = async (row?: ArticleVO) => {
await getList();
};
-/** 导出按钮操作 */
-const handleExport = () => {
- proxy?.download(
- 'system/article/export',
- {
- ...queryParams.value
- },
- `article_${new Date().getTime()}.xlsx`
- );
+// tab切换
+const handleClick = (tab: any) => {
+ console.log(tab);
+ activeName.value = tab;
};