提交 0bea7a93 编写于 作者: ibizdev's avatar ibizdev

ibiz4j 发布系统代码

上级 eff85059
...@@ -9,50 +9,50 @@ import userCustom_en_US from '@locale/lanres/userCustom/userCustom_en_US'; ...@@ -9,50 +9,50 @@ import userCustom_en_US from '@locale/lanres/userCustom/userCustom_en_US';
export default { export default {
app: { app: {
commonWords:{ commonWords:{
error: 'Error', error: "Error",
success: 'Success', success: "Success",
ok: 'OK', ok: "OK",
cancel: 'Cancel', cancel: "Cancel",
}, },
local:{ local:{
new: 'New' new: "New"
}, },
gridpage: { gridpage: {
choicecolumns: 'Choice columns', choicecolumns: "Choice columns",
refresh: 'refresh', refresh: "refresh",
show: 'Show', show: "Show",
records: 'records', records: "records",
totle: 'totle', totle: "totle",
}, },
tabpage: { tabpage: {
sureclosetip: { sureclosetip: {
title: 'Close warning', title: "Close warning",
content: 'Form data Changed, are sure close?', content: "Form data Changed, are sure close?",
}, },
closeall: 'Close all', closeall: "Close all",
closeother: 'Close other', closeother: "Close other",
}, },
fileUpload: { fileUpload: {
caption: 'Upload', caption: "Upload",
}, },
searchButton: { searchButton: {
search: 'Search', search: "Search",
reset: 'Reset', reset: "Reset",
}, },
calendar:{ calendar:{
today: 'today', today: "today",
month: 'month', month: "month",
week: 'week', week: "week",
day: 'day', day: "day",
list: 'list', list: "list",
dateSelectModalTitle: 'select the time you wanted', dateSelectModalTitle: "select the time you wanted",
gotoDate: 'goto', gotoDate: "goto",
}, },
// 非实体视图 // 非实体视图
views: { views: {
taskindexview: { taskindexview: {
caption: 'ibizlab-task', caption: "ibizlab-task",
title: 'ibizlab-task', title: "ibizlab-task",
}, },
}, },
utilview:{ utilview:{
...@@ -62,9 +62,9 @@ export default { ...@@ -62,9 +62,9 @@ export default {
}, },
menus: { menus: {
taskindexview: { taskindexview: {
menuitem3: '注册', menuitem3: "注册",
menuitem1: '任务', menuitem1: "任务",
menuitem2: '日志', menuitem2: "日志",
}, },
}, },
}, },
......
...@@ -9,50 +9,50 @@ import userCustom_zh_CN from '@locale/lanres/userCustom/userCustom_zh_CN'; ...@@ -9,50 +9,50 @@ import userCustom_zh_CN from '@locale/lanres/userCustom/userCustom_zh_CN';
export default { export default {
app: { app: {
commonWords:{ commonWords:{
error: '失败', error: "失败",
success: '成功', success: "成功",
ok: '确认', ok: "确认",
cancel: '取消', cancel: "取消",
}, },
local:{ local:{
new: '新建' new: "新建"
}, },
gridpage: { gridpage: {
choicecolumns: '选择列', choicecolumns: "选择列",
refresh: '刷新', refresh: "刷新",
show: '显示', show: "显示",
records: '条', records: "条",
totle: '共', totle: "共",
}, },
tabpage: { tabpage: {
sureclosetip: { sureclosetip: {
title: '关闭提醒', title: "关闭提醒",
content: '表单数据已经修改,确定要关闭?', content: "表单数据已经修改,确定要关闭?",
}, },
closeall: '关闭所有', closeall: "关闭所有",
closeother: '关闭其他', closeother: "关闭其他",
}, },
fileUpload: { fileUpload: {
caption: '上传', caption: "上传",
}, },
searchButton: { searchButton: {
search: '搜索', search: "搜索",
reset: '重置', reset: "重置",
}, },
calendar:{ calendar:{
today: '今天', today: "今天",
month: '月', month: "月",
week: '周', week: "周",
day: '天', day: "天",
list: '列', list: "列",
dateSelectModalTitle: '选择要跳转的时间', dateSelectModalTitle: "选择要跳转的时间",
gotoDate: '跳转', gotoDate: "跳转",
}, },
// 非实体视图 // 非实体视图
views: { views: {
taskindexview: { taskindexview: {
caption: 'ibizlab-task', caption: "ibizlab-task",
title: 'ibizlab-task', title: "ibizlab-task",
}, },
}, },
utilview:{ utilview:{
...@@ -62,9 +62,9 @@ export default { ...@@ -62,9 +62,9 @@ export default {
}, },
menus: { menus: {
taskindexview: { taskindexview: {
menuitem3: '注册', menuitem3: "注册",
menuitem1: '任务', menuitem1: "任务",
menuitem2: '日志', menuitem2: "日志",
}, },
}, },
}, },
......
export default { export default {
CodeListJobStatus: { CodeListJobStatus: {
'0': 'ENABLED', "0": "ENABLED",
'1': 'DISABLED', "1": "DISABLED",
empty: '', "empty": ""
}, },
}; };
\ No newline at end of file
export default { export default {
CodeListJobStatus: { CodeListJobStatus: {
'0': 'ENABLED', "0": "ENABLED",
'1': 'DISABLED', "1": "DISABLED",
empty: '', "empty": "",
}, },
}; };
\ No newline at end of file
export default { export default {
fields: { fields: {
id: '主键ID', id: "主键ID",
tenant_id: '租户ID', tenant_id: "租户ID",
app: '服务名', app: "服务名",
cron: '任务执行CRON', cron: "任务执行CRON",
handler: '执行器任务HANDLER', handler: "执行器任务HANDLER",
param: '执行器任务参数', param: "执行器任务参数",
timeout: '任务执行超时时间(秒)', timeout: "任务执行超时时间(秒)",
fail_retry_count: '失败重试次数', fail_retry_count: "失败重试次数",
last_time: '上次调度时间', last_time: "上次调度时间",
next_time: '下次调度时间', next_time: "下次调度时间",
author: '所有者', author: "所有者",
remark: '备注', remark: "备注",
status: '状态', status: "状态",
update_time: '更新时间', update_time: "更新时间",
create_time: '创建时间', create_time: "创建时间",
}, },
views: { views: {
gridview: { gridview: {
caption: "任务信息", caption: "任务信息",
title: '任务信息表格视图', title: "任务信息表格视图",
}, },
editview: { editview: {
caption: "任务信息", caption: "任务信息",
title: '任务信息编辑视图', title: "任务信息编辑视图",
}, },
}, },
main_form: { main_form: {
......
export default { export default {
fields: { fields: {
id: '主键ID', id: "主键ID",
tenant_id: '租户ID', tenant_id: "租户ID",
app: '服务名', app: "服务名",
cron: '任务执行CRON', cron: "任务执行CRON",
handler: '执行器任务HANDLER', handler: "执行器任务HANDLER",
param: '执行器任务参数', param: "执行器任务参数",
timeout: '任务执行超时时间(秒)', timeout: "任务执行超时时间(秒)",
fail_retry_count: '失败重试次数', fail_retry_count: "失败重试次数",
last_time: '上次调度时间', last_time: "上次调度时间",
next_time: '下次调度时间', next_time: "下次调度时间",
author: '所有者', author: "所有者",
remark: '备注', remark: "备注",
status: '状态', status: "状态",
update_time: '更新时间', update_time: "更新时间",
create_time: '创建时间', create_time: "创建时间",
}, },
views: { views: {
gridview: { gridview: {
caption: '任务信息', caption: "任务信息",
title: '任务信息表格视图', title: "任务信息表格视图",
}, },
editview: { editview: {
caption: '任务信息', caption: "任务信息",
title: '任务信息编辑视图', title: "任务信息编辑视图",
}, },
}, },
main_form: { main_form: {
details: { details: {
group1: '任务信息基本信息', group1: "任务信息基本信息",
formpage1: '基本信息', formpage1: "基本信息",
srforikey: '', srforikey: "",
srfkey: '主键ID', srfkey: "主键ID",
srfmajortext: '执行器任务HANDLER', srfmajortext: "执行器任务HANDLER",
srftempmode: '', srftempmode: "",
srfuf: '', srfuf: "",
srfdeid: '', srfdeid: "",
srfsourcekey: '', srfsourcekey: "",
app: '服务名', app: "服务名",
handler: '执行器任务HANDLER', handler: "执行器任务HANDLER",
cron: '任务执行CRON', cron: "任务执行CRON",
param: '执行器任务参数', param: "执行器任务参数",
last_time: '上次调度时间', last_time: "上次调度时间",
next_time: '下次调度时间', next_time: "下次调度时间",
timeout: '任务执行超时时间(秒)', timeout: "任务执行超时时间(秒)",
fail_retry_count: '失败重试次数', fail_retry_count: "失败重试次数",
author: '所有者', author: "所有者",
remark: '备注', remark: "备注",
status: '状态', status: "状态",
tenant_id: '租户ID', tenant_id: "租户ID",
create_time: '创建时间', create_time: "创建时间",
update_time: '更新时间', update_time: "更新时间",
id: '主键ID', id: "主键ID",
}, },
uiactions: { uiactions: {
}, },
}, },
main_grid: { main_grid: {
columns: { columns: {
id: '主键ID', id: "主键ID",
app: '服务名', app: "服务名",
handler: '执行器任务HANDLER', handler: "执行器任务HANDLER",
cron: '任务执行CRON', cron: "任务执行CRON",
last_time: '上次调度时间', last_time: "上次调度时间",
next_time: '下次调度时间', next_time: "下次调度时间",
status: '状态', status: "状态",
timeout: '任务执行超时时间(秒)', timeout: "任务执行超时时间(秒)",
update_time: '更新时间', update_time: "更新时间",
}, },
uiactions: { uiactions: {
}, },
}, },
default_searchform: { default_searchform: {
details: { details: {
formpage1: '常规条件', formpage1: "常规条件",
n_app_like: '服务名(文本包含(%))', n_app_like: "服务名(文本包含(%))",
n_handler_like: '执行器任务HANDLER(文本包含(%))', n_handler_like: "执行器任务HANDLER(文本包含(%))",
n_status_eq: '状态(等于(=))', n_status_eq: "状态(等于(=))",
}, },
uiactions: { uiactions: {
}, },
}, },
gridviewtoolbar_toolbar: { gridviewtoolbar_toolbar: {
deuiaction1: { deuiaction1: {
caption: '启动', caption: "启动",
tip: '启动', tip: "启动",
}, },
deuiaction2: { deuiaction2: {
caption: '停止', caption: "停止",
tip: '停止', tip: "停止",
}, },
deuiaction3: { deuiaction3: {
caption: '执行', caption: "执行",
tip: '执行', tip: "执行",
}, },
deuiaction4: { deuiaction4: {
caption: '新建', caption: "新建",
tip: '新建', tip: "新建",
}, },
deuiaction5: { deuiaction5: {
caption: '编辑', caption: "编辑",
tip: '编辑', tip: "编辑",
}, },
deuiaction6: { deuiaction6: {
caption: '删除', caption: "删除",
tip: '删除', tip: "删除",
}, },
deuiaction7: { deuiaction7: {
caption: '过滤', caption: "过滤",
tip: '过滤', tip: "过滤",
}, },
}, },
editviewtoolbar_toolbar: { editviewtoolbar_toolbar: {
tbitem3: { tbitem3: {
caption: '保存', caption: "保存",
tip: '保存', tip: "保存",
}, },
deuiaction1: { deuiaction1: {
caption: '关闭', caption: "关闭",
tip: '关闭', tip: "关闭",
}, },
}, },
}; };
\ No newline at end of file
export default { export default {
fields: { fields: {
id: '主键ID', id: "主键ID",
name: '名称', name: "名称",
owner: '持有者', owner: "持有者",
create_time: '创建时间', create_time: "创建时间",
}, },
}; };
\ No newline at end of file
export default { export default {
fields: { fields: {
id: '主键ID', id: "主键ID",
name: '名称', name: "名称",
owner: '持有者', owner: "持有者",
create_time: '创建时间', create_time: "创建时间",
}, },
}; };
\ No newline at end of file
export default { export default {
fields: { fields: {
id: '主键ID', id: "主键ID",
job_id: '任务ID', job_id: "任务ID",
address: '执行地址', address: "执行地址",
handler: '执行器任务HANDLER', handler: "执行器任务HANDLER",
param: '执行器任务参数', param: "执行器任务参数",
fail_retry_count: '失败重试次数', fail_retry_count: "失败重试次数",
trigger_code: '触发器调度返回码', trigger_code: "触发器调度返回码",
trigger_type: '触发器调度类型', trigger_type: "触发器调度类型",
trigger_msg: '触发器调度信息', trigger_msg: "触发器调度信息",
create_time: '创建时间', create_time: "创建时间",
}, },
views: { views: {
editview: { editview: {
caption: "任务调度日志", caption: "任务调度日志",
title: '任务调度日志编辑视图', title: "任务调度日志编辑视图",
}, },
gridview: { gridview: {
caption: "任务调度日志", caption: "任务调度日志",
title: '任务调度日志表格视图', title: "任务调度日志表格视图",
}, },
}, },
main_form: { main_form: {
......
export default { export default {
fields: { fields: {
id: '主键ID', id: "主键ID",
job_id: '任务ID', job_id: "任务ID",
address: '执行地址', address: "执行地址",
handler: '执行器任务HANDLER', handler: "执行器任务HANDLER",
param: '执行器任务参数', param: "执行器任务参数",
fail_retry_count: '失败重试次数', fail_retry_count: "失败重试次数",
trigger_code: '触发器调度返回码', trigger_code: "触发器调度返回码",
trigger_type: '触发器调度类型', trigger_type: "触发器调度类型",
trigger_msg: '触发器调度信息', trigger_msg: "触发器调度信息",
create_time: '创建时间', create_time: "创建时间",
}, },
views: { views: {
editview: { editview: {
caption: '任务调度日志', caption: "任务调度日志",
title: '任务调度日志编辑视图', title: "任务调度日志编辑视图",
}, },
gridview: { gridview: {
caption: '任务调度日志', caption: "任务调度日志",
title: '任务调度日志表格视图', title: "任务调度日志表格视图",
}, },
}, },
main_form: { main_form: {
details: { details: {
group1: '任务调度日志基本信息', group1: "任务调度日志基本信息",
formpage1: '基本信息', formpage1: "基本信息",
srforikey: '', srforikey: "",
srfkey: '主键ID', srfkey: "主键ID",
srfmajortext: '执行器任务HANDLER', srfmajortext: "执行器任务HANDLER",
srftempmode: '', srftempmode: "",
srfuf: '', srfuf: "",
srfdeid: '', srfdeid: "",
srfsourcekey: '', srfsourcekey: "",
job_id: '任务ID', job_id: "任务ID",
handler: '执行器任务HANDLER', handler: "执行器任务HANDLER",
param: '执行器任务参数', param: "执行器任务参数",
fail_retry_count: '失败重试次数', fail_retry_count: "失败重试次数",
trigger_code: '触发器调度返回码', trigger_code: "触发器调度返回码",
trigger_type: '触发器调度类型', trigger_type: "触发器调度类型",
trigger_msg: '触发器调度信息', trigger_msg: "触发器调度信息",
address: '执行地址', address: "执行地址",
create_time: '创建时间', create_time: "创建时间",
id: '主键ID', id: "主键ID",
}, },
uiactions: { uiactions: {
}, },
}, },
main_grid: { main_grid: {
columns: { columns: {
id: '主键ID', id: "主键ID",
job_id: '任务ID', job_id: "任务ID",
handler: '执行器任务HANDLER', handler: "执行器任务HANDLER",
address: '执行地址', address: "执行地址",
trigger_code: '触发器调度返回码', trigger_code: "触发器调度返回码",
trigger_type: '触发器调度类型', trigger_type: "触发器调度类型",
fail_retry_count: '失败重试次数', fail_retry_count: "失败重试次数",
create_time: '创建时间', create_time: "创建时间",
}, },
uiactions: { uiactions: {
}, },
}, },
default_searchform: { default_searchform: {
details: { details: {
formpage1: '常规条件', formpage1: "常规条件",
n_job_id_eq: '任务ID(等于(=))', n_job_id_eq: "任务ID(等于(=))",
n_handler_like: '执行器任务HANDLER(文本包含(%))', n_handler_like: "执行器任务HANDLER(文本包含(%))",
n_trigger_code_eq: '触发器调度返回码(等于(=))', n_trigger_code_eq: "触发器调度返回码(等于(=))",
}, },
uiactions: { uiactions: {
}, },
......
export default { export default {
fields: { fields: {
id: '主键ID', id: "主键ID",
app: '服务名', app: "服务名",
address: '执行地址', address: "执行地址",
status: '状态', status: "状态",
update_time: '更新时间', update_time: "更新时间",
}, },
views: { views: {
editview: { editview: {
caption: "任务注册信息", caption: "任务注册信息",
title: '任务注册信息编辑视图', title: "任务注册信息编辑视图",
}, },
gridview: { gridview: {
caption: "任务注册信息", caption: "任务注册信息",
title: '任务注册信息表格视图', title: "任务注册信息表格视图",
}, },
}, },
main_form: { main_form: {
......
export default { export default {
fields: { fields: {
id: '主键ID', id: "主键ID",
app: '服务名', app: "服务名",
address: '执行地址', address: "执行地址",
status: '状态', status: "状态",
update_time: '更新时间', update_time: "更新时间",
}, },
views: { views: {
editview: { editview: {
caption: '任务注册信息', caption: "任务注册信息",
title: '任务注册信息编辑视图', title: "任务注册信息编辑视图",
}, },
gridview: { gridview: {
caption: '任务注册信息', caption: "任务注册信息",
title: '任务注册信息表格视图', title: "任务注册信息表格视图",
}, },
}, },
main_form: { main_form: {
details: { details: {
group1: '任务注册信息基本信息', group1: "任务注册信息基本信息",
formpage1: '基本信息', formpage1: "基本信息",
srforikey: '', srforikey: "",
srfkey: '主键ID', srfkey: "主键ID",
srfmajortext: '服务名', srfmajortext: "服务名",
srftempmode: '', srftempmode: "",
srfuf: '', srfuf: "",
srfdeid: '', srfdeid: "",
srfsourcekey: '', srfsourcekey: "",
app: '服务名', app: "服务名",
address: '执行地址', address: "执行地址",
status: '状态', status: "状态",
id: '主键ID', id: "主键ID",
}, },
uiactions: { uiactions: {
}, },
}, },
main_grid: { main_grid: {
columns: { columns: {
id: '主键ID', id: "主键ID",
app: '服务名', app: "服务名",
address: '执行地址', address: "执行地址",
status: '状态', status: "状态",
}, },
uiactions: { uiactions: {
}, },
}, },
default_searchform: { default_searchform: {
details: { details: {
formpage1: '常规条件', formpage1: "常规条件",
n_app_like: '服务名(文本包含(%))', n_app_like: "服务名(文本包含(%))",
n_status_eq: '状态(等于(=))', n_status_eq: "状态(等于(=))",
}, },
uiactions: { uiactions: {
}, },
}, },
editviewtoolbar_toolbar: { editviewtoolbar_toolbar: {
tbitem3: { tbitem3: {
caption: '保存', caption: "保存",
tip: '保存', tip: "保存",
}, },
deuiaction1: { deuiaction1: {
caption: '关闭', caption: "关闭",
tip: '关闭', tip: "关闭",
}, },
}, },
gridviewtoolbar_toolbar: { gridviewtoolbar_toolbar: {
tbitem3: { tbitem3: {
caption: '新建', caption: "新建",
tip: '新建', tip: "新建",
}, },
tbitem4: { tbitem4: {
caption: '编辑', caption: "编辑",
tip: '编辑', tip: "编辑",
}, },
tbitem8: { tbitem8: {
caption: '删除', caption: "删除",
tip: '删除', tip: "删除",
}, },
deuiaction1: { deuiaction1: {
caption: '过滤', caption: "过滤",
tip: '过滤', tip: "过滤",
}, },
}, },
}; };
\ No newline at end of file
...@@ -8,14 +8,14 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => { ...@@ -8,14 +8,14 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => {
let status = MockAdapter.mockStatus(config); let status = MockAdapter.mockStatus(config);
return [status, [ return [status, [
{ {
srfkey: 'CodeListJobStatus', srfkey: "CodeListJobStatus",
emptytext: '未定义', emptytext: "未定义",
"codelisttype":"static", "codelisttype":"static",
items: [ items: [
{ {
id: '0', id: "0",
label: 'ENABLED', label: "ENABLED",
text: 'ENABLED', text: "ENABLED",
"data":"", "data":"",
"codename":"Item_0", "codename":"Item_0",
"color": "rgba(58, 116, 7, 1)", "color": "rgba(58, 116, 7, 1)",
...@@ -24,9 +24,9 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => { ...@@ -24,9 +24,9 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => {
disabled: false, disabled: false,
}, },
{ {
id: '1', id: "1",
label: 'DISABLED', label: "DISABLED",
text: 'DISABLED', text: "DISABLED",
"data":"", "data":"",
"codename":"Item_1", "codename":"Item_1",
"color": "rgba(67, 65, 65, 1)", "color": "rgba(67, 65, 65, 1)",
......
...@@ -69,7 +69,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -69,7 +69,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 名称 * 名称
* *
* @type {string} * @type {string}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public name?: string; @Prop() public name?: string;
...@@ -77,7 +77,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -77,7 +77,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 视图通讯对象 * 视图通讯对象
* *
* @type {Subject<ViewState>} * @type {Subject<ViewState>}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public viewState!: Subject<ViewState>; @Prop() public viewState!: Subject<ViewState>;
...@@ -85,7 +85,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -85,7 +85,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 应用上下文 * 应用上下文
* *
* @type {*} * @type {*}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public context: any; @Prop() public context: any;
...@@ -93,7 +93,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -93,7 +93,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public viewparams: any; @Prop() public viewparams: any;
...@@ -102,7 +102,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -102,7 +102,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* *
* @public * @public
* @type {(Subscription | undefined)} * @type {(Subscription | undefined)}
* @memberof Default * @memberof DefaultBase
*/ */
public viewStateEvent: Subscription | undefined; public viewStateEvent: Subscription | undefined;
...@@ -110,7 +110,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -110,7 +110,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 获取部件类型 * 获取部件类型
* *
* @returns {string} * @returns {string}
* @memberof Default * @memberof DefaultBase
*/ */
public getControlType(): string { public getControlType(): string {
return 'SEARCHFORM' return 'SEARCHFORM'
...@@ -122,7 +122,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -122,7 +122,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 计数器服务对象集合 * 计数器服务对象集合
* *
* @type {Array<*>} * @type {Array<*>}
* @memberof Default * @memberof DefaultBase
*/ */
public counterServiceArray:Array<any> = []; public counterServiceArray:Array<any> = [];
...@@ -130,7 +130,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -130,7 +130,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 建构部件服务对象 * 建构部件服务对象
* *
* @type {DefaultService} * @type {DefaultService}
* @memberof Default * @memberof DefaultBase
*/ */
public service: DefaultService = new DefaultService({ $store: this.$store }); public service: DefaultService = new DefaultService({ $store: this.$store });
...@@ -138,7 +138,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -138,7 +138,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 实体服务对象 * 实体服务对象
* *
* @type {JobsInfoService} * @type {JobsInfoService}
* @memberof Default * @memberof DefaultBase
*/ */
public appEntityService: JobsInfoService = new JobsInfoService({ $store: this.$store }); public appEntityService: JobsInfoService = new JobsInfoService({ $store: this.$store });
...@@ -148,7 +148,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -148,7 +148,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 关闭视图 * 关闭视图
* *
* @param {any} args * @param {any} args
* @memberof Default * @memberof DefaultBase
*/ */
public closeView(args: any): void { public closeView(args: any): void {
let _this: any = this; let _this: any = this;
...@@ -158,7 +158,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -158,7 +158,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
/** /**
* 计数器刷新 * 计数器刷新
* *
* @memberof Default * @memberof DefaultBase
*/ */
public counterRefresh(){ public counterRefresh(){
const _this:any =this; const _this:any =this;
......
...@@ -46,11 +46,12 @@ ...@@ -46,11 +46,12 @@
margin-bottom: unset !important; margin-bottom: unset !important;
} }
} }
.el-table__body td{ .el-table__body .edit-cell{
padding:0; padding:0;
} .app-form-item{
.app-form-item{ margin-top: 20px;
margin-top: 20px; margin-bottom: 20px;
}
} }
} }
.grid-pagination { .grid-pagination {
......
...@@ -57,7 +57,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -57,7 +57,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 名称 * 名称
* *
* @type {string} * @type {string}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public name?: string; @Prop() public name?: string;
...@@ -65,7 +65,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -65,7 +65,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 视图通讯对象 * 视图通讯对象
* *
* @type {Subject<ViewState>} * @type {Subject<ViewState>}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public viewState!: Subject<ViewState>; @Prop() public viewState!: Subject<ViewState>;
...@@ -73,7 +73,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -73,7 +73,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 应用上下文 * 应用上下文
* *
* @type {*} * @type {*}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public context: any; @Prop() public context: any;
...@@ -81,7 +81,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -81,7 +81,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public viewparams: any; @Prop() public viewparams: any;
...@@ -90,7 +90,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -90,7 +90,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* *
* @public * @public
* @type {(Subscription | undefined)} * @type {(Subscription | undefined)}
* @memberof Default * @memberof DefaultBase
*/ */
public viewStateEvent: Subscription | undefined; public viewStateEvent: Subscription | undefined;
...@@ -98,7 +98,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -98,7 +98,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 获取部件类型 * 获取部件类型
* *
* @returns {string} * @returns {string}
* @memberof Default * @memberof DefaultBase
*/ */
public getControlType(): string { public getControlType(): string {
return 'SEARCHFORM' return 'SEARCHFORM'
...@@ -110,7 +110,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -110,7 +110,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 计数器服务对象集合 * 计数器服务对象集合
* *
* @type {Array<*>} * @type {Array<*>}
* @memberof Default * @memberof DefaultBase
*/ */
public counterServiceArray:Array<any> = []; public counterServiceArray:Array<any> = [];
...@@ -118,7 +118,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -118,7 +118,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 建构部件服务对象 * 建构部件服务对象
* *
* @type {DefaultService} * @type {DefaultService}
* @memberof Default * @memberof DefaultBase
*/ */
public service: DefaultService = new DefaultService({ $store: this.$store }); public service: DefaultService = new DefaultService({ $store: this.$store });
...@@ -126,7 +126,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -126,7 +126,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 实体服务对象 * 实体服务对象
* *
* @type {JobsLogService} * @type {JobsLogService}
* @memberof Default * @memberof DefaultBase
*/ */
public appEntityService: JobsLogService = new JobsLogService({ $store: this.$store }); public appEntityService: JobsLogService = new JobsLogService({ $store: this.$store });
...@@ -136,7 +136,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -136,7 +136,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 关闭视图 * 关闭视图
* *
* @param {any} args * @param {any} args
* @memberof Default * @memberof DefaultBase
*/ */
public closeView(args: any): void { public closeView(args: any): void {
let _this: any = this; let _this: any = this;
...@@ -146,7 +146,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -146,7 +146,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
/** /**
* 计数器刷新 * 计数器刷新
* *
* @memberof Default * @memberof DefaultBase
*/ */
public counterRefresh(){ public counterRefresh(){
const _this:any =this; const _this:any =this;
......
...@@ -46,11 +46,12 @@ ...@@ -46,11 +46,12 @@
margin-bottom: unset !important; margin-bottom: unset !important;
} }
} }
.el-table__body td{ .el-table__body .edit-cell{
padding:0; padding:0;
} .app-form-item{
.app-form-item{ margin-top: 20px;
margin-top: 20px; margin-bottom: 20px;
}
} }
} }
.grid-pagination { .grid-pagination {
......
...@@ -63,7 +63,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -63,7 +63,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 名称 * 名称
* *
* @type {string} * @type {string}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public name?: string; @Prop() public name?: string;
...@@ -71,7 +71,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -71,7 +71,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 视图通讯对象 * 视图通讯对象
* *
* @type {Subject<ViewState>} * @type {Subject<ViewState>}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public viewState!: Subject<ViewState>; @Prop() public viewState!: Subject<ViewState>;
...@@ -79,7 +79,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -79,7 +79,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 应用上下文 * 应用上下文
* *
* @type {*} * @type {*}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public context: any; @Prop() public context: any;
...@@ -87,7 +87,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -87,7 +87,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof Default * @memberof DefaultBase
*/ */
@Prop() public viewparams: any; @Prop() public viewparams: any;
...@@ -96,7 +96,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -96,7 +96,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* *
* @public * @public
* @type {(Subscription | undefined)} * @type {(Subscription | undefined)}
* @memberof Default * @memberof DefaultBase
*/ */
public viewStateEvent: Subscription | undefined; public viewStateEvent: Subscription | undefined;
...@@ -104,7 +104,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -104,7 +104,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 获取部件类型 * 获取部件类型
* *
* @returns {string} * @returns {string}
* @memberof Default * @memberof DefaultBase
*/ */
public getControlType(): string { public getControlType(): string {
return 'SEARCHFORM' return 'SEARCHFORM'
...@@ -116,7 +116,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -116,7 +116,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 计数器服务对象集合 * 计数器服务对象集合
* *
* @type {Array<*>} * @type {Array<*>}
* @memberof Default * @memberof DefaultBase
*/ */
public counterServiceArray:Array<any> = []; public counterServiceArray:Array<any> = [];
...@@ -124,7 +124,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -124,7 +124,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 建构部件服务对象 * 建构部件服务对象
* *
* @type {DefaultService} * @type {DefaultService}
* @memberof Default * @memberof DefaultBase
*/ */
public service: DefaultService = new DefaultService({ $store: this.$store }); public service: DefaultService = new DefaultService({ $store: this.$store });
...@@ -132,7 +132,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -132,7 +132,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 实体服务对象 * 实体服务对象
* *
* @type {JobsRegistryService} * @type {JobsRegistryService}
* @memberof Default * @memberof DefaultBase
*/ */
public appEntityService: JobsRegistryService = new JobsRegistryService({ $store: this.$store }); public appEntityService: JobsRegistryService = new JobsRegistryService({ $store: this.$store });
...@@ -142,7 +142,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -142,7 +142,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
* 关闭视图 * 关闭视图
* *
* @param {any} args * @param {any} args
* @memberof Default * @memberof DefaultBase
*/ */
public closeView(args: any): void { public closeView(args: any): void {
let _this: any = this; let _this: any = this;
...@@ -152,7 +152,7 @@ export default class DefaultBase extends Vue implements ControlInterface { ...@@ -152,7 +152,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
/** /**
* 计数器刷新 * 计数器刷新
* *
* @memberof Default * @memberof DefaultBase
*/ */
public counterRefresh(){ public counterRefresh(){
const _this:any =this; const _this:any =this;
......
...@@ -50,8 +50,8 @@ public class JobsInfoServiceImpl extends ServiceImpl<JobsInfoMapper, JobsInfo> i ...@@ -50,8 +50,8 @@ public class JobsInfoServiceImpl extends ServiceImpl<JobsInfoMapper, JobsInfo> i
@Override @Override
@Transactional @Transactional
public JobsInfo start(JobsInfo et) { public JobsInfo start(JobsInfo et) {
et.set("Status","0");
et.set("Last_time","0"); et.set("Last_time","0");
et.set("Status","0");
update(et); update(et);
return et; return et;
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册