29 lines
617 B
JavaScript
29 lines
617 B
JavaScript
import { reactive } from 'vue'
|
|
export default {
|
|
formColumns: [
|
|
{
|
|
type: 'input',
|
|
prop: 'inspectionStationName',
|
|
placeholder: '请输入运检站名称',
|
|
},
|
|
],
|
|
tableColumns: [
|
|
{
|
|
prop: 'inspectionStationName',
|
|
label: '运检站名称',
|
|
},
|
|
{
|
|
prop: 'remark',
|
|
label: '备注',
|
|
},
|
|
],
|
|
|
|
dialogConfig: reactive({
|
|
outerVisible: false,
|
|
outerTitle: '新增运检站',
|
|
outerWidth: '720px',
|
|
minHeight: '320px',
|
|
maxHeight: '80vh',
|
|
}),
|
|
}
|