92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
| export const dictionary_col1 = [
 | |
|   { type: 'index' },
 | |
|   {
 | |
|     prop: 'KeyName',
 | |
|     label: 'Key',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   {
 | |
|     prop: 'Value',
 | |
|     label: 'Value',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   {
 | |
|     prop: 'ValueCN',
 | |
|     label: 'Value CN',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   {
 | |
|     prop: 'ShowOrder',
 | |
|     label: 'Show Order',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   {
 | |
|     prop: 'Description',
 | |
|     label: 'Description',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   { type: 'operate',
 | |
|     label: 'Action',
 | |
|     minWidth: 150,
 | |
|     operates: [
 | |
|       { name: 'Edit', type: 'primary', emitKey: 'edit' },
 | |
|       { name: 'Delete', type: 'danger', emitKey: 'delete' }
 | |
|     ] }
 | |
| ]
 | |
| export const dictionary_col2 = [
 | |
|   { type: 'index' },
 | |
|   {
 | |
|     prop: 'KeyName',
 | |
|     label: 'Key',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   {
 | |
|     prop: 'Value',
 | |
|     label: 'Value',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   {
 | |
|     prop: 'ShowOrder',
 | |
|     label: 'Show Order',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   {
 | |
|     prop: 'Description',
 | |
|     label: 'Description',
 | |
|     minWidth: 150,
 | |
|     sortable: 'custom',
 | |
|     showOverflowTooltip: true
 | |
|   },
 | |
|   { type: 'operate',
 | |
|     label: 'Action',
 | |
|     minWidth: 150,
 | |
|     operates: [
 | |
|       { name: 'Edit', type: 'primary', emitKey: 'edit' },
 | |
|       { name: 'Delete', type: 'danger', emitKey: 'delete' }
 | |
|     ] }
 | |
| ]
 | |
| export const dictionary_form = []
 | |
| export const dictionary_handle = []
 | |
| export const dictionary_model = {
 | |
|   visible: false,
 | |
|   title: '',
 | |
|   width: '600px',
 | |
|   showClose: true
 | |
| }
 |