/* * @Author: 文贝 * @Date: 2022-03-19 23:12:46 * @LastEditors: 文贝 * @LastEditTime: 2022-03-20 11:43:39 * @Description:定义当前应用的客户端参数 * 1、客户端参数 参数类型编码01 类别编码(01公共参数,02门诊参数、03住院参数、xx...) 参数编码三位001 * 2、type 1:自由输入 2:选择输入 3:仅限选择 * ex: module.exports = { "01020001": { "name": "xxx有效天数", "items": { "0": "当天", "1": "1天", "2": "2天" }, "type": 3, "default": "0", "desc": "", "remark": "" }, "01010001": { "name": "xxx锁屏时长(分钟)", "items": { "0": "不锁屏","1": "1分钟","2": "2分钟","5": "5分钟","10": "10分钟","15": "15分钟","20": "20分钟","30": "30分钟"}, "type": 3, "default": "10", "desc": "", "remark": "" } } * @FilePath: \templates\vue-hash\.ma.parameter.client.js */ module.exports = { }