FLbs.js 394 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 define(function () { 'use strict'; function FLbs() { } FLbs.prototype = { transferToVM: function (dm) { return { required: dm.required == 1, readonly: dm.readonly == 1, field: { label: dm.fieldlabel || "所在位置" } }; } }; return FLbs; });