|
|
@@ -29,7 +29,7 @@
|
|
|
<el-col :span="4">
|
|
|
<el-form-item label="">
|
|
|
<el-button type="primary">查询</el-button>
|
|
|
- <el-button type="primary" plain>重置</el-button>
|
|
|
+ <el-button type="primary" plain @click="reset">重置</el-button>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<!-- <el-col :span="24">
|
|
|
@@ -160,6 +160,7 @@
|
|
|
import { ref, reactive } from "vue";
|
|
|
import type { ComponentSize, FormInstance, FormRules } from "element-plus";
|
|
|
import { Plus,ArrowDown } from "@element-plus/icons-vue";
|
|
|
+
|
|
|
// import universalTable from "../"
|
|
|
const formAccessibility = reactive({
|
|
|
fullName: "",
|
|
|
@@ -293,6 +294,12 @@ const operationMany = (item: any) => {
|
|
|
// pageInfo.pageNum=item.pageNum
|
|
|
// pageInfo.pageSize=item.pageSize
|
|
|
};
|
|
|
+
|
|
|
+
|
|
|
+const reset = (item: any) => {
|
|
|
+ // ElMessage({})
|
|
|
+};
|
|
|
+
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.member {
|