| 123456789101112131415161718192021222324252627282930 | 'use strict';/** * 材料调差 * * @author ELlisran * @date 2019/10/20 * @version */// 调差类型const t_type = [    { text: '消耗量', value: 1 },    { text: '费用', value: 2 },];// 工料分类const m_type = [    { text: '分类', value: 1 },    { text: '钢材', value: 2 },    { text: '地材', value: 3 },    { text: '油料', value: 4 },    { text: '水泥', value: 5 },    { text: '半成品', value: 6 },    { text: '其他', value: 7 },];module.exports = {    t_type,    m_type,};
 |