UNPKG

tplus-pos

Version:

pos module

61 lines (55 loc) 1.04 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var FeedbackType = { Forbidden: 'Forbidden', Confirm: 'Confirm', PwdAuth: 'PwdAuth', OtherAuth: 'OtherAuth' }; var dataSource = [{ name: '手机', quantity: 1.00, price: 2100.00, total: 101.70 }, { name: '黄瓜', quantity: 10.00, price: 2.00, total: 23.80 }, { name: '毛巾', quantity: 3.00, price: 15.00, total: 3.90 }]; var columns = [{ dataIndex: 'name', title: '商品名称', readOnly: true, controlType: "TextBox", precision: 0 }, { dataIndex: 'quantity', title: '数量', readOnly: false, controlType: "NumTextBox", precision: 2 }, { dataIndex: 'price', title: '零售单价', readOnly: false, controlType: "NumTextBox", precision: 2 }, { dataIndex: 'total', title: '总计', readOnly: true, controlType: "NumTextBox", precision: 2 }]; exports.FeedbackType = FeedbackType; exports.dataSource = dataSource; exports.columns = columns; //# sourceMappingURL=FeedBackConst.js.map