-
- Fixed header, sorted by header order,
-
-
+
+
+
+
+
+
+
-
- Not fixed header, sorted by click order
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 项目1
+
+
+ 名称
+
+
+
+ 状态
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+ 子系统列表
+
+
+
+
+ {{ scope.row.date }}
+
+
+
+
+
+
+
+
+
+ 查看详情
+
+
+
+
+
+
+
+
+
+
-
-
-
+// 时间选择器
+const value1 = ref('');
+const value2 = ref('');
+
+const shortcuts = [
+ {
+ text: 'Last week',
+ value: () => {
+ const end = new Date();
+ const start = new Date();
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
+ return [start, end];
+ }
+ },
+ {
+ text: 'Last month',
+ value: () => {
+ const end = new Date();
+ const start = new Date();
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
+ return [start, end];
+ }
+ },
+ {
+ text: 'Last 3 months',
+ value: () => {
+ const end = new Date();
+ const start = new Date();
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
+ return [start, end];
+ }
+ }
+];
+
+
diff --git a/src/views/theme/index.vue b/src/views/theme/index.vue
index 3701da8..2c9c369 100644
--- a/src/views/theme/index.vue
+++ b/src/views/theme/index.vue
@@ -1,137 +1,227 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
- Theme documentation
-
-
-
-
Change Theme :
-
-
-
-
-
-
-
- Primary
-
-
- Success
-
-
- Info
-
-
- Warning
-
-
- Danger
-
+
+
+
+
+
+
+ name: {{ row.name }}
+ address: {{ row.address }}
+
+
+ {{ row.name }}
+
+
+
+
+ Edit
+ Delete
+
+
-
-
-
-
-
-
- Search
-
-
- Upload
-
-
-
-
-
- {{ tag.name }}
-
-
-
-
-
-
- Option A
-
-
- Option B
-
-
- Option C
-
-
-
-
-
-
-
-
-
-
+
+
\ No newline at end of file