58 lines
2.2 KiB
TypeScript
58 lines
2.2 KiB
TypeScript
export const tableColumns = [
|
|
//序号
|
|
{ label: '序号', type: 'index', width: 60, align: 'center' },
|
|
//渠道名称
|
|
{ label: '渠道名称', prop: 'name' },
|
|
//渠道费用
|
|
{ label: '渠道费用', prop: 'channel_fee', isNumber: true },
|
|
//货币类型
|
|
// { label: '入金货币', prop: 'currency.name' },
|
|
// 接口地址
|
|
{ label: '接口地址', prop: 'api_url' },
|
|
// 接口appid
|
|
{ label: '接口appid', prop: 'api_appid' },
|
|
{ label: '状态', prop: 'statusStr' },
|
|
]
|
|
|
|
export const formItemsData = [
|
|
{ label: '渠道名称', prop: 'name', type: 'input', placeholder: '请输入渠道名称' },
|
|
{
|
|
label: '渠道费用',
|
|
prop: 'channel_fee',
|
|
type: 'number',
|
|
min: 0,
|
|
max: 999999,
|
|
controls: false,
|
|
placeholder: '请输入渠道费用',
|
|
},
|
|
{
|
|
label: '入金货币',
|
|
prop: 'currency_id',
|
|
type: 'select',
|
|
placeholder: '请选择入金货币',
|
|
},
|
|
{ label: '接口地址', prop: 'api_url', type: 'input', placeholder: '请输入接口地址' },
|
|
{ label: '接口appid', prop: 'api_appid', type: 'input', placeholder: '请输入接口appid' },
|
|
{ label: '接口密钥', prop: 'api_key', type: 'input', placeholder: '请输入接口密钥' },
|
|
{ label: '渠道码', prop: 'channel_code', type: 'input', placeholder: '请输入渠道码' },
|
|
{ label: '状态', prop: 'status', type: 'radio' },
|
|
]
|
|
|
|
export const formRulesData = {
|
|
name: [{ required: true, message: '请输入渠道名称', trigger: ['change'] }],
|
|
channel_fee: [{ required: true, message: '请输入渠道费用', trigger: ['change'] }],
|
|
currency_id: [{ required: true, message: '请选择入金货币', trigger: ['change'] }],
|
|
api_url: [{ required: true, message: '请输入接口地址', trigger: ['change'] }],
|
|
api_appid: [{ required: true, message: '请输入接口appid', trigger: ['change'] }],
|
|
api_key: [{ required: true, message: '请输入接口密钥', trigger: ['change'] }],
|
|
channel_code: [{ required: true, message: '请输入渠道码', trigger: ['change'] }],
|
|
status: [{ required: true, message: '请选择状态', trigger: ['change'] }],
|
|
}
|
|
|
|
export const optionsMapData = {
|
|
currency_id: [],
|
|
status: [
|
|
{ label: '正常', value: 1 },
|
|
{ label: '禁用', value: 2 },
|
|
],
|
|
} |