| | |
| | | <el-button type="primary" @click="getList">刷新</el-button> |
| | | <el-button type="primary" @click="resetAll">重置</el-button> |
| | | |
| | | <el-button type="primary" @click="exportTableData" |
| | | >导出</el-button |
| | | > |
| | | <el-button type="primary" @click="exportTableData">导出</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | </div> |
| | |
| | | this.$emit("getList", { seachData: this.seachData }); |
| | | }, |
| | | exportTableData() { |
| | | |
| | | if (this.seachData.ownerIndex !== undefined) { |
| | | const ownerItem = this.ownerOptions[this.seachData.ownerIndex]; |
| | | this.seachData.owner = ownerItem.Pid + ownerItem.Id + "/"; |
| | | } |
| | | this.$emit("exportTable", { seachData: this.seachData }); |
| | | } |
| | | }, |
| | | }, |
| | | }; |
| | | </script> |
| | |
| | | <style lang="scss" scoped> |
| | | .header { |
| | | line-height: normal; |
| | | margin-left: 20px; |
| | | } |
| | | </style> |