主要功能: - 修改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>
fault
Functional errors with formatted output.
Install
npm:
npm install fault
Use
var fault = require('fault')
throw fault('Hello %s!', 'Eric')
Yields:
Error: Hello Eric!
at FormattedError (~/node_modules/fault/index.js:30:12)
at Object.<anonymous> (~/example.js:3:7)
…
Or, format a float in a type error:
var fault = require('fault')
throw fault.type('Who doesn’t like %f? \uD83C\uDF70', Math.PI)
Yields:
TypeError: Who doesn’t like 3.141593? 🍰
at Function.FormattedError [as type] (~/node_modules/fault/index.js:30:12)
at Object.<anonymous> (~/example.js:3:7)
API
fault(format?[, values...])
Create an error with a printf-like formatted message.
Parameters
format(string, optional)values(*, optional)
Formatters
%s— String%b— Binary%c— Character%d— Decimal%f— Floating point%o— Octal%x— Lowercase hexadecimal%X— Uppercase hexadecimal%followed by any other character, prints that character
See samsonjs/format for argument parsing.
Returns
An instance of Error.
Other errors
fault.eval(format?[, values...])— EvalErrorfault.range(format?[, values...])— RangeErrorfault.reference(format?[, values...])— ReferenceErrorfault.syntax(format?[, values...])— SyntaxErrorfault.type(format?[, values...])— TypeErrorfault.uri(format?[, values...])— URIError
fault.create(Constructor)
Factory to create instances of ErrorConstructor with support for formatting.
Used internally to wrap the global error constructors, exposed for custom
errors.
Returns a function just like fault.