123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- import { ref } from 'vue';
- // 任务管理表格列
- export const taskColumns = ref([
- { type: 'checkbox', width: 50 },
- {
- field: 'platformNumber',
- title: '平台编号',
- editRender: { autofocus: '.vxe-input--inner' },
- slots: { edit: 'number_edit' },
- minWidth: 87
- },
- {
- field: 'platformName',
- title: '平台名称',
- editRender: { autofocus: '.vxe-input--inner' },
- slots: { edit: 'name_edit' },
- align: 'center',
- minWidth: 138, isEditing: false
- },
- {
- field: 'country',
- title: '国家',
- editRender: { autofocus: '.vxe-input--inner' },
- slots: { edit: 'country_edit' },
- minWidth: 85,
- align: 'center'
- },
- {
- field: 'brandName',
- title: '品牌',
- editRender: {},
- slots: { edit: 'brand_edit' },
- align: 'center',
- minWidth: 89,
- },
- {
- field: 'user_name',
- title: '填写人',
- editRender: {},
- slots: {
- edit: 'operation_edit',
- //default: 'operation_default'
- },
- align: 'center',
- minWidth: 104
- },
- {
- field: 'operater',
- title: '运营',
- editRender: {},
- slots: { edit: 'operater_name_edit' },
- align: 'center',
- minWidth: 104
- },
- {
- field: 'currencyCode',
- title: '平台币种',
- editRender: {},
- slots: { edit: 'currency_edit' },
- align: 'center',
- minWidth: 90
- },
- {
- field: 'currencyCodePlatform',
- title: '回款/余额币种',
- editRender: {},
- slots: { edit: 'currencyCodePlatform_edit' },
- minWidth: 120,
- align: 'center'
- },
- {
- field: 'platform',
- title: '平台',
- editRender: {},
- slots: { edit: 'platform_edit' },
- align: 'center',
- minWidth: 89
- },
- { field: 'line', title: '线路', editRender: {}, slots: { edit: 'line_edit' }, align: 'center', minWidth: 89 },
- { field: 'ipaddress', title: 'IP地址', editRender: {}, slots: { edit: 'ipaddress_edit' }, minWidth: 135 },
- {
- field: 'company',
- title: '注册公司',
- editRender: {},
- slots: { edit: 'company_edit' },
- align: 'center',
- minWidth: 184
- },
- {
- field: 'companyEnglishName',
- title: '公司英文名称',
- editRender: {},
- slots: { edit: 'companyEnglishName_edit' },
- align: 'center',
- minWidth: 126
- },
- {
- field: 'address',
- title: '公司地址',
- editRender: {},
- slots: { edit: 'address_edit' },
- align: 'center',
- minWidth: 262
- },
- {
- field: 'juridicalPerson',
- title: '公司法人',
- editRender: {},
- slots: { edit: 'juridicalPerson_edit' },
- align: 'center',
- minWidth: 95
- },
- {
- field: 'juridicalPersonCreditCard',
- title: '法人信用卡',
- editRender: {},
- slots: { edit: 'juridicalPersonCreditCard_edit' },
- align: 'center',
- minWidth: 105
- },
- {
- field: 'juridicalPersonCreditCardAddress',
- title: '信用卡地址',
- editRender: {},
- slots: { edit: 'juridicalPersonCreditCardAddress_edit' },
- align: 'center',
- minWidth: 262
- },
- {
- field: 'receivablesAccount',
- title: '收款账号',
- editRender: {},
- slots: { edit: 'receivablesAccount_edit' },
- align: 'center',
- minWidth: 156
- },
- {
- field: 'receivablesAccountCompany',
- title: '收款账号公司',
- editRender: {},
- slots: { edit: 'receivablesAccountCompany_edit' },
- align: 'center',
- minWidth: 115
- },
- {
- field: 'vatNumber',
- title: 'VAT税号',
- editRender: {},
- slots: { edit: 'vatNumber_edit' },
- align: 'center',
- minWidth: 95
- },
- {
- field: 'vatCompany',
- title: 'VAT税号公司名称',
- editRender: {},
- slots: { edit: 'vatCompany_edit' },
- align: 'center',
- minWidth: 135
- },
- { field: 'status', title: '状态', slots: { default: 'status_default' }, align: 'center', minWidth: 89 },
- { title: '操作', minWidth: 108, slots: { default: 'operate' }, fixed: 'right' },
- ]);
- export const shopInfoColumns = ref([
- {
- field: 'platformNumber',
- title: '平台编号',
- minWidth: 87
- },
- {
- field: 'platformName',
- title: '平台名称',
- align: 'center',
- minWidth: 138, isEditing: false
- },
- {
- field: 'country',
- title: '国家',
- minWidth: 85,
- align: 'center'
- },
- {
- field: 'brandName',
- title: '品牌',
- align: 'center',
- minWidth: 89,
- },
- {
- field: 'user_name',
- title: '填写人',
- align: 'center',
- minWidth: 104
- },
- {
- field: 'operater',
- title: '运营',
- align: 'center',
- minWidth: 104
- },
- {
- field: 'currencyCode',
- title: '平台币种',
- align: 'center',
- minWidth: 90
- },
- {
- field: 'currencyCodePlatform',
- title: '回款/余额币种',
- minWidth: 120,
- align: 'center'
- },
- {
- field: 'platform',
- title: '平台',
- align: 'center',
- minWidth: 89
- },
- { field: 'line', title: '线路', align: 'center', minWidth: 89 },
- { field: 'ipaddress', title: 'IP地址', minWidth: 135 },
- {
- field: 'company',
- title: '注册公司',
- align: 'center',
- minWidth: 184
- },
- {
- field: 'companyEnglishName',
- title: '公司英文名称',
- align: 'center',
- minWidth: 120
- },
- {
- field: 'address',
- title: '公司地址',
- align: 'center',
- minWidth: 262
- },
- {
- field: 'juridicalPerson',
- title: '公司法人',
- align: 'center',
- minWidth: 95
- },
- {
- field: 'juridicalPersonCreditCard',
- title: '法人信用卡',
- align: 'center',
- minWidth: 105
- },
- {
- field: 'juridicalPersonCreditCardAddress',
- title: '信用卡地址',
- align: 'center',
- minWidth: 262
- },
- {
- field: 'receivablesAccount',
- title: '收款账号',
- align: 'center',
- minWidth: 156
- },
- {
- field: 'receivablesAccountCompany',
- title: '收款账号公司',
- align: 'center',
- minWidth: 115
- },
- { field: 'vatNumber', title: 'VAT税号', align: 'center', minWidth: 95 },
- { field: 'vatCompany', title: 'VAT税号公司名称', align: 'center', minWidth: 135 },
- { field: 'status', title: '状态', slots: { default: 'status_default' }, align: 'center', minWidth: 89 },
- ]);
|