| | |
| | | export default defineComponent({ |
| | | setup() { |
| | | const table = ref({ |
| | | key: 'Id', |
| | | key: 'id', |
| | | footer: "Foots", |
| | | cnName: 'ä¾åºåä¿¡æ¯', |
| | | name: 'supplierInfo', |
| | |
| | | sortName: "id" |
| | | }); |
| | | const editFormFields = ref({}); |
| | | const editFormOptions = ref([]); |
| | | const editFormOptions = ref([ |
| | | |
| | | ]); |
| | | const searchFormFields = ref({}); |
| | | const searchFormOptions = ref([]); |
| | | const searchFormOptions = ref([ |
| | | [ |
| | | {title:"ä¾åºåç¼ç ", field:"supplierCode", type:"like"}, |
| | | {title:"ä¾åºååç§°", field:"supplierName", type:"like"}, |
| | | {title:"ä¾åºåç®ç§°", field:"supplierShortName", type:"like"} |
| | | ], |
| | | [ |
| | | {title:"åºåç»ç»", field:"invOrgId", type:"like"}, |
| | | {title:"ç¶æ", field:"status",type:"select",dataKey:"",data:[]}, |
| | | ] |
| | | ]); |
| | | const columns = ref([{field:'id',title:'主é®',type:'int',width:110,hidden:true,readonly:true,require:true,align:'left'}, |
| | | {field:'supplierCode',title:'ä¾åºåç¼ç ',type:'string',width:110,align:'left',sort:true}, |
| | | {field:'supplierName',title:'ä¾åºååç§°',type:'string',width:180,align:'left'}, |