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.
20 lines
348 B
20 lines
348 B
|
2 months ago
|
<script>
|
||
|
|
import BillDataList from './BillDataList.vue'
|
||
|
|
import { ibColumns } from './BillDataListColumns'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'BillDataListIB',
|
||
|
|
extends: BillDataList,
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
ieFlag: 'I',
|
||
|
|
isBonded: 1,
|
||
|
|
emsCategory: 'null',
|
||
|
|
menuType: '',
|
||
|
|
columns: ibColumns
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created () {}
|
||
|
|
}
|
||
|
|
</script>
|