/* * @Author: 文贝 * @Date: 2022-03-19 23:12:46 * @LastEditors: 文贝 * @LastEditTime: 2022-07-13 22:33:07 * @Description:定义当前应用的系统参数 * 1、客户端参数 参数类型编码02 类别编码(01公共参数,02门诊参数、03住院参数、xx...) 参数编码三位001 * 2、type 1:自由输入 2:选择输入 3:仅限选择 * ex: module.exports = { "0201001": { "name": "零价金额保留小数位数", "items": { "2": "两位小数", "3": "三位小数", "4": "四位小数", "5": "五位小数", "6": "六位小数" }, "type": 3, "default": "2", "desc": "", "remark": "" }, "0202001": { "name": "退费有效期(天数)", "items": { "0": "无限期","1": "1天","2": "2天","5": "5天","10": "10天","15": "15天","20": "20天","30": "30天" }, "type": 2, "default": "15", "desc": "门诊退费有效期", "remark": "" } } * * @FilePath: \templates\vue-hash\.ma.parameter.system.js */ module.exports = { }