29 lines
378 B
Vue
29 lines
378 B
Vue
![]() |
<template>
|
||
|
<div>
|
||
|
<el-dialog title="编辑工单" :visible.sync="dialogVisible" width="80%" v-dialogDrag append-to-body>
|
||
|
<!-- todo -->
|
||
|
</el-dialog>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "EditTickets",
|
||
|
data(){
|
||
|
return{
|
||
|
info: {},
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods:{
|
||
|
async open(row){
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|