|
@ -4,11 +4,12 @@ |
|
|
* @param {*} option |
|
|
* @param {*} option |
|
|
* @returns |
|
|
* @returns |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
const { t } = useI18n() |
|
|
|
|
|
|
|
|
// 新增按钮
|
|
|
// 新增按钮
|
|
|
export function defaultAddBtn(option:any) { |
|
|
export function defaultAddBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '新增', |
|
|
label: t(`btn.新增`).replace('btn.', ''), |
|
|
name: 'add', |
|
|
name: 'add', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -21,7 +22,7 @@ export function defaultAddBtn(option:any) { |
|
|
// 导入按钮
|
|
|
// 导入按钮
|
|
|
export function defaultImportBtn(option:any) { |
|
|
export function defaultImportBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '导入', |
|
|
label: t(`btn.导入`).replace('btn.', ''), |
|
|
name: 'import', |
|
|
name: 'import', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'warning', |
|
|
type: 'warning', |
|
@ -34,7 +35,7 @@ export function defaultImportBtn(option:any) { |
|
|
// 导出按钮
|
|
|
// 导出按钮
|
|
|
export function defaultExportBtn(option:any) { |
|
|
export function defaultExportBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '导出', |
|
|
label: t(`btn.导出`).replace('btn.', ''), |
|
|
name: 'export', |
|
|
name: 'export', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'success', |
|
|
type: 'success', |
|
@ -78,7 +79,7 @@ export function defaultExportBtn(option:any) { |
|
|
// 刷新按钮
|
|
|
// 刷新按钮
|
|
|
export function defaultFreshBtn(option:any) { |
|
|
export function defaultFreshBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '刷新', |
|
|
label: t(`btn.刷新`).replace('btn.', ''), |
|
|
name: 'refresh', |
|
|
name: 'refresh', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -92,7 +93,7 @@ export function defaultFreshBtn(option:any) { |
|
|
// 重置按钮
|
|
|
// 重置按钮
|
|
|
export function defaultResetBtn(option:any) { |
|
|
export function defaultResetBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '重置', |
|
|
label: t(`btn.重置`).replace('btn.', ''), |
|
|
name: 'reset', |
|
|
name: 'reset', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'info', |
|
|
type: 'info', |
|
@ -106,7 +107,7 @@ export function defaultResetBtn(option:any) { |
|
|
// 字段设置
|
|
|
// 字段设置
|
|
|
export function defaultSetBtn(option:any) { |
|
|
export function defaultSetBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '设置', |
|
|
label: t(`btn.设置`).replace('btn.', ''), |
|
|
name: 'set', |
|
|
name: 'set', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'info', |
|
|
type: 'info', |
|
@ -120,7 +121,7 @@ export function defaultSetBtn(option:any) { |
|
|
// 筛选按钮
|
|
|
// 筛选按钮
|
|
|
export function defaultFilterBtn(option:any) { |
|
|
export function defaultFilterBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '筛选', |
|
|
label: t(`btn.筛选`).replace('btn.', ''), |
|
|
name: 'filtrate', |
|
|
name: 'filtrate', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'info', |
|
|
type: 'info', |
|
@ -134,7 +135,7 @@ export function defaultFilterBtn(option:any) { |
|
|
// 筛选——查询按钮
|
|
|
// 筛选——查询按钮
|
|
|
export function defaultSearchBtn(option:any) { |
|
|
export function defaultSearchBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '搜索', |
|
|
label: t(`btn.搜索`).replace('btn.', ''), |
|
|
name: 'search', |
|
|
name: 'search', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -148,7 +149,7 @@ export function defaultSearchBtn(option:any) { |
|
|
// 筛选——重置按钮
|
|
|
// 筛选——重置按钮
|
|
|
export function defaultSearchResetBtn(option:any) { |
|
|
export function defaultSearchResetBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '重置', |
|
|
label: t(`btn.重置`).replace('btn.', ''), |
|
|
name: 'searchReset', |
|
|
name: 'searchReset', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'info', |
|
|
type: 'info', |
|
@ -162,7 +163,7 @@ export function defaultSearchResetBtn(option:any) { |
|
|
// form表单-保存按钮
|
|
|
// form表单-保存按钮
|
|
|
export function formSaveBtn(option:any) { |
|
|
export function formSaveBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '保存', |
|
|
label: t(`btn.保存`).replace('btn.', ''), |
|
|
name: 'save', |
|
|
name: 'save', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -176,7 +177,7 @@ export function formSaveBtn(option:any) { |
|
|
// form表单-关闭按钮
|
|
|
// form表单-关闭按钮
|
|
|
export function formCloseBtn(option:any) { |
|
|
export function formCloseBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '关闭', |
|
|
label: t(`btn.关闭`).replace('btn.', ''), |
|
|
name: 'close', |
|
|
name: 'close', |
|
|
hide: false, |
|
|
hide: false, |
|
|
icon: 'ep:close', |
|
|
icon: 'ep:close', |
|
@ -189,7 +190,7 @@ export function formCloseBtn(option:any) { |
|
|
// drawer抽屉头部-编辑按钮
|
|
|
// drawer抽屉头部-编辑按钮
|
|
|
export function drawerEditBtn(option:any) { |
|
|
export function drawerEditBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '编辑', |
|
|
label: t(`btn.编辑`).replace('btn.', ''), |
|
|
name: 'edit', |
|
|
name: 'edit', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'warning', |
|
|
type: 'warning', |
|
@ -202,7 +203,7 @@ export function drawerEditBtn(option:any) { |
|
|
// drawer抽屉头部-删除按钮
|
|
|
// drawer抽屉头部-删除按钮
|
|
|
export function drawerDeleteBtn(option:any) { |
|
|
export function drawerDeleteBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '删除', |
|
|
label: t(`btn.删除`).replace('btn.', ''), |
|
|
name: 'delete', |
|
|
name: 'delete', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -228,7 +229,7 @@ export function drawerDeleteBtn(option:any) { |
|
|
// 主列表-编辑按钮
|
|
|
// 主列表-编辑按钮
|
|
|
export function mainListEditBtn(option:any) { |
|
|
export function mainListEditBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '编辑', |
|
|
label: t(`btn.编辑`).replace('btn.', ''), |
|
|
name: 'edit', |
|
|
name: 'edit', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'warning', |
|
|
type: 'warning', |
|
@ -241,7 +242,7 @@ export function mainListEditBtn(option:any) { |
|
|
// 主列表-删除按钮
|
|
|
// 主列表-删除按钮
|
|
|
export function mainListDeleteBtn(option:any) { |
|
|
export function mainListDeleteBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '删除', |
|
|
label: t(`btn.删除`).replace('btn.', ''), |
|
|
name: 'delete', |
|
|
name: 'delete', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -252,7 +253,7 @@ export function mainListDeleteBtn(option:any) { |
|
|
} |
|
|
} |
|
|
export function mainListEnableBtn(option:any) { |
|
|
export function mainListEnableBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '启用', |
|
|
label: t(`btn.启用`).replace('btn.', ''), |
|
|
name: 'enable', |
|
|
name: 'enable', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -263,7 +264,7 @@ export function mainListEnableBtn(option:any) { |
|
|
} |
|
|
} |
|
|
export function mainListDisableBtn(option:any) { |
|
|
export function mainListDisableBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '禁用', |
|
|
label: t(`btn.禁用`).replace('btn.', ''), |
|
|
name: 'disable', |
|
|
name: 'disable', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -275,7 +276,7 @@ export function mainListDisableBtn(option:any) { |
|
|
// 主列表-中止按钮1
|
|
|
// 主列表-中止按钮1
|
|
|
export function mainListSuspend1Btn(option:any) { |
|
|
export function mainListSuspend1Btn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '中止', |
|
|
label: t(`btn.中止`), |
|
|
name: 'suspend', |
|
|
name: 'suspend', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -288,7 +289,7 @@ export function mainListSuspend1Btn(option:any) { |
|
|
// 主列表-中止按钮2
|
|
|
// 主列表-中止按钮2
|
|
|
export function mainListSuspend2Btn(option:any) { |
|
|
export function mainListSuspend2Btn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '中止', |
|
|
label: t(`btn.中止`).replace('btn.', ''), |
|
|
name: 'suspend', |
|
|
name: 'suspend', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -301,7 +302,7 @@ export function mainListSuspend2Btn(option:any) { |
|
|
// 主列表-领取按钮
|
|
|
// 主列表-领取按钮
|
|
|
export function mainListReceiveBtn(option:any) { |
|
|
export function mainListReceiveBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '领取', |
|
|
label: t(`btn.领取`).replace('btn.', ''), |
|
|
name: 'receive', |
|
|
name: 'receive', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -314,7 +315,7 @@ export function mainListReceiveBtn(option:any) { |
|
|
// 主列表-完成按钮
|
|
|
// 主列表-完成按钮
|
|
|
export function mainListFinishBtn(option:any) { |
|
|
export function mainListFinishBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '完成', |
|
|
label: t(`btn.完成`).replace('btn.', ''), |
|
|
name: 'finish', |
|
|
name: 'finish', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -327,7 +328,7 @@ export function mainListFinishBtn(option:any) { |
|
|
// 主列表-绑定
|
|
|
// 主列表-绑定
|
|
|
export function mainListBindBtn(option:any) { |
|
|
export function mainListBindBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '绑定', |
|
|
label: t(`btn.绑定`).replace('btn.', ''), |
|
|
name: 'bind', |
|
|
name: 'bind', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -339,7 +340,7 @@ export function mainListBindBtn(option:any) { |
|
|
// 主列表-申请流程-关闭按钮
|
|
|
// 主列表-申请流程-关闭按钮
|
|
|
export function mainListCloseBtn(option:any) { |
|
|
export function mainListCloseBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '关闭', |
|
|
label: t(`btn.关闭`).replace('btn.', ''), |
|
|
name: 'mainClose', |
|
|
name: 'mainClose', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -352,7 +353,7 @@ export function mainListCloseBtn(option:any) { |
|
|
// 主列表-申请流程-重新添加按钮
|
|
|
// 主列表-申请流程-重新添加按钮
|
|
|
export function mainListReAddBtn(option:any) { |
|
|
export function mainListReAddBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '重新添加', |
|
|
label: t(`btn.重新添加`).replace('btn.', ''), |
|
|
name: 'mainReAdd', |
|
|
name: 'mainReAdd', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'warning', |
|
|
type: 'warning', |
|
@ -365,7 +366,7 @@ export function mainListReAddBtn(option:any) { |
|
|
// 主列表-申请流程-提交审批按钮
|
|
|
// 主列表-申请流程-提交审批按钮
|
|
|
export function mainListSubmitBtn(option:any) { |
|
|
export function mainListSubmitBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '提交审批', |
|
|
label: t(`btn.提交审批`).replace('btn.', ''), |
|
|
name: 'mainSubmit', |
|
|
name: 'mainSubmit', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -378,7 +379,7 @@ export function mainListSubmitBtn(option:any) { |
|
|
// 主列表-申请流程-驳回按钮
|
|
|
// 主列表-申请流程-驳回按钮
|
|
|
export function mainListTurnDownBtn(option:any) { |
|
|
export function mainListTurnDownBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '驳回', |
|
|
label: t(`btn.驳回`).replace('btn.', ''), |
|
|
name: 'mainTurnDown', |
|
|
name: 'mainTurnDown', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -391,7 +392,7 @@ export function mainListTurnDownBtn(option:any) { |
|
|
// 主列表-申请流程-审批通过按钮
|
|
|
// 主列表-申请流程-审批通过按钮
|
|
|
export function mainListApproveBtn(option:any) { |
|
|
export function mainListApproveBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '审批通过', |
|
|
label: t(`btn.审批通过`).replace('btn.', ''), |
|
|
name: 'mainApprove', |
|
|
name: 'mainApprove', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -404,7 +405,7 @@ export function mainListApproveBtn(option:any) { |
|
|
// 主列表-申请流程-处理按钮
|
|
|
// 主列表-申请流程-处理按钮
|
|
|
export function mainListHandleBtn(option:any) { |
|
|
export function mainListHandleBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '处理', |
|
|
label: t(`btn.处理`).replace('btn.', ''), |
|
|
name: 'mainHandle', |
|
|
name: 'mainHandle', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -417,7 +418,7 @@ export function mainListHandleBtn(option:any) { |
|
|
// 主列表-订单流程-发布按钮
|
|
|
// 主列表-订单流程-发布按钮
|
|
|
export function mainListOrderPubBtn(option:any) { |
|
|
export function mainListOrderPubBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '发布', |
|
|
label: t(`btn.发布`).replace('btn.', ''), |
|
|
name: 'mainOrderPub', |
|
|
name: 'mainOrderPub', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'success', |
|
|
type: 'success', |
|
@ -430,7 +431,7 @@ export function mainListOrderPubBtn(option:any) { |
|
|
// 主列表-订单流程-关闭按钮
|
|
|
// 主列表-订单流程-关闭按钮
|
|
|
export function mainListOrderCloBtn(option:any) { |
|
|
export function mainListOrderCloBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '关闭', |
|
|
label: t(`btn.关闭`).replace('btn.', ''), |
|
|
name: 'mainOrderClo', |
|
|
name: 'mainOrderClo', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -443,7 +444,7 @@ export function mainListOrderCloBtn(option:any) { |
|
|
// 主列表-订单流程-打开按钮
|
|
|
// 主列表-订单流程-打开按钮
|
|
|
export function mainListOrderOpeBtn(option:any) { |
|
|
export function mainListOrderOpeBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '打开', |
|
|
label: t(`btn.打开`).replace('btn.', ''), |
|
|
name: 'mainOrderOpe', |
|
|
name: 'mainOrderOpe', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'warning', |
|
|
type: 'warning', |
|
@ -456,7 +457,7 @@ export function mainListOrderOpeBtn(option:any) { |
|
|
// 主列表-订单流程-下架按钮
|
|
|
// 主列表-订单流程-下架按钮
|
|
|
export function mainListOrderWitBtn(option:any) { |
|
|
export function mainListOrderWitBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '下架', |
|
|
label: t(`btn.下架`).replace('btn.', ''), |
|
|
name: 'mainOrderWit', |
|
|
name: 'mainOrderWit', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -469,7 +470,7 @@ export function mainListOrderWitBtn(option:any) { |
|
|
// 主列表-计划流程-打开按钮
|
|
|
// 主列表-计划流程-打开按钮
|
|
|
export function mainListPlanOpeBtn(option:any) { |
|
|
export function mainListPlanOpeBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '打开', |
|
|
label: t(`btn.打开`).replace('btn.', ''), |
|
|
name: 'mainPlanOpe', |
|
|
name: 'mainPlanOpe', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'warning', |
|
|
type: 'warning', |
|
@ -482,7 +483,7 @@ export function mainListPlanOpeBtn(option:any) { |
|
|
// 主列表-计划流程-关闭按钮
|
|
|
// 主列表-计划流程-关闭按钮
|
|
|
export function mainListPlanCloBtn(option:any) { |
|
|
export function mainListPlanCloBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '关闭', |
|
|
label: t(`btn.关闭`).replace('btn.', ''), |
|
|
name: 'mainPlanClo', |
|
|
name: 'mainPlanClo', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -495,7 +496,7 @@ export function mainListPlanCloBtn(option:any) { |
|
|
// 主列表-上传质量报告
|
|
|
// 主列表-上传质量报告
|
|
|
export function mainListPlanUploadQualityReportBtn(option:any) { |
|
|
export function mainListPlanUploadQualityReportBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '上传质量报告', |
|
|
label: t(`btn.上传质量报告`).replace('btn.', ''), |
|
|
name: 'mainPlanUploadQualityReport', |
|
|
name: 'mainPlanUploadQualityReport', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -508,7 +509,7 @@ export function mainListPlanUploadQualityReportBtn(option:any) { |
|
|
// 主列表-计划流程-提交审批按钮
|
|
|
// 主列表-计划流程-提交审批按钮
|
|
|
export function mainListPlanSubBtn(option:any) { |
|
|
export function mainListPlanSubBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '提交审批', |
|
|
label: t(`btn.提交审批`).replace('btn.', ''), |
|
|
name: 'mainPlanSub', |
|
|
name: 'mainPlanSub', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -521,7 +522,7 @@ export function mainListPlanSubBtn(option:any) { |
|
|
// 主列表-计划流程-驳回按钮
|
|
|
// 主列表-计划流程-驳回按钮
|
|
|
export function mainListPlanTurBtn(option:any) { |
|
|
export function mainListPlanTurBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '驳回', |
|
|
label: t(`btn.驳回`).replace('btn.', ''), |
|
|
name: 'mainPlanTur', |
|
|
name: 'mainPlanTur', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -534,7 +535,7 @@ export function mainListPlanTurBtn(option:any) { |
|
|
// 主列表-计划流程-重置按钮
|
|
|
// 主列表-计划流程-重置按钮
|
|
|
export function mainListPlanResBtn(option:any) { |
|
|
export function mainListPlanResBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '重置', |
|
|
label: t(`btn.重置`).replace('btn.', ''), |
|
|
name: 'mainPlanRes', |
|
|
name: 'mainPlanRes', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -547,7 +548,7 @@ export function mainListPlanResBtn(option:any) { |
|
|
// 主列表-计划流程-审批通过按钮
|
|
|
// 主列表-计划流程-审批通过按钮
|
|
|
export function mainListPlanAppBtn(option:any) { |
|
|
export function mainListPlanAppBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '审批通过', |
|
|
label: t(`btn.审批通过`).replace('btn.', ''), |
|
|
name: 'mainPlanApp', |
|
|
name: 'mainPlanApp', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -560,7 +561,7 @@ export function mainListPlanAppBtn(option:any) { |
|
|
// 主列表-计划流程-发布按钮
|
|
|
// 主列表-计划流程-发布按钮
|
|
|
export function mainListPlanPubBtn(option:any) { |
|
|
export function mainListPlanPubBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '发布', |
|
|
label: t(`btn.发布`).replace('btn.', ''), |
|
|
name: 'mainPlanPub', |
|
|
name: 'mainPlanPub', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'success', |
|
|
type: 'success', |
|
@ -573,7 +574,7 @@ export function mainListPlanPubBtn(option:any) { |
|
|
// 主列表-计划流程-执行按钮
|
|
|
// 主列表-计划流程-执行按钮
|
|
|
export function mainListPlanComBtn(option:any) { |
|
|
export function mainListPlanComBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '执行', |
|
|
label: t(`btn.执行`).replace('btn.', ''), |
|
|
name: 'mainPlanCom', |
|
|
name: 'mainPlanCom', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -586,7 +587,7 @@ export function mainListPlanComBtn(option:any) { |
|
|
// 主列表-要货计划流程-修改按钮
|
|
|
// 主列表-要货计划流程-修改按钮
|
|
|
export function mainListPurchasePlanModBtn(option:any) { |
|
|
export function mainListPurchasePlanModBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '修改', |
|
|
label: t(`btn.修改`).replace('btn.', ''), |
|
|
name: 'mainPurPlanMod', |
|
|
name: 'mainPurPlanMod', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -599,7 +600,7 @@ export function mainListPurchasePlanModBtn(option:any) { |
|
|
// 主列表-要货计划流程-下架按钮
|
|
|
// 主列表-要货计划流程-下架按钮
|
|
|
export function mainListPurchasePlanWitBtn(option:any) { |
|
|
export function mainListPurchasePlanWitBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '下架', |
|
|
label: t(`btn.下架`), |
|
|
name: 'mainPurPlanWit', |
|
|
name: 'mainPurPlanWit', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -612,7 +613,7 @@ export function mainListPurchasePlanWitBtn(option:any) { |
|
|
// 主列表-要货计划流程-不接受按钮
|
|
|
// 主列表-要货计划流程-不接受按钮
|
|
|
export function mainListPurchasePlanRejBtn(option:any) { |
|
|
export function mainListPurchasePlanRejBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '不接受', |
|
|
label: t(`btn.不接受`).replace('btn.', ''), |
|
|
name: 'mainPurPlanRej', |
|
|
name: 'mainPurPlanRej', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -625,7 +626,7 @@ export function mainListPurchasePlanRejBtn(option:any) { |
|
|
// 主列表-要货计划流程-接受按钮
|
|
|
// 主列表-要货计划流程-接受按钮
|
|
|
export function mainListPurchasePlanAccBtn(option:any) { |
|
|
export function mainListPurchasePlanAccBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '接受', |
|
|
label: t(`btn.接受`).replace('btn.', ''), |
|
|
name: 'mainPurPlanAcc', |
|
|
name: 'mainPurPlanAcc', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -638,7 +639,7 @@ export function mainListPurchasePlanAccBtn(option:any) { |
|
|
// 主列表-要货计划流程-发布按钮
|
|
|
// 主列表-要货计划流程-发布按钮
|
|
|
export function mainListPurchasePlanPubBtn(option:any) { |
|
|
export function mainListPurchasePlanPubBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '发布', |
|
|
label: t(`btn.发布`).replace('btn.', ''), |
|
|
name: 'mainPurPlanPub', |
|
|
name: 'mainPurPlanPub', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'success', |
|
|
type: 'success', |
|
@ -651,7 +652,7 @@ export function mainListPurchasePlanPubBtn(option:any) { |
|
|
// 主列表-要货计划流程-关闭按钮
|
|
|
// 主列表-要货计划流程-关闭按钮
|
|
|
export function mainListPurchasePlanCloBtn(option:any) { |
|
|
export function mainListPurchasePlanCloBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '关闭', |
|
|
label: t(`btn.关闭`).replace('btn.', ''), |
|
|
name: 'mainPurPlanClo', |
|
|
name: 'mainPurPlanClo', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -664,7 +665,7 @@ export function mainListPurchasePlanCloBtn(option:any) { |
|
|
// 主列表-要货计划流程-打开按钮
|
|
|
// 主列表-要货计划流程-打开按钮
|
|
|
export function mainListPurchasePlanOpeBtn(option:any) { |
|
|
export function mainListPurchasePlanOpeBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '打开', |
|
|
label: t(`btn.打开`).replace('btn.', ''), |
|
|
name: 'mainPurPlanOpe', |
|
|
name: 'mainPurPlanOpe', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'warning', |
|
|
type: 'warning', |
|
@ -677,7 +678,7 @@ export function mainListPurchasePlanOpeBtn(option:any) { |
|
|
// 主列表-任务流程-承接按钮
|
|
|
// 主列表-任务流程-承接按钮
|
|
|
export function mainListJobAccBtn(option:any) { |
|
|
export function mainListJobAccBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '承接', |
|
|
label: t(`btn.承接`).replace('btn.', ''), |
|
|
name: 'mainJobAcc', |
|
|
name: 'mainJobAcc', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'success', |
|
|
type: 'success', |
|
@ -690,7 +691,7 @@ export function mainListJobAccBtn(option:any) { |
|
|
// 主列表-任务流程-关闭按钮
|
|
|
// 主列表-任务流程-关闭按钮
|
|
|
export function mainListJobCloBtn(option:any) { |
|
|
export function mainListJobCloBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '关闭', |
|
|
label: t(`btn.关闭`).replace('btn.', ''), |
|
|
name: 'mainJobClo', |
|
|
name: 'mainJobClo', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -703,7 +704,7 @@ export function mainListJobCloBtn(option:any) { |
|
|
// 主列表-任务流程-放弃按钮
|
|
|
// 主列表-任务流程-放弃按钮
|
|
|
export function mainListJobAbaBtn(option:any) { |
|
|
export function mainListJobAbaBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '放弃', |
|
|
label: t(`btn.放弃`).replace('btn.', ''), |
|
|
name: 'mainJobAba', |
|
|
name: 'mainJobAba', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'danger', |
|
|
type: 'danger', |
|
@ -716,7 +717,7 @@ export function mainListJobAbaBtn(option:any) { |
|
|
// 主列表-任务流程-执行按钮
|
|
|
// 主列表-任务流程-执行按钮
|
|
|
export function mainListJobExeBtn(option:any) { |
|
|
export function mainListJobExeBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '执行', |
|
|
label: t(`btn.执行`).replace('btn.', ''), |
|
|
name: 'mainJobExe', |
|
|
name: 'mainJobExe', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -729,7 +730,7 @@ export function mainListJobExeBtn(option:any) { |
|
|
// 主列表-任务流程-执行按钮(与执行按钮一致 只是名改叫'收货'而已)
|
|
|
// 主列表-任务流程-执行按钮(与执行按钮一致 只是名改叫'收货'而已)
|
|
|
export function mainListJobRecBtn(option:any) { |
|
|
export function mainListJobRecBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '收货', |
|
|
label: t(`btn.收货`).replace('btn.', ''), |
|
|
name: 'mainJobExe', |
|
|
name: 'mainJobExe', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -741,7 +742,7 @@ export function mainListJobRecBtn(option:any) { |
|
|
// 主列表-包装按钮
|
|
|
// 主列表-包装按钮
|
|
|
export function mainListPackageBtn(option:any) { |
|
|
export function mainListPackageBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '包装', |
|
|
label: t(`btn.包装`).replace('btn.', ''), |
|
|
name: 'mainPackage', |
|
|
name: 'mainPackage', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -753,7 +754,7 @@ export function mainListPackageBtn(option:any) { |
|
|
// 主列表-打印
|
|
|
// 主列表-打印
|
|
|
export function mainListPointBtn(option:any) { |
|
|
export function mainListPointBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '打印标签', |
|
|
label: t(`btn.打印标签`).replace('btn.', ''), |
|
|
name: 'point', |
|
|
name: 'point', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -765,7 +766,7 @@ export function mainListPointBtn(option:any) { |
|
|
// 主列表-批量打印
|
|
|
// 主列表-批量打印
|
|
|
export function mainLisSelectiontPointBtn(option:any) { |
|
|
export function mainLisSelectiontPointBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '批量打印', |
|
|
label: t(`btn.批量打印`).replace('btn.', ''), |
|
|
name: 'selection_point', |
|
|
name: 'selection_point', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -778,7 +779,7 @@ export function mainLisSelectiontPointBtn(option:any) { |
|
|
// 主列表-生成采购收货申请
|
|
|
// 主列表-生成采购收货申请
|
|
|
export function mainListGenerateApplicationBtn(option:any) { |
|
|
export function mainListGenerateApplicationBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '生成采购收货申请', |
|
|
label: t(`btn.生成采购收货申请`).replace('btn.', ''), |
|
|
name: 'generateApplication', |
|
|
name: 'generateApplication', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -790,7 +791,7 @@ export function mainListGenerateApplicationBtn(option:any) { |
|
|
// 主列表-打印
|
|
|
// 主列表-打印
|
|
|
export function mainListDocumentPrintBtn(option:any) { |
|
|
export function mainListDocumentPrintBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '单据打印', |
|
|
label: t(`btn.单据打印`).replace('btn.', ''), |
|
|
name: 'documentPrint', |
|
|
name: 'documentPrint', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -802,7 +803,7 @@ export function mainListDocumentPrintBtn(option:any) { |
|
|
// 主列表-生成到货检验申请
|
|
|
// 主列表-生成到货检验申请
|
|
|
export function mainInspectRequestBtn(option:any) { |
|
|
export function mainInspectRequestBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '发送到货检验申请', |
|
|
label: t(`btn.发送到货检验申请`).replace('btn.', ''), |
|
|
name: 'inspectRequest', |
|
|
name: 'inspectRequest', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -814,7 +815,7 @@ export function mainInspectRequestBtn(option:any) { |
|
|
// 主列表-生成采购上架申请
|
|
|
// 主列表-生成采购上架申请
|
|
|
export function mainPutawayRequestBtn(option:any) { |
|
|
export function mainPutawayRequestBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '生成采购上架申请', |
|
|
label: t(`btn.生成采购上架申请`).replace('btn.', ''), |
|
|
name: 'putawayRequest', |
|
|
name: 'putawayRequest', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -826,7 +827,7 @@ export function mainPutawayRequestBtn(option:any) { |
|
|
// 主列表-生成盘点调整申请
|
|
|
// 主列表-生成盘点调整申请
|
|
|
export function mainCountAdjustRequesttBtn(option:any) { |
|
|
export function mainCountAdjustRequesttBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '生成盘点调整申请', |
|
|
label: t(`btn.生成盘点调整申请`).replace('btn.', ''), |
|
|
name: 'countAdjustRequest', |
|
|
name: 'countAdjustRequest', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -838,7 +839,7 @@ export function mainCountAdjustRequesttBtn(option:any) { |
|
|
// 主列表-重盘
|
|
|
// 主列表-重盘
|
|
|
export function mainReCountBtn(option:any) { |
|
|
export function mainReCountBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '重盘', |
|
|
label: t(`btn.重盘`).replace('btn.', ''), |
|
|
name: 'mainReCount', |
|
|
name: 'mainReCount', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -850,7 +851,7 @@ export function mainReCountBtn(option:any) { |
|
|
// 主列表-监盘
|
|
|
// 主列表-监盘
|
|
|
export function mainSuperviseCountBtn(option:any) { |
|
|
export function mainSuperviseCountBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '监盘', |
|
|
label: t(`btn.监盘`).replace('btn.', ''), |
|
|
name: 'mainSuperviseCount', |
|
|
name: 'mainSuperviseCount', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -862,7 +863,7 @@ export function mainSuperviseCountBtn(option:any) { |
|
|
// 主列表-解冻
|
|
|
// 主列表-解冻
|
|
|
export function mainThawRequesttBtn(option:any) { |
|
|
export function mainThawRequesttBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '解冻', |
|
|
label: t(`btn.解冻`).replace('btn.', ''), |
|
|
name: 'mainThaw', |
|
|
name: 'mainThaw', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -874,7 +875,7 @@ export function mainThawRequesttBtn(option:any) { |
|
|
// 主列表-更新检验记录
|
|
|
// 主列表-更新检验记录
|
|
|
export function mainUpdataRecodeBtn(option:any) { |
|
|
export function mainUpdataRecodeBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '更新检验记录', |
|
|
label: t(`btn.更新检验记录`).replace('btn.', ''), |
|
|
name: 'updataRecode', |
|
|
name: 'updataRecode', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
@ -886,7 +887,7 @@ export function mainUpdataRecodeBtn(option:any) { |
|
|
// 主列表-使用决策
|
|
|
// 主列表-使用决策
|
|
|
export function mainApplyDecisionBtn(option:any) { |
|
|
export function mainApplyDecisionBtn(option:any) { |
|
|
return __defaultBtnOption(option,{ |
|
|
return __defaultBtnOption(option,{ |
|
|
label: '使用决策', |
|
|
label: t(`btn.使用决策`).replace('btn.', ''), |
|
|
name: 'applyDecision', |
|
|
name: 'applyDecision', |
|
|
hide: false, |
|
|
hide: false, |
|
|
type: 'primary', |
|
|
type: 'primary', |
|
|