You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
432 B
32 lines
432 B
|
3 years ago
|
<template>
|
||
|
|
<div>
|
||
|
|
<xy-dialog :is-show.sync="isShow" type="form" :title="type === 'add' ? '新增政策' : '编辑政策'" :form="form" :rules="rules">
|
||
|
|
|
||
|
|
</xy-dialog>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
id:'',
|
||
|
|
isShow:false,
|
||
|
|
type:'',
|
||
|
|
|
||
|
|
form:{
|
||
|
|
name:'',
|
||
|
|
},
|
||
|
|
rules:{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {}
|
||
|
|
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
</style>
|