@tcly-pangu/event-flow-operation-log
v1.0.2
Published
事件流操作日志
Downloads
4
Keywords
Readme
使用方式
npm install @tcly-pangu/event-flow-operation-log -S
<event-flow-operation-log :tabList="tabList" tabKey="tableName" :params="queryParam" :dictionary="dictionary" :enumTranslate="enumTranslate" :requestFunction="requestFunction"></event-flow-operation-log>
data () {
return {
tabList: [
{ label: '小程序信息', value: 'cfg_app_info' },
{ label: '发布流程', value: 'ver_trial_log' }
], // tab 列表
queryParam: {
tableId: 0,
tableName: '',
moduleCode: 'marketing',
subModuleCode: 'applet'
}, // 列表请求参数
dictionary: {
'appInfo': '小程序信息',
'appInfo.appId': '小程序 appId',
'release': '发布流程',
'release.type': '操作'
}, // 日志字典集合
enumTranslate: {
'release.type': [
{ value: 1, label: '授权' },
{ value: 2, label: '上传代码' },
{ value: 3, label: '提审' },
{ value: 4, label: '撤回审核' },
{ value: 5, label: '版本回滚' },
{ value: 6, label: '发布' },
{ value: 7, label: '更新授权信息' },
{ value: 8, label: '保存' }
] // 操作行为
}, // 字典枚举关系集合
requestFunction: getLogList // 日志请求函数
}
}