主要功能: - 修改RequirementModal支持12个订单班选择 - 添加OrderClassIconMap图标映射组件 - Store中添加selectedOrderClass状态管理 - WorkflowPage支持传递orderClass参数 - web_result添加URL参数切换功能 - 创建order-class-handler.js动态处理页面主题 技术改进: - 创建软链接关联订单班数据目录 - 生成wenlu.json和food.json数据结构 - 删除重复的web_result目录 - 添加测试页面test-order-class.html 影响范围: - 展会策划系统现支持12个订单班 - 结果展示页面自动适配不同订单班主题 - 用户可选择不同行业生成对应方案 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
/*
|
|
Language: Vala
|
|
Author: Antono Vasiljev <antono.vasiljev@gmail.com>
|
|
Description: Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C.
|
|
Website: https://wiki.gnome.org/Projects/Vala
|
|
*/
|
|
|
|
function vala(hljs) {
|
|
return {
|
|
name: 'Vala',
|
|
keywords: {
|
|
keyword:
|
|
// Value types
|
|
'char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 ' +
|
|
'uint16 uint32 uint64 float double bool struct enum string void ' +
|
|
// Reference types
|
|
'weak unowned owned ' +
|
|
// Modifiers
|
|
'async signal static abstract interface override virtual delegate ' +
|
|
// Control Structures
|
|
'if while do for foreach else switch case break default return try catch ' +
|
|
// Visibility
|
|
'public private protected internal ' +
|
|
// Other
|
|
'using new this get set const stdout stdin stderr var',
|
|
built_in:
|
|
'DBus GLib CCode Gee Object Gtk Posix',
|
|
literal:
|
|
'false true null'
|
|
},
|
|
contains: [
|
|
{
|
|
className: 'class',
|
|
beginKeywords: 'class interface namespace',
|
|
end: /\{/,
|
|
excludeEnd: true,
|
|
illegal: '[^,:\\n\\s\\.]',
|
|
contains: [ hljs.UNDERSCORE_TITLE_MODE ]
|
|
},
|
|
hljs.C_LINE_COMMENT_MODE,
|
|
hljs.C_BLOCK_COMMENT_MODE,
|
|
{
|
|
className: 'string',
|
|
begin: '"""',
|
|
end: '"""',
|
|
relevance: 5
|
|
},
|
|
hljs.APOS_STRING_MODE,
|
|
hljs.QUOTE_STRING_MODE,
|
|
hljs.C_NUMBER_MODE,
|
|
{
|
|
className: 'meta',
|
|
begin: '^#',
|
|
end: '$',
|
|
relevance: 2
|
|
}
|
|
]
|
|
};
|
|
}
|
|
|
|
module.exports = vala;
|