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.
27 lines
457 B
27 lines
457 B
<template>
|
|
<VxeGrid v-bind="gridOptions" @cell-click="cellClick" />
|
|
</template>
|
|
|
|
<script>
|
|
import paoWanPgdConfig from './pgdTable'
|
|
export default {
|
|
name:'HxianPgd',
|
|
data(){
|
|
return{
|
|
gridOptions:{},
|
|
list:{},
|
|
}
|
|
},
|
|
created(){
|
|
const {options,columns}=paoWanPgdConfig()
|
|
this.gridOptions=options
|
|
this.gridOptions.columns=columns
|
|
},
|
|
methods:{
|
|
cellClick({row}){
|
|
this.$emit('initPgd',row)
|
|
}
|
|
}
|
|
}
|
|
</script>
|