
6 changed files with 224 additions and 1070 deletions
After Width: | Height: | Size: 6.3 KiB |
File diff suppressed because it is too large
@ -0,0 +1,37 @@ |
|||||
|
<template> |
||||
|
<div> |
||||
|
<el-button type="info" size="small" icon="el-icon-close" @click="handleReturn()">关闭</el-button> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
formobj:{ |
||||
|
sid:'' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
created() { |
||||
|
|
||||
|
}, |
||||
|
methods: { |
||||
|
showPicture(data) { |
||||
|
console.log(data); |
||||
|
this.formobj=data |
||||
|
}, |
||||
|
handleReturn() { |
||||
|
this.$emit('reloadlist') |
||||
|
this.$emit('doback') |
||||
|
this.formobj = {} |
||||
|
|
||||
|
}, |
||||
|
}, |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
<style scoped> |
||||
|
|
||||
|
</style> |
||||
|
|
Loading…
Reference in new issue