52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.entityDesc = void 0;
|
|
;
|
|
const IActionDef = {
|
|
stm: {
|
|
success: [['wait', 'fail'], 'success'],
|
|
fail: [['wait', 'success'], 'fail']
|
|
},
|
|
is: 'wait',
|
|
};
|
|
exports.entityDesc = {
|
|
locales: {
|
|
zh_CN: {
|
|
name: '微信菜单',
|
|
attr: {
|
|
menuId: '菜单Id',
|
|
menuConfig: '菜单配置',
|
|
application: '应用',
|
|
wechatPublicTag: '标签',
|
|
iState: '状态',
|
|
},
|
|
action: {
|
|
publish: '保存并发布',
|
|
success: '发布成功',
|
|
fail: '发布失败',
|
|
},
|
|
v: {
|
|
iState: {
|
|
wait: '等待发布',
|
|
success: '发布成功',
|
|
fail: '发布失败',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
style: {
|
|
icon: {
|
|
publish: '',
|
|
success: '',
|
|
fail: '',
|
|
},
|
|
color: {
|
|
iState: {
|
|
wait: '#0000FF',
|
|
success: '#008000',
|
|
fail: '#FF0000',
|
|
},
|
|
},
|
|
}
|
|
};
|