()
+// 输入框搜索方法
+const input = ref('');
+const handleSearch = () => {
+ if(!input.value) return;
+}
+
const getData = () => {
}
diff --git a/event/web/src/components/MyTable.vue b/event/web/src/components/MyTable.vue
index 20702b26ba68c41f588f57785057f1c099ea4eb2..53f08288250bea56b35b604e432cd1e7f89600b2 100644
--- a/event/web/src/components/MyTable.vue
+++ b/event/web/src/components/MyTable.vue
@@ -12,7 +12,8 @@
+ @selection-change="handleSelectinChange">
+
@@ -160,25 +161,6 @@
font-size: 16px;
}
- &_operation {
- flex: 2;
- display: flex;
- justify-content: flex-start;
-
- .operation {
- &-select {
- &-spanText {
- font-size: 12px;
- padding-left: 4px;
- }
-
- &-input {
- margin-left: 10px;
- }
- }
- }
- }
-
&_button {
display: flex;
justify-content: flex-end;