From 8919bd5f162798bfecf570fa56039a5c3c3fc717 Mon Sep 17 00:00:00 2001 From: guy Date: Sat, 30 Sep 2017 12:01:53 +0800 Subject: [PATCH] update --- bi/base.js | 2 +- bi/core.js | 4 +- .../largeTable/{face.js => largeTable.js} | 0 demo/js/category/sortTree/demo.sortTree.js | 113 ++++++++++ demo/js/config/category.js | 4 + demo/js/core/layout/demo.horizontal.js | 17 +- dist/base.js | 2 +- dist/bundle.js | 6 +- dist/bundle.min.js | 12 +- dist/core.js | 4 +- dist/demo.js | 211 ++++++++++++++---- src/base/combination/group.virtual.js | 2 +- src/core/utils/tree.js | 2 +- src/core/wrapper/layout.js | 2 +- 14 files changed, 320 insertions(+), 61 deletions(-) rename demo/js/category/largeTable/{face.js => largeTable.js} (100%) create mode 100644 demo/js/category/sortTree/demo.sortTree.js diff --git a/bi/base.js b/bi/base.js index e135710bd..134e02537 100644 --- a/bi/base.js +++ b/bi/base.js @@ -3897,7 +3897,7 @@ BI.shortcut("bi.combo_group", BI.ComboGroup);BI.VirtualGroup = BI.inherit(BI.Wid }, setValue: function (v) { - this.layouts.setValue(v); + // this.layouts.setValue(v); }, getValue: function () { diff --git a/bi/core.js b/bi/core.js index 2bff81950..9bab28b80 100644 --- a/bi/core.js +++ b/bi/core.js @@ -10504,7 +10504,7 @@ $.extend(BI, { } child.setParent(this); if (cur >= 0) { - this.getChild(cur).setRight(child); + this.getChild(cur) && this.getChild(cur).setRight(child); child.setLeft(this.getChild(cur)); } if (BI.isUndefined(index)) { @@ -11612,7 +11612,7 @@ BI.Layout = BI.inherit(BI.Widget, { function addNode(vnode, index) { var opt = self._getOptions(vnode); - var key = opt.key == null ? i : opt.key; + var key = opt.key == null ? index : opt.key; return children[key] = self._addElement(key, vnode); } diff --git a/demo/js/category/largeTable/face.js b/demo/js/category/largeTable/largeTable.js similarity index 100% rename from demo/js/category/largeTable/face.js rename to demo/js/category/largeTable/largeTable.js diff --git a/demo/js/category/sortTree/demo.sortTree.js b/demo/js/category/sortTree/demo.sortTree.js new file mode 100644 index 000000000..ca565ee7b --- /dev/null +++ b/demo/js/category/sortTree/demo.sortTree.js @@ -0,0 +1,113 @@ +/** + * guy + * 二级树 + * @class Demo.SortTree + * @extends BI.Widget + */ +Demo.SortTree = BI.inherit(BI.Widget, { + + render: function () { + var self = this, o = this.options; + var tree = new BI.Tree(); + tree.initTree(BI.Tree.transformToTreeFormat(Demo.CONSTANTS.TREEITEMS)); + this.tree = BI.createWidget({ + type: "bi.custom_tree", + element: this, + expander: {}, + + items: this._formatItems(0, tree.toJSON()), + + el: { + type: "bi.virtual_group", + layouts: [{ + type: "bi.vertical", + scrolly: false + }] + } + }); + + this.tree.element.sortable({ + items: ".sort-item", + placeholder: { + element: function ($currentItem) { + var holder = BI.createWidget({ + type: "bi.layout", + cls: "bi-sortable-holder", + height: $currentItem.outerHeight() + }); + holder.element.css({ + "margin-left": $currentItem.css("margin-left"), + "margin-right": $currentItem.css("margin-right"), + "margin-top": $currentItem.css("margin-top"), + "margin-bottom": $currentItem.css("margin-bottom"), + "margin": $currentItem.css("margin") + }); + return holder.element; + }, + update: function () { + + } + }, + update: function (event, ui) { + var node = ui.item.data("node"); + var findTheNode = tree.search(node.id); + //这里简单处理下找到它的父节点 + var currentIndex = 0, parentNode; + if (ui.item.next().length > 0) { + var n = ui.item.next().data("node"); + var nextId = n.id; + var nextNode = tree.search(nextId) + parentNode = nextNode.getParent(); + var nextIndex = parentNode.getChildIndex(nextId); + currentIndex = nextIndex > 0 && (nextIndex - 1); + + } else if (ui.item.prev().length > 0) { + var n = ui.item.prev().data("node"); + var prevId = n.id; + var prevNode = tree.search(prevId) + parentNode = prevNode.getParent(); + var prevIndex = parentNode.getChildIndex(prevId); + currentIndex = prevIndex + 1; + } + findTheNode.getParent().removeChild(node.id); + parentNode.addChild(findTheNode, currentIndex); + self.tree.populate(self._formatItems(0, tree.toJSON())); + }, + start: function (event, ui) { + + }, + stop: function (event, ui) { + }, + over: function (event, ui) { + + } + }); + }, + + _formatItems: function (layer, nodes) { + var self = this; + BI.each(nodes, function (i, node) { + if (node.isParent === true || BI.isNotEmptyArray(node.children)) { + BI.defaults(node, { + type: "bi.multilayer_icon_arrow_node", + height: 30, + layer: layer + }); + self._formatItems(layer + 1, node.children); + } else { + BI.defaults(node, { + type: "bi.multilayer_icon_tree_leaf_item", + cls: "sort-item", + height: 30, + key: node.id, + layer: layer, + data: { + node: node + } + }); + } + }); + return nodes; + }, +}); +BI.shortcut("demo.sort_tree", Demo.SortTree); \ No newline at end of file diff --git a/demo/js/config/category.js b/demo/js/config/category.js index 31e4ef1a8..8d806c02e 100644 --- a/demo/js/config/category.js +++ b/demo/js/config/category.js @@ -9,4 +9,8 @@ Demo.CATEGORY_CONFIG = [{ pId: 100000, text: "大表格", value: "demo.large_table" +}, { + pId: 100000, + text: "可以排序的树", + value: "demo.sort_tree" }]; \ No newline at end of file diff --git a/demo/js/core/layout/demo.horizontal.js b/demo/js/core/layout/demo.horizontal.js index 79fd23e73..c9b9ff870 100644 --- a/demo/js/core/layout/demo.horizontal.js +++ b/demo/js/core/layout/demo.horizontal.js @@ -10,14 +10,27 @@ Demo.Horizontal = BI.inherit(BI.Widget, { type: "bi.horizontal", items: [{ type: "bi.label", - text: "水平布局", + whiteSpace: "normal", + text: "因为大多数场景下都需要垂直居中,所以这个布局一般会被vertical_adapt布局设置scrollx=true取代", cls: "layout-bg3", + width: 500, + height: 50 + }, { + type: "bi.label", + text: "水平布局", + cls: "layout-bg4", width: 300, height: 30 }, { type: "bi.label", text: "水平布局", - cls: "layout-bg4", + cls: "layout-bg5", + width: 300, + height: 30 + }, { + type: "bi.label", + text: "水平布局", + cls: "layout-bg6", width: 300, height: 30 }] diff --git a/dist/base.js b/dist/base.js index bed6a5f01..ce712f623 100644 --- a/dist/base.js +++ b/dist/base.js @@ -3897,7 +3897,7 @@ BI.shortcut("bi.combo_group", BI.ComboGroup);BI.VirtualGroup = BI.inherit(BI.Wid }, setValue: function (v) { - this.layouts.setValue(v); + // this.layouts.setValue(v); }, getValue: function () { diff --git a/dist/bundle.js b/dist/bundle.js index c40890be0..07ec6c40b 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -18934,7 +18934,7 @@ $.extend(BI, { } child.setParent(this); if (cur >= 0) { - this.getChild(cur).setRight(child); + this.getChild(cur) && this.getChild(cur).setRight(child); child.setLeft(this.getChild(cur)); } if (BI.isUndefined(index)) { @@ -19968,7 +19968,7 @@ BI.Layout = BI.inherit(BI.Widget, { function addNode(vnode, index) { var opt = self._getOptions(vnode); - var key = opt.key == null ? i : opt.key; + var key = opt.key == null ? index : opt.key; return children[key] = self._addElement(key, vnode); } @@ -32902,7 +32902,7 @@ BI.shortcut("bi.combo_group", BI.ComboGroup);BI.VirtualGroup = BI.inherit(BI.Wid }, setValue: function (v) { - this.layouts.setValue(v); + // this.layouts.setValue(v); }, getValue: function () { diff --git a/dist/bundle.min.js b/dist/bundle.min.js index ff86f4957..cb94f47e3 100644 --- a/dist/bundle.min.js +++ b/dist/bundle.min.js @@ -1,4 +1,4 @@ -/*! fineui 29-09-2017 */ +/*! fineui 30-09-2017 */ function accAdd(a,b){var c,d,e,f;try{c=a.toString().split(".")[1].length}catch(g){c=0}try{d=b.toString().split(".")[1].length}catch(g){d=0}if(f=Math.abs(c-d),e=Math.pow(10,Math.max(c,d)),f>0){var h=Math.pow(10,f);c>d?(a=Number(a.toString().replace(".","")),b=Number(b.toString().replace(".",""))*h):(a=Number(a.toString().replace(".",""))*h,b=Number(b.toString().replace(".","")))}else a=Number(a.toString().replace(".","")),b=Number(b.toString().replace(".",""));return(a+b)/e}function accSub(a,b){var c,d,e,f;try{c=a.toString().split(".")[1].length}catch(g){c=0}try{d=b.toString().split(".")[1].length}catch(g){d=0}return e=Math.pow(10,Math.max(c,d)),f=c>=d?c:d,((a*e-b*e)/e).toFixed(f)}function accMul(a,b){var c=0,d=a.toString(),e=b.toString();try{c+=d.split(".")[1].length}catch(f){}try{c+=e.split(".")[1].length}catch(f){}return Number(d.replace(".",""))*Number(e.replace(".",""))/Math.pow(10,c)}function accDiv(arg1,arg2){var t1=0,t2=0,r1,r2;try{t1=arg1.toString().split(".")[1].length}catch(e){}try{t2=arg2.toString().split(".")[1].length}catch(e){}with(Math)return r1=Number(arg1.toString().replace(".","")),r2=Number(arg2.toString().replace(".","")),t2>t1?r1/r2*pow(10,t2-t1):r1/r2/pow(10,t1-t2)}window.BI||(window.BI={}),BI.servletURL="https://fanruan.coding.me/fineui/dist/",BI.resourceURL="https://fanruan.coding.me/fineui/dist/resource/",BI.i18n={"BI-Basic_OK":"确定","BI-Basic_Sure":"确定","BI-Basic_Clears":"清空","BI-Basic_Cancel":"取消","BI-Basic_Time":"时间","BI-Basic_Simple_Sunday":"日","BI-Basic_Simple_Monday":"一","BI-Basic_Simple_Tuesday":"二","BI-Basic_Simple_Wednesday":"三","BI-Basic_Simple_Thursday":"四","BI-Basic_Simple_Friday":"五","BI-Basic_Simple_Saturday":"六","BI-Multi_Date_Year":"年","BI-Multi_Date_Month":"月","BI-Multi_Date_Quarter":"季度","BI-Basic_Unrestricted":"无限制","BI-Quarter_1":"第1季度","BI-Quarter_2":"第2季度","BI-Quarter_3":"第3季度","BI-Quarter_4":"第4季度","BI-Basic_Value":"值","BI-Load_More":"加载更多","BI-Select_All":"全选","BI-Basic_Auto":"自动","BI-No_More_Data":"无更多数据","BI-No_Selected_Value":"没有可选项","BI-Basic_Clear":"清除","BI-Multi_Date_Relative_Current_Time":"相对当前时间","BI-Multi_Date_Year_Prev":"年前","BI-Multi_Date_Year_Next":"年后","BI-Multi_Date_Year_Begin":"年初","BI-Multi_Date_Year_End":"年末","BI-Multi_Date_Quarter_Prev":"个季度前","BI-Multi_Date_Quarter_Next":"个季度后","BI-Multi_Date_Quarter_Begin":"季度初","BI-Multi_Date_Quarter_End":"季度末","BI-Multi_Date_Month_Prev":"个月前","BI-Multi_Date_Month_Next":"个月后","BI-Multi_Date_Month_Begin":"月初","BI-Multi_Date_Month_End":"月末","BI-Multi_Date_Week_Prev":"周前","BI-Multi_Date_Week_Next":"周后","BI-Multi_Date_Day_Prev":"天前","BI-Multi_Date_Day_Next":"天后","BI-Multi_Date_Today":"今天"},function(a,b){function c(a){var b=a.length,c=ia.type(a);return!ia.isWindow(a)&&(!(1!==a.nodeType||!b)||("array"===c||"function"!==c&&(0===b||"number"==typeof b&&b>0&&b-1 in a)))}function d(a){var b=xa[a]={};return ia.each(a.match(ka)||[],function(a,c){b[c]=!0}),b}function e(a,c,d,e){if(ia.acceptData(a)){var f,g,h=ia.expando,i="string"==typeof c,j=a.nodeType,k=j?ia.cache:a,l=j?a[h]:a[h]&&h;if(l&&k[l]&&(e||k[l].data)||!i||d!==b)return l||(j?a[h]=l=_.pop()||ia.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=ia.noop)),"object"!=typeof c&&"function"!=typeof c||(e?k[l]=ia.extend(k[l],c):k[l].data=ia.extend(k[l].data,c)),f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[ia.camelCase(c)]=d),i?(g=f[c],null==g&&(g=f[ia.camelCase(c)])):g=f,g}}function f(a,b,c){if(ia.acceptData(a)){var d,e,f,g=a.nodeType,i=g?ia.cache:a,j=g?a[ia.expando]:ia.expando;if(i[j]){if(b&&(f=c?i[j]:i[j].data)){ia.isArray(b)?b=b.concat(ia.map(b,ia.camelCase)):b in f?b=[b]:(b=ia.camelCase(b),b=b in f?[b]:b.split(" "));for(d=0,e=b.length;d=0===c})}function m(a){var b=Ua.split("|"),c=a.createDocumentFragment();if(c.createElement)for(;b.length;)c.createElement(b.pop());return c}function n(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function o(a){var b=a.getAttributeNode("type");return a.type=(b&&b.specified)+"/"+a.type,a}function p(a){var b=eb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function q(a,b){for(var c,d=0;null!=(c=a[d]);d++)ia._data(c,"globalEval",!b||ia._data(b[d],"globalEval"))}function r(a,b){if(1===b.nodeType&&ia.hasData(a)){var c,d,e,f=ia._data(a),g=ia._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").css("cssText","display:block !important")).appendTo(b.documentElement),b=(jb[0].contentWindow||jb[0].contentDocument).document,b.write(""),b.close(),c=C(a,b),jb.detach()),ub[a]=c),c}function C(a,b){var c=ia(b.createElement(a)).appendTo(b.body),d=ia.css(c[0],"display");return c.remove(),d}function D(a,b,c,d){var e;if(ia.isArray(b))ia.each(b,function(b,e){c||Ab.test(a)?d(a,e):D(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==ia.type(b))d(a,b);else for(e in b)D(a+"["+e+"]",b[e],c,d)}function E(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(ka)||[];if(ia.isFunction(c))for(;d=f[e++];)"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function F(a,b,c,d){function e(h){var i;return f[h]=!0,ia.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||g||f[j]?g?!(i=j):void 0:(b.dataTypes.unshift(j),e(j),!1)}),i}var f={},g=a===Rb;return e(b.dataTypes[0])||!f["*"]&&e("*")}function G(a,c){var d,e,f=ia.ajaxSettings.flatOptions||{};for(e in c)c[e]!==b&&((f[e]?a:d||(d={}))[e]=c[e]);return d&&ia.extend(!0,a,d),a}function H(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(h in k)h in d&&(c[k[h]]=d[h]);for(;"*"===j[0];)j.shift(),f===b&&(f=a.mimeType||c.getResponseHeader("Content-Type"));if(f)for(h in i)if(i[h]&&i[h].test(f)){j.unshift(h);break}if(j[0]in d)g=j[0];else{for(h in d){if(!j[0]||a.converters[h+" "+j[0]]){g=h;break}e||(e=h)}g=g||e}if(g)return g!==j[0]&&j.unshift(g),d[g]}function I(a,b){var c,d,e,f,g={},h=0,i=a.dataTypes.slice(),j=i[0];if(a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i[1])for(e in a.converters)g[e.toLowerCase()]=a.converters[e];for(;d=i[++h];)if("*"!==d){if("*"!==j&&j!==d){if(e=g[j+" "+d]||g["* "+d],!e)for(c in g)if(f=c.split(" "),f[1]===d&&(e=g[j+" "+f[0]]||g["* "+f[0]])){e===!0?e=g[c]:g[c]!==!0&&(d=f[0],i.splice(h--,0,d));break}if(e!==!0)if(e&&a["throws"])b=e(b);else try{b=e(b)}catch(k){return{state:"parsererror",error:e?k:"No conversion from "+j+" to "+d}}}j=d}return{state:"success",data:b}}function J(){try{return new a.XMLHttpRequest}catch(b){}}function K(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function L(){return setTimeout(function(){$b=b}),$b=ia.now()}function M(a,b){ia.each(b,function(b,c){for(var d=(ec[b]||[]).concat(ec["*"]),e=0,f=d.length;e)[^>]*|#([\w-]*))$/,na=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,oa=/^[\],:{}\s]*$/,pa=/(?:^|:|,)(?:\s*\[)+/g,qa=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,ra=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,sa=/^-ms-/,ta=/-([\da-z])/gi,ua=function(a,b){return b.toUpperCase()},va=function(a){(W.addEventListener||"load"===a.type||"complete"===W.readyState)&&(wa(),ia.ready())},wa=function(){W.addEventListener?(W.removeEventListener("DOMContentLoaded",va,!1),a.removeEventListener("load",va,!1)):(W.detachEvent("onreadystatechange",va),a.detachEvent("onload",va))};ia.fn=ia.prototype={jquery:aa,constructor:ia,init:function(a,c,d){var e,f;if(!a)return this;if("string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:ma.exec(a),!e||!e[1]&&c)return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a);if(e[1]){if(c=c instanceof ia?c[0]:c,ia.merge(this,ia.parseHTML(e[1],c&&c.nodeType?c.ownerDocument||c:W,!0)),na.test(e[1])&&ia.isPlainObject(c))for(e in c)ia.isFunction(this[e])?this[e](c[e]):this.attr(e,c[e]);return this}if(f=W.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return d.find(a);this.length=1,this[0]=f}return this.context=W,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):ia.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),ia.makeArray(a,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return da.call(this)},get:function(a){return null==a?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a){var b=ia.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return ia.each(this,a,b)},ready:function(a){return ia.ready.promise().done(a),this},slice:function(){return this.pushStack(da.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0||(T.resolveWith(W,[ia]),ia.fn.trigger&&ia(W).trigger("ready").off("ready"))}},isFunction:function(a){return"function"===ia.type(a)},isArray:Array.isArray||function(a){return"array"===ia.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return null==a?String(a):"object"==typeof a||"function"==typeof a?$[fa.call(a)]||"object":typeof a},isPlainObject:function(a){if(!a||"object"!==ia.type(a)||a.nodeType||ia.isWindow(a))return!1;try{if(a.constructor&&!ga.call(a,"constructor")&&!ga.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||ga.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||W;var d=na.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=ia.buildFragment([a],b,e),e&&ia(e).remove(),ia.merge([],d.childNodes))},parseJSON:function(b){return a.JSON&&a.JSON.parse?a.JSON.parse(b):null===b?b:"string"==typeof b&&(b=ia.trim(b),b&&oa.test(b.replace(qa,"@").replace(ra,"]").replace(pa,"")))?new Function("return "+b)():void ia.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||"string"!=typeof c)return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return d&&d.documentElement&&!d.getElementsByTagName("parsererror").length||ia.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&ia.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(sa,"ms-").replace(ta,ua)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,d){var e,f=0,g=a.length,h=c(a);if(d){if(h)for(;f-1;)j.splice(d,1),c&&(d<=g&&g--,d<=h&&h--)}),this},has:function(a){return a?ia.inArray(a,j)>-1:!(!j||!j.length)},empty:function(){return j=[],this},disable:function(){return j=k=e=b,this},disabled:function(){return!j},lock:function(){return k=b,e||m.disable(),this},locked:function(){return!k},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],!j||f&&!k||(c?k.push(b):l(b)),this},fire:function(){return m.fireWith(this,arguments),this},fired:function(){return!!f}};return m},ia.extend({Deferred:function(a){var b=[["resolve","done",ia.Callbacks("once memory"),"resolved"],["reject","fail",ia.Callbacks("once memory"),"rejected"],["notify","progress",ia.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return ia.Deferred(function(c){ia.each(b,function(b,f){var g=f[0],h=ia.isFunction(a[b])&&a[b];e[f[1]](function(){var a=h&&h.apply(this,arguments);a&&ia.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[g+"With"](this===d?c.promise():this,h?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?ia.extend(a,d):d}},e={};return d.pipe=d.then,ia.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b,c,d,e=0,f=da.call(arguments),g=f.length,h=1!==g||a&&ia.isFunction(a.promise)?g:0,i=1===h?a:ia.Deferred(),j=function(a,c,d){return function(e){c[a]=this,d[a]=arguments.length>1?da.call(arguments):e,d===b?i.notifyWith(c,d):--h||i.resolveWith(c,d)}};if(g>1)for(b=new Array(g),c=new Array(g),d=new Array(g);e
a",c=l.getElementsByTagName("*"),d=l.getElementsByTagName("a")[0],!c||!d||!c.length)return{};f=W.createElement("select"),h=f.appendChild(W.createElement("option")),e=l.getElementsByTagName("input")[0],d.style.cssText="top:1px;float:left;opacity:.5",b={getSetAttribute:"t"!==l.className,leadingWhitespace:3===l.firstChild.nodeType,tbody:!l.getElementsByTagName("tbody").length,htmlSerialize:!!l.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:"/a"===d.getAttribute("href"),opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:!!e.value,optSelected:h.selected,enctype:!!W.createElement("form").enctype,html5Clone:"<:nav>"!==W.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===W.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},e.checked=!0,b.noCloneChecked=e.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!h.disabled;try{delete l.test}catch(m){b.deleteExpando=!1}e=W.createElement("input"),e.setAttribute("value",""),b.input=""===e.getAttribute("value"),e.value="t",e.setAttribute("type","radio"),b.radioValue="t"===e.value,e.setAttribute("checked","t"),e.setAttribute("name","t"),g=W.createDocumentFragment(),g.appendChild(e),b.appendChecked=e.checked,b.checkClone=g.cloneNode(!0).cloneNode(!0).lastChild.checked,l.attachEvent&&(l.attachEvent("onclick",function(){b.noCloneEvent=!1}),l.cloneNode(!0).click());for(k in{submit:!0,change:!0,focusin:!0})l.setAttribute(i="on"+k,"t"),b[k+"Bubbles"]=i in a||l.attributes[i].expando===!1;return l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",b.clearCloneStyle="content-box"===l.style.backgroundClip,ia(function(){var c,d,e,f="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",g=W.getElementsByTagName("body")[0];g&&(c=W.createElement("div"),c.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",g.appendChild(c).appendChild(l),l.innerHTML="
t
",e=l.getElementsByTagName("td"),e[0].style.cssText="padding:0;margin:0;border:0;display:none",j=0===e[0].offsetHeight,e[0].style.display="",e[1].style.display="none",b.reliableHiddenOffsets=j&&0===e[0].offsetHeight,l.innerHTML="",l.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=4===l.offsetWidth,b.doesNotIncludeMarginInBodyOffset=1!==g.offsetTop,a.getComputedStyle&&(b.pixelPosition="1%"!==(a.getComputedStyle(l,null)||{}).top,b.boxSizingReliable="4px"===(a.getComputedStyle(l,null)||{width:"4px"}).width,d=l.appendChild(W.createElement("div")),d.style.cssText=l.style.cssText=f,d.style.marginRight=d.style.width="0",l.style.width="1px",b.reliableMarginRight=!parseFloat((a.getComputedStyle(d,null)||{}).marginRight)),typeof l.style.zoom!==V&&(l.innerHTML="",l.style.cssText=f+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=3===l.offsetWidth,l.style.display="block",l.innerHTML="
",l.firstChild.style.width="5px",b.shrinkWrapBlocks=3!==l.offsetWidth,b.inlineBlockNeedsLayout&&(g.style.zoom=1)),g.removeChild(c),c=l=e=d=null)}),c=f=g=h=d=e=null,b}();var ya=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,za=/([A-Z])/g;ia.extend({cache:{},expando:"jQuery"+(aa+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?ia.cache[a[ia.expando]]:a[ia.expando],!!a&&!h(a)},data:function(a,b,c){return e(a,b,c)},removeData:function(a,b){return f(a,b)},_data:function(a,b,c){return e(a,b,c,!0)},_removeData:function(a,b){return f(a,b,!0)},acceptData:function(a){if(a.nodeType&&1!==a.nodeType&&9!==a.nodeType)return!1;var b=a.nodeName&&ia.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),ia.fn.extend({data:function(a,c){var d,e,f=this[0],h=0,i=null;if(a===b){if(this.length&&(i=ia.data(f),1===f.nodeType&&!ia._data(f,"parsedAttrs"))){for(d=f.attributes;h1,null,!0)},removeData:function(a){return this.each(function(){ia.removeData(this,a)})}}),ia.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=ia._data(a,b),c&&(!d||ia.isArray(c)?d=ia._data(a,b,ia.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=ia.queue(a,b),d=c.length,e=c.shift(),f=ia._queueHooks(a,b),g=function(){ia.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),f.cur=e,e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return ia._data(a,c)||ia._data(a,c,{empty:ia.Callbacks("once memory").add(function(){ia._removeData(a,b+"queue"),ia._removeData(a,c)})})}}),ia.fn.extend({queue:function(a,c){var d=2;return"string"!=typeof a&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){ia.removeAttr(this,a)})},prop:function(a,b){return ia.access(this,ia.prop,a,b,arguments.length>1)},removeProp:function(a){return a=ia.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g=0,h=this.length,i="string"==typeof a&&a;if(ia.isFunction(a))return this.each(function(b){ia(this).addClass(a.call(this,b,this.className))});if(i)for(b=(a||"").match(ka)||[];g=0;)d=d.replace(" "+e+" "," ");c.className=a?ia.trim(d):""}return this},toggleClass:function(a,b){var c=typeof a,d="boolean"==typeof b;return ia.isFunction(a)?this.each(function(c){ia(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if("string"===c)for(var e,f=0,g=ia(this),h=b,i=a.match(ka)||[];e=i[f++];)h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e);else c!==V&&"boolean"!==c||(this.className&&ia._data(this,"__className__",this.className),this.className=this.className||a===!1?"":ia._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];{if(arguments.length)return e=ia.isFunction(a),this.each(function(c){var f,g=ia(this);1===this.nodeType&&(f=e?a.call(this,c,g.val()):a,null==f?f="":"number"==typeof f?f+="":ia.isArray(f)&&(f=ia.map(f,function(a){return null==a?"":a+""; })),d=ia.valHooks[this.type]||ia.valHooks[this.nodeName.toLowerCase()],d&&"set"in d&&d.set(this,f,"value")!==b||(this.value=f))});if(f)return d=ia.valHooks[f.type]||ia.valHooks[f.nodeName.toLowerCase()],d&&"get"in d&&(c=d.get(f,"value"))!==b?c:(c=f.value,"string"==typeof c?c.replace(Da,""):null==c?"":c)}}}),ia.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||e<0,g=f?null:[],h=f?e+1:d.length,i=e<0?h:f?e:0;i=0}),c.length||(a.selectedIndex=-1),c}}},attr:function(a,c,d){var e,f,g,h=a.nodeType;if(a&&3!==h&&8!==h&&2!==h)return typeof a.getAttribute===V?ia.prop(a,c,d):(f=1!==h||!ia.isXMLDoc(a),f&&(c=c.toLowerCase(),e=ia.attrHooks[c]||(Ga.test(c)?Ba:Aa)),d===b?e&&f&&"get"in e&&null!==(g=e.get(a,c))?g:(typeof a.getAttribute!==V&&(g=a.getAttribute(c)),null==g?b:g):null!==d?e&&f&&"set"in e&&(g=e.set(a,d,c))!==b?g:(a.setAttribute(c,d+""),d):void ia.removeAttr(a,c))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(ka);if(f&&1===a.nodeType)for(;c=f[e++];)d=ia.propFix[c]||c,Ga.test(c)?!Ia&&Ha.test(c)?a[ia.camelCase("default-"+c)]=a[d]=!1:a[d]=!1:ia.attr(a,c,""),a.removeAttribute(Ia?c:d)},attrHooks:{type:{set:function(a,b){if(!ia.support.radioValue&&"radio"===b&&ia.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(a&&3!==h&&8!==h&&2!==h)return g=1!==h||!ia.isXMLDoc(a),g&&(c=ia.propFix[c]||c,f=ia.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&null!==(e=f.get(a,c))?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):Ea.test(a.nodeName)||Fa.test(a.nodeName)&&a.href?0:b}}}}),Ba={get:function(a,c){var d=ia.prop(a,c),e="boolean"==typeof d&&a.getAttribute(c),f="boolean"==typeof d?Ja&&Ia?null!=e:Ha.test(c)?a[ia.camelCase("default-"+c)]:!!e:a.getAttributeNode(c);return f&&f.value!==!1?c.toLowerCase():b},set:function(a,b,c){return b===!1?ia.removeAttr(a,c):Ja&&Ia||!Ha.test(c)?a.setAttribute(!Ia&&ia.propFix[c]||c,c):a[ia.camelCase("default-"+c)]=a[c]=!0,c}},Ja&&Ia||(ia.attrHooks.value={get:function(a,c){var d=a.getAttributeNode(c);return ia.nodeName(a,"input")?a.defaultValue:d&&d.specified?d.value:b},set:function(a,b,c){return ia.nodeName(a,"input")?void(a.defaultValue=b):Aa&&Aa.set(a,b,c)}}),Ia||(Aa=ia.valHooks.button={get:function(a,c){var d=a.getAttributeNode(c);return d&&("id"===c||"name"===c||"coords"===c?""!==d.value:d.specified)?d.value:b},set:function(a,c,d){var e=a.getAttributeNode(d);return e||a.setAttributeNode(e=a.ownerDocument.createAttribute(d)),e.value=c+="","value"===d||c===a.getAttribute(d)?c:b}},ia.attrHooks.contenteditable={get:Aa.get,set:function(a,b,c){Aa.set(a,""!==b&&b,c)}},ia.each(["width","height"],function(a,b){ia.attrHooks[b]=ia.extend(ia.attrHooks[b],{set:function(a,c){if(""===c)return a.setAttribute(b,"auto"),c}})})),ia.support.hrefNormalized||(ia.each(["href","src","width","height"],function(a,c){ia.attrHooks[c]=ia.extend(ia.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return null==d?b:d}})}),ia.each(["href","src"],function(a,b){ia.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}})),ia.support.style||(ia.attrHooks.style={get:function(a){return a.style.cssText||b},set:function(a,b){return a.style.cssText=b+""}}),ia.support.optSelected||(ia.propHooks.selected=ia.extend(ia.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),ia.support.enctype||(ia.propFix.enctype="encoding"),ia.support.checkOn||ia.each(["radio","checkbox"],function(){ia.valHooks[this]={get:function(a){return null===a.getAttribute("value")?"on":a.value}}}),ia.each(["radio","checkbox"],function(){ia.valHooks[this]=ia.extend(ia.valHooks[this],{set:function(a,b){if(ia.isArray(b))return a.checked=ia.inArray(ia(a).val(),b)>=0}})});var Ka=/^(?:input|select|textarea)$/i,La=/^key/,Ma=/^(?:mouse|contextmenu)|click/,Na=/^(?:focusinfocus|focusoutblur)$/,Oa=/^([^.]*)(?:\.(.+)|)$/;ia.event={global:{},add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,p,q,r=ia._data(a);if(r){for(d.handler&&(j=d,d=j.handler,f=j.selector),d.guid||(d.guid=ia.guid++),(h=r.events)||(h=r.events={}),(l=r.handle)||(l=r.handle=function(a){return typeof ia===V||a&&ia.event.triggered===a.type?b:ia.event.dispatch.apply(l.elem,arguments)},l.elem=a),c=(c||"").match(ka)||[""],i=c.length;i--;)g=Oa.exec(c[i])||[],o=q=g[1],p=(g[2]||"").split(".").sort(),k=ia.event.special[o]||{},o=(f?k.delegateType:k.bindType)||o,k=ia.event.special[o]||{},m=ia.extend({type:o,origType:q,data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&ia.expr.match.needsContext.test(f),namespace:p.join(".")},j),(n=h[o])||(n=h[o]=[],n.delegateCount=0,k.setup&&k.setup.call(a,e,p,l)!==!1||(a.addEventListener?a.addEventListener(o,l,!1):a.attachEvent&&a.attachEvent("on"+o,l))),k.add&&(k.add.call(a,m),m.handler.guid||(m.handler.guid=d.guid)),f?n.splice(n.delegateCount++,0,m):n.push(m),ia.event.global[o]=!0;a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=ia.hasData(a)&&ia._data(a);if(q&&(k=q.events)){for(b=(b||"").match(ka)||[""],j=b.length;j--;)if(h=Oa.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){for(l=ia.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=k[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;f--;)g=m[f],!e&&p!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||ia.removeEvent(a,n,q.handle),delete k[n])}else for(n in k)ia.event.remove(a,n+b[j],c,d,!0);ia.isEmptyObject(k)&&(delete q.handle,ia._removeData(a,"events"))}},trigger:function(c,d,e,f){var g,h,i,j,k,l,m,n=[e||W],o=ga.call(c,"type")?c.type:c,p=ga.call(c,"namespace")?c.namespace.split("."):[];if(i=l=e=e||W,3!==e.nodeType&&8!==e.nodeType&&!Na.test(o+ia.event.triggered)&&(o.indexOf(".")>=0&&(p=o.split("."),o=p.shift(),p.sort()),h=o.indexOf(":")<0&&"on"+o,c=c[ia.expando]?c:new ia.Event(o,"object"==typeof c&&c),c.isTrigger=!0,c.namespace=p.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,c.result=b,c.target||(c.target=e),d=null==d?[c]:ia.makeArray(d,[c]),k=ia.event.special[o]||{},f||!k.trigger||k.trigger.apply(e,d)!==!1)){if(!f&&!k.noBubble&&!ia.isWindow(e)){for(j=k.delegateType||o,Na.test(j+o)||(i=i.parentNode);i;i=i.parentNode)n.push(i),l=i;l===(e.ownerDocument||W)&&n.push(l.defaultView||l.parentWindow||a)}for(m=0;(i=n[m++])&&!c.isPropagationStopped();)c.type=m>1?j:k.bindType||o,g=(ia._data(i,"events")||{})[c.type]&&ia._data(i,"handle"),g&&g.apply(i,d),g=h&&i[h],g&&ia.acceptData(i)&&g.apply&&g.apply(i,d)===!1&&c.preventDefault();if(c.type=o,!f&&!c.isDefaultPrevented()&&(!k._default||k._default.apply(e.ownerDocument,d)===!1)&&("click"!==o||!ia.nodeName(e,"a"))&&ia.acceptData(e)&&h&&e[o]&&!ia.isWindow(e)){l=e[h],l&&(e[h]=null),ia.event.triggered=o;try{e[o]()}catch(q){}ia.event.triggered=b,l&&(e[h]=l)}return c.result}},dispatch:function(a){a=ia.event.fix(a);var c,d,e,f,g,h=[],i=da.call(arguments),j=(ia._data(this,"events")||{})[a.type]||[],k=ia.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){for(h=ia.event.handlers.call(this,a,j),c=0;(f=h[c++])&&!a.isPropagationStopped();)for(a.currentTarget=f.elem,g=0;(e=f.handlers[g++])&&!a.isImmediatePropagationStopped();)if(!a.namespace_re||a.namespace_re.test(e.namespace)){a.handleObj=e,a.data=e.data;var l=(ia.event.special[e.origType]||{}).handle||e.handler;l.apply&&(d=l.apply(f.elem,i)),d!==b&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation())}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,c){var d,e,f,g,h=[],i=c.delegateCount,j=a.target;if(i&&j.nodeType&&(!a.button||"click"!==a.type))for(;j!=this;j=j.parentNode||this)if(1===j.nodeType&&(j.disabled!==!0||"click"!==a.type)){for(f=[],g=0;g=0:ia.find(d,this,null,[j]).length),f[d]&&f.push(e);f.length&&h.push({elem:j,handlers:f})}return iy.cacheLength&&delete a[b.shift()],a[c]=d}}function e(a){return a[N]=!0,a}function f(a){var b=F.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}}function g(a,b,c,d){var e,f,g,h,i,j,k,n,o,p;if((b?b.ownerDocument||b:O)!==F&&E(b),b=b||F,c=c||[],!a||"string"!=typeof a)return c;if(1!==(h=b.nodeType)&&9!==h)return[];if(!H&&!d){if(e=pa.exec(a))if(g=e[1]){if(9===h){if(f=b.getElementById(g),!f||!f.parentNode)return c;if(f.id===g)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(g))&&L(b,f)&&f.id===g)return c.push(f),c}else{if(e[2])return Z.apply(c,$.call(b.getElementsByTagName(a),0)),c;if((g=e[3])&&P.getByClassName&&b.getElementsByClassName)return Z.apply(c,$.call(b.getElementsByClassName(g),0)),c}if(P.qsa&&!I.test(a)){if(k=!0,n=N,o=b,p=9===h&&a,1===h&&"object"!==b.nodeName.toLowerCase()){for(j=l(a),(k=b.getAttribute("id"))?n=k.replace(sa,"\\$&"):b.setAttribute("id",n),n="[id='"+n+"'] ",i=j.length;i--;)j[i]=n+m(j[i]);o=na.test(a)&&b.parentNode||b,p=j.join(",")}if(p)try{return Z.apply(c,$.call(o.querySelectorAll(p),0)),c}catch(q){}finally{k||b.removeAttribute("id")}}}return u(a.replace(ga,"$1"),b,c,d)}function h(a,b){var c=b&&a,d=c&&(~b.sourceIndex||W)-(~a.sourceIndex||W);if(d)return d;if(c)for(;c=c.nextSibling;)if(c===b)return-1;return a?1:-1}function i(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function j(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function k(a){return e(function(b){return b=+b,e(function(c,d){for(var e,f=a([],c.length,b),g=f.length;g--;)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function l(a,b){var c,d,e,f,h,i,j,k=T[a+" "];if(k)return b?0:k.slice(0);for(h=a,i=[],j=y.preFilter;h;){c&&!(d=ha.exec(h))||(d&&(h=h.slice(d[0].length)||h),i.push(e=[])),c=!1,(d=ja.exec(h))&&(c=d.shift(),e.push({value:c,type:d[0].replace(ga," ")}),h=h.slice(c.length));for(f in y.filter)!(d=ma[f].exec(h))||j[f]&&!(d=j[f](d))||(c=d.shift(),e.push({value:c,type:f,matches:d}),h=h.slice(c.length));if(!c)break}return b?h.length:h?g.error(a):T(a,i).slice(0)}function m(a){for(var b=0,c=a.length,d="";b1?function(b,c,d){for(var e=a.length;e--;)if(!a[e](b,c,d))return!1;return!0}:a[0]}function p(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;h-1&&(e[j]=!(g[j]=l))}}else s=p(s===g?s.splice(o,s.length):s),f?f(null,g,s,i):Z.apply(g,s)})}function r(a){for(var b,c,d,e=a.length,f=y.relative[a[0].type],g=f||y.relative[" "],h=f?1:0,i=n(function(a){return a===b},g,!0),j=n(function(a){return _.call(b,a)>-1},g,!0),k=[function(a,c,d){return!f&&(d||c!==D)||((b=c).nodeType?i(a,c,d):j(a,c,d))}];h1&&o(k),h>1&&m(a.slice(0,h-1)).replace(ga,"$1"),c,h0,f=a.length>0,h=function(e,h,i,j,k){var l,m,n,o=[],q=0,r="0",s=e&&[],t=null!=k,u=D,v=e||f&&y.find.TAG("*",k&&h.parentNode||h),w=Q+=null==u?1:Math.random()||.1;for(t&&(D=h!==F&&h,x=c);null!=(l=v[r]);r++){if(f&&l){for(m=0;n=a[m++];)if(n(l,h,i)){j.push(l);break}t&&(Q=w,x=++c)}d&&((l=!n&&l)&&q--,e&&s.push(l))}if(q+=r,d&&r!==q){for(m=0;n=b[m++];)n(s,o,h,i);if(e){if(q>0)for(;r--;)s[r]||o[r]||(o[r]=Y.call(j));o=p(o)}Z.apply(j,o),t&&!e&&o.length>0&&q+b.length>1&&g.uniqueSort(j)}return t&&(Q=w,D=u),s};return d?e(h):h}function t(a,b,c){for(var d=0,e=b.length;d2&&"ID"===(g=f[0]).type&&9===b.nodeType&&!H&&y.relative[f[1].type]){if(b=y.find.ID(g.matches[0].replace(ua,va),b)[0],!b)return c;a=a.slice(f.shift().value.length)}for(e=ma.needsContext.test(a)?0:f.length;e--&&(g=f[e],!y.relative[h=g.type]);)if((i=y.find[h])&&(d=i(g.matches[0].replace(ua,va),na.test(f[0].type)&&b.parentNode||b))){if(f.splice(e,1),a=d.length&&m(f),!a)return Z.apply(c,$.call(d,0)),c;break}}return B(a,j)(d,b,H,c,na.test(a)),c}function v(){}var w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N="sizzle"+-new Date,O=a.document,P={},Q=0,R=0,S=d(),T=d(),U=d(),V=typeof b,W=1<<31,X=[],Y=X.pop,Z=X.push,$=X.slice,_=X.indexOf||function(a){for(var b=0,c=this.length;b+~])"+aa+"*"),ka=new RegExp(fa),la=new RegExp("^"+ca+"$"),ma={ID:new RegExp("^#("+ba+")"),CLASS:new RegExp("^\\.("+ba+")"),NAME:new RegExp("^\\[name=['\"]?("+ba+")['\"]?\\]"),TAG:new RegExp("^("+ba.replace("w","w*")+")"),ATTR:new RegExp("^"+ea),PSEUDO:new RegExp("^"+fa),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+aa+"*(even|odd|(([+-]|)(\\d*)n|)"+aa+"*(?:([+-]|)"+aa+"*(\\d+)|))"+aa+"*\\)|)","i"),needsContext:new RegExp("^"+aa+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+aa+"*((?:-\\d)?\\d*)"+aa+"*\\)|)(?=[^-]|$)","i")},na=/[\x20\t\r\n\f]*[+~]/,oa=/^[^{]+\{\s*\[native code/,pa=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,qa=/^(?:input|select|textarea|button)$/i,ra=/^h\d$/i,sa=/'|\\/g,ta=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,ua=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,va=function(a,b){var c="0x"+b-65536;return c!==c?b:c<0?String.fromCharCode(c+65536):String.fromCharCode(c>>10|55296,1023&c|56320)};try{$.call(O.documentElement.childNodes,0)[0].nodeType}catch(wa){$=function(a){for(var b,c=[];b=this[a++];)c.push(b);return c}}A=g.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},E=g.setDocument=function(a){var d=a?a.ownerDocument||a:O;return d!==F&&9===d.nodeType&&d.documentElement?(F=d,G=d.documentElement,H=A(d),P.tagNameNoComments=f(function(a){return a.appendChild(d.createComment("")),!a.getElementsByTagName("*").length}),P.attributes=f(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return"boolean"!==b&&"string"!==b}),P.getByClassName=f(function(a){return a.innerHTML="",!(!a.getElementsByClassName||!a.getElementsByClassName("e").length)&&(a.lastChild.className="e",2===a.getElementsByClassName("e").length)}),P.getByName=f(function(a){a.id=N+0,a.innerHTML="
",G.insertBefore(a,G.firstChild);var b=d.getElementsByName&&d.getElementsByName(N).length===2+d.getElementsByName(N+0).length;return P.getIdNotName=!d.getElementById(N),G.removeChild(a),b}),y.attrHandle=f(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==V&&"#"===a.firstChild.getAttribute("href")})?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},P.getIdNotName?(y.find.ID=function(a,b){if(typeof b.getElementById!==V&&!H){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},y.filter.ID=function(a){var b=a.replace(ua,va);return function(a){return a.getAttribute("id")===b}}):(y.find.ID=function(a,c){if(typeof c.getElementById!==V&&!H){var d=c.getElementById(a);return d?d.id===a||typeof d.getAttributeNode!==V&&d.getAttributeNode("id").value===a?[d]:b:[]}},y.filter.ID=function(a){var b=a.replace(ua,va);return function(a){var c=typeof a.getAttributeNode!==V&&a.getAttributeNode("id");return c&&c.value===b}}),y.find.TAG=P.tagNameNoComments?function(a,b){if(typeof b.getElementsByTagName!==V)return b.getElementsByTagName(a)}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){for(;c=f[e++];)1===c.nodeType&&d.push(c);return d}return f},y.find.NAME=P.getByName&&function(a,b){if(typeof b.getElementsByName!==V)return b.getElementsByName(name)},y.find.CLASS=P.getByClassName&&function(a,b){if(typeof b.getElementsByClassName!==V&&!H)return b.getElementsByClassName(a)},J=[],I=[":focus"],(P.qsa=c(d.querySelectorAll))&&(f(function(a){a.innerHTML="",a.querySelectorAll("[selected]").length||I.push("\\["+aa+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||I.push(":checked")}),f(function(a){a.innerHTML="",a.querySelectorAll("[i^='']").length&&I.push("[*^$]="+aa+"*(?:\"\"|'')"),a.querySelectorAll(":enabled").length||I.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),I.push(",.*:")})),(P.matchesSelector=c(K=G.matchesSelector||G.mozMatchesSelector||G.webkitMatchesSelector||G.oMatchesSelector||G.msMatchesSelector))&&f(function(a){P.disconnectedMatch=K.call(a,"div"),K.call(a,"[s!='']:x"),J.push("!=",fa)}),I=new RegExp(I.join("|")),J=new RegExp(J.join("|")),L=c(G.contains)||G.compareDocumentPosition?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)for(;b=b.parentNode;)if(b===a)return!0;return!1},M=G.compareDocumentPosition?function(a,b){var c;return a===b?(C=!0,0):(c=b.compareDocumentPosition&&a.compareDocumentPosition&&a.compareDocumentPosition(b))?1&c||a.parentNode&&11===a.parentNode.nodeType?a===d||L(O,a)?-1:b===d||L(O,b)?1:0:4&c?-1:1:a.compareDocumentPosition?-1:1}:function(a,b){var c,e=0,f=a.parentNode,g=b.parentNode,i=[a],j=[b];if(a===b)return C=!0,0;if(!f||!g)return a===d?-1:b===d?1:f?-1:g?1:0;if(f===g)return h(a,b);for(c=a;c=c.parentNode;)i.unshift(c);for(c=b;c=c.parentNode;)j.unshift(c);for(;i[e]===j[e];)e++;return e?h(i[e],j[e]):i[e]===O?-1:j[e]===O?1:0},C=!1,[0,0].sort(M),P.detectDuplicates=C,F):F},g.matches=function(a,b){return g(a,null,null,b)},g.matchesSelector=function(a,b){if((a.ownerDocument||a)!==F&&E(a),b=b.replace(ta,"='$1']"),P.matchesSelector&&!H&&(!J||!J.test(b))&&!I.test(b))try{var c=K.call(a,b);if(c||P.disconnectedMatch||a.document&&11!==a.document.nodeType)return c}catch(d){}return g(b,F,null,[a]).length>0},g.contains=function(a,b){return(a.ownerDocument||a)!==F&&E(a),L(a,b)},g.attr=function(a,b){var c;return(a.ownerDocument||a)!==F&&E(a),H||(b=b.toLowerCase()),(c=y.attrHandle[b])?c(a):H||P.attributes?a.getAttribute(b):((c=a.getAttributeNode(b))||a.getAttribute(b))&&a[b]===!0?b:c&&c.specified?c.value:null},g.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},g.uniqueSort=function(a){var b,c=[],d=1,e=0;if(C=!P.detectDuplicates,a.sort(M),C){for(;b=a[d];d++)b===a[d-1]&&(e=c.push(d));for(;e--;)a.splice(c[e],1)}return a},z=g.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(1===e||9===e||11===e){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=z(a)}else if(3===e||4===e)return a.nodeValue}else for(;b=a[d];d++)c+=z(b);return c},y=g.selectors={cacheLength:50,createPseudo:e,match:ma,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ua,va),a[3]=(a[4]||a[5]||"").replace(ua,va),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||g.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&g.error(a[0]),a},PSEUDO:function(a){var b,c=!a[5]&&a[2];return ma.CHILD.test(a[0])?null:(a[4]?a[2]=a[4]:c&&ka.test(c)&&(b=l(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){return"*"===a?function(){return!0}:(a=a.replace(ua,va).toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=S[a+" "];return b||(b=new RegExp("(^|"+aa+")"+a+"("+aa+"|$)"))&&S(a,function(a){return b.test(a.className||typeof a.getAttribute!==V&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=g.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){for(;p;){for(l=b;l=l[p];)if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){for(k=q[N]||(q[N]={}),j=k[a]||[],n=j[0]===Q&&j[1],m=j[0]===Q&&j[2],l=n&&q.childNodes[n];l=++n&&l&&l[p]||(m=n=0)||o.pop();)if(1===l.nodeType&&++m&&l===b){k[a]=[Q,n,m];break}}else if(s&&(j=(b[N]||(b[N]={}))[a])&&j[0]===Q)m=j[1];else for(;(l=++n&&l&&l[p]||(m=n=0)||o.pop())&&((h?l.nodeName.toLowerCase()!==r:1!==l.nodeType)||!++m||(s&&((l[N]||(l[N]={}))[a]=[Q,m]),l!==b)););return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,d=y.pseudos[a]||y.setFilters[a.toLowerCase()]||g.error("unsupported pseudo: "+a);return d[N]?d(b):d.length>1?(c=[a,a,"",b],y.setFilters.hasOwnProperty(a.toLowerCase())?e(function(a,c){for(var e,f=d(a,b),g=f.length;g--;)e=_.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:e(function(a){var b=[],c=[],d=B(a.replace(ga,"$1"));return d[N]?e(function(a,b,c,e){for(var f,g=d(a,null,e,[]),h=a.length;h--;)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:e(function(a){return function(b){return g(a,b).length>0}}),contains:e(function(a){return function(b){return(b.textContent||b.innerText||z(b)).indexOf(a)>-1}}),lang:e(function(a){return la.test(a||"")||g.error("unsupported lang: "+a),a=a.replace(ua,va).toLowerCase(),function(b){var c;do if(c=H?b.getAttribute("xml:lang")||b.getAttribute("lang"):b.lang)return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===G},focus:function(a){return a===F.activeElement&&(!F.hasFocus||F.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeName>"@"||3===a.nodeType||4===a.nodeType)return!1;return!0},parent:function(a){return!y.pseudos.empty(a)},header:function(a){return ra.test(a.nodeName)},input:function(a){return qa.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||b.toLowerCase()===a.type)},first:k(function(){return[0]}),last:k(function(a,b){return[b-1]}),eq:k(function(a,b,c){ return[c<0?c+b:c]}),even:k(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:k(function(a,b,c){for(var d=c<0?c+b:c;++d1?ia.unique(c):c),c.selector=(this.selector?this.selector+" ":"")+a,c},has:function(a){var b,c=ia(a,this),d=c.length;return this.filter(function(){for(b=0;b=0:ia.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=Sa.test(a)||"string"!=typeof a?ia(a,b||this.context):0;d-1:ia.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}return this.pushStack(f.length>1?ia.unique(f):f)},index:function(a){return a?"string"==typeof a?ia.inArray(this[0],ia(a)):ia.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){var c="string"==typeof a?ia(a,b):ia.makeArray(a&&a.nodeType?[a]:a),d=ia.merge(this.get(),c);return this.pushStack(ia.unique(d))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}}),ia.fn.andSelf=ia.fn.addBack,ia.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return ia.dir(a,"parentNode")},parentsUntil:function(a,b,c){return ia.dir(a,"parentNode",c)},next:function(a){return k(a,"nextSibling")},prev:function(a){return k(a,"previousSibling")},nextAll:function(a){return ia.dir(a,"nextSibling")},prevAll:function(a){return ia.dir(a,"previousSibling")},nextUntil:function(a,b,c){return ia.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return ia.dir(a,"previousSibling",c)},siblings:function(a){return ia.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return ia.sibling(a.firstChild)},contents:function(a){return ia.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:ia.merge([],a.childNodes)}},function(a,b){ia.fn[a]=function(c,d){var e=ia.map(this,b,c);return Pa.test(a)||(d=c),d&&"string"==typeof d&&(e=ia.filter(d,e)),e=this.length>1&&!Ta[a]?ia.unique(e):e,this.length>1&&Qa.test(a)&&(e=e.reverse()),this.pushStack(e)}}),ia.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),1===b.length?ia.find.matchesSelector(b[0],a)?[b[0]]:[]:ia.find.matches(a,b)},dir:function(a,c,d){for(var e=[],f=a[c];f&&9!==f.nodeType&&(d===b||1!==f.nodeType||!ia(f).is(d));)1===f.nodeType&&e.push(f),f=f[c];return e},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}});var Ua="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Va=/ jQuery\d+="(?:null|\d+)"/g,Wa=new RegExp("<(?:"+Ua+")[\\s/>]","i"),Xa=/^\s+/,Ya=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,Za=/<([\w:]+)/,$a=/\s*$/g,gb={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:ia.support.htmlSerialize?[0,"",""]:[1,"X
","
"]},hb=m(W),ib=hb.appendChild(W.createElement("div"));gb.optgroup=gb.option,gb.tbody=gb.tfoot=gb.colgroup=gb.caption=gb.thead,gb.th=gb.td,ia.fn.extend({text:function(a){return ia.access(this,function(a){return a===b?ia.text(this):this.empty().append((this[0]&&this[0].ownerDocument||W).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(ia.isFunction(a))return this.each(function(b){ia(this).wrapAll(a.call(this,b))});if(this[0]){var b=ia(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){for(var a=this;a.firstChild&&1===a.firstChild.nodeType;)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return ia.isFunction(a)?this.each(function(b){ia(this).wrapInner(a.call(this,b))}):this.each(function(){var b=ia(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=ia.isFunction(a);return this.each(function(c){ia(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){ia.nodeName(this,"body")||ia(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||this.insertBefore(a,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,!1,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=0;null!=(c=this[d]);d++)(!a||ia.filter(a,[c]).length>0)&&(b||1!==c.nodeType||ia.cleanData(t(c)),c.parentNode&&(b&&ia.contains(c.ownerDocument,c)&&q(t(c,"script")),c.parentNode.removeChild(c)));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){for(1===a.nodeType&&ia.cleanData(t(a,!1));a.firstChild;)a.removeChild(a.firstChild);a.options&&ia.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return ia.clone(this,a,b)})},html:function(a){return ia.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return 1===c.nodeType?c.innerHTML.replace(Va,""):b;if("string"==typeof a&&!ab.test(a)&&(ia.support.htmlSerialize||!Wa.test(a))&&(ia.support.leadingWhitespace||!Xa.test(a))&&!gb[(Za.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ya,"<$1>");try{for(;d")?f=a.cloneNode(!0):(ib.innerHTML=a.outerHTML,ib.removeChild(f=ib.firstChild)),!(ia.support.noCloneEvent&&ia.support.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||ia.isXMLDoc(a)))for(d=t(f),h=t(a),g=0;null!=(e=h[g]);++g)d[g]&&s(e,d[g]);if(b)if(c)for(h=h||t(a),d=d||t(f),g=0;null!=(e=h[g]);g++)r(e,d[g]);else r(a,f);return d=t(f,"script"),d.length>0&&q(d,!i&&t(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k,l=a.length,n=m(b),o=[],p=0;p")+k[2],e=k[0];e--;)h=h.lastChild;if(!ia.support.leadingWhitespace&&Xa.test(f)&&o.push(b.createTextNode(Xa.exec(f)[0])),!ia.support.tbody)for(f="table"!==i||$a.test(f)?""!==k[1]||$a.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;e--;)ia.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j);for(ia.merge(o,h.childNodes),h.textContent="";h.firstChild;)h.removeChild(h.firstChild);h=n.lastChild}else o.push(b.createTextNode(f));for(h&&n.removeChild(h),ia.support.appendChecked||ia.grep(t(o,"input"),u),p=0;f=o[p++];)if((!d||ia.inArray(f,d)===-1)&&(g=ia.contains(f.ownerDocument,f),h=t(n.appendChild(f),"script"),g&&q(h),c))for(e=0;f=h[e++];)db.test(f.type||"")&&c.push(f);return h=null,n},cleanData:function(a,b){for(var c,d,e,f,g=0,h=ia.expando,i=ia.cache,j=ia.support.deleteExpando,k=ia.event.special;null!=(c=a[g]);g++)if((b||ia.acceptData(c))&&(e=c[h],f=e&&i[e])){if(f.events)for(d in f.events)k[d]?ia.event.remove(c,d):ia.removeEvent(c,d,f.handle);i[e]&&(delete i[e],j?delete c[h]:typeof c.removeAttribute!==V?c.removeAttribute(h):c[h]=null,_.push(e))}}});var jb,kb,lb,mb=/alpha\([^)]*\)/i,nb=/opacity\s*=\s*([^)]*)/,ob=/^(top|right|bottom|left)$/,pb=/^(none|table(?!-c[ea]).+)/,qb=/^margin/,rb=new RegExp("^("+ja+")(.*)$","i"),sb=new RegExp("^("+ja+")(?!px)[a-z%]+$","i"),tb=new RegExp("^([+-])=("+ja+")","i"),ub={BODY:"block"},vb={position:"absolute",visibility:"hidden",display:"block"},wb={letterSpacing:0,fontWeight:400},xb=["Top","Right","Bottom","Left"],yb=["Webkit","O","Moz","ms"];ia.fn.extend({css:function(a,c){return ia.access(this,function(a,c,d){var e,f,g={},h=0;if(ia.isArray(c)){for(f=kb(a),e=c.length;h1)},show:function(){return x(this,!0)},hide:function(){return x(this)},toggle:function(a){var b="boolean"==typeof a;return this.each(function(){(b?a:w(this))?ia(this).show():ia(this).hide()})}}),ia.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=lb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":ia.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var f,g,h,i=ia.camelCase(c),j=a.style;if(c=ia.cssProps[i]||(ia.cssProps[i]=v(j,i)),h=ia.cssHooks[c]||ia.cssHooks[i],d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];if(g=typeof d,"string"===g&&(f=tb.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(ia.css(a,c)),g="number"),!(null==d||"number"===g&&isNaN(d)||("number"!==g||ia.cssNumber[i]||(d+="px"),ia.support.clearCloneStyle||""!==d||0!==c.indexOf("background")||(j[c]="inherit"),h&&"set"in h&&(d=h.set(a,d,e))===b)))try{j[c]=d}catch(k){}}},css:function(a,c,d,e){var f,g,h,i=ia.camelCase(c);return c=ia.cssProps[i]||(ia.cssProps[i]=v(a.style,i)),h=ia.cssHooks[c]||ia.cssHooks[i],h&&"get"in h&&(g=h.get(a,!0,d)),g===b&&(g=lb(a,c,e)),"normal"===g&&c in wb&&(g=wb[c]),""===d||d?(f=parseFloat(g),d===!0||ia.isNumeric(f)?f||0:g):g},swap:function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e}}),a.getComputedStyle?(kb=function(b){return a.getComputedStyle(b,null)},lb=function(a,c,d){var e,f,g,h=d||kb(a),i=h?h.getPropertyValue(c)||h[c]:b,j=a.style;return h&&(""!==i||ia.contains(a.ownerDocument,a)||(i=ia.style(a,c)),sb.test(i)&&qb.test(c)&&(e=j.width,f=j.minWidth,g=j.maxWidth,j.minWidth=j.maxWidth=j.width=i,i=h.width,j.width=e,j.minWidth=f,j.maxWidth=g)),i}):W.documentElement.currentStyle&&(kb=function(a){return a.currentStyle},lb=function(a,c,d){var e,f,g,h=d||kb(a),i=h?h[c]:b,j=a.style;return null==i&&j&&j[c]&&(i=j[c]),sb.test(i)&&!ob.test(c)&&(e=j.left,f=a.runtimeStyle,g=f&&f.left,g&&(f.left=a.currentStyle.left),j.left="fontSize"===c?"1em":i,i=j.pixelLeft+"px",j.left=e,g&&(f.left=g)),""===i?"auto":i}),ia.each(["height","width"],function(a,b){ia.cssHooks[b]={get:function(a,c,d){if(c)return 0===a.offsetWidth&&pb.test(ia.css(a,"display"))?ia.swap(a,vb,function(){return A(a,b,d)}):A(a,b,d)},set:function(a,c,d){var e=d&&kb(a);return y(a,c,d?z(a,b,d,ia.support.boxSizing&&"border-box"===ia.css(a,"boxSizing",!1,e),e):0)}}}),ia.support.opacity||(ia.cssHooks.opacity={get:function(a,b){return nb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=ia.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===ia.trim(f.replace(mb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=mb.test(f)?f.replace(mb,e):f+" "+e)}}),ia(function(){ia.support.reliableMarginRight||(ia.cssHooks.marginRight={get:function(a,b){if(b)return ia.swap(a,{display:"inline-block"},lb,[a,"marginRight"])}}),!ia.support.pixelPosition&&ia.fn.position&&ia.each(["top","left"],function(a,b){ia.cssHooks[b]={get:function(a,c){if(c)return c=lb(a,b),sb.test(c)?ia(a).position()[b]+"px":c}}})}),ia.expr&&ia.expr.filters&&(ia.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!ia.support.reliableHiddenOffsets&&"none"===(a.style&&a.style.display||ia.css(a,"display"))},ia.expr.filters.visible=function(a){return!ia.expr.filters.hidden(a)}),ia.each({margin:"",padding:"",border:"Width"},function(a,b){ia.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];d<4;d++)e[a+xb[d]+b]=f[d]||f[d-2]||f[0];return e}},qb.test(a)||(ia.cssHooks[a+b].set=y)});var zb=/%20/g,Ab=/\[\]$/,Bb=/\r?\n/g,Cb=/^(?:submit|button|image|reset|file)$/i,Db=/^(?:input|select|textarea|keygen)/i;ia.fn.extend({serialize:function(){return ia.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=ia.prop(this,"elements");return a?ia.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!ia(this).is(":disabled")&&Db.test(this.nodeName)&&!Cb.test(a)&&(this.checked||!bb.test(a))}).map(function(a,b){var c=ia(this).val();return null==c?null:ia.isArray(c)?ia.map(c,function(a){return{name:b.name,value:a.replace(Bb,"\r\n")}}):{name:b.name,value:c.replace(Bb,"\r\n")}}).get()}}),ia.param=function(a,c){var d,e=[],f=function(a,b){b=ia.isFunction(b)?b():null==b?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(c===b&&(c=ia.ajaxSettings&&ia.ajaxSettings.traditional),ia.isArray(a)||a.jquery&&!ia.isPlainObject(a))ia.each(a,function(){f(this.name,this.value)});else for(d in a)D(d,a[d],c,f);return e.join("&").replace(zb,"+")},ia.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){ia.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),ia.fn.hover=function(a,b){return this.mouseenter(a).mouseleave(b||a)};var Eb,Fb,Gb=ia.now(),Hb=/\?/,Ib=/#.*$/,Jb=/([?&])_=[^&]*/,Kb=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Lb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mb=/^(?:GET|HEAD)$/,Nb=/^\/\//,Ob=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Pb=ia.fn.load,Qb={},Rb={},Sb="*/".concat("*");try{Fb=X.href}catch(Tb){Fb=W.createElement("a"),Fb.href="",Fb=Fb.href}Eb=Ob.exec(Fb.toLowerCase())||[],ia.fn.load=function(a,c,d){if("string"!=typeof a&&Pb)return Pb.apply(this,arguments);var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),ia.isFunction(c)?(d=c,c=b):c&&"object"==typeof c&&(g="POST"),h.length>0&&ia.ajax({url:a,type:g,dataType:"html",data:c}).done(function(a){f=arguments,h.html(e?ia("
").append(ia.parseHTML(a)).find(e):a)}).complete(d&&function(a,b){h.each(d,f||[a.responseText,b,a])}),this},ia.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){ia.fn[b]=function(a){return this.on(b,a)}}),ia.each(["get","post"],function(a,c){ia[c]=function(a,d,e,f){return ia.isFunction(d)&&(f=f||e,e=d,d=b),ia.ajax({url:a,type:c,dataType:f,data:d,success:e})}}),ia.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Fb,type:"GET",isLocal:Lb.test(Eb[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Sb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":ia.parseJSON,"text xml":ia.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?G(G(a,ia.ajaxSettings),b):G(ia.ajaxSettings,a)},ajaxPrefilter:E(Qb),ajaxTransport:E(Rb),ajax:function(a,c){function d(a,c,d,e){var f,l,s,t,v,x=c;2!==u&&(u=2,i&&clearTimeout(i),k=b,h=e||"",w.readyState=a>0?4:0,d&&(t=H(m,w,d)),a>=200&&a<300||304===a?(m.ifModified&&(v=w.getResponseHeader("Last-Modified"),v&&(ia.lastModified[g]=v),v=w.getResponseHeader("etag"),v&&(ia.etag[g]=v)),204===a?(f=!0,x="nocontent"):304===a?(f=!0,x="notmodified"):(f=I(m,t),x=f.state,l=f.data,s=f.error,f=!s)):(s=x,!a&&x||(x="error",a<0&&(a=0))),w.status=a,w.statusText=(c||x)+"",f?p.resolveWith(n,[l,x,w]):p.rejectWith(n,[w,x,s]),w.statusCode(r),r=b,j&&o.trigger(f?"ajaxSuccess":"ajaxError",[w,m,f?l:s]),q.fireWith(n,[w,x]),j&&(o.trigger("ajaxComplete",[w,m]),--ia.active||ia.event.trigger("ajaxStop")))}"object"==typeof a&&(c=a,a=b),c=c||{};var e,f,g,h,i,j,k,l,m=ia.ajaxSetup({},c),n=m.context||m,o=m.context&&(n.nodeType||n.jquery)?ia(n):ia.event,p=ia.Deferred(),q=ia.Callbacks("once memory"),r=m.statusCode||{},s={},t={},u=0,v="canceled",w={readyState:0,getResponseHeader:function(a){var b;if(2===u){if(!l)for(l={};b=Kb.exec(h);)l[b[1].toLowerCase()]=b[2];b=l[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===u?h:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return u||(a=t[c]=t[c]||a,s[a]=b),this},overrideMimeType:function(a){return u||(m.mimeType=a),this},statusCode:function(a){var b;if(a)if(u<2)for(b in a)r[b]=[r[b],a[b]];else w.always(a[w.status]);return this},abort:function(a){var b=a||v;return k&&k.abort(b),d(0,b),this}};if(p.promise(w).complete=q.add,w.success=w.done,w.error=w.fail,m.url=((a||m.url||Fb)+"").replace(Ib,"").replace(Nb,Eb[1]+"//"),m.type=c.method||c.type||m.method||m.type,m.dataTypes=ia.trim(m.dataType||"*").toLowerCase().match(ka)||[""],null==m.crossDomain&&(e=Ob.exec(m.url.toLowerCase()),m.crossDomain=!(!e||e[1]===Eb[1]&&e[2]===Eb[2]&&(e[3]||("http:"===e[1]?80:443))==(Eb[3]||("http:"===Eb[1]?80:443)))),m.data&&m.processData&&"string"!=typeof m.data&&(m.data=ia.param(m.data,m.traditional)),F(Qb,m,c,w),2===u)return w;j=m.global,j&&0===ia.active++&&ia.event.trigger("ajaxStart"),m.type=m.type.toUpperCase(),m.hasContent=!Mb.test(m.type),g=m.url,m.hasContent||(m.data&&(g=m.url+=(Hb.test(g)?"&":"?")+m.data,delete m.data),m.cache===!1&&(m.url=Jb.test(g)?g.replace(Jb,"$1_="+Gb++):g+(Hb.test(g)?"&":"?")+"_="+Gb++)),m.ifModified&&(ia.lastModified[g]&&w.setRequestHeader("If-Modified-Since",ia.lastModified[g]),ia.etag[g]&&w.setRequestHeader("If-None-Match",ia.etag[g])),(m.data&&m.hasContent&&m.contentType!==!1||c.contentType)&&w.setRequestHeader("Content-Type",m.contentType),w.setRequestHeader("Accept",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+("*"!==m.dataTypes[0]?", "+Sb+"; q=0.01":""):m.accepts["*"]);for(f in m.headers)w.setRequestHeader(f,m.headers[f]);if(m.beforeSend&&(m.beforeSend.call(n,w,m)===!1||2===u))return w.abort();v="abort";for(f in{success:1,error:1,complete:1})w[f](m[f]);if(k=F(Rb,m,c,w)){w.readyState=1,j&&o.trigger("ajaxSend",[w,m]),m.async&&m.timeout>0&&(i=setTimeout(function(){w.abort("timeout")},m.timeout));try{u=1,k.send(s,d)}catch(x){if(!(u<2))throw x;d(-1,x)}}else d(-1,"No Transport");return w},getScript:function(a,c){return ia.get(a,b,c,"script")},getJSON:function(a,b,c){return ia.get(a,b,c,"json")}}),ia.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return ia.globalEval(a),a}}}),ia.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),ia.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=W.head||ia("head")[0]||W.documentElement;return{send:function(b,e){c=W.createElement("script"),c.async=!0,a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,b){(b||!c.readyState||/loaded|complete/.test(c.readyState))&&(c.onload=c.onreadystatechange=null,c.parentNode&&c.parentNode.removeChild(c),c=null,b||e(200,"success"))},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(b,!0)}}}});var Ub=[],Vb=/(=)\?(?=&|$)|\?\?/;ia.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Ub.pop()||ia.expando+"_"+Gb++;return this[a]=!0,a}}),ia.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.jsonp!==!1&&(Vb.test(c.url)?"url":"string"==typeof c.data&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vb.test(c.data)&&"data");if(i||"jsonp"===c.dataTypes[0])return f=c.jsonpCallback=ia.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,i?c[i]=c[i].replace(Vb,"$1"+f):c.jsonp!==!1&&(c.url+=(Hb.test(c.url)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||ia.error(f+" was not called"),h[0]},c.dataTypes[0]="json",g=a[f],a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,Ub.push(f)),h&&ia.isFunction(g)&&g(h[0]),h=g=b}),"script"});var Wb,Xb,Yb=0,Zb=a.ActiveXObject&&function(){var a;for(a in Wb)Wb[a](b,!0)};ia.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&J()||K()}:J,Xb=ia.ajaxSettings.xhr(),ia.support.cors=!!Xb&&"withCredentials"in Xb,Xb=ia.support.ajax=!!Xb,Xb&&ia.ajaxTransport(function(c){if(!c.crossDomain||ia.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();if(c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async),c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),c.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l;try{if(d&&(e||4===i.readyState))if(d=b,g&&(i.onreadystatechange=ia.noop,Zb&&delete Wb[g]),e)4!==i.readyState&&i.abort();else{l={},h=i.status,j=i.getAllResponseHeaders(),"string"==typeof i.responseText&&(l.text=i.responseText);try{k=i.statusText}catch(m){k=""}h||!c.isLocal||c.crossDomain?1223===h&&(h=204):h=l.text?200:404}}catch(n){e||f(-1,n)}l&&f(h,k,l,j)},c.async?4===i.readyState?setTimeout(d):(g=++Yb,Zb&&(Wb||(Wb={},ia(a).unload(Zb)),Wb[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(b,!0)}}}});var $b,_b,ac=/^(?:toggle|show|hide)$/,bc=new RegExp("^(?:([+-])=|)("+ja+")([a-z%]*)$","i"),cc=/queueHooks$/,dc=[P],ec={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=bc.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){if(c=+f[2],d=f[3]||(ia.cssNumber[a]?"":"px"),"px"!==d&&h){h=ia.css(e.elem,a,!0)||c||1;do i=i||".5",h/=i,ia.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&1!==i&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};ia.Animation=ia.extend(N,{tweener:function(a,b){ia.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;d-1,l={},m={};k?(m=g.position(),e=m.top,f=m.left):(e=parseFloat(i)||0,f=parseFloat(j)||0),ia.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(l.top=b.top-h.top+e),null!=b.left&&(l.left=b.left-h.left+f),"using"in b?b.using.call(a,l):g.css(l)}},ia.fn.extend({position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===ia.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),ia.nodeName(a[0],"html")||(c=a.offset()),c.top+=ia.css(a[0],"borderTopWidth",!0),c.left+=ia.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-ia.css(d,"marginTop",!0),left:b.left-c.left-ia.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||W.documentElement;a&&!ia.nodeName(a,"html")&&"static"===ia.css(a,"position");)a=a.offsetParent;return a||W.documentElement})}}),ia.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);ia.fn[a]=function(e){return ia.access(this,function(a,e,f){var g=S(a);return f===b?g?c in g?g[c]:g.document.documentElement[e]:a[e]:void(g?g.scrollTo(d?ia(g).scrollLeft():f,d?f:ia(g).scrollTop()):a[e]=f)},a,e,arguments.length,null)}}),ia.each({Height:"height",Width:"width"},function(a,c){ia.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){ia.fn[e]=function(e,f){var g=arguments.length&&(d||"boolean"!=typeof e),h=d||(e===!0||f===!0?"margin":"border");return ia.access(this,function(c,d,e){var f;return ia.isWindow(c)?c.document.documentElement["client"+a]:9===c.nodeType?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?ia.css(c,d,h):ia.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=ia,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return ia})}(window),function(){function a(a){function b(b,c,d,e,f,g){for(;f>=0&&f0?0:h-1;return arguments.l g.data=c.extend({id:d.id},d.toJSON(e),e.attrs)),e.emulateJSON&&(g.contentType="application/x-www-form-urlencoded",g.data=e.data?e.data:g.data),e.emulateHTTP&&("PUT"===f||"DELETE"===f||"PATCH"===f)){g.type="POST",e.emulateJSON&&(g.data._method=f);var h=e.beforeSend;e.beforeSend=function(a){if(a.setRequestHeader("X-HTTP-Method-Override",f),h)return h.apply(this,arguments)}}"GET"===g.type||e.emulateJSON||(g.processData=!1);var i=e.error;e.error=function(a,b,c){e.textStatus=b,e.errorThrown=c,i&&i.apply(this,arguments)};var j=e.xhr=b.ajax(c.extend(g,e));return d.trigger("request",j,d,e),j}};var w={create:"POST",update:"PUT",patch:"PATCH","delete":"DELETE",read:"GET"};b.ajax=d.ajax;var x=b.Router=function(a){a||(a={}),a.routes&&(this.routes=a.routes),this._bindRoutes(),this._init.apply(this,arguments)},y=/\((.*?)\)/g,z=/(\(\?)?:\w+/g,A=/\*\w+/g,B=/[\-{}\[\]+?.,\\\^$|#\s]/g;c.extend(x.prototype,h,{_init:function(){},route:function(a,d,e){c.isRegExp(a)||(a=this._routeToRegExp(a)),c.isFunction(d)&&(e=d,d=""),e||(e=this[d]);var f=this;return b.history.route(a,function(c){var g=f._extractParameters(a,c);f.execute(e,g,d)!==!1&&(f.trigger.apply(f,["route:"+d].concat(g)),f.trigger("route",d,g),b.history.trigger("route",f,d,g))}),this},execute:function(a,b,c){a&&a.apply(this,b)},navigate:function(a,c){return b.history.navigate(a,c),this},_bindRoutes:function(){if(this.routes){this.routes=c.result(this,"routes");for(var a,b=c.keys(this.routes);null!=(a=b.pop());)this.route(a,this.routes[a])}},_routeToRegExp:function(a){return a=a.replace(B,"\\$&").replace(y,"(?:$1)?").replace(z,function(a,b){return b?a:"([^/?]+)"}).replace(A,"([^?]*?)"),new RegExp("^"+a+"(?:\\?([\\s\\S]*))?$")},_extractParameters:function(a,b){var d=a.exec(b).slice(1);return c.map(d,function(a,b){return b===d.length-1?a||null:a?decodeURIComponent(a):null})}});var C=b.History=function(){this.handlers=[],c.bindAll(this,"checkUrl"),"undefined"!=typeof window&&(this.location=window.location,this.history=window.history)},D=/^[#\/]|\s+$/g,E=/^\/+|\/+$/g,F=/#.*$/;C.started=!1,c.extend(C.prototype,h,{interval:50,atRoot:function(){var a=this.location.pathname.replace(/[^\/]$/,"$&/");return a===this.root&&!this.getSearch()},getSearch:function(){var a=this.location.href.replace(/#.*/,"").match(/\?.+/);return a?a[0]:""},getHash:function(a){var b=(a||this).location.href.match(/#(.*)$/);return b?b[1]:""},getPath:function(){var a=decodeURI(this.location.pathname+this.getSearch()),b=this.root.slice(0,-1);return a.indexOf(b)||(a=a.slice(b.length)),"/"===a.charAt(0)?a.slice(1):a},getFragment:function(a){return null==a&&(a=this._hasPushState||!this._wantsHashChange?this.getPath():this.getHash()),a.replace(D,"")},start:function(a){if(C.started)throw new Error("BI.history has already been started");if(C.started=!0,this.options=c.extend({root:"/"},this.options,a),this.root=this.options.root,this._wantsHashChange=this.options.hashChange!==!1,this._hasHashChange="onhashchange"in window,this._wantsPushState=!!this.options.pushState,this._hasPushState=!!(this.options.pushState&&this.history&&this.history.pushState),this.fragment=this.getFragment(),this.root=("/"+this.root+"/").replace(E,"/"),this._wantsHashChange&&this._wantsPushState){if(!this._hasPushState&&!this.atRoot()){var b=this.root.slice(0,-1)||"/";return this.location.replace(b+"#"+this.getPath()),!0}this._hasPushState&&this.atRoot()&&this.navigate(this.getHash(),{replace:!0})}if(!this._hasHashChange&&this._wantsHashChange&&(!this._wantsPushState||!this._hasPushState)){var d=document.createElement("iframe");d.src="javascript:0",d.style.display="none",d.tabIndex=-1;var e=document.body;this.iframe=e.insertBefore(d,e.firstChild).contentWindow,this.iframe.document.open().close(),this.iframe.location.hash="#"+this.fragment}var f=window.addEventListener||function(a,b){return attachEvent("on"+a,b)};if(this._hasPushState?f("popstate",this.checkUrl,!1):this._wantsHashChange&&this._hasHashChange&&!this.iframe?f("hashchange",this.checkUrl,!1):this._wantsHashChange&&(this._checkUrlInterval=setInterval(this.checkUrl,this.interval)),!this.options.silent)return this.loadUrl()},stop:function(){var a=window.removeEventListener||function(a,b){return detachEvent("on"+a,b)};this._hasPushState?a("popstate",this.checkUrl,!1):this._wantsHashChange&&this._hasHashChange&&!this.iframe&&a("hashchange",this.checkUrl,!1),this.iframe&&(document.body.removeChild(this.iframe.frameElement),this.iframe=null),this._checkUrlInterval&&clearInterval(this._checkUrlInterval),C.started=!1},route:function(a,b){this.handlers.unshift({route:a,callback:b})},checkUrl:function(a){var b=this.getFragment();return b===this.fragment&&this.iframe&&(b=this.getHash(this.iframe)),b!==this.fragment&&(this.iframe&&this.navigate(b),void this.loadUrl())},loadUrl:function(a){return a=this.fragment=this.getFragment(a),c.any(this.handlers,function(b){if(b.route.test(a))return b.callback(a),!0})},navigate:function(a,b){if(!C.started)return!1;b&&b!==!0||(b={trigger:!!b}),a=this.getFragment(a||"");var c=this.root;""!==a&&"?"!==a.charAt(0)||(c=c.slice(0,-1)||"/");var d=c+a;if(a=decodeURI(a.replace(F,"")),this.fragment!==a){if(this.fragment=a,this._hasPushState)this.history[b.replace?"replaceState":"pushState"]({},document.title,d);else{if(!this._wantsHashChange)return this.location.assign(d);this._updateHash(this.location,a,b.replace),this.iframe&&a!==this.getHash(this.iframe)&&(b.replace||this.iframe.document.open().close(),this._updateHash(this.iframe.location,a,b.replace))}return b.trigger?this.loadUrl(a):void 0}},_updateHash:function(a,b,c){if(c){var d=a.href.replace(/(javascript:|#).*$/,"");a.replace(d+"#"+b)}else a.hash="#"+b}}),b.history=new C;var G=function(a,b){var d,e=this;d=a&&c.has(a,"constructor")?a.constructor:function(){return e.apply(this,arguments)},c.extend(d,e,b);var f=function(){this.constructor=d};return f.prototype=e.prototype,d.prototype=new f,a&&c.extend(d.prototype,a),d.__super__=e.prototype,d};l.extend=o.extend=x.extend=t.extend=C.extend=G;var H=function(a,b){var c=b.error;b.error=function(d){c&&c(a,d,b),a.trigger("error",a,d,b)}};return b}),BI.WRouter=BI.Router.extend({add:function(a,b){this.handlers||(this.handlers=[]),this.handlers.unshift({route:a,callback:b})},route:function(a,b,c){_.isRegExp(a)||(a=this._routeToRegExp(a)),_.isFunction(b)&&(c=b,b=""),c||(c=this[b]);var d=this;return this.add(a,function(e){var f=d._extractParameters(a,e),g=d.execute(c,f,b);return g!==!1&&(d.trigger.apply(d,["route:"+b].concat(f)),d.trigger("route",b,f)),g}),this},execute:function(a,b,c){return a?a.apply(this,b):c},get:function(a){var b=null;return _.any(this.handlers,function(c){if(c.route.test(a))return b=c.callback(a),!0}),b}}),window.BI||(window.BI={}),!function(a,b){var c=function(a,b){return function(c,d,e){return a.call(b,d,c,e)}},d=function(a){return function(){return _[a].apply(_,arguments)}},e=function(a){return function(){var b=Array.prototype.slice.call(arguments,0);return b[1]=_.isFunction(b[1])?c(b[1],b[2]):b[1],_[a].apply(_,b)}};_.extend(BI,{i18nText:function(a){var b=BI.i18n&&BI.i18n[a]||"";b||(b=a);var c=arguments.length;if(c>1)for(var d=1;d=0;c--)a=BI.map(a,function(a,d){return BI.extend({},b[c],{items:[BI.extend({},b[c].el,{el:d})]})});return a},formatEL:function(a){return a&&!a.type&&a.el?a:{el:a}},stripEL:function(a){return a.type&&a||a.el||a},trans2Element:function(a){return BI.map(a,function(a,b){return b.element})}}),_.each(["where","findWhere","contains","invoke","pluck","shuffle","sample","toArray","size"],function(a){BI[a]=d(a)}),_.each(["each","map","reduce","reduceRight","find","filter","reject","every","all","some","any","max","min","sortBy","groupBy","indexBy","countBy","partition"],function(a){BI[a]=e(a)}),_.extend(BI,{clamp:function(a,b,c){return ac&&(a=c),a},count:function(a,b,c){var d;if(c)for(d=a;d=0;d--)b(d,a[d],a);return!1},backAny:function(a,b,c){b=BI.iteratee(b,c);for(var d=a.length-1;d>=0;d--)if(b(d,a[d],a))return!0;return!1},backEvery:function(a,b,c){b=BI.iteratee(b,c);for(var d=a.length-1;d>=0;d--)if(!b(d,a[d],a))return!1;return!0},backFindKey:function(a,b,c){b=BI.iteratee(b,c);for(var d,e=_.keys(a),f=e.length-1;f>=0;f--)if(d=e[f],b(a[d],d,a))return d},backFind:function(a,b,c){var d;if(d=BI.isArray(a)?BI.findLastIndex(a,b,c):BI.backFindKey(a,b,c),void 0!==d&&d!==-1)return a[d]},remove:function(a,b,c){var d=BI.isFunction(b);b=d||BI.isArray(b)?b:[b];var e;if(BI.isArray(a))for(e=0;e(2147483646-a.charAt(d).charCodeAt(0)+c.charCodeAt(0))/26)return 0;return b},int2Abc:function(a){var b=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],c=a,d="";if(0===a)return"";for(;0!==c;){var e=c%26;0===e&&(e=26),d=b[e-1]+d,c=(c-e)/26}return d}}),_.each(["first","initial","last","rest","compact","flatten","without","union","intersection","difference","zip","unzip","object","indexOf","lastIndexOf","sortedIndex","range"],function(a){BI[a]=d(a)}),_.each(["findIndex","findLastIndex"],function(a){BI[a]=e(a)}),_.extend(BI,{makeArray:function(a,b){for(var c=[],d=0;d0},isCapitalEqual:function(a,b){return a=BI.isNull(a)?a:(""+a).toLowerCase(),b=BI.isNull(b)?b:(""+b).toLowerCase(),BI.isEqual(a,b)},isWidthOrHeight:function(a){return"number"==typeof a?a>=0:"string"==typeof a?/^\d{1,3}%$/.exec(a)||"auto"==a||/^\d+px$/.exec(a):void 0},isNotNull:function(a){return!BI.isNull(a)},isNull:function(a){return"undefined"==typeof a||null===a},isPlainObject:function(){return a.isPlainObject.apply(a,arguments)},isEmptyArray:function(a){return BI.isArray(a)&&BI.isEmpty(a)},isNotEmptyArray:function(a){return BI.isArray(a)&&!BI.isEmpty(a)},isEmptyObject:function(a){return BI.isEqual(a,{})},isNotEmptyObject:function(a){return BI.isPlainObject(a)&&!BI.isEmptyObject(a)},isEmptyString:function(a){return BI.isString(a)&&0===a.length},isNotEmptyString:function(a){return BI.isString(a)&&!BI.isEmptyString(a)},isWindow:function(){return a.isWindow.apply(a,arguments)}}),_.extend(BI,{deepClone:function(a){if(null===a||a===b)return a;var c=Object.prototype.toString.call(a);if("[object Date]"===c)return new Date(a.getTime());var d,e;if("[object Array]"===c)for(d=a.length,e=[];d--;)e[d]=BI.deepClone(a[d]);else if("[object Object]"===c&&a.constructor===Object){e={};for(var d in a)_.has(a,d)&&(e[d]=BI.deepClone(a[d]))}return e||a},isDeepMatch:function(a,b){var c=BI.keys(b),d=c.length;if(null==a)return!d;for(var e=Object(a),f=0;f10;)c=(parseInt(c.substring(0,10))+parseInt(c.substring(10,c.length),10)).toString();c=(f*c+g)%h;for(var j="",k="",d=0;d10;)c=(parseInt(c.substring(0,10),10)+parseInt(c.substring(10,c.length),10)).toString();c=(g*c+h)%i;for(var k="",l="",d=0;d1?j.unshift(BI.deepClone(d[f[f.length-1]])):j.unshift(BI.deepClone(g)),f.length>1?(delete d[f[f.length-1]],c[h](f[0],g,{silent:!0})):c[i](a,{silent:!0}),!BI.has(c._tmp,f[0])&&c.parent&&c.parent._change(c),c.splice.apply(c,j),c.trigger("splice",j),BI.remove(c._childs,b); }).on("copy",function(){var b,d,e=a.split("."),f=c.get(e[0]),g=c._tmp[e[0]]?"tmp":"set";BI.each(e,function(a,c){return 0===a?void(d=f):(b=d,void(d=d[c]))});var h=BI.UUID(),i=BI.clone(e);e.length>1?i.unshift(BI.deepClone(b[e[e.length-1]])):i.unshift(BI.deepClone(f));var j=c.similar.apply(c,i);BI.isKey(j.id)&&(h=j.id,delete j.id),e.length>1?(b[h]=j,c[g](e[0],f,{silent:!0})):c[g](h,j,{silent:!0}),e.unshift(h),!BI.has(c._tmp,e[0])&&c.parent&&c.parent._change(c),c.duplicate.apply(c,e),c.trigger("duplicate",e)})},removeChild:function(a,b){return BI.isArray(this._childs[a])?(BI.remove(this._childs[a],b),void(BI.isEmpty(this._childs[a])&&delete this._childs[a])):void delete this._childs[a]},has:function(a,b){return b===!0?_.has(this.tmp,a):(this._start===!0&&this._changing_===!1&&(this._hass[a]=!0),BI.Model.superclass.has.apply(this,arguments))},cat:function(a){if(_.has(this._tmp,a))return this._tmp[a];if(this._start===!0&&this._hass[a])switch(delete this._hass[a],a){case"default":break;case"current":break;default:this._gets.push(a)}if(_.has(this.attributes,a))return this.attributes[a];var b=_.result(this,"_static");return BI.isFunction(b[a])?b[a].apply(this,Array.prototype.slice.apply(arguments,[1])):b[a]},get:function(){return BI.deepClone(this.cat.apply(this,arguments))},set:function(a,b,c){return this._start===!0||this._changing_===!0?(this._F.push({f:this.set,arg:arguments}),this):BI.Model.superclass.set.apply(this,arguments)},unset:function(a,b){var c=this;return BI.each(this._childs,function(b,d){b+="";var e=b.split(".");_.isEqual(a,e[0])&&(delete c._childs[a],BI.isArray(d)||(d=[d]),BI.each(d,function(a,b){b.trigger("unset")}))}),BI.Model.superclass.unset.apply(this,arguments)},tmp:function(a,b,c){if(this._start===!0||this._changing_===!0)return this._F.push({f:this.tmp,arg:arguments}),this;var d,e,f,g,h,i,j,k,l;if(null==a)return this;"object"==typeof a?(e=a,c=b):(e={})[a]=b,c||(c={}),f=c.unset,h=c.silent,g=[],i=this._changingTmp,this._changingTmp=!0,i||(this._previousTmp=_.clone(this._tmp),this.changedTmp={}),this._previousTmp||(this._previousTmp=_.clone(this._tmp)),l=this._tmp,k=this._previousTmp;for(d in e)b=e[d],_.isEqual(l[d],b)||g.push(d),_.isEqual(k[d],b)?delete this.changedTmp[d]:this.changedTmp[d]=b,f?delete l[d]:l[d]=b;if(!h){g.length&&(this._pendingTmp=c);for(var m=0,n=g.length;m0&&this.refresh(b)}).listenTo(this.model,"change",function(a){this.delegateEvents()}).listenTo(this.model,"changed",function(a,b,c,d){if(BI.has(a,"current")&&BI.size(a)>1)throw new Error("refresh操作不能调用set操作");var e=!BI.has(a,"current")&&!this.local()&&this.notifyParent().notify();this.model.actionEnd()&&this.actionEnd(),this.model._changing_=!0,e&&!BI.isEmpty(a)&&this.change(a,b,c,d),this.model._changing_=!1,this.model.actionEnd()&&this.actionEnd()}).listenTo(this.model,"destroy",function(){this._destroy()}).listenTo(this.model,"unset",function(){this._destroy()}).listenTo(this.model,"splice",function(a){this.splice.apply(this,a)}).listenTo(this.model,"duplicate",function(a){this.duplicate.apply(this,a)}),this._F=[];var b=["_init","_defaultConfig","_vessel","_render","getName","listenEnd","local","refresh","load","change"];b=BI.makeObject(b,!0),BI.each(this.constructor.caller.caller.prototype,function(c){if(!b[c]){var d=a[c];BI.isFunction(d)&&(a[c]=BI.bind(function(){return this.model._start===!0?void this._F.push({f:d,arg:arguments}):d.apply(this,arguments)},a))}}),this.created&&this.created()},change:function(a,b){},actionEnd:function(){var a=this,b=this._F.slice(0);return this._F=[],BI.each(b,function(b,c){c.f.apply(a,c.arg)}),this},delegateEvents:function(a){if(!a&&!(a=BI.deepClone(_.result(this,"events"))))return this;var b=/^(\S+)\s*(.*)$/;for(var c in a){var d=a[c];if(_.isFunction(d)||(d=this[a[c]]),d){var e=c.match(b),f=!0;switch(e[1]){case"draggable":break;case"droppable":break;case"sortable":break;case"resizable":break;case"hover":break;default:f=!1}var g=new BI.OffList({event:e[1]+".delegateEvents"+this.cid}),h=e[2].split("."),i=h[1],j=f?new BI.EventList({event:e[1],handle:i,callback:BI.bind(d,this)}):new BI.ListenerList({event:e[1]+".delegateEvents"+this.cid,handle:i,callback:BI.bind(d,this),context:this}),k=[];this[h[0]]&&(this[h[0]]instanceof $||this[h[0]].element instanceof $)?(k=[this[h[0]]],delete a[c]):(BI.isArray(this[h[0]])||BI.isPlainObject(this[h[0]]))&&(k=this[h[0]],delete a[c]),g.populate(k),j.populate(k)}}return BI.View.superclass.delegateEvents.apply(this,[a])},_vessel:function(){this._cardLayouts={},this._cardLayouts[this.getName()]=new BI.CardLayout({element:this});var a=BI.createWidget();return this._cardLayouts[this.getName()].addCardByName(this.getName(),a),a},render:function(a){return this},addSubVessel:function(a,b,c){c||(c={}),this._cardLayouts||(this._cardLayouts={});var d=a+this.cid;return c.isLayer&&(b=BI.Layers.has(d)?BI.Layers.get(d):BI.Layers.create(d,b)),this._cardLayouts[a]?(c.defaultShowName&&this._cardLayouts[a].setDefaultShowName(c.defaultShowName),this):(this._cardLayouts[a]=BI.createWidget({type:"bi.card",element:b,defaultShowName:c.defaultShowName}),this)},removeSubVessel:function(a){var b=this,c=a+this.cid;BI.Layers.remove(c);var d=this._cardLayouts[a]&&this._cardLayouts[a].getAllCardNames();return BI.each(d,function(a,c){delete b._cards[c]}),this._cardLayouts[a]&&this._cardLayouts[a]._destroy(),this},createView:function(a,b,c){return BI.Factory.createView(a,this.get(a),b,c)},skipTo:function(a,b,c,d,e){if(this.model._start===!0||this._changing_===!0)return this._F.push({f:this.skipTo,arg:arguments}),this;var f=this,g=BI.isKey(c),h=void 0;if(BI.isKey(b)&&(b+=""),b=b||this.getName(),e||(e={}),g){c+="";var i=c.split(".");BI.each(i,function(a,b){h=0===a?f.model.get(b)||{}:h[b]||{}}),h.id=e.id||i[i.length-1]}else h=c;BI.extend(h,e.data);var j=e.action||new BI.ShowAction,k=this._cardLayouts[b];if(!k)return this;if(k.setVisible(!0),BI.isKey(a)&&!k.isCardExisted(a)){var l=this.createView(this.rootURL+"/"+a,h,d);g&&this.model.addChild(c,l.model),l.listenTo(l.model,"destroy",function(){delete f._cards[a],k.deleteCardByName(a),k.isAllCardHide()&&(k.setVisible(!1),BI.Layers.hide(b+f.cid))}).listenTo(l.model,"unset",function(){delete f._cards[a],k.deleteCardByName(a)}),k.addCardByName(a,l),this._cards||(this._cards={}),this._cards[a]=l,h={},this.on("end:"+l.cid,function(){var d,e,h=!1;g&&(e=c.split("."),BI.each(e,function(a,b){d=0===a?f.model.get(b)||(h=!0):d[b]||(h=!0)})),h&&(delete f._cards[a],f.model.removeChild(c,l.model),k.deleteCardByName(a),l._destroy(),k.setVisible(!1)),j.actionBack(l,null,function(){k.isAllCardHide()&&(k.setVisible(!1),BI.Layers.hide(b+f.cid)),!h&&f.listenEnd.apply(f,g?e:[c])!==!1&&f.populate()})}).on("change:"+l.cid,_.bind(this.notifyParent,this))}return BI.isKey(a)&&BI.Layers.show(b+this.cid),k.showCardByName(a,j,function(){BI.isKey(a)&&f._cards[a].populate(h,e)}),!BI.isKey(a)&&BI.Layers.hide(b+this.cid),this._cards[a]},listenEnd:function(a,b,c){return this},notifyParentEnd:function(a){return this.parent&&this.parent.trigger("end:"+this.cid),this.trigger("end"),!a&&this.notify(),this},notifyParent:function(){return this.parent&&this.parent.notify().trigger("change:"+this.cid),this},notify:function(){return this.model.unset("current",{silent:!0}),this},getName:function(){return"VIEW"},refresh:function(a){},local:function(){return!1},load:function(a){},readData:function(a,b){function c(a){d.model.load(a),d.load(a),BI.each(e,function(b,c){BI.isFunction(c)&&c.apply(d,[a])})}b||(b={});var d=this,e=[].slice.call(arguments,2);if(!a&&this._readed===!0)return void c(this.model.toJSON());var f=b.success;this.model.read(BI.extend({silent:!0},b,{success:function(b,e){c(b),!a&&(d._readed=!0),d.delegateEvents(),f&&f(b,e)}}))},cat:function(){return this.model.cat.apply(this.model,arguments)},get:function(){return this.model.get.apply(this.model,arguments)},set:function(){return this.model.set.apply(this.model,arguments)},has:function(){return this.model.has.apply(this.model,arguments)},getEditing:function(){return this.model.getEditing()},reading:function(a){var b=this,c=BI.UUID();this.model.read(BI.extend({},a,{beforeSend:function(){var a=BI.createWidget({type:"bi.vertical",items:[{type:"bi.layout",height:30,cls:"loading-background"}],element:BI.Maskers.make(c,b)});a.setVisible(!0)},complete:function(b){a.complete&&a.complete(b),BI.Maskers.remove(c)}}))},updating:function(a){var b=this,c=BI.UUID();this.model.update(BI.extend({},a,{noset:!0,beforeSend:function(){var a=BI.createWidget({type:"bi.vertical",items:[{type:"bi.layout",height:30,cls:"loading-background"}],element:BI.Maskers.make(c,b)});a.setVisible(!0)},complete:function(b){a.complete&&a.complete(b),BI.Maskers.remove(c)}}))},patching:function(a){var b=this,c=BI.UUID();this.model.patch(BI.extend({},a,{noset:!0,beforeSend:function(){var a=BI.createWidget({type:"bi.vertical",items:[{type:"bi.layout",height:30,cls:"loading-background"}],element:BI.Maskers.make(c,b)});a.setVisible(!0)},complete:function(b){a.complete&&a.complete(b),BI.Maskers.remove(c)}}))},populate:function(a,b){if(b||(b={}),b.force===!0&&this.notify(),this._cardLayouts&&this._cardLayouts[this.getName()]&&this._cardLayouts[this.getName()].showCardByName(this.getName()),this._F.length>0)throw new Error("流程错误");if(b.force===!0)return void this.model.set(a,b).set({current:this.model.get("default")});if(b.force===!1)return void this.model.set(a);var c=BI.clone(a||{});delete c.id;var d=BI.has(this.model.toJSON(),_.keys(c)),e=BI.isEmpty(c)||d&&this.model.matches(a);e===!0?this.model.set({current:this.model.get("default")}):d===!1?this.model.set(a):this.model.set(a,b).set({current:this.model.get("default")})},splice:function(a,b,c,d){},duplicate:function(a,b,c,d){},_unMount:function(){this.beforeDestroy&&this.beforeDestroy(),BI.each(this._cardLayouts,function(a,b){b&&b._unMount()}),delete this._cardLayouts,delete this._cards,this.destroyed&&this.destroyed(),this.trigger(BI.Events.UNMOUNT),this.off()},_destroy:function(){var a=this;BI.each(this._cardLayouts,function(b,c){c&&c._unMount(),BI.Layers.remove(b+a.cid)}),delete this._cardLayouts,delete this._cards,this.destroyed&&this.destroyed(),this.remove(),this.trigger(BI.Events.DESTROY),this.off()}}),function(){var a={};BI.shortcut=function(b,c){if(null!=a[b])throw"shortcut:["+b+"] has been registed";a[b]=c};var b=function(b){if(b.classType)return new(new Function("return "+b.classType+";")())(b);var c=b.type.toLowerCase(),d=a[c];return new d(b)};BI.createWidget=function(a,c){var d;if(c||(c={}),BI.isEmpty(a)&&BI.isEmpty(c))return BI.createWidget({type:"bi.layout"});if(BI.isWidget(a))return a;if(a&&(a.type||c.type))return d=BI.extend({},c,a),BI.Plugin.getObject(d.type,b(BI.Plugin.getWidget(d.type,d)));if(a&&a.el&&(a.el.type||c.type))return d=BI.extend({},c,a.el),BI.Plugin.getObject(d.type,b(BI.Plugin.getWidget(d.type,d)));if(a&&BI.isWidget(a.el))return a.el;throw new Error("无法根据item创建组件")}}(),function(a,b){function c(a){return function(b,c,d){var e,f=b[c];f&&f.target==b||(e=b[c]=function(){for(var a,b=e.before,c=arguments,d=b.length;d--;){if(a=b[d].advice.apply(this,c),a===!1)return!1;c=a||c}for(var f=e.method.apply(this,c),g=e.after,h=0,i=g.length;h127&&d<2048?(b+=String.fromCharCode(d>>6|192),b+=String.fromCharCode(63&d|128)):(b+=String.fromCharCode(d>>12|224),b+=String.fromCharCode(d>>6&63|128),b+=String.fromCharCode(63&d|128))}return b},c=function(a){for(var b="",c=0,d=0,e=0,f=0;c191&&d<224?(f=a.charCodeAt(c+1),b+=String.fromCharCode((31&d)<<6|63&f),c+=2):(f=a.charCodeAt(c+1),e=a.charCodeAt(c+2),b+=String.fromCharCode((15&d)<<12|(63&f)<<6|63&e),c+=3);return b};_.extend(BI,{encode:function(c){var d,e,f,g,h,i,j,k="",l=0;for(c=b(c);l>2,h=(3&d)<<4|e>>4,i=(15&e)<<2|f>>6,j=63&f,isNaN(e)?i=j=64:isNaN(f)&&(j=64),k=k+a.charAt(g)+a.charAt(h)+a.charAt(i)+a.charAt(j);return k},decode:function(b){var d,e,f,g,h,i,j,k="",l=0;for(b=b.replace(/[^A-Za-z0-9\+\/\=]/g,"");l>4,e=(15&h)<<4|i>>2,f=(3&i)<<6|j,k+=String.fromCharCode(d),64!=i&&(k+=String.fromCharCode(e)),64!=j&&(k+=String.fromCharCode(f));return k=c(k)}})}(),BI.CellSizeAndPositionManager=function(a,b,c){this._cellSizeGetter=b,this._cellCount=a,this._estimatedCellSize=c,this._cellSizeAndPositionData={},this._lastMeasuredIndex=-1},BI.CellSizeAndPositionManager.prototype={constructor:BI.CellSizeAndPositionManager,configure:function(a,b){this._cellCount=a,this._estimatedCellSize=b},getCellCount:function(){return this._cellCount},getEstimatedCellSize:function(){return this._estimatedCellSize},getLastMeasuredIndex:function(){return this._lastMeasuredIndex},getSizeAndPositionOfCell:function(a){if(!(a<0||a>=this._cellCount)){if(a>this._lastMeasuredIndex){for(var b=this.getSizeAndPositionOfLastMeasuredCell(),c=b.offset+b.size,d=this._lastMeasuredIndex+1;d<=a;d++){var e=this._cellSizeGetter(d);null==e||isNaN(e)||(this._cellSizeAndPositionData[d]={offset:c,size:e},c+=e)}this._lastMeasuredIndex=a}return this._cellSizeAndPositionData[a]}},getSizeAndPositionOfLastMeasuredCell:function(){return this._lastMeasuredIndex>=0?this._cellSizeAndPositionData[this._lastMeasuredIndex]:{offset:0,size:0}},getTotalSize:function(){var a=this.getSizeAndPositionOfLastMeasuredCell();return a.offset+a.size+(this._cellCount-this._lastMeasuredIndex-1)*this._estimatedCellSize},getUpdatedOffsetForIndex:function(a,b,c,d){var e,f=this.getSizeAndPositionOfCell(d),g=f.offset,h=g-b+f.size;switch(a){case"start":e=g;break;case"end":e=h;break;case"center":e=g-(b-f.size)/2;break;default:e=Math.max(h,Math.min(g,c))}var i=this.getTotalSize();return Math.max(0,Math.min(i-b,e))},getVisibleCellRange:function(a,b){var c=this.getTotalSize();if(0===c)return{};var d=b+a,e=this._findNearestCell(b),f=this.getSizeAndPositionOfCell(e);b=f.offset+f.size;for(var g=e;bc&&(a=d-1)}if(b>0)return b-1},_exponentialSearch:function(a,b){for(var c=1;a=a?this._binarySearch(c,0,a):this._exponentialSearch(c,a)}}},BI.ScalingCellSizeAndPositionManager=function(a,b,c,d){this._cellSizeAndPositionManager=new BI.CellSizeAndPositionManager(a,b,c),this._maxScrollSize=d||1e7},BI.ScalingCellSizeAndPositionManager.prototype={constructor:BI.ScalingCellSizeAndPositionManager,configure:function(){this._cellSizeAndPositionManager.configure.apply(this._cellSizeAndPositionManager,arguments)},getCellCount:function(){return this._cellSizeAndPositionManager.getCellCount()},getEstimatedCellSize:function(){return this._cellSizeAndPositionManager.getEstimatedCellSize()},getLastMeasuredIndex:function(){return this._cellSizeAndPositionManager.getLastMeasuredIndex()},getOffsetAdjustment:function(a,b){var c=this._cellSizeAndPositionManager.getTotalSize(),d=this.getTotalSize(),e=this._getOffsetPercentage(a,b,d);return Math.round(e*(d-c))},getSizeAndPositionOfCell:function(a){return this._cellSizeAndPositionManager.getSizeAndPositionOfCell(a)},getSizeAndPositionOfLastMeasuredCell:function(){return this._cellSizeAndPositionManager.getSizeAndPositionOfLastMeasuredCell()},getTotalSize:function(){return Math.min(this._maxScrollSize,this._cellSizeAndPositionManager.getTotalSize())},getUpdatedOffsetForIndex:function(a,b,c,d){c=this._safeOffsetToOffset(b,c);var e=this._cellSizeAndPositionManager.getUpdatedOffsetForIndex(a,b,c,d);return this._offsetToSafeOffset(b,e)},getVisibleCellRange:function(a,b){return b=this._safeOffsetToOffset(a,b),this._cellSizeAndPositionManager.getVisibleCellRange(a,b)},resetCell:function(a){this._cellSizeAndPositionManager.resetCell(a)},_getOffsetPercentage:function(a,b,c){return c<=a?0:b/(c-a)},_offsetToSafeOffset:function(a,b){var c=this._cellSizeAndPositionManager.getTotalSize(),d=this.getTotalSize();if(c===d)return b;var e=this._getOffsetPercentage(a,b,c);return Math.round(e*(d-a))},_safeOffsetToOffset:function(a,b){var c=this._cellSizeAndPositionManager.getTotalSize(),d=this.getTotalSize();if(c===d)return b;var e=this._getOffsetPercentage(a,b,d);return Math.round(e*(c-a))}},!function(){var a="YDYQSXMWZSSXJBYMGCCZQPSSQBYCDSCDQLDYLYBSSJGYZZJJFKCCLZDHWDWZJLJPFYYNWJJTMYHZWZHFLZPPQHGSCYYYNJQYXXGJHHSDSJNKKTMOMLCRXYPSNQSECCQZGGLLYJLMYZZSECYKYYHQWJSSGGYXYZYJWWKDJHYCHMYXJTLXJYQBYXZLDWRDJRWYSRLDZJPCBZJJBRCFTLECZSTZFXXZHTRQHYBDLYCZSSYMMRFMYQZPWWJJYFCRWFDFZQPYDDWYXKYJAWJFFXYPSFTZYHHYZYSWCJYXSCLCXXWZZXNBGNNXBXLZSZSBSGPYSYZDHMDZBQBZCWDZZYYTZHBTSYYBZGNTNXQYWQSKBPHHLXGYBFMJEBJHHGQTJCYSXSTKZHLYCKGLYSMZXYALMELDCCXGZYRJXSDLTYZCQKCNNJWHJTZZCQLJSTSTBNXBTYXCEQXGKWJYFLZQLYHYXSPSFXLMPBYSXXXYDJCZYLLLSJXFHJXPJBTFFYABYXBHZZBJYZLWLCZGGBTSSMDTJZXPTHYQTGLJSCQFZKJZJQNLZWLSLHDZBWJNCJZYZSQQYCQYRZCJJWYBRTWPYFTWEXCSKDZCTBZHYZZYYJXZCFFZZMJYXXSDZZOTTBZLQWFCKSZSXFYRLNYJMBDTHJXSQQCCSBXYYTSYFBXDZTGBCNSLCYZZPSAZYZZSCJCSHZQYDXLBPJLLMQXTYDZXSQJTZPXLCGLQTZWJBHCTSYJSFXYEJJTLBGXSXJMYJQQPFZASYJNTYDJXKJCDJSZCBARTDCLYJQMWNQNCLLLKBYBZZSYHQQLTWLCCXTXLLZNTYLNEWYZYXCZXXGRKRMTCNDNJTSYYSSDQDGHSDBJGHRWRQLYBGLXHLGTGXBQJDZPYJSJYJCTMRNYMGRZJCZGJMZMGXMPRYXKJNYMSGMZJYMKMFXMLDTGFBHCJHKYLPFMDXLQJJSMTQGZSJLQDLDGJYCALCMZCSDJLLNXDJFFFFJCZFMZFFPFKHKGDPSXKTACJDHHZDDCRRCFQYJKQCCWJDXHWJLYLLZGCFCQDSMLZPBJJPLSBCJGGDCKKDEZSQCCKJGCGKDJTJDLZYCXKLQSCGJCLTFPCQCZGWPJDQYZJJBYJHSJDZWGFSJGZKQCCZLLPSPKJGQJHZZLJPLGJGJJTHJJYJZCZMLZLYQBGJWMLJKXZDZNJQSYZMLJLLJKYWXMKJLHSKJGBMCLYYMKXJQLBMLLKMDXXKWYXYSLMLPSJQQJQXYXFJTJDXMXXLLCXQBSYJBGWYMBGGBCYXPJYGPEPFGDJGBHBNSQJYZJKJKHXQFGQZKFHYGKHDKLLSDJQXPQYKYBNQSXQNSZSWHBSXWHXWBZZXDMNSJBSBKBBZKLYLXGWXDRWYQZMYWSJQLCJXXJXKJEQXSCYETLZHLYYYSDZPAQYZCMTLSHTZCFYZYXYLJSDCJQAGYSLCQLYYYSHMRQQKLDXZSCSSSYDYCJYSFSJBFRSSZQSBXXPXJYSDRCKGJLGDKZJZBDKTCSYQPYHSTCLDJDHMXMCGXYZHJDDTMHLTXZXYLYMOHYJCLTYFBQQXPFBDFHHTKSQHZYYWCNXXCRWHOWGYJLEGWDQCWGFJYCSNTMYTOLBYGWQWESJPWNMLRYDZSZTXYQPZGCWXHNGPYXSHMYQJXZTDPPBFYHZHTJYFDZWKGKZBLDNTSXHQEEGZZYLZMMZYJZGXZXKHKSTXNXXWYLYAPSTHXDWHZYMPXAGKYDXBHNHXKDPJNMYHYLPMGOCSLNZHKXXLPZZLBMLSFBHHGYGYYGGBHSCYAQTYWLXTZQCEZYDQDQMMHTKLLSZHLSJZWFYHQSWSCWLQAZYNYTLSXTHAZNKZZSZZLAXXZWWCTGQQTDDYZTCCHYQZFLXPSLZYGPZSZNGLNDQTBDLXGTCTAJDKYWNSYZLJHHZZCWNYYZYWMHYCHHYXHJKZWSXHZYXLYSKQYSPSLYZWMYPPKBYGLKZHTYXAXQSYSHXASMCHKDSCRSWJPWXSGZJLWWSCHSJHSQNHCSEGNDAQTBAALZZMSSTDQJCJKTSCJAXPLGGXHHGXXZCXPDMMHLDGTYBYSJMXHMRCPXXJZCKZXSHMLQXXTTHXWZFKHCCZDYTCJYXQHLXDHYPJQXYLSYYDZOZJNYXQEZYSQYAYXWYPDGXDDXSPPYZNDLTWRHXYDXZZJHTCXMCZLHPYYYYMHZLLHNXMYLLLMDCPPXHMXDKYCYRDLTXJCHHZZXZLCCLYLNZSHZJZZLNNRLWHYQSNJHXYNTTTKYJPYCHHYEGKCTTWLGQRLGGTGTYGYHPYHYLQYQGCWYQKPYYYTTTTLHYHLLTYTTSPLKYZXGZWGPYDSSZZDQXSKCQNMJJZZBXYQMJRTFFBTKHZKBXLJJKDXJTLBWFZPPTKQTZTGPDGNTPJYFALQMKGXBDCLZFHZCLLLLADPMXDJHLCCLGYHDZFGYDDGCYYFGYDXKSSEBDHYKDKDKHNAXXYBPBYYHXZQGAFFQYJXDMLJCSQZLLPCHBSXGJYNDYBYQSPZWJLZKSDDTACTBXZDYZYPJZQSJNKKTKNJDJGYYPGTLFYQKASDNTCYHBLWDZHBBYDWJRYGKZYHEYYFJMSDTYFZJJHGCXPLXHLDWXXJKYTCYKSSSMTWCTTQZLPBSZDZWZXGZAGYKTYWXLHLSPBCLLOQMMZSSLCMBJCSZZKYDCZJGQQDSMCYTZQQLWZQZXSSFPTTFQMDDZDSHDTDWFHTDYZJYQJQKYPBDJYYXTLJHDRQXXXHAYDHRJLKLYTWHLLRLLRCXYLBWSRSZZSYMKZZHHKYHXKSMDSYDYCJPBZBSQLFCXXXNXKXWYWSDZYQOGGQMMYHCDZTTFJYYBGSTTTYBYKJDHKYXBELHTYPJQNFXFDYKZHQKZBYJTZBXHFDXKDASWTAWAJLDYJSFHBLDNNTNQJTJNCHXFJSRFWHZFMDRYJYJWZPDJKZYJYMPCYZNYNXFBYTFYFWYGDBNZZZDNYTXZEMMQBSQEHXFZMBMFLZZSRXYMJGSXWZJSPRYDJSJGXHJJGLJJYNZZJXHGXKYMLPYYYCXYTWQZSWHWLYRJLPXSLSXMFSWWKLCTNXNYNPSJSZHDZEPTXMYYWXYYSYWLXJQZQXZDCLEEELMCPJPCLWBXSQHFWWTFFJTNQJHJQDXHWLBYZNFJLALKYYJLDXHHYCSTYYWNRJYXYWTRMDRQHWQCMFJDYZMHMYYXJWMYZQZXTLMRSPWWCHAQBXYGZYPXYYRRCLMPYMGKSJSZYSRMYJSNXTPLNBAPPYPYLXYYZKYNLDZYJZCZNNLMZHHARQMPGWQTZMXXMLLHGDZXYHXKYXYCJMFFYYHJFSBSSQLXXNDYCANNMTCJCYPRRNYTYQNYYMBMSXNDLYLYSLJRLXYSXQMLLYZLZJJJKYZZCSFBZXXMSTBJGNXYZHLXNMCWSCYZYFZLXBRNNNYLBNRTGZQYSATSWRYHYJZMZDHZGZDWYBSSCSKXSYHYTXXGCQGXZZSHYXJSCRHMKKBXCZJYJYMKQHZJFNBHMQHYSNJNZYBKNQMCLGQHWLZNZSWXKHLJHYYBQLBFCDSXDLDSPFZPSKJYZWZXZDDXJSMMEGJSCSSMGCLXXKYYYLNYPWWWGYDKZJGGGZGGSYCKNJWNJPCXBJJTQTJWDSSPJXZXNZXUMELPXFSXTLLXCLJXJJLJZXCTPSWXLYDHLYQRWHSYCSQYYBYAYWJJJQFWQCQQCJQGXALDBZZYJGKGXPLTZYFXJLTPADKYQHPMATLCPDCKBMTXYBHKLENXDLEEGQDYMSAWHZMLJTWYGXLYQZLJEEYYBQQFFNLYXRDSCTGJGXYYNKLLYQKCCTLHJLQMKKZGCYYGLLLJDZGYDHZWXPYSJBZKDZGYZZHYWYFQYTYZSZYEZZLYMHJJHTSMQWYZLKYYWZCSRKQYTLTDXWCTYJKLWSQZWBDCQYNCJSRSZJLKCDCDTLZZZACQQZZDDXYPLXZBQJYLZLLLQDDZQJYJYJZYXNYYYNYJXKXDAZWYRDLJYYYRJLXLLDYXJCYWYWNQCCLDDNYYYNYCKCZHXXCCLGZQJGKWPPCQQJYSBZZXYJSQPXJPZBSBDSFNSFPZXHDWZTDWPPTFLZZBZDMYYPQJRSDZSQZSQXBDGCPZSWDWCSQZGMDHZXMWWFYBPDGPHTMJTHZSMMBGZMBZJCFZWFZBBZMQCFMBDMCJXLGPNJBBXGYHYYJGPTZGZMQBQTCGYXJXLWZKYDPDYMGCFTPFXYZTZXDZXTGKMTYBBCLBJASKYTSSQYYMSZXFJEWLXLLSZBQJJJAKLYLXLYCCTSXMCWFKKKBSXLLLLJYXTYLTJYYTDPJHNHNNKBYQNFQYYZBYYESSESSGDYHFHWTCJBSDZZTFDMXHCNJZYMQWSRYJDZJQPDQBBSTJGGFBKJBXTGQHNGWJXJGDLLTHZHHYYYYYYSXWTYYYCCBDBPYPZYCCZYJPZYWCBDLFWZCWJDXXHYHLHWZZXJTCZLCDPXUJCZZZLYXJJTXPHFXWPYWXZPTDZZBDZCYHJHMLXBQXSBYLRDTGJRRCTTTHYTCZWMXFYTWWZCWJWXJYWCSKYBZSCCTZQNHXNWXXKHKFHTSWOCCJYBCMPZZYKBNNZPBZHHZDLSYDDYTYFJPXYNGFXBYQXCBHXCPSXTYZDMKYSNXSXLHKMZXLYHDHKWHXXSSKQYHHCJYXGLHZXCSNHEKDTGZXQYPKDHEXTYKCNYMYYYPKQYYYKXZLTHJQTBYQHXBMYHSQCKWWYLLHCYYLNNEQXQWMCFBDCCMLJGGXDQKTLXKGNQCDGZJWYJJLYHHQTTTNWCHMXCXWHWSZJYDJCCDBQCDGDNYXZTHCQRXCBHZTQCBXWGQWYYBXHMBYMYQTYEXMQKYAQYRGYZSLFYKKQHYSSQYSHJGJCNXKZYCXSBXYXHYYLSTYCXQTHYSMGSCPMMGCCCCCMTZTASMGQZJHKLOSQYLSWTMXSYQKDZLJQQYPLSYCZTCQQPBBQJZCLPKHQZYYXXDTDDTSJCXFFLLCHQXMJLWCJCXTSPYCXNDTJSHJWXDQQJSKXYAMYLSJHMLALYKXCYYDMNMDQMXMCZNNCYBZKKYFLMCHCMLHXRCJJHSYLNMTJZGZGYWJXSRXCWJGJQHQZDQJDCJJZKJKGDZQGJJYJYLXZXXCDQHHHEYTMHLFSBDJSYYSHFYSTCZQLPBDRFRZTZYKYWHSZYQKWDQZRKMSYNBCRXQBJYFAZPZZEDZCJYWBCJWHYJBQSZYWRYSZPTDKZPFPBNZTKLQYHBBZPNPPTYZZYBQNYDCPJMMCYCQMCYFZZDCMNLFPBPLNGQJTBTTNJZPZBBZNJKLJQYLNBZQHKSJZNGGQSZZKYXSHPZSNBCGZKDDZQANZHJKDRTLZLSWJLJZLYWTJNDJZJHXYAYNCBGTZCSSQMNJPJYTYSWXZFKWJQTKHTZPLBHSNJZSYZBWZZZZLSYLSBJHDWWQPSLMMFBJDWAQYZTCJTBNNWZXQXCDSLQGDSDPDZHJTQQPSWLYYJZLGYXYZLCTCBJTKTYCZJTQKBSJLGMGZDMCSGPYNJZYQYYKNXRPWSZXMTNCSZZYXYBYHYZAXYWQCJTLLCKJJTJHGDXDXYQYZZBYWDLWQCGLZGJGQRQZCZSSBCRPCSKYDZNXJSQGXSSJMYDNSTZTPBDLTKZWXQWQTZEXNQCZGWEZKSSBYBRTSSSLCCGBPSZQSZLCCGLLLZXHZQTHCZMQGYZQZNMCOCSZJMMZSQPJYGQLJYJPPLDXRGZYXCCSXHSHGTZNLZWZKJCXTCFCJXLBMQBCZZWPQDNHXLJCTHYZLGYLNLSZZPCXDSCQQHJQKSXZPBAJYEMSMJTZDXLCJYRYYNWJBNGZZTMJXLTBSLYRZPYLSSCNXPHLLHYLLQQZQLXYMRSYCXZLMMCZLTZSDWTJJLLNZGGQXPFSKYGYGHBFZPDKMWGHCXMSGDXJMCJZDYCABXJDLNBCDQYGSKYDQTXDJJYXMSZQAZDZFSLQXYJSJZYLBTXXWXQQZBJZUFBBLYLWDSLJHXJYZJWTDJCZFQZQZZDZSXZZQLZCDZFJHYSPYMPQZMLPPLFFXJJNZZYLSJEYQZFPFZKSYWJJJHRDJZZXTXXGLGHYDXCSKYSWMMZCWYBAZBJKSHFHJCXMHFQHYXXYZFTSJYZFXYXPZLCHMZMBXHZZSXYFYMNCWDABAZLXKTCSHHXKXJJZJSTHYGXSXYYHHHJWXKZXSSBZZWHHHCWTZZZPJXSNXQQJGZYZYWLLCWXZFXXYXYHXMKYYSWSQMNLNAYCYSPMJKHWCQHYLAJJMZXHMMCNZHBHXCLXTJPLTXYJHDYYLTTXFSZHYXXSJBJYAYRSMXYPLCKDUYHLXRLNLLSTYZYYQYGYHHSCCSMZCTZQXKYQFPYYRPFFLKQUNTSZLLZMWWTCQQYZWTLLMLMPWMBZSSTZRBPDDTLQJJBXZCSRZQQYGWCSXFWZLXCCRSZDZMCYGGDZQSGTJSWLJMYMMZYHFBJDGYXCCPSHXNZCSBSJYJGJMPPWAFFYFNXHYZXZYLREMZGZCYZSSZDLLJCSQFNXZKPTXZGXJJGFMYYYSNBTYLBNLHPFZDCYFBMGQRRSSSZXYSGTZRNYDZZCDGPJAFJFZKNZBLCZSZPSGCYCJSZLMLRSZBZZLDLSLLYSXSQZQLYXZLSKKBRXBRBZCYCXZZZEEYFGKLZLYYHGZSGZLFJHGTGWKRAAJYZKZQTSSHJJXDCYZUYJLZYRZDQQHGJZXSSZBYKJPBFRTJXLLFQWJHYLQTYMBLPZDXTZYGBDHZZRBGXHWNJTJXLKSCFSMWLSDQYSJTXKZSCFWJLBXFTZLLJZLLQBLSQMQQCGCZFPBPHZCZJLPYYGGDTGWDCFCZQYYYQYSSCLXZSKLZZZGFFCQNWGLHQYZJJCZLQZZYJPJZZBPDCCMHJGXDQDGDLZQMFGPSYTSDYFWWDJZJYSXYYCZCYHZWPBYKXRYLYBHKJKSFXTZJMMCKHLLTNYYMSYXYZPYJQYCSYCWMTJJKQYRHLLQXPSGTLYYCLJSCPXJYZFNMLRGJJTYZBXYZMSJYJHHFZQMSYXRSZCWTLRTQZSSTKXGQKGSPTGCZNJSJCQCXHMXGGZTQYDJKZDLBZSXJLHYQGGGTHQSZPYHJHHGYYGKGGCWJZZYLCZLXQSFTGZSLLLMLJSKCTBLLZZSZMMNYTPZSXQHJCJYQXYZXZQZCPSHKZZYSXCDFGMWQRLLQXRFZTLYSTCTMJCXJJXHJNXTNRZTZFQYHQGLLGCXSZSJDJLJCYDSJTLNYXHSZXCGJZYQPYLFHDJSBPCCZHJJJQZJQDYBSSLLCMYTTMQTBHJQNNYGKYRQYQMZGCJKPDCGMYZHQLLSLLCLMHOLZGDYYFZSLJCQZLYLZQJESHNYLLJXGJXLYSYYYXNBZLJSSZCQQCJYLLZLTJYLLZLLBNYLGQCHXYYXOXCXQKYJXXXYKLXSXXYQXCYKQXQCSGYXXYQXYGYTQOHXHXPYXXXULCYEYCHZZCBWQBBWJQZSCSZSSLZYLKDESJZWMYMCYTSDSXXSCJPQQSQYLYYZYCMDJDZYWCBTJSYDJKCYDDJLBDJJSODZYSYXQQYXDHHGQQYQHDYXWGMMMAJDYBBBPPBCMUUPLJZSMTXERXJMHQNUTPJDCBSSMSSSTKJTSSMMTRCPLZSZMLQDSDMJMQPNQDXCFYNBFSDQXYXHYAYKQYDDLQYYYSSZBYDSLNTFQTZQPZMCHDHCZCWFDXTMYQSPHQYYXSRGJCWTJTZZQMGWJJTJHTQJBBHWZPXXHYQFXXQYWYYHYSCDYDHHQMNMTMWCPBSZPPZZGLMZFOLLCFWHMMSJZTTDHZZYFFYTZZGZYSKYJXQYJZQBHMBZZLYGHGFMSHPZFZSNCLPBQSNJXZSLXXFPMTYJYGBXLLDLXPZJYZJYHHZCYWHJYLSJEXFSZZYWXKZJLUYDTMLYMQJPWXYHXSKTQJEZRPXXZHHMHWQPWQLYJJQJJZSZCPHJLCHHNXJLQWZJHBMZYXBDHHYPZLHLHLGFWLCHYYTLHJXCJMSCPXSTKPNHQXSRTYXXTESYJCTLSSLSTDLLLWWYHDHRJZSFGXTSYCZYNYHTDHWJSLHTZDQDJZXXQHGYLTZPHCSQFCLNJTCLZPFSTPDYNYLGMJLLYCQHYSSHCHYLHQYQTMZYPBYWRFQYKQSYSLZDQJMPXYYSSRHZJNYWTQDFZBWWTWWRXCWHGYHXMKMYYYQMSMZHNGCEPMLQQMTCWCTMMPXJPJJHFXYYZSXZHTYBMSTSYJTTQQQYYLHYNPYQZLCYZHZWSMYLKFJXLWGXYPJYTYSYXYMZCKTTWLKSMZSYLMPWLZWXWQZSSAQSYXYRHSSNTSRAPXCPWCMGDXHXZDZYFJHGZTTSBJHGYZSZYSMYCLLLXBTYXHBBZJKSSDMALXHYCFYGMQYPJYCQXJLLLJGSLZGQLYCJCCZOTYXMTMTTLLWTGPXYMZMKLPSZZZXHKQYSXCTYJZYHXSHYXZKXLZWPSQPYHJWPJPWXQQYLXSDHMRSLZZYZWTTCYXYSZZSHBSCCSTPLWSSCJCHNLCGCHSSPHYLHFHHXJSXYLLNYLSZDHZXYLSXLWZYKCLDYAXZCMDDYSPJTQJZLNWQPSSSWCTSTSZLBLNXSMNYYMJQBQHRZWTYYDCHQLXKPZWBGQYBKFCMZWPZLLYYLSZYDWHXPSBCMLJBSCGBHXLQHYRLJXYSWXWXZSLDFHLSLYNJLZYFLYJYCDRJLFSYZFSLLCQYQFGJYHYXZLYLMSTDJCYHBZLLNWLXXYGYYHSMGDHXXHHLZZJZXCZZZCYQZFNGWPYLCPKPYYPMCLQKDGXZGGWQBDXZZKZFBXXLZXJTPJPTTBYTSZZDWSLCHZHSLTYXHQLHYXXXYYZYSWTXZKHLXZXZPYHGCHKCFSYHUTJRLXFJXPTZTWHPLYXFCRHXSHXKYXXYHZQDXQWULHYHMJTBFLKHTXCWHJFWJCFPQRYQXCYYYQYGRPYWSGSUNGWCHKZDXYFLXXHJJBYZWTSXXNCYJJYMSWZJQRMHXZWFQSYLZJZGBHYNSLBGTTCSYBYXXWXYHXYYXNSQYXMQYWRGYQLXBBZLJSYLPSYTJZYHYZAWLRORJMKSCZJXXXYXCHDYXRYXXJDTSQFXLYLTSFFYXLMTYJMJUYYYXLTZCSXQZQHZXLYYXZHDNBRXXXJCTYHLBRLMBRLLAXKYLLLJLYXXLYCRYLCJTGJCMTLZLLCYZZPZPCYAWHJJFYBDYYZSMPCKZDQYQPBPCJPDCYZMDPBCYYDYCNNPLMTMLRMFMMGWYZBSJGYGSMZQQQZTXMKQWGXLLPJGZBQCDJJJFPKJKCXBLJMSWMDTQJXLDLPPBXCWRCQFBFQJCZAHZGMYKPHYYHZYKNDKZMBPJYXPXYHLFPNYYGXJDBKXNXHJMZJXSTRSTLDXSKZYSYBZXJLXYSLBZYSLHXJPFXPQNBYLLJQKYGZMCYZZYMCCSLCLHZFWFWYXZMWSXTYNXJHPYYMCYSPMHYSMYDYSHQYZCHMJJMZCAAGCFJBBHPLYZYLXXSDJGXDHKXXTXXNBHRMLYJSLTXMRHNLXQJXYZLLYSWQGDLBJHDCGJYQYCMHWFMJYBMBYJYJWYMDPWHXQLDYGPDFXXBCGJSPCKRSSYZJMSLBZZJFLJJJLGXZGYXYXLSZQYXBEXYXHGCXBPLDYHWETTWWCJMBTXCHXYQXLLXFLYXLLJLSSFWDPZSMYJCLMWYTCZPCHQEKCQBWLCQYDPLQPPQZQFJQDJHYMMCXTXDRMJWRHXCJZYLQXDYYNHYYHRSLSRSYWWZJYMTLTLLGTQCJZYABTCKZCJYCCQLJZQXALMZYHYWLWDXZXQDLLQSHGPJFJLJHJABCQZDJGTKHSSTCYJLPSWZLXZXRWGLDLZRLZXTGSLLLLZLYXXWGDZYGBDPHZPBRLWSXQBPFDWOFMWHLYPCBJCCLDMBZPBZZLCYQXLDOMZBLZWPDWYYGDSTTHCSQSCCRSSSYSLFYBFNTYJSZDFNDPDHDZZMBBLSLCMYFFGTJJQWFTMTPJWFNLBZCMMJTGBDZLQLPYFHYYMJYLSDCHDZJWJCCTLJCLDTLJJCPDDSQDSSZYBNDBJLGGJZXSXNLYCYBJXQYCBYLZCFZPPGKCXZDZFZTJJFJSJXZBNZYJQTTYJYHTYCZHYMDJXTTMPXSPLZCDWSLSHXYPZGTFMLCJTYCBPMGDKWYCYZCDSZZYHFLYCTYGWHKJYYLSJCXGYWJCBLLCSNDDBTZBSCLYZCZZSSQDLLMQYYHFSLQLLXFTYHABXGWNYWYYPLLSDLDLLBJCYXJZMLHLJDXYYQYTDLLLBUGBFDFBBQJZZMDPJHGCLGMJJPGAEHHBWCQXAXHHHZCHXYPHJAXHLPHJPGPZJQCQZGJJZZUZDMQYYBZZPHYHYBWHAZYJHYKFGDPFQSDLZMLJXKXGALXZDAGLMDGXMWZQYXXDXXPFDMMSSYMPFMDMMKXKSYZYSHDZKXSYSMMZZZMSYDNZZCZXFPLSTMZDNMXCKJMZTYYMZMZZMSXHHDCZJEMXXKLJSTLWLSQLYJZLLZJSSDPPMHNLZJCZYHMXXHGZCJMDHXTKGRMXFWMCGMWKDTKSXQMMMFZZYDKMSCLCMPCGMHSPXQPZDSSLCXKYXTWLWJYAHZJGZQMCSNXYYMMPMLKJXMHLMLQMXCTKZMJQYSZJSYSZHSYJZJCDAJZYBSDQJZGWZQQXFKDMSDJLFWEHKZQKJPEYPZYSZCDWYJFFMZZYLTTDZZEFMZLBNPPLPLPEPSZALLTYLKCKQZKGENQLWAGYXYDPXLHSXQQWQCQXQCLHYXXMLYCCWLYMQYSKGCHLCJNSZKPYZKCQZQLJPDMDZHLASXLBYDWQLWDNBQCRYDDZTJYBKBWSZDXDTNPJDTCTQDFXQQMGNXECLTTBKPWSLCTYQLPWYZZKLPYGZCQQPLLKCCYLPQMZCZQCLJSLQZDJXLDDHPZQDLJJXZQDXYZQKZLJCYQDYJPPYPQYKJYRMPCBYMCXKLLZLLFQPYLLLMBSGLCYSSLRSYSQTMXYXZQZFDZUYSYZTFFMZZSMZQHZSSCCMLYXWTPZGXZJGZGSJSGKDDHTQGGZLLBJDZLCBCHYXYZHZFYWXYZYMSDBZZYJGTSMTFXQYXQSTDGSLNXDLRYZZLRYYLXQHTXSRTZNGZXBNQQZFMYKMZJBZYMKBPNLYZPBLMCNQYZZZSJZHJCTZKHYZZJRDYZHNPXGLFZTLKGJTCTSSYLLGZRZBBQZZKLPKLCZYSSUYXBJFPNJZZXCDWXZYJXZZDJJKGGRSRJKMSMZJLSJYWQSKYHQJSXPJZZZLSNSHRNYPZTWCHKLPSRZLZXYJQXQKYSJYCZTLQZYBBYBWZPQDWWYZCYTJCJXCKCWDKKZXSGKDZXWWYYJQYYTCYTDLLXWKCZKKLCCLZCQQDZLQLCSFQCHQHSFSMQZZLNBJJZBSJHTSZDYSJQJPDLZCDCWJKJZZLPYCGMZWDJJBSJQZSYZYHHXJPBJYDSSXDZNCGLQMBTSFSBPDZDLZNFGFJGFSMPXJQLMBLGQCYYXBQKDJJQYRFKZTJDHCZKLBSDZCFJTPLLJGXHYXZCSSZZXSTJYGKGCKGYOQXJPLZPBPGTGYJZGHZQZZLBJLSQFZGKQQJZGYCZBZQTLDXRJXBSXXPZXHYZYCLWDXJJHXMFDZPFZHQHQMQGKSLYHTYCGFRZGNQXCLPDLBZCSCZQLLJBLHBZCYPZZPPDYMZZSGYHCKCPZJGSLJLNSCDSLDLXBMSTLDDFJMKDJDHZLZXLSZQPQPGJLLYBDSZGQLBZLSLKYYHZTTNTJYQTZZPSZQZTLLJTYYLLQLLQYZQLBDZLSLYYZYMDFSZSNHLXZNCZQZPBWSKRFBSYZMTHBLGJPMCZZLSTLXSHTCSYZLZBLFEQHLXFLCJLYLJQCBZLZJHHSSTBRMHXZHJZCLXFNBGXGTQJCZTMSFZKJMSSNXLJKBHSJXNTNLZDNTLMSJXGZJYJCZXYJYJWRWWQNZTNFJSZPZSHZJFYRDJSFSZJZBJFZQZZHZLXFYSBZQLZSGYFTZDCSZXZJBQMSZKJRHYJZCKMJKHCHGTXKXQGLXPXFXTRTYLXJXHDTSJXHJZJXZWZLCQSBTXWXGXTXXHXFTSDKFJHZYJFJXRZSDLLLTQSQQZQWZXSYQTWGWBZCGZLLYZBCLMQQTZHZXZXLJFRMYZFLXYSQXXJKXRMQDZDMMYYBSQBHGZMWFWXGMXLZPYYTGZYCCDXYZXYWGSYJYZNBHPZJSQSYXSXRTFYZGRHZTXSZZTHCBFCLSYXZLZQMZLMPLMXZJXSFLBYZMYQHXJSXRXSQZZZSSLYFRCZJRCRXHHZXQYDYHXSJJHZCXZBTYNSYSXJBQLPXZQPYMLXZKYXLXCJLCYSXXZZLXDLLLJJYHZXGYJWKJRWYHCPSGNRZLFZWFZZNSXGXFLZSXZZZBFCSYJDBRJKRDHHGXJLJJTGXJXXSTJTJXLYXQFCSGSWMSBCTLQZZWLZZKXJMLTMJYHSDDBXGZHDLBMYJFRZFSGCLYJBPMLYSMSXLSZJQQHJZFXGFQFQBPXZGYYQXGZTCQWYLTLGWSGWHRLFSFGZJMGMGBGTJFSYZZGZYZAFLSSPMLPFLCWBJZCLJJMZLPJJLYMQDMYYYFBGYGYZMLYZDXQYXRQQQHSYYYQXYLJTYXFSFSLLGNQCYHYCWFHCCCFXPYLYPLLZYXXXXXKQHHXSHJZCFZSCZJXCPZWHHHHHAPYLQALPQAFYHXDYLUKMZQGGGDDESRNNZLTZGCHYPPYSQJJHCLLJTOLNJPZLJLHYMHEYDYDSQYCDDHGZUNDZCLZYZLLZNTNYZGSLHSLPJJBDGWXPCDUTJCKLKCLWKLLCASSTKZZDNQNTTLYYZSSYSSZZRYLJQKCQDHHCRXRZYDGRGCWCGZQFFFPPJFZYNAKRGYWYQPQXXFKJTSZZXSWZDDFBBXTBGTZKZNPZZPZXZPJSZBMQHKCYXYLDKLJNYPKYGHGDZJXXEAHPNZKZTZCMXCXMMJXNKSZQNMNLWBWWXJKYHCPSTMCSQTZJYXTPCTPDTNNPGLLLZSJLSPBLPLQHDTNJNLYYRSZFFJFQWDPHZDWMRZCCLODAXNSSNYZRESTYJWJYJDBCFXNMWTTBYLWSTSZGYBLJPXGLBOCLHPCBJLTMXZLJYLZXCLTPNCLCKXTPZJSWCYXSFYSZDKNTLBYJCYJLLSTGQCBXRYZXBXKLYLHZLQZLNZCXWJZLJZJNCJHXMNZZGJZZXTZJXYCYYCXXJYYXJJXSSSJSTSSTTPPGQTCSXWZDCSYFPTFBFHFBBLZJCLZZDBXGCXLQPXKFZFLSYLTUWBMQJHSZBMDDBCYSCCLDXYCDDQLYJJWMQLLCSGLJJSYFPYYCCYLTJANTJJPWYCMMGQYYSXDXQMZHSZXPFTWWZQSWQRFKJLZJQQYFBRXJHHFWJJZYQAZMYFRHCYYBYQWLPEXCCZSTYRLTTDMQLYKMBBGMYYJPRKZNPBSXYXBHYZDJDNGHPMFSGMWFZMFQMMBCMZZCJJLCNUXYQLMLRYGQZCYXZLWJGCJCGGMCJNFYZZJHYCPRRCMTZQZXHFQGTJXCCJEAQCRJYHPLQLSZDJRBCQHQDYRHYLYXJSYMHZYDWLDFRYHBPYDTSSCNWBXGLPZMLZZTQSSCPJMXXYCSJYTYCGHYCJWYRXXLFEMWJNMKLLSWTXHYYYNCMMCWJDQDJZGLLJWJRKHPZGGFLCCSCZMCBLTBHBQJXQDSPDJZZGKGLFQYWBZYZJLTSTDHQHCTCBCHFLQMPWDSHYYTQWCNZZJTLBYMBPDYYYXSQKXWYYFLXXNCWCXYPMAELYKKJMZZZBRXYYQJFLJPFHHHYTZZXSGQQMHSPGDZQWBWPJHZJDYSCQWZKTXXSQLZYYMYSDZGRXCKKUJLWPYSYSCSYZLRMLQSYLJXBCXTLWDQZPCYCYKPPPNSXFYZJJRCEMHSZMSXLXGLRWGCSTLRSXBZGBZGZTCPLUJLSLYLYMTXMTZPALZXPXJTJWTCYYZLBLXBZLQMYLXPGHDSLSSDMXMBDZZSXWHAMLCZCPJMCNHJYSNSYGCHSKQMZZQDLLKABLWJXSFMOCDXJRRLYQZKJMYBYQLYHETFJZFRFKSRYXFJTWDSXXSYSQJYSLYXWJHSNLXYYXHBHAWHHJZXWMYLJCSSLKYDZTXBZSYFDXGXZJKHSXXYBSSXDPYNZWRPTQZCZENYGCXQFJYKJBZMLJCMQQXUOXSLYXXLYLLJDZBTYMHPFSTTQQWLHOKYBLZZALZXQLHZWRRQHLSTMYPYXJJXMQSJFNBXYXYJXXYQYLTHYLQYFMLKLJTMLLHSZWKZHLJMLHLJKLJSTLQXYLMBHHLNLZXQJHXCFXXLHYHJJGBYZZKBXSCQDJQDSUJZYYHZHHMGSXCSYMXFEBCQWWRBPYYJQTYZCYQYQQZYHMWFFHGZFRJFCDPXNTQYZPDYKHJLFRZXPPXZDBBGZQSTLGDGYLCQMLCHHMFYWLZYXKJLYPQHSYWMQQGQZMLZJNSQXJQSYJYCBEHSXFSZPXZWFLLBCYYJDYTDTHWZSFJMQQYJLMQXXLLDTTKHHYBFPWTYYSQQWNQWLGWDEBZWCMYGCULKJXTMXMYJSXHYBRWFYMWFRXYQMXYSZTZZTFYKMLDHQDXWYYNLCRYJBLPSXCXYWLSPRRJWXHQYPHTYDNXHHMMYWYTZCSQMTSSCCDALWZTCPQPYJLLQZYJSWXMZZMMYLMXCLMXCZMXMZSQTZPPQQBLPGXQZHFLJJHYTJSRXWZXSCCDLXTYJDCQJXSLQYCLZXLZZXMXQRJMHRHZJBHMFLJLMLCLQNLDXZLLLPYPSYJYSXCQQDCMQJZZXHNPNXZMEKMXHYKYQLXSXTXJYYHWDCWDZHQYYBGYBCYSCFGPSJNZDYZZJZXRZRQJJYMCANYRJTLDPPYZBSTJKXXZYPFDWFGZZRPYMTNGXZQBYXNBUFNQKRJQZMJEGRZGYCLKXZDSKKNSXKCLJSPJYYZLQQJYBZSSQLLLKJXTBKTYLCCDDBLSPPFYLGYDTZJYQGGKQTTFZXBDKTYYHYBBFYTYYBCLPDYTGDHRYRNJSPTCSNYJQHKLLLZSLYDXXWBCJQSPXBPJZJCJDZFFXXBRMLAZHCSNDLBJDSZBLPRZTSWSBXBCLLXXLZDJZSJPYLYXXYFTFFFBHJJXGBYXJPMMMPSSJZJMTLYZJXSWXTYLEDQPJMYGQZJGDJLQJWJQLLSJGJGYGMSCLJJXDTYGJQJQJCJZCJGDZZSXQGSJGGCXHQXSNQLZZBXHSGZXCXYLJXYXYYDFQQJHJFXDHCTXJYRXYSQTJXYEFYYSSYYJXNCYZXFXMSYSZXYYSCHSHXZZZGZZZGFJDLTYLNPZGYJYZYYQZPBXQBDZTZCZYXXYHHSQXSHDHGQHJHGYWSZTMZMLHYXGEBTYLZKQWYTJZRCLEKYSTDBCYKQQSAYXCJXWWGSBHJYZYDHCSJKQCXSWXFLTYNYZPZCCZJQTZWJQDZZZQZLJJXLSBHPYXXPSXSHHEZTXFPTLQYZZXHYTXNCFZYYHXGNXMYWXTZSJPTHHGYMXMXQZXTSBCZYJYXXTYYZYPCQLMMSZMJZZLLZXGXZAAJZYXJMZXWDXZSXZDZXLEYJJZQBHZWZZZQTZPSXZTDSXJJJZNYAZPHXYYSRNQDTHZHYYKYJHDZXZLSWCLYBZYECWCYCRYLCXNHZYDZYDYJDFRJJHTRSQTXYXJRJHOJYNXELXSFSFJZGHPZSXZSZDZCQZBYYKLSGSJHCZSHDGQGXYZGXCHXZJWYQWGYHKSSEQZZNDZFKWYSSTCLZSTSYMCDHJXXYWEYXCZAYDMPXMDSXYBSQMJMZJMTZQLPJYQZCGQHXJHHLXXHLHDLDJQCLDWBSXFZZYYSCHTYTYYBHECXHYKGJPXHHYZJFXHWHBDZFYZBCAPNPGNYDMSXHMMMMAMYNBYJTMPXYYMCTHJBZYFCGTYHWPHFTWZZEZSBZEGPFMTSKFTYCMHFLLHGPZJXZJGZJYXZSBBQSCZZLZCCSTPGXMJSFTCCZJZDJXCYBZLFCJSYZFGSZLYBCWZZBYZDZYPSWYJZXZBDSYUXLZZBZFYGCZXBZHZFTPBGZGEJBSTGKDMFHYZZJHZLLZZGJQZLSFDJSSCBZGPDLFZFZSZYZYZSYGCXSNXXCHCZXTZZLJFZGQSQYXZJQDCCZTQCDXZJYQJQCHXZTDLGSCXZSYQJQTZWLQDQZTQCHQQJZYEZZZPBWKDJFCJPZTYPQYQTTYNLMBDKTJZPQZQZZFPZSBNJLGYJDXJDZZKZGQKXDLPZJTCJDQBXDJQJSTCKNXBXZMSLYJCQMTJQWWCJQNJNLLLHJCWQTBZQYDZCZPZZDZYDDCYZZZCCJTTJFZDPRRTZTJDCQTQZDTJNPLZBCLLCTZSXKJZQZPZLBZRBTJDCXFCZDBCCJJLTQQPLDCGZDBBZJCQDCJWYNLLZYZCCDWLLXWZLXRXNTQQCZXKQLSGDFQTDDGLRLAJJTKUYMKQLLTZYTDYYCZGJWYXDXFRSKSTQTENQMRKQZHHQKDLDAZFKYPBGGPZREBZZYKZZSPEGJXGYKQZZZSLYSYYYZWFQZYLZZLZHWCHKYPQGNPGBLPLRRJYXCCSYYHSFZFYBZYYTGZXYLXCZWXXZJZBLFFLGSKHYJZEYJHLPLLLLCZGXDRZELRHGKLZZYHZLYQSZZJZQLJZFLNBHGWLCZCFJYSPYXZLZLXGCCPZBLLCYBBBBUBBCBPCRNNZCZYRBFSRLDCGQYYQXYGMQZWTZYTYJXYFWTEHZZJYWLCCNTZYJJZDEDPZDZTSYQJHDYMBJNYJZLXTSSTPHNDJXXBYXQTZQDDTJTDYYTGWSCSZQFLSHLGLBCZPHDLYZJYCKWTYTYLBNYTSDSYCCTYSZYYEBHEXHQDTWNYGYCLXTSZYSTQMYGZAZCCSZZDSLZCLZRQXYYELJSBYMXSXZTEMBBLLYYLLYTDQYSHYMRQWKFKBFXNXSBYCHXBWJYHTQBPBSBWDZYLKGZSKYHXQZJXHXJXGNLJKZLYYCDXLFYFGHLJGJYBXQLYBXQPQGZTZPLNCYPXDJYQYDYMRBESJYYHKXXSTMXRCZZYWXYQYBMCLLYZHQYZWQXDBXBZWZMSLPDMYSKFMZKLZCYQYCZLQXFZZYDQZPZYGYJYZMZXDZFYFYTTQTZHGSPCZMLCCYTZXJCYTJMKSLPZHYSNZLLYTPZCTZZCKTXDHXXTQCYFKSMQCCYYAZHTJPCYLZLYJBJXTPNYLJYYNRXSYLMMNXJSMYBCSYSYLZYLXJJQYLDZLPQBFZZBLFNDXQKCZFYWHGQMRDSXYCYTXNQQJZYYPFZXDYZFPRXEJDGYQBXRCNFYYQPGHYJDYZXGRHTKYLNWDZNTSMPKLBTHBPYSZBZTJZSZZJTYYXZPHSSZZBZCZPTQFZMYFLYPYBBJQXZMXXDJMTSYSKKBJZXHJCKLPSMKYJZCXTMLJYXRZZQSLXXQPYZXMKYXXXJCLJPRMYYGADYSKQLSNDHYZKQXZYZTCGHZTLMLWZYBWSYCTBHJHJFCWZTXWYTKZLXQSHLYJZJXTMPLPYCGLTBZZTLZJCYJGDTCLKLPLLQPJMZPAPXYZLKKTKDZCZZBNZDYDYQZJYJGMCTXLTGXSZLMLHBGLKFWNWZHDXUHLFMKYSLGXDTWWFRJEJZTZHYDXYKSHWFZCQSHKTMQQHTZHYMJDJSKHXZJZBZZXYMPAGQMSTPXLSKLZYNWRTSQLSZBPSPSGZWYHTLKSSSWHZZLYYTNXJGMJSZSUFWNLSOZTXGXLSAMMLBWLDSZYLAKQCQCTMYCFJBSLXCLZZCLXXKSBZQCLHJPSQPLSXXCKSLNHPSFQQYTXYJZLQLDXZQJZDYYDJNZPTUZDSKJFSLJHYLZSQZLBTXYDGTQFDBYAZXDZHZJNHHQBYKNXJJQCZMLLJZKSPLDYCLBBLXKLELXJLBQYCXJXGCNLCQPLZLZYJTZLJGYZDZPLTQCSXFDMNYCXGBTJDCZNBGBQYQJWGKFHTNPYQZQGBKPBBYZMTJDYTBLSQMPSXTBNPDXKLEMYYCJYNZCTLDYKZZXDDXHQSHDGMZSJYCCTAYRZLPYLTLKXSLZCGGEXCLFXLKJRTLQJAQZNCMBYDKKCXGLCZJZXJHPTDJJMZQYKQSECQZDSHHADMLZFMMZBGNTJNNLGBYJBRBTMLBYJDZXLCJLPLDLPCQDHLXZLYCBLCXZZJADJLNZMMSSSMYBHBSQKBHRSXXJMXSDZNZPXLGBRHWGGFCXGMSKLLTSJYYCQLTSKYWYYHYWXBXQYWPYWYKQLSQPTNTKHQCWDQKTWPXXHCPTHTWUMSSYHBWCRWXHJMKMZNGWTMLKFGHKJYLSYYCXWHYECLQHKQHTTQKHFZLDXQWYZYYDESBPKYRZPJFYYZJCEQDZZDLATZBBFJLLCXDLMJSSXEGYGSJQXCWBXSSZPDYZCXDNYXPPZYDLYJCZPLTXLSXYZYRXCYYYDYLWWNZSAHJSYQYHGYWWAXTJZDAXYSRLTDPSSYYFNEJDXYZHLXLLLZQZSJNYQYQQXYJGHZGZCYJCHZLYCDSHWSHJZYJXCLLNXZJJYYXNFXMWFPYLCYLLABWDDHWDXJMCXZTZPMLQZHSFHZYNZTLLDYWLSLXHYMMYLMBWWKYXYADTXYLLDJPYBPWUXJMWMLLSAFDLLYFLBHHHBQQLTZJCQJLDJTFFKMMMBYTHYGDCQRDDWRQJXNBYSNWZDBYYTBJHPYBYTTJXAAHGQDQTMYSTQXKBTZPKJLZRBEQQSSMJJBDJOTGTBXPGBKTLHQXJJJCTHXQDWJLWRFWQGWSHCKRYSWGFTGYGBXSDWDWRFHWYTJJXXXJYZYSLPYYYPAYXHYDQKXSHXYXGSKQHYWFDDDPPLCJLQQEEWXKSYYKDYPLTJTHKJLTCYYHHJTTPLTZZCDLTHQKZXQYSTEEYWYYZYXXYYSTTJKLLPZMCYHQGXYHSRMBXPLLNQYDQHXSXXWGDQBSHYLLPJJJTHYJKYPPTHYYKTYEZYENMDSHLCRPQFDGFXZPSFTLJXXJBSWYYSKSFLXLPPLBBBLBSFXFYZBSJSSYLPBBFFFFSSCJDSTZSXZRYYSYFFSYZYZBJTBCTSBSDHRTJJBYTCXYJEYLXCBNEBJDSYXYKGSJZBXBYTFZWGENYHHTHZHHXFWGCSTBGXKLSXYWMTMBYXJSTZSCDYQRCYTWXZFHMYMCXLZNSDJTTTXRYCFYJSBSDYERXJLJXBBDEYNJGHXGCKGSCYMBLXJMSZNSKGXFBNBPTHFJAAFXYXFPXMYPQDTZCXZZPXRSYWZDLYBBKTYQPQJPZYPZJZNJPZJLZZFYSBTTSLMPTZRTDXQSJEHBZYLZDHLJSQMLHTXTJECXSLZZSPKTLZKQQYFSYGYWPCPQFHQHYTQXZKRSGTTSQCZLPTXCDYYZXSQZSLXLZMYCPCQBZYXHBSXLZDLTCDXTYLZJYYZPZYZLTXJSJXHLPMYTXCQRBLZSSFJZZTNJYTXMYJHLHPPLCYXQJQQKZZSCPZKSWALQSBLCCZJSXGWWWYGYKTJBBZTDKHXHKGTGPBKQYSLPXPJCKBMLLXDZSTBKLGGQKQLSBKKTFXRMDKBFTPZFRTBBRFERQGXYJPZSSTLBZTPSZQZSJDHLJQLZBPMSMMSXLQQNHKNBLRDDNXXDHDDJCYYGYLXGZLXSYGMQQGKHBPMXYXLYTQWLWGCPBMQXCYZYDRJBHTDJYHQSHTMJSBYPLWHLZFFNYPMHXXHPLTBQPFBJWQDBYGPNZTPFZJGSDDTQSHZEAWZZYLLTYYBWJKXXGHLFKXDJTMSZSQYNZGGSWQSPHTLSSKMCLZXYSZQZXNCJDQGZDLFNYKLJCJLLZLMZZNHYDSSHTHZZLZZBBHQZWWYCRZHLYQQJBEYFXXXWHSRXWQHWPSLMSSKZTTYGYQQWRSLALHMJTQJSMXQBJJZJXZYZKXBYQXBJXSHZTSFJLXMXZXFGHKZSZGGYLCLSARJYHSLLLMZXELGLXYDJYTLFBHBPNLYZFBBHPTGJKWETZHKJJXZXXGLLJLSTGSHJJYQLQZFKCGNNDJSSZFDBCTWWSEQFHQJBSAQTGYPQLBXBMMYWXGSLZHGLZGQYFLZBYFZJFRYSFMBYZHQGFWZSYFYJJPHZBYYZFFWODGRLMFTWLBZGYCQXCDJYGZYYYYTYTYDWEGAZYHXJLZYYHLRMGRXXZCLHNELJJTJTPWJYBJJBXJJTJTEEKHWSLJPLPSFYZPQQBDLQJJTYYQLYZKDKSQJYYQZLDQTGJQYZJSUCMRYQTHTEJMFCTYHYPKMHYZWJDQFHYYXWSHCTXRLJHQXHCCYYYJLTKTTYTMXGTCJTZAYYOCZLYLBSZYWJYTSJYHBYSHFJLYGJXXTMZYYLTXXYPZLXYJZYZYYPNHMYMDYYLBLHLSYYQQLLNJJYMSOYQBZGDLYXYLCQYXTSZEGXHZGLHWBLJHEYXTWQMAKBPQCGYSHHEGQCMWYYWLJYJHYYZLLJJYLHZYHMGSLJLJXCJJYCLYCJPCPZJZJMMYLCQLNQLJQJSXYJMLSZLJQLYCMMHCFMMFPQQMFYLQMCFFQMMMMHMZNFHHJGTTHHKHSLNCHHYQDXTMMQDCYZYXYQMYQYLTDCYYYZAZZCYMZYDLZFFFMMYCQZWZZMABTBYZTDMNZZGGDFTYPCGQYTTSSFFWFDTZQSSYSTWXJHXYTSXXYLBYQHWWKXHZXWZNNZZJZJJQJCCCHYYXBZXZCYZTLLCQXYNJYCYYCYNZZQYYYEWYCZDCJYCCHYJLBTZYYCQWMPWPYMLGKDLDLGKQQBGYCHJXY",b={ 19969:"DZ",19975:"WM",19988:"QJ",20048:"YL",20056:"SC",20060:"NM",20094:"QG",20127:"QJ",20167:"QC",20193:"YG",20250:"KH",20256:"ZC",20282:"SC",20285:"QJG",20291:"TD",20314:"YD",20340:"NE",20375:"TD",20389:"YJ",20391:"CZ",20415:"PB",20446:"YS",20447:"SQ",20504:"TC",20608:"KG",20854:"QJ",20857:"ZC",20911:"PF",20504:"TC",20608:"KG",20854:"QJ",20857:"ZC",20911:"PF",20985:"AW",21032:"PB",21048:"XQ",21049:"SC",21089:"YS",21119:"JC",21242:"SB",21273:"SC",21305:"YP",21306:"QO",21330:"ZC",21333:"SDC",21345:"QK",21378:"CA",21397:"SC",21414:"XS",21442:"SC",21477:"JG",21480:"TD",21484:"ZS",21494:"YX",21505:"YX",21512:"HG",21523:"XH",21537:"PB",21542:"PF",21549:"KH",21571:"E",21574:"DA",21588:"TD",21589:"O",21618:"ZC",21621:"KHA",21632:"ZJ",21654:"KG",21679:"LKG",21683:"KH",21710:"A",21719:"YH",21734:"WOE",21769:"A",21780:"WN",21804:"XH",21834:"A",21899:"ZD",21903:"RN",21908:"WO",21939:"ZC",21956:"SA",21964:"YA",21970:"TD",22003:"A",22031:"JG",22040:"XS",22060:"ZC",22066:"ZC",22079:"MH",22129:"XJ",22179:"XA",22237:"NJ",22244:"TD",22280:"JQ",22300:"YH",22313:"XW",22331:"YQ",22343:"YJ",22351:"PH",22395:"DC",22412:"TD",22484:"PB",22500:"PB",22534:"ZD",22549:"DH",22561:"PB",22612:"TD",22771:"KQ",22831:"HB",22841:"JG",22855:"QJ",22865:"XQ",23013:"ML",23081:"WM",23487:"SX",23558:"QJ",23561:"YW",23586:"YW",23614:"YW",23615:"SN",23631:"PB",23646:"ZS",23663:"ZT",23673:"YG",23762:"TD",23769:"ZS",23780:"QJ",23884:"QK",24055:"XH",24113:"DC",24162:"ZC",24191:"GA",24273:"QJ",24324:"NL",24377:"TD",24378:"QJ",24439:"PF",24554:"ZS",24683:"TD",24694:"WE",24733:"LK",24925:"TN",25094:"ZG",25100:"XQ",25103:"XH",25153:"PB",25170:"PB",25179:"KG",25203:"PB",25240:"ZS",25282:"FB",25303:"NA",25324:"KG",25341:"ZY",25373:"WZ",25375:"XJ",25384:"A",25457:"A",25528:"SD",25530:"SC",25552:"TD",25774:"ZC",25874:"ZC",26044:"YW",26080:"WM",26292:"PB",26333:"PB",26355:"ZY",26366:"CZ",26397:"ZC",26399:"QJ",26415:"ZS",26451:"SB",26526:"ZC",26552:"JG",26561:"TD",26588:"JG",26597:"CZ",26629:"ZS",26638:"YL",26646:"XQ",26653:"KG",26657:"XJ",26727:"HG",26894:"ZC",26937:"ZS",26946:"ZC",26999:"KJ",27099:"KJ",27449:"YQ",27481:"XS",27542:"ZS",27663:"ZS",27748:"TS",27784:"SC",27788:"ZD",27795:"TD",27812:"O",27850:"PB",27852:"MB",27895:"SL",27898:"PL",27973:"QJ",27981:"KH",27986:"HX",27994:"XJ",28044:"YC",28065:"WG",28177:"SM",28267:"QJ",28291:"KH",28337:"ZQ",28463:"TL",28548:"DC",28601:"TD",28689:"PB",28805:"JG",28820:"QG",28846:"PB",28952:"TD",28975:"ZC",29100:"A",29325:"QJ",29575:"SL",29602:"FB",30010:"TD",30044:"CX",30058:"PF",30091:"YSP",30111:"YN",30229:"XJ",30427:"SC",30465:"SX",30631:"YQ",30655:"QJ",30684:"QJG",30707:"SD",30729:"XH",30796:"LG",30917:"PB",31074:"NM",31085:"JZ",31109:"SC",31181:"ZC",31192:"MLB",31293:"JQ",31400:"YX",31584:"YJ",31896:"ZN",31909:"ZY",31995:"XJ",32321:"PF",32327:"ZY",32418:"HG",32420:"XQ",32421:"HG",32438:"LG",32473:"GJ",32488:"TD",32521:"QJ",32527:"PB",32562:"ZSQ",32564:"JZ",32735:"ZD",32793:"PB",33071:"PF",33098:"XL",33100:"YA",33152:"PB",33261:"CX",33324:"BP",33333:"TD",33406:"YA",33426:"WM",33432:"PB",33445:"JG",33486:"ZN",33493:"TS",33507:"QJ",33540:"QJ",33544:"ZC",33564:"XQ",33617:"YT",33632:"QJ",33636:"XH",33637:"YX",33694:"WG",33705:"PF",33728:"YW",33882:"SR",34067:"WM",34074:"YW",34121:"QJ",34255:"ZC",34259:"XL",34425:"JH",34430:"XH",34485:"KH",34503:"YS",34532:"HG",34552:"XS",34558:"YE",34593:"ZL",34660:"YQ",34892:"XH",34928:"SC",34999:"QJ",35048:"PB",35059:"SC",35098:"ZC",35203:"TQ",35265:"JX",35299:"JX",35782:"SZ",35828:"YS",35830:"E",35843:"TD",35895:"YG",35977:"MH",36158:"JG",36228:"QJ",36426:"XQ",36466:"DC",36710:"JC",36711:"ZYG",36767:"PB",36866:"SK",36951:"YW",37034:"YX",37063:"XH",37218:"ZC",37325:"ZC",38063:"PB",38079:"TD",38085:"QY",38107:"DC",38116:"TD",38123:"YD",38224:"HG",38241:"XTC",38271:"ZC",38415:"YE",38426:"KH",38461:"YD",38463:"AE",38466:"PB",38477:"XJ",38518:"YT",38551:"WK",38585:"ZC",38704:"XS",38739:"LJ",38761:"GJ",38808:"SQ",39048:"JG",39049:"XJ",39052:"HG",39076:"CZ",39271:"XT",39534:"TD",39552:"TD",39584:"PB",39647:"SB",39730:"LG",39748:"TPB",40109:"ZQ",40479:"ND",40516:"HG",40536:"HG",40583:"QJ",40765:"YQ",40784:"QJ",40840:"YK",40863:"QJG"},c=function(c){var d=c.charCodeAt(0);return d>40869||d<19968?c:b[d]?b[d]:a.charAt(d-19968)},d=function(a){for(var b,c=[""],d=0,e=a.length;d div, .contract-trigger:before { content: " "; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; } .resize-triggers > div { background: #eee; overflow: auto; } .contract-trigger:before { width: 200%; height: 200%; }',b=document.head||document.getElementsByTagName("head")[0],d=document.createElement("style");d.type="text/css",d.styleSheet?d.styleSheet.cssText=a:d.appendChild(document.createTextNode(a)),b.appendChild(d),c=!0}},v=function(a,c){b?(a.__resizeTriggers__||("static"===getComputedStyle(a).position&&(a.style.position="relative"),u(),a.__resizeLast__={},a.__resizeListeners__=[],(a.__resizeTriggers__=document.createElement("div")).className="resize-triggers",a.__resizeTriggers__.innerHTML='
',a.appendChild(a.__resizeTriggers__),f(a),a.addEventListener("scroll",h,!0),l&&a.__resizeTriggers__.addEventListener(l,function(b){b.animationName===r&&f(a)})),a.__resizeListeners__.push(c)):a.attachEvent("onresize",c)},w=function(a,c){b?(a.__resizeListeners__.splice(a.__resizeListeners__.indexOf(c),1),a.__resizeListeners__.length||(a.removeEventListener("scroll",h,!0),a.__resizeTriggers__=!a.removeChild(a.__resizeTriggers__))):a.detachEvent("onresize",c)};BI.ResizeDetector={addResizeListener:function(a,b){return v(a.element[0],b),function(){w(a.element[0],b)}},removeResizeListener:function(a,b){w(a.element[0],b)}}}(),function(){function a(a,b){return a0&&(this._items[0]=b,this._sinkDown(0)),a}},push:function(a){this._items[this._size++]=a,this._bubbleUp(this._size-1)},size:function(){return this._size},peek:function(){if(0!==this._size)return this._items[0]},_heapify:function(){for(var a=Math.floor((this._size+1)/2);a>=0;a--)this._sinkDown(a)},_bubbleUp:function(a){for(var b=this._items[a];a>0;){var c=Math.floor((a+1)/2)-1,d=this._items[c];if(this._comparator(d,b))return;this._items[c]=b,this._items[a]=d,a=c}},_sinkDown:function(a){for(var b=this._items[a];;){var c=2*(a+1)-1,d=2*(a+1),e=-1;if(cc?c:b},b=5,c={index:0,offset:0,position:0,contentHeight:0};BI.TableScrollHelper=function(a,b,c,d){this._rowOffsets=BI.PrefixIntervalTree.uniform(a,b),this._storedHeights=new Array(a);for(var e=0;e=0&&c>=a-b;){var d=this._updateRowHeight(c);this._position+=d,c--}},_updateRowHeight:function(a){if(a<0||a>=this._rowCount)return 0;var b=this._rowHeightGetter(a);if(b!==this._storedHeights[a]){var c=b-this._storedHeights[a];return this._rowOffsets.set(a,b),this._storedHeights[a]=b,this._contentHeight+=c,c}return 0},getRowPosition:function(a){return this._updateRowHeight(a),this._rowOffsets.sumUntil(a)},scrollBy:function(b){if(0===this._rowCount)return c;var d=this._rowOffsets.greatestLowerBound(this._position);d=a(d,0,Math.max(this._rowCount-1,0));var e=this._rowOffsets.sumUntil(d),f=d,g=this._position,h=this._updateRowHeight(f);0!==e&&(g+=h);var i=this._storedHeights[f]-(g-e);if(b>=0)for(;b>0&&f0&&f>=0;)if(b=0){var k=this._updateRowHeight(f);j=this._storedHeights[f],g+=k}}var l=this._contentHeight-this._viewportHeight;g=a(g,0,l),this._position=g;var m=this._rowOffsets.greatestLowerBound(g);m=a(m,0,Math.max(this._rowCount-1,0)),e=this._rowOffsets.sumUntil(m);var n=e-g;return this._updateHeightsInViewport(m,n),this._updateHeightsAboveViewport(m),{index:m,offset:n,position:this._position,contentHeight:this._contentHeight}},_getRowAtEndPosition:function(a){this._updateRowHeight(a);for(var b=a,c=this._storedHeights[b];c=0;)b--,b>=0&&(this._updateRowHeight(b),c+=this._storedHeights[b]);var d=this._rowOffsets.sumTo(a)-this._viewportHeight;return d<0&&(d=0),d},scrollTo:function(b){if(0===this._rowCount)return c;if(b<=0)return this._position=0,this._updateHeightsInViewport(0,0),{index:0,offset:0,position:this._position,contentHeight:this._contentHeight};if(b>=this._contentHeight-this._viewportHeight){var d=this._rowCount-1;b=this._getRowAtEndPosition(d)}this._position=b;var e=this._rowOffsets.greatestLowerBound(b);e=a(e,0,Math.max(this._rowCount-1,0));var f=this._rowOffsets.sumUntil(e),g=f-b;return this._updateHeightsInViewport(e,g),this._updateHeightsAboveViewport(e),{index:e,offset:g,position:this._position,contentHeight:this._contentHeight}},scrollToRow:function(b,c){b=a(b,0,Math.max(this._rowCount-1,0)),c=a(c,-this._storedHeights[b],0);var d=this._rowOffsets.sumUntil(b);return this.scrollTo(d-c)},scrollRowIntoView:function(b){b=a(b,0,Math.max(this._rowCount-1,0));var c=this._rowOffsets.sumUntil(b),d=c+this._storedHeights[b];if(c=a&&e<=b)return null;var f;a-d>e-b?(f=d,this._smallValues.pop()):(f=e,this._largeValues.pop());var g=this._valueToPositionMap[f];return delete this._valueToPositionMap[f],this._valueToPositionMap[c]=g,this._pushToHeaps(g,c),g},_pushToHeaps:function(a,b){var c={position:a,value:b};this._smallValues.push(c),this._largeValues.push(c)},_cleanHeaps:function(){this._cleanHeap(this._smallValues),this._cleanHeap(this._largeValues);var a=Math.min(this._smallValues.size(),this._largeValues.size()),b=Math.max(this._smallValues.size(),this._largeValues.size());b>10*a&&this._recreateHeaps()},_recreateHeaps:function(){for(var a=this._smallValues.size()b.value}},!function(){BI.LinkHashMap=function(){this.array=[],this.map={}},BI.LinkHashMap.prototype={constructor:BI.LinkHashMap,has:function(a){return a in this.map},add:function(a,b){"undefined"!=typeof a&&(a in this.map?this.map[a]=b:(this.array.push(a),this.map[a]=b))},remove:function(a){if(a in this.map){delete this.map[a];for(var b=0;b>5]|=128<>>9<<4)+14]=b;for(var c=1732584193,d=-271733879,e=-1732584194,f=271733878,g=0;g16&&(c=this.core_md5(c,a.length*this.chrsz));for(var d=Array(16),e=Array(16),f=0;f<16;f++)d[f]=909522486^c[f],e[f]=1549556828^c[f];var g=this.core_md5(d.concat(this.str2binl(b)),512+b.length*this.chrsz);return this.core_md5(e.concat(g),640)},a.prototype.safe_add=function(a,b){var c=(65535&a)+(65535&b),d=(a>>16)+(b>>16)+(c>>16);return d<<16|65535&c},a.prototype.bit_rol=function(a,b){return a<>>32-b},a.prototype.str2binl=function(a){for(var b=Array(),c=(1<>5]|=(a.charCodeAt(d/this.chrsz)&c)<>2]>>d%4*8+4&15)+b.charAt(a[d>>2]>>d%4*8&15);return c},a.prototype.binl2b64=function(a){for(var b="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",c="",d=0;d<4*a.length;d+=3)for(var e=(a[d>>2]>>8*(d%4)&255)<<16|(a[d+1>>2]>>8*((d+1)%4)&255)<<8|a[d+2>>2]>>8*((d+2)%4)&255,f=0;f<4;f++)c+=8*d+6*f>32*a.length?this.b64pad:b.charAt(e>>6*(3-f)&63);return c},BI.MD5=new a}(),function(){var a=function(a){return Math.floor(a/2)},b=window.Int32Array||function(a){for(var b=[],c=a-1;c>=0;--c)b[c]=0;return b},c=function(a){for(var b=1;b0;--d)this._heap[d]=this._heap[2*d]+this._heap[2*d+1]},BI.PrefixIntervalTree.prototype={constructor:BI.PrefixIntervalTree,set:function(b,c){var d=this._half+b;for(this._heap[d]=c,d=a(d);0!==d;d=a(d))this._heap[d]=this._heap[2*d]+this._heap[2*d+1]},get:function(a){var b=this._half+a;return this._heap[b]},getSize:function(){return this._size},sumUntil:function(b){if(0===b)return 0;for(var c=this._half+b-1,d=this._heap[c];1!==c;c=a(c))c%2===1&&(d+=this._heap[c-1]);return d},sumTo:function(a){return this.sumUntil(a+1)},sum:function(a,b){return this.sumUntil(b)-this.sumUntil(a)},greatestLowerBound:function(a){if(a<0)return-1;var b=1;if(this._heap[b]<=a)return this._size;for(;b=0;--d)c[d]=b;return new BI.PrefixIntervalTree(c)},BI.PrefixIntervalTree.empty=function(a){return BI.PrefixIntervalTree.uniform(a,0)}}(),!function(){BI.Queue=function(a){this.capacity=a,this.array=[]},BI.Queue.prototype={constructor:BI.Queue,contains:function(a){return this.array.contains(a)},indexOf:function(a){return this.array.contains(a)},getElementByIndex:function(a){return this.array[a]},push:function(a){this.array.push(a),this.capacity&&this.array.length>this.capacity&&this.array.shift()},pop:function(){this.array.pop()},shift:function(){this.array.shift()},unshift:function(a){this.array.unshift(a),this.capacity&&this.array.length>this.capacity&&this.array.pop()},remove:function(a){this.array.remove(a)},splice:function(){this.array.splice.apply(this.array,arguments)},slice:function(){this.array.slice.apply(this.array,arguments)},size:function(){return this.array.length},each:function(a,b){var b=b||window,a=a||null;if(null!=a&&"function"==typeof a)for(var c=0;cc?c:a},b=6,c=10;BI.TableRowBuffer=function(d,e,f,g){this._bufferSet=new BI.IntegerBufferSet,this._defaultRowHeight=e,this._viewportRowsBegin=0,this._viewportRowsEnd=0,this._maxVisibleRowCount=Math.ceil(f/e)+1,this._bufferRowsCount=a(Math.floor(this._maxVisibleRowCount/2),b,c),this._rowsCount=d,this._rowHeightGetter=g,this._rows=[],this._viewportHeight=f},BI.TableRowBuffer.prototype={constructor:BI.TableRowBuffer,getRowsWithUpdatedBuffer:function(){for(var a=2*this._bufferRowsCount,b=Math.max(this._viewportRowsBegin-this._bufferRowsCount,0);b0;)this._addRowToBuffer(b,this._viewportRowsBegin,this._viewportRowsEnd-1),b++,a--;return this._rows},getRows:function(a,b){var c=b,d=c,e=a,f=Math.min(a+this._maxVisibleRowCount,this._rowsCount);for(this._viewportRowsBegin=a;e=f&&(d=this._bufferSet.replaceFurthestValuePosition(b,c,a)),null===d?(d=this._bufferSet.getNewPositionForValue(a),this._rows[d]=a):this._rows[d]=a}}}(),function(){BI.Tree=function(){this.root=new BI.Node(BI.UUID())},BI.Tree.prototype={constructor:BI.Tree,addNode:function(a,b,c){BI.isNull(b)?this.root.addChild(a,c):BI.isNull(a)?this.root.addChild(b,c):a.addChild(b,c)},isRoot:function(a){return a===this.root},getRoot:function(){return this.root},clear:function(){this.root.clear()},initTree:function(a){var b=this;this.clear();var c=[];for(BI.each(a,function(a,d){var e=new BI.Node(d);e.set("data",d),b.addNode(e),c.push(e)});!BI.isEmpty(c);){var d=c.shift(),e=d.get("data");BI.each(e.children,function(a,e){var f=new BI.Node(e);f.set("data",e),c.push(f),b.addNode(d,f)})}},_toJSON:function(a){var b=this,c=[];return BI.each(a.getChildren(),function(a,d){c.push(b._toJSON(d))}),BI.extend({id:a.id},BI.deepClone(a.get("data")),c.length>0?{children:c}:{})},toJSON:function(a){var b=this,c=[];return BI.each((a||this.root).getChildren(),function(a,d){c.push(b._toJSON(d))}),c},_toJSONWithNode:function(a){var b=this,c=[];return BI.each(a.getChildren(),function(a,d){c.push(b._toJSONWithNode(d))}),BI.extend({id:a.id},BI.deepClone(a.get("data")),{node:a},c.length>0?{children:c}:{})},toJSONWithNode:function(a){var b=this,c=[];return BI.each((a||this.root).getChildren(),function(a,d){c.push(b._toJSONWithNode(d))}),c},search:function(a,b,c){if(!(a instanceof BI.Node))return arguments.callee.apply(this,[this.root,a,b]);var d=this,e=null;return BI.isNull(b)?null:BI.isEqual(a[c||"id"],b)?a:(BI.any(a.getChildren(),function(a,f){if(e=d.search(f,b,c),null!==e)return!0}),e)},_traverse:function(a,b){var c=[];for(c.push(a);!BI.isEmpty(c);){var d=c.shift(),e=b&&b(d);if(e===!1)break;e!==!0&&null!=d&&(c=c.concat(d.getChildren()))}},traverse:function(a){this._traverse(this.root,a)},_recursion:function(a,b,c){var d=this;return BI.every(a.getChildren(),function(a,e){var f=BI.clone(b);f.push(e.id);var g=c&&c(e,f);return g!==!1&&(g===!0||d._recursion(e,f,c))})},recursion:function(a){this._recursion(this.root,[],a)},inOrderTraverse:function(a){this._inOrderTraverse(this.root,a)},_inOrderTraverse:function(a,b){null!=a&&(this._inOrderTraverse(a.getLeft()),b&&b(a),this._inOrderTraverse(a.getRight()))},nrInOrderTraverse:function(a){for(var b=[],c=this.root;null!=c||!BI.isEmpty(b);){for(;null!=c;)b.push(c),c=c.getLeft();c=b.pop(),a&&a(c),c=c.getRight()}},preOrderTraverse:function(a){this._preOrderTraverse(this.root,a)},_preOrderTraverse:function(a,b){null!=a&&(b&&b(a),this._preOrderTraverse(a.getLeft()),this._preOrderTraverse(a.getRight()))},nrPreOrderTraverse:function(a){for(var b=[],c=this.root;null!=c||!BI.isEmpty(b);){for(;null!=c;)a&&a(c),b.push(c),c=c.getLeft();c=b.pop(),c=c.getRight()}},postOrderTraverse:function(a){this._postOrderTraverse(this.root,a)},_postOrderTraverse:function(a,b){null!=a&&(this._postOrderTraverse(a.getLeft()),this._postOrderTraverse(a.getRight()),b&&b(a))},nrPostOrderTraverse:function(a){for(var b=[],c=this.root,d=null;null!=c||!BI.isEmpty(b);){for(;null!=c;)b.push(c),c=c.getLeft();c=BI.last(b),null==c.getRight()||c.getRight()==d?(a&&a(c),c=b.pop(),d=c,c=null):c=c.getRight()}}},BI.Node=function(a){BI.isObject(a)?BI.extend(this,a):this.id=a,this.clear.apply(this,arguments)},BI.Node.prototype={constructor:BI.Node,set:function(a,b){return BI.isObject(a)?void BI.extend(this,a):void(this[a]=b)},get:function(a){return this[a]},isLeaf:function(){return BI.isEmpty(this.children)},getChildren:function(){return this.children},getChildrenLength:function(){return this.children.length},getFirstChild:function(){return BI.first(this.children)},getLastChild:function(){return BI.last(this.children)},setLeft:function(a){this.left=a},getLeft:function(){return this.left},setRight:function(a){this.right=a},getRight:function(){return this.right},setParent:function(a){this.parent=a},getParent:function(){return this.parent},getChild:function(a){return this.children[a]},getChildIndex:function(a){return BI.findIndex(this.children,function(b,c){return c.get("id")===a})},removeChild:function(a){this.removeChildByIndex(this.getChildIndex(a))},removeChildByIndex:function(a){var b=this.getChild(a-1),c=this.getChild(a+1); -null!=b&&b.setRight(c||null),null!=c&&c.setLeft(b||null),this.children.splice(a,1)},removeAllChilds:function(){this.children=[]},addChild:function(a,b){var c=null;c=BI.isUndefined(b)?this.children.length-1:b-1,a.setParent(this),c>=0&&(this.getChild(c).setRight(a),a.setLeft(this.getChild(c))),BI.isUndefined(b)?this.children.push(a):this.children.splice(b,0,a)},equals:function(a){return this===a||this.id===a.id},clear:function(){this.parent=null,this.left=null,this.right=null,this.children=[]}},BI.extend(BI.Tree,{transformToArrayFormat:function(a,b){if(!a)return[];var c=[];if(BI.isArray(a))for(var d=0,e=a.length;d=this.x&&a<=this.x+this.w&&b>=this.y&&b<=this.y+this.h)},getPosition:function(){var a=[];return a.push(this.x+this.w/2),a.push(this.y+this.h/2),a}},BI.BehaviorFactory={createBehavior:function(a,b){var c;switch(a){case"highlight":c=BI.HighlightBehavior;break;case"redmark":c=BI.RedMarkBehavior}return new c(b)}},BI.Behavior=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.Behavior.superclass._defaultConfig.apply(this,arguments),{rule:function(){return!0}})},_init:function(){BI.Behavior.superclass._init.apply(this,arguments)},doBehavior:function(){}}),BI.Layout=BI.inherit(BI.Widget,{props:function(){return{scrollable:null,scrollx:!1,scrolly:!1,items:[]}},render:function(){this._init4Margin(),this._init4Scroll()},_init4Margin:function(){this.options.top&&this.element.css("top",this.options.top),this.options.left&&this.element.css("left",this.options.left),this.options.bottom&&this.element.css("bottom",this.options.bottom),this.options.right&&this.element.css("right",this.options.right)},_init4Scroll:function(){switch(this.options.scrollable){case!0:this.element.css("overflow","auto");break;case!1:this.element.css("overflow","hidden")}this.options.scrollx&&this.element.css({"overflow-x":"auto","overflow-y":"hidden"}),this.options.scrolly&&this.element.css({"overflow-x":"hidden","overflow-y":"auto"})},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&this.element.append(b)},_getChildName:function(a){return a+""},_addElement:function(a,b){var c,d=this;return this.hasWidget(this._getChildName(a))?c=this.getWidgetByName(this._getChildName(a)):(c=BI.createWidget(b),c.on(BI.Events.DESTROY,function(){BI.each(d._children,function(a,b){b===c&&(BI.remove(d._children,b),d.removeItemAt(0|a))})}),this.addWidget(this._getChildName(a),c)),c},_getOptions:function(a){return a instanceof BI.Widget&&(a=a.options),a=BI.stripEL(a),a instanceof BI.Widget&&(a=a.options),a},_compare:function(a,b){function c(a,b,e,f){if(a===b)return 0!==a||1/a===1/b;if(null==a||null==b)return a===b;var g=Object.prototype.toString.call(a);switch(g){case"[object RegExp]":case"[object String]":return""+a==""+b;case"[object Number]":return+a!==+a?+b!==+b:0===+a?1/+a===1/b:+a===+b;case"[object Date]":case"[object Boolean]":return+a===+b}var h="[object Array]"===g;if(!h){if(BI.isFunction(a)&&BI.isFunction(b))return!0;a=d._getOptions(a),b=d._getOptions(b)}e=e||[],f=f||[];for(var i=e.length;i--;)if(e[i]===a)return f[i]===b;if(e.push(a),f.push(b),h){if(i=a.length,i!==b.length)return!1;for(;i--;)if(!c(a[i],b[i],e,f))return!1}else{var j,k=_.keys(a);if(i=k.length,_.keys(b).length!==i)return!1;for(;i--;)if(j=k[i],!_.has(b,j)||!c(a[j],b[j],e,f))return!1}return e.pop(),f.pop(),!0}var d=this;return c(a,b)},_getWrapper:function(){return this.element},_addItemAt:function(a,b){for(var c=this.options.items.length;c>a;c--)this._children[this._getChildName(c)]=this._children[this._getChildName(c-1)];delete this._children[this._getChildName(a)],this.options.items.splice(a,0,b)},_removeItemAt:function(a){for(var b=a;bthis.options.items.length)){this._addItemAt(a,b);var c=this._addElement(a,b);return a>0?this._children[this._getChildName(a-1)].element.after(c.element):c.element.prependTo(this._getWrapper()),c._mount(),c}},removeItemAt:function(a){a=BI.isArray(a)?a:[a];for(var b=[],c=[],d={},e=0,f=this.options.items.length;ethis.options.items.length-1)){var c,d=this._children[this._getChildName(a)];if(c=d.update(this._getOptions(b)))return c;var e=this._children[this._getChildName(a)];delete this._children[this._getChildName(a)],this.options.items.splice(a,1);var f=this._addElement(a,b);this.options.items.splice(a,0,b),this._children[this._getChildName(a)]=f,a>0?this._children[this._getChildName(a-1)].element.after(f.element):f.element.prependTo(this._getWrapper()),e._destroy(),f._mount()}},addItems:function(a){var b=this,c=this.options,d=document.createDocumentFragment(),e=[];BI.each(a,function(a,f){var g=b._addElement(c.items.length,f);b._children[b._getChildName(c.items.length)]=g,c.items.push(f),e.push(g),d.appendChild(g.element[0])}),this._getWrapper().append(d),BI.each(e,function(a,b){b._mount()})},prependItems:function(a){var b=this;a=a||[];for(var c=document.createDocumentFragment(),d=[],e=a.length-1;e>=0;e--){this._addItemAt(0,a[e]);var f=this._addElement(0,a[e]);b._children[b._getChildName(0)]=f,this.options.items.unshift(a[e]),d.push(f),c.appendChild(f.element[0])}this._getWrapper().prepend(c),BI.each(d,function(a,b){b._mount()})},getValue:function(){var a,b=this,c=[];return BI.each(this.options.items,function(d){if(a=b._children[b._getChildName(d)]){var e=a.getValue();e=BI.isArray(e)?e:[e],c=c.concat(e)}}),c},setValue:function(a){var b,c=this;BI.each(this.options.items,function(d){(b=c._children[c._getChildName(d)])&&b.setValue(a)})},setText:function(a){var b,c=this;BI.each(this.options.items,function(d){(b=c._children[c._getChildName(d)])&&b.setText(a)})},patchItem:function(a,b,c){if(!this._compare(a,b))return this.updateItemAt(c,b)},updateChildren:function(a,b){function c(a,b,c,d){return a=k._getOptions(a),b=k._getOptions(b),BI.isKey(a.key)?a.key===b.key:c>=0?c===d:void 0}function d(a,b){var c=k._getOptions(a),d=null==c.key?i:c.key;return t[d]=k._addElement(d,a)}function e(a,b,c,e){for(;c<=e;++c){var f=d(b[c],c);g(f,a)}}function f(a,b,c){for(;b<=c;++b){var d=k._getOptions(a[b]),e=null==d.key?b:d.key;t[e]._destroy()}}function g(a,b,c){if(a=k._getOptions(a),b=b&&k._getOptions(b),!BI.isKey(a.key))throw"key is not defined";if(b&&t[b.key]){var d;d=c?t[b.key].element.next():t[b.key].element,d.length>0?d.before(t[a.key].element):k._getWrapper().append(t[a.key].element)}else k._getWrapper().append(t[a.key].element)}var h,j,k=this,l=0,m=0,n=a.length-1,o=a[0],p=a[n],q=b.length-1,r=b[0],s=b[q],t={};for(BI.each(a,function(a,b){b=k._getOptions(b);var c=null==b.key?a:b.key;BI.isKey(c)&&(t[c]=k._children[k._getChildName(a)])});l<=n&&m<=q;)if(BI.isNull(o))o=a[++l];else if(BI.isNull(p))p=a[--n];else if(c(o,r,l,m))j=this.patchItem(o,r,l)||j,o=a[++l],r=b[++m];else if(c(p,s,n,q))j=this.patchItem(p,s,n)||j,p=a[--n],s=b[--q];else if(c(o,s))j=this.patchItem(o,s,l)||j,g(o,p,!0),o=a[++l],s=b[--q];else if(c(p,r))j=this.patchItem(p,r,n)||j,g(p,o),p=a[--n],r=b[++m];else{var u=d(r);g(u,o),r=b[++m]}return l>n?(h=BI.isNull(b[q+1])?null:b[q+1].elm,e(h,b,m,q)):m>q&&f(a,l,n),this._children={},BI.each(b,function(a,b){var c=k._getOptions(b),d=null==c.key?a:c.key;k._children[k._getChildName(a)]=t[d]}),j},update:function(a){var b=this.options,c=a.items||[],d=this.updateChildren(b.items,c);return this.options.items=c,d},stroke:function(a){var b=this;BI.each(a,function(a,c){c&&b._addElement(a,c)})},removeWidget:function(a){var b;BI.isWidget(a)?BI.each(this._children,function(c,d){d===a&&(b=c)}):b=a,b&&this._removeItemAt(0|b)},empty:function(){BI.Layout.superclass.empty.apply(this,arguments),this.options.items=[]},destroy:function(){BI.Layout.superclass.destroy.apply(this,arguments),this.options.items=[]},populate:function(a){this.options;return a=a||[],this._isMounted?void this.update({items:a}):(this.options.items=a,void this.stroke(a))},resize:function(){}}),BI.shortcut("bi.layout",BI.Layout),BI.Action=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.Action.superclass._defaultConfig.apply(this,arguments),{src:null,tar:null})},_init:function(){BI.Action.superclass._init.apply(this,arguments)},actionPerformed:function(a,b,c){},actionBack:function(a,b,c){}}),BI.ActionFactory={createAction:function(a,b){var c;switch(a){case"show":c=BI.ShowAction}return new c(b)}},BI.ShowAction=BI.inherit(BI.Action,{_defaultConfig:function(){return BI.extend(BI.ShowAction.superclass._defaultConfig.apply(this,arguments),{})},_init:function(){BI.ShowAction.superclass._init.apply(this,arguments)},actionPerformed:function(a,b,c){b=b||this.options.tar,b.setVisible(!0),c&&c()},actionBack:function(a,b,c){a=a||this.options.tar,a.setVisible(!1),c&&c()}}),BI.FloatSection=BI.inherit(BI.View,{_init:function(){BI.FloatSection.superclass._init.apply(this,arguments);var a=this,b=["_init","_defaultConfig","_vessel","_render","getName","listenEnd","local","refresh","load","change"];b=BI.makeObject(b,!0),BI.each(this.constructor.caller.caller.caller.prototype,function(c){if(!b[c]){var d=a[c];BI.isFunction(d)&&(a[c]=BI.bind(function(){return this.model._start===!0?void this._F.push({f:d,arg:arguments}):d.apply(this,arguments)},a))}})},rebuildNorth:function(a){return!0},rebuildCenter:function(a){},rebuildSouth:function(a){return!1},close:function(){this.notifyParentEnd(),this.trigger(BI.PopoverSection.EVENT_CLOSE)},end:function(){}}),BI.PopoverSection=BI.inherit(BI.Widget,{_init:function(){BI.PopoverSection.superclass._init.apply(this,arguments)},rebuildNorth:function(a){return!0},rebuildCenter:function(a){},rebuildSouth:function(a){return!1},close:function(){this.fireEvent(BI.PopoverSection.EVENT_CLOSE)},end:function(){}}),BI.PopoverSection.EVENT_CLOSE="EVENT_CLOSE",function(){function a(a){var b=""===a||null===a||void 0===a;return b}function b(a){return"Invalid Date"==a||"NaN"==a}function c(a,b){var c=b.indexOf("E"),d=b.substr(0,c),e=b.substr(c+1);if(/^[0\.-]+$/.test(a))a=BI._numberFormat(0,d)+"E"+BI._numberFormat(0,e);else{var f=a<0;f&&(a=a.substr(1));var g=(d.split(".")[0]||"").length,h=a.indexOf(".");h<0&&(h=a.length);var i=0;a=a.replace(".","");for(var j=a.length;i="1")break}var l=h-i-g,m=a.substr(i,g),n=i+g-a.length;if(n>0)for(var o=0;o-1)return a>=0?d(a+"",b.substring(0,c)):d(-a+"",b.substr(c+1));if(+a<0&&"-"!==b.charAt(0))return d(-a+"","-"+b);var g=a.split("."),h=b.split("."),i=g[0]||"",j=h[0]||"",k=g[1]||"",l=h[1]||"";if(/[%‰]$/.test(b)){var m=/[%]$/.test(b)?"00":"000";k+=m,i+=k.substr(0,m.length),i=i.replace(/^0+/gi,""),k=k.substr(m.length).replace(/0+$/gi,"")}var n=e(k,l);n.leftPlus&&(i=parseInt(i)+1+"",i=isNaN(i)?"1":i),n=n.num;var o=f(i,j);return/[0-9]/.test(o)||(o+="0"),/[0-9]/.test(n)?o+"."+n:o+n}function e(b,c){for(var d="",e=0,f=0,g=c.length;f4){k.leftPlus=!0;var l=d.match(/^[0-9]+/);if(l){var m=l[0],n=m.length,o=parseInt(m)+1+"";o.length>n?o=o.substr(1):(o=String.leftPad(o,n,"0"),k.leftPlus=!1),d=d.replace(/^[0-9]+/,o)}}return k.num=d,k}function f(b,c){for(var d="",e=b.length-1,f=-1,g=-1,h=c.length-1;h>=0;h--){var i=c.charAt(h),j=b.charAt(e);switch(i){case"0":a(j)&&(j="0"),g=-1,d=j+d,e--;break;case"#":g=h,d=j+d,e--;break;case",":if(!a(j)){var k=c.match(/,[#0]+/);k&&(f=k[0].length-1),d=","+d}break;default:d=i+d}}if(g>-1){var l=b.substr(0,e+1);d=d.substr(0,g)+l+d.substr(g)}if(f>0){var m=d.match(/[0-9]+,/);if(m){m=m[0];for(var n="",o=m.length-1-f;o>=0;o-=f)n=m.substr(o,f)+","+n;var p=m.substr(0,o+f);a(p)||(n=p+","+n)}d=d.replace(/[0-9]+,/,n)}return d}window.BI||(window.BI={}),BI.cjkEncode=function(a){if("string"!=typeof a)return a;for(var b="",c=0;c=128||91===d||93===d?"["+d.toString(16)+"]":a.charAt(c)}return b},BI.cjkEncodeDO=function(a){if(BI.isPlainObject(a)){var b={};return $.each(a,function(a,c){"string"!=typeof c&&(c=BI.jsonEncode(c)),a=BI.cjkEncode(a),b[a]=BI.cjkEncode(c)}),b}return a},BI.jsonEncode=function(a){var b=!!{}.hasOwnProperty,c={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},d=function(a){return/["\\\x00-\x1f]/.test(a)?'"'+a.replace(/([\x00-\x1f\\"])/g,function(a,b){var d=c[b];return d?d:(d=b.charCodeAt(),"\\u00"+Math.floor(d/16).toString(16)+(d%16).toString(16))})+'"':'"'+a+'"'},e=function(a){var b,c,d,e=["["],f=a.length;for(c=0;c2?Date._MN[b.getMonth()]:d<2?b.getMonth()+1:String.leftPad(b.getMonth()+1+"",2,"0");break;case"d":c=d>1?String.leftPad(b.getDate()+"",2,"0"):b.getDate();break;case"h":var f=b.getHours()%12;0===f&&(f=12),c=d>1?String.leftPad(f+"",2,"0"):f;break;case"H":c=d>1?String.leftPad(b.getHours()+"",2,"0"):b.getHours();break;case"m":c=d>1?String.leftPad(b.getMinutes()+"",2,"0"):b.getMinutes();break;case"s":c=d>1?String.leftPad(b.getSeconds()+"",2,"0"):b.getSeconds();break;case"a":c=b.getHours()<12?"am":"pm";break;case"z":c=b.getTimezone();break;default:c=a.str}return c}if(!a)return"";var d=b.length,e="";if(d>0){for(var f=b.charAt(0),g=0,h=f,i=1;i$("body").outerWidth()&&(l-=k.element.outerWidth()),m+k.element.outerHeight()>$("body").outerHeight()?(m-=k.element.outerHeight()+15,j=h.top-k.element.outerHeight()-5,!f.belowMouse&&(m=Math.min(m,j))):!f.belowMouse&&(m=Math.max(m,j)),k.element.css({left:l<0?0:l+"px",top:m<0?0:m+"px"}),k.element.hover(function(){g.remove(b),e.element.trigger("mouseleave.title"+e.getName())}),this},add:function(a,b){ -return this.has(a)?this:(this.set(a,b),this)},get:function(a){return this.tooltipsManager[a]},set:function(a,b){this.tooltipsManager[a]=b},has:function(a){return null!=this.tooltipsManager[a]},remove:function(a){return this.has(a)?(this.tooltipsManager[a].destroy(),delete this.tooltipsManager[a],this):this}}),BI.FloatBoxRouter=BI.inherit(BI.WRouter,{routes:{},_init:function(){this.store={},this.views={}},createView:function(a,b,c,d){return BI.Factory.createView(a,this.get(a),b||{},c||{},d)},open:function(a,b,c,d,e){var f=this,g=BI.isKey(b);e||(e={}),a=d.rootURL+"/"+a;var h=void 0;if(g){b+="";var i=b.split(".");BI.each(i,function(a,b){h=0===a?d.model.get(b)||{}:h[b]||{}}),h.id=e.id||i[i.length-1]}else h=b;if(BI.extend(h,e.data),this.controller||(this.controller=new BI.FloatBoxController),!this.store[a]){this.store[a]=BI.createWidget({type:"bi.float_box"},e);var j=this.createView(a,h,c,d);g&&d.model.addChild(b,j.model),j.listenTo(j.model,"destroy",function(){f.remove(a,d)}),d.on(BI.Events.UNMOUNT,function(){f.remove(a,d)}),this.store[a].populate(j),this.views[a]=j,this.controller.add(a,this.store[a]),d&&d.on("end:"+j.cid,function(){BI.nextTick(function(){f.close(a),d.listenEnd.apply(d,g?b.split("."):[b])!==!1&&d.populate()},30)}).on("change:"+j.cid,_.bind(d.notifyParent,d))}return this.controller.open(a),this.views[a].populate(h,e.force||!0),this},close:function(a){return this.controller&&this.controller.close(a),this},remove:function(a,b){return a=b.rootURL+"/"+a,this.controller&&(this.controller.remove(a),delete this.store[a],this.views[a]&&this.views[a].model.destroy(),delete this.views[a]),this}}),BI.EventList=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.EventList.superclass._defaultConfig.apply(this,arguments),{event:"click",callback:BI.emptyFn,handle:"",items:[]})},_init:function(){BI.EventList.superclass._init.apply(this,arguments),this.populate(this.options.items)},_getHandle:function(a){var b=this.options.handle?_.result(a,this.options.handle):a;return b.element||b},populate:function(a){var b=this,c=this.options.event,d=this.options.callback;BI.nextTick(function(){BI.each(a,function(a,e){var f=d(e);BI.isFunction(f)&&(f=BI.debounce(f,BI.EVENT_RESPONSE_TIME,!0)),b._getHandle(e)[c](f)})})}}),BI.ListenerList=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.ListenerList.superclass._defaultConfig.apply(this,arguments),{event:"click",callback:BI.emptyFn,items:[]})},_init:function(){BI.ListenerList.superclass._init.apply(this,arguments),this.populate(this.options.items)},_getHandle:function(a){var b=this.options.handle?_.result(a,this.options.handle):a;return b.element||b},populate:function(a){var b=this,c=this.options.event,d=this.options.callback;BI.nextTick(function(){BI.each(a,function(a,e){var f=d(e);BI.isFunction(f)&&(f=BI.debounce(f,BI.EVENT_RESPONSE_TIME,!0)),b._getHandle(e).on(c,f)})})}}),BI.OffList=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.OffList.superclass._defaultConfig.apply(this,arguments),{event:"click",items:[]})},_init:function(){BI.OffList.superclass._init.apply(this,arguments),this.populate(this.options.items)},_getHandle:function(a){var b=this.options.handle?_.result(a,this.options.handle):a;return b.element||b},populate:function(a){var b=this,c=this.options.event;BI.each(a,function(a,d){b._getHandle(d).off(c)})}}),_.extend(BI,{Events:{KEYDOWN:"_KEYDOWN",BACKSPACE:"_BACKSPACE",SPACE:"_SPACE",ENTER:"_ENTER",CONFIRM:"_CONFIRM",ERROR:"_ERROR",PAUSE:"_PAUSE",DESTROY:"_DESTROY",UNMOUNT:"_UNMOUNT",CLEAR:"_CLEAR",ADD:"_ADD",EDITING:"_EDITING",EMPTY:"_EMPTY",VIEW:"_VIEW",RESIZE:"_RESIZE",BEFOREEDIT:"_BEFOREEDIT",AFTEREDIT:"_AFTEREDIT",STARTEDIT:"_STARTEDIT",STOPEDIT:"_STOPEDIT",CHANGE:"_CHANGE",EXPAND:"_EXPAND",COLLAPSE:"_COLLAPSE",CALLBACK:"_CALLBACK",CLICK:"_CLICK",STATECHANGE:"_STATECHANGE",BEFORESTATECHANGE:"_BEFORESTATECHANGE",INIT:"_INIT",AFTERINIT:"_AFTERINIT",SCROLL:"_SCROLL",STARTLOAD:"_STARTLOAD",AFTERLOAD:"_AFTERLOAD",BS:"beforesubmit",AS:"aftersubmit",SC:"submitcomplete",SF:"submitfailure",SS:"submitsuccess",BVW:"beforeverifywrite",AVW:"afterverifywrite",AV:"afterverify",BW:"beforewrite",AW:"afterwrite",WS:"writesuccess",WF:"writefailure",BA:"beforeappend",AA:"afterappend",BD:"beforedelete",AD:"beforedelete",UC:"unloadcheck",BTOPDF:"beforetopdf",ATOPDF:"aftertopdf",BTOEXCEL:"beforetoexcel",ATOEXCEL:"aftertoexcel",BTOWORD:"beforetoword",ATOWORD:"aftertoword",BTOIMAGE:"beforetoimage",ATOIMAGE:"aftertoimage",BTOHTML:"beforetohtml",ATOHTML:"aftertohtml",BIMEXCEL:"beforeimportexcel",AIMEXCEL:"afterimportexcel",BPDFPRINT:"beforepdfprint",APDFPRINT:"afterpdfprint",BFLASHPRINT:"beforeflashprint",AFLASHPRINT:"afterflashprint",BAPPLETPRINT:"beforeappletprint",AAPPLETPRINT:"afterappletprint",BSEVERPRINT:"beforeserverprint",ASERVERPRINT:"afterserverprint",BEMAIL:"beforeemail",AEMAIL:"afteremail"}}),BI.extend(jQuery.fn,{destroy:function(){this.remove(),BI.isIE()===!0&&(this[0].outerHTML="")},__textKeywordMarked__:function(a,b,c){if(!BI.isKey(b)||(a+"").length>100)return this.text((a+"").replaceAll(" "," "));b+="",b=BI.toUpperCase(b);var d=(a||"")+"";for(c=(c||BI.makeFirstPY(a))+"",null!=c&&(c=BI.toUpperCase(c)),this.empty();;){var e=BI.toUpperCase(d).indexOf(b),f=null;if(null!=c&&(f=c.indexOf(b),f>=0&&(f%=a.length)),e>=0)this.append(d.substr(0,e)),this.append($("").addClass("bi-keyword-red-mark").text(d.substr(e,b.length).replaceAll(" "," "))),d=d.substr(e+b.length),null!=c&&(c=c.substr(e+b.length));else{if(!(null!=f&&f>=0&&Math.floor(f/a.length)===Math.floor((f+b.length-1)/a.length))){this.append(d);break}this.append(d.substr(0,f)),this.append($("").addClass("bi-keyword-red-mark").text(d.substr(f,b.length).replaceAll(" "," "))),null!=c&&(c=c.substr(f+b.length)),d=d.substr(f+b.length)}}return this},getDomHeight:function(a){var b=$(this).clone();b.appendTo($(a||"body"));var c=b.height();return b.remove(),c},hasVerticalScroll:function(){return this.height()>0&&this[0].clientWidth0&&this[0].clientHeightb.left+this.outerWidth()||a.pageYb.top+this.outerHeight())},__hasZIndexMask__:function(a){return a&&null!=this.zIndexMask[a]},__buildZIndexMask__:function(a,b){this.zIndexMask=this.zIndexMask||{},this.indexMask=this.indexMask||[];var c=BI.createWidget({type:"bi.center_adapt",cls:"bi-z-index-mask",items:b});return c.element.css({"z-index":a}),BI.createWidget({type:"bi.absolute",element:this,items:[{el:c,left:0,right:0,top:0,bottom:0}]}),this.indexMask.push(c),a&&(this.zIndexMask[a]=c),c.element},__releaseZIndexMask__:function(a){if(a&&this.zIndexMask[a])return this.indexMask.remove(this.zIndexMask[a]),void this.zIndexMask[a].destroy();this.indexMask=this.indexMask||[];var b=this.indexMask.pop();b&&b.destroy()}}),BI.extend(jQuery,{getLeftPosition:function(a,b,c){return{left:a.element.offset().left-b.element.outerWidth()-(c||0)}},getRightPosition:function(a,b,c){var d=a.element;return{left:d.offset().left+d.outerWidth()+(c||0)}},getTopPosition:function(a,b,c){return{top:a.element.offset().top-b.element.outerHeight()-(c||0)}},getBottomPosition:function(a,b,c){var d=a.element;return{top:d.offset().top+d.outerHeight()+(c||0)}},isLeftSpaceEnough:function(a,b,c){return $.getLeftPosition(a,b,c).left>=0},isRightSpaceEnough:function(a,b,c){var d=b.element.bounds(),e=$("body").bounds();return $.getRightPosition(a,b,c).left+d.width<=e.width},isTopSpaceEnough:function(a,b,c){return $.getTopPosition(a,b,c).top>=0},isBottomSpaceEnough:function(a,b,c){var d=b.element.bounds(),e=$("body").bounds();return $.getBottomPosition(a,b,c).top+d.height<=e.height},isRightSpaceLarger:function(a){var b=$("body").bounds();return b.width-a.element.offset().left-a.element.bounds().width>=a.element.offset().left},isBottomSpaceLarger:function(a){var b=$("body").bounds();return b.height-a.element.offset().top-a.element.bounds().height>=a.element.offset().top},getLeftAlignPosition:function(a,b,c){var d=b.element.bounds(),e=$("body").bounds(),f=a.element.offset().left+c;return f+d.width>e.width&&(f=e.width-d.width),f<0&&(f=0),{left:f}},getLeftAdaptPosition:function(a,b,c){return $.isLeftSpaceEnough(a,b,c)?$.getLeftPosition(a,b,c):{left:0}},getRightAlignPosition:function(a,b,c){var d=a.element.bounds(),e=b.element.bounds(),f=a.element.offset().left+d.width-e.width-c;return f<0&&(f=0),{left:f}},getRightAdaptPosition:function(a,b,c){return $.isRightSpaceEnough(a,b,c)?$.getRightPosition(a,b,c):{left:$("body").bounds().width-b.element.bounds().width}},getTopAlignPosition:function(a,b,c,d){var e,f,g=a.element.offset(),h=a.element.bounds(),i=b.element.bounds(),j=$("body").bounds();return $.isBottomSpaceEnough(a,b,-1*h.height+c)?e=g.top+c:d?(e=g.top+c,f=j.height-e):(e=j.height-i.height,ef.height?{top:0,adaptHeight:f.height-c}:{top:0}},getBottomAlignPosition:function(a,b,c,d){var e,f,g=a.element.offset(),h=a.element.bounds(),i=b.element.bounds(),j=$("body").bounds();return $.isTopSpaceEnough(a,b,-1*h.height+c)?e=g.top+h.height-i.height-c:d?(e=0,f=g.top+h.height-c):(e=0,i.height+c>j.height&&(f=j.height-c)),e<0&&(e=0),f?{top:e,adaptHeight:f}:{top:e}},getBottomAdaptPosition:function(a,b,c,d){var e=a.element.offset(),f=a.element.bounds(),g=b.element.bounds(),h=$("body").bounds();return $.isBottomSpaceEnough(a,b,c)?$.getBottomPosition(a,b,c):d?{top:e.top+f.height+c,adaptHeight:h.height-e.top-f.height-c}:g.height+c>h.height?{top:c,adaptHeight:h.height-c}:{top:h.height-g.height-c}},getCenterAdaptPosition:function(a,b){var c,d=a.element.offset(),e=a.element.bounds(),f=b.element.bounds(),g=$("body").bounds();return c=d.left+e.width/2+f.width/2>g.width?g.width-f.width:d.left+e.width/2-f.width/2,c<0&&(c=0),{left:c}},getMiddleAdaptPosition:function(a,b){var c,d=a.element.offset(),e=a.element.bounds(),f=b.element.bounds(),g=$("body").bounds();return c=d.top+e.height/2+f.height/2>g.height?g.height-f.height:d.top+e.height/2-f.height/2,c<0&&(c=0),{top:c}},getComboPositionByDirections:function(a,b,c,d,e,f){c||(c=0),d||(d=0);var g,h,i,j,k,l=[],m=[],n=!1,o=!1,p=!1;for(g=0;g-1?f===b?d?h.push(j):h[a]=j:d?i.push(j):i[a]=j:(k=g.indexOf(b),k>-1&&Math.floor(k/f.length)===Math.floor((k+b.length-1)/f.length)&&(f===b||b.length===f.length?d?h.push(j):h[a]=j:d?i.push(j):i[a]=j))}),{matched:h,finded:i}}}),BI.DOM={},BI.extend(BI.DOM,{hang:function(a){if(!BI.isEmpty(a)){var b=document.createDocumentFragment();return BI.each(a,function(a,c){c instanceof BI.Widget&&(c=c.element),c instanceof $&&c[0]&&b.appendChild(c[0])}),b}},isExist:function(a){return $("body").find(a.element).length>0},preloadImages:function(a,b){function c(){d++,d>=a.length&&b()}var d=0,e=[];BI.each(a,function(a,b){e[a]=new Image,e[a].src=b,e[a].onload=function(){c()},e[a].onerror=function(){c()}})},isColor:function(a){return a&&(this.isRGBColor(a)||this.isHexColor(a))},isRGBColor:function(a){return!!a&&"rgb"===a.substr(0,3)},isHexColor:function(a){return!!a&&("#"===a[0]&&7===a.length)},isDarkColor:function(a){if(!a||!this.isHexColor(a))return!1;var b=this.rgb2json(this.hex2rgb(a)),c=Math.round(.299*b.r+.587*b.g+.114*b.b);return c<192},getContrastColor:function(a){return a&&this.isColor(a)?this.isDarkColor(a)?"#ffffff":"#1a1a1a":""},rgb2hex:function(a){if(!a||"rgb"!=a.substr(0,3))return"";var b=a.match(/\d+(\.\d+)?/g),c=BI.parseInt(b[0]),d=BI.parseInt(b[1]),e=BI.parseInt(b[2]),f="#"+this.int2hex(c)+this.int2hex(d)+this.int2hex(e);return f},rgb2json:function(a){if(!a)return{};if(!this.isRGBColor(a))return{};var b=a.match(/\d+(\.\d+)?/g);return{r:BI.parseInt(b[0]),g:BI.parseInt(b[1]),b:BI.parseInt(b[2])}},rgba2json:function(a){if(!a)return{};var b=a.match(/\d+(\.\d+)?/g);return{r:BI.parseInt(b[0]),g:BI.parseInt(b[1]),b:BI.parseInt(b[2]),a:BI.parseFloat(b[3])}},json2rgb:function(a){return BI.isKey(a.r)&&BI.isKey(a.g)&&BI.isKey(a.b)?"rgb("+a.r+","+a.g+","+a.b+")":""},json2rgba:function(a){return BI.isKey(a.r)&&BI.isKey(a.g)&&BI.isKey(a.b)?"rgba("+a.r+","+a.g+","+a.b+","+a.a+")":""},int2hex:function(a){var b=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];return b[a>>>4]+""+b[15&a]},hex2rgb:function(a){if(!a)return"";if(!this.isHexColor(a))return a;var b,c="rgb(";return 7===a.length?b=[BI.parseInt("0x"+a.substring(1,3)),BI.parseInt("0x"+a.substring(3,5)),BI.parseInt("0x"+a.substring(5,7))]:4===a.length&&(b=[BI.parseInt("0x"+a.substring(1,2)),BI.parseInt("0x"+a.substring(2,3)),BI.parseInt("0x"+a.substring(3,4))]),c+=b[0]+",",c+=b[1]+",",c+=b[2]+")"},rgba2rgb:function(a,b){if(BI.isNull(b)&&(b=1),"rgba"!=a.substr(0,4))return"";var c=a.match(/\d+(\.\d+)?/g);if(c.length<4)return"";var d=BI.parseFloat(c[0]),e=BI.parseFloat(c[1]),f=BI.parseFloat(c[2]),g=BI.parseFloat(c[3]);return"rgb("+Math.floor(255*(b*(1-g))+d*g)+","+Math.floor(255*(b*(1-g))+e*g)+","+Math.floor(255*(b*(1-g))+f*g)+")"},getTextSizeWidth:function(a,b){var c=$("").addClass("text-width-span").appendTo($("body"));null==b&&(b=12),b+="px",c.css("font-size",b).text(a);var d=c.width();return c.remove(),d},getScrollWidth:function(){if(null==this._scrollWidth){var a=$("
").width(50).height(50).css({position:"absolute",top:"-9999px",overflow:"scroll"}).appendTo($("body"));this._scrollWidth=a[0].offsetWidth-a[0].clientWidth,a.destroy()}return this._scrollWidth}}),BI.ShowListener=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.ShowListener.superclass._defaultConfig.apply(this,arguments),{eventObj:BI.createWidget(),cardLayout:null,cardNameCreator:function(a){return a},cardCreator:BI.emptyFn,afterCardCreated:BI.emptyFn,afterCardShow:BI.emptyFn})},_init:function(){BI.ShowListener.superclass._init.apply(this,arguments);var a=this,b=this.options;b.eventObj.on(BI.Controller.EVENT_CHANGE,function(c,d,e){if(c===BI.Events.CLICK){if(d=d||b.eventObj.getValue(),d=BI.isArray(d)?d.length>1?d.toString():d[0]:d,BI.isNull(d))throw new Error("value cannot be null");var f=b.cardNameCreator(d);if(!b.cardLayout.isCardExisted(f)){var g=b.cardCreator(f);b.cardLayout.addCardByName(f,g),b.afterCardCreated(f)}b.cardLayout.showCardByName(f),BI.nextTick(function(){b.afterCardShow(f),a.fireEvent(BI.ShowListener.EVENT_CHANGE,f)})}})}}),BI.ShowListener.EVENT_CHANGE="ShowListener.EVENT_CHANGE",BI.StyleLoaderManager=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.StyleLoaderManager.superclass._defaultConfig.apply(this,arguments),{})},_init:function(){BI.StyleLoaderManager.superclass._init.apply(this,arguments),this.stylesManager={}},loadStyle:function(a,b){var c=document,d=c.createElement("style");return c.getElementsByTagName("head")[0].appendChild(d),d.setAttribute("type","text/css"),d.styleSheet?d.styleSheet.cssText=b:d.appendChild(document.createTextNode(b)),this.stylesManager[a]=d,this},get:function(a){return this.stylesManager[a]},has:function(a){return null!=this.stylesManager[a]},removeStyle:function(a){return this.has(a)?(this.stylesManager[a].parentNode.removeChild(this.stylesManager[a]),delete this.stylesManager[a],this):this}}),BI.Logic=BI.inherit(BI.OB,{createLogic:function(){return this.options||{}}}),BI.LogicFactory={Type:{Vertical:"vertical",Horizontal:"horizontal",Table:"table",HorizontalFill:"horizontal_fill"},createLogic:function(a,b){var c;switch(a){case BI.LogicFactory.Type.Vertical:c=BI.VerticalLayoutLogic;break;case BI.LogicFactory.Type.Horizontal:c=BI.HorizontalLayoutLogic;break;case BI.LogicFactory.Type.Table:c=BI.TableLayoutLogic;break;case BI.LogicFactory.Type.HorizontalFill:c=BI.HorizontalFillLayoutLogic;break;default:c=BI.Logic}return new c(b).createLogic()},createLogicTypeByDirection:function(a){switch(a){case BI.Direction.Top:case BI.Direction.Bottom:case BI.Direction.Custom:return BI.LogicFactory.Type.Vertical;case BI.Direction.Left:case BI.Direction.Right:return BI.LogicFactory.Type.Horizontal}},createLogicItemsByDirection:function(a){var b,c=Array.prototype.slice.call(arguments,1);switch(c=BI.map(c,function(a,b){return BI.isWidget(b)?{el:b,width:b.options.width,height:b.options.height}:b}),a){case BI.Direction.Bottom:b=BI.LogicFactory.Type.Vertical,c.reverse();break;case BI.Direction.Right:b=BI.LogicFactory.Type.Horizontal,c.reverse();break;case BI.Direction.Custom:c=c.slice(1)}return c}},BI.VerticalLayoutLogic=BI.inherit(BI.Logic,{_defaultConfig:function(){return BI.extend(BI.VerticalLayoutLogic.superclass._defaultConfig.apply(this,arguments),{dynamic:!1,scrollable:null,scrolly:!1,scrollx:!1,items:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},createLogic:function(){var a,b=this.options;return a=b.dynamic?"bi.vertical":"bi.vtape",{type:a,scrollable:b.scrollable,scrolly:b.scrolly,scrollx:b.scrollx,hgap:b.hgap,vgap:b.vgap,lgap:b.lgap,rgap:b.rgap,tgap:b.tgap,bgap:b.bgap,items:b.items}},_init:function(){BI.VerticalLayoutLogic.superclass._init.apply(this,arguments)}}),BI.HorizontalLayoutLogic=BI.inherit(BI.Logic,{_defaultConfig:function(){return BI.extend(BI.HorizontalLayoutLogic.superclass._defaultConfig.apply(this,arguments),{dynamic:!1,scrollable:null,scrolly:!1,scrollx:!1,items:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},createLogic:function(){var a,b=this.options;return a=b.dynamic?"bi.vertical_adapt":"bi.htape",{type:a,scrollable:b.scrollable,scrolly:b.scrolly,scrollx:b.scrollx,hgap:b.hgap,vgap:b.vgap,lgap:b.lgap,rgap:b.rgap,tgap:b.tgap,bgap:b.bgap,items:b.items}},_init:function(){BI.HorizontalLayoutLogic.superclass._init.apply(this,arguments)}}),BI.TableLayoutLogic=BI.inherit(BI.Logic,{_defaultConfig:function(){return BI.extend(BI.TableLayoutLogic.superclass._defaultConfig.apply(this,arguments),{dynamic:!1,scrollable:null,scrolly:!1,scrollx:!1,columns:0,rows:0,columnSize:[],rowSize:[],hgap:0,vgap:0,items:[]})},createLogic:function(){var a,b=this.options;return a=b.dynamic?"bi.table":"bi.window",{type:a,scrollable:b.scrollable,scrolly:b.scrolly,scrollx:b.scrollx,columns:b.columns,rows:b.rows,columnSize:b.columnSize,rowSize:b.rowSize,hgap:b.hgap,vgap:b.vgap,items:b.items}},_init:function(){BI.TableLayoutLogic.superclass._init.apply(this,arguments)}}),BI.HorizontalFillLayoutLogic=BI.inherit(BI.Logic,{_defaultConfig:function(){return BI.extend(BI.HorizontalFillLayoutLogic.superclass._defaultConfig.apply(this,arguments),{dynamic:!1,scrollable:null,scrolly:!1,scrollx:!1,items:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},createLogic:function(){var a,b=this.options,c=[];return BI.each(b.items,function(a,b){c.push(b.width||0)}),a=b.dynamic?"bi.horizontal_adapt":"bi.htape",{type:a,columnSize:c,scrollable:b.scrollable,scrolly:b.scrolly,scrollx:b.scrollx,hgap:b.hgap,vgap:b.vgap,lgap:b.lgap,rgap:b.rgap,tgap:b.tgap,bgap:b.bgap,items:b.items}},_init:function(){BI.HorizontalFillLayoutLogic.superclass._init.apply(this,arguments)}}),BI.Plugin=BI.Plugin||{},function(){var a={},b={};BI.extend(BI.Plugin,{getWidget:function(b,c){if(a[b])for(var d,e=a[b].length-1;e>=0;e--)if(d=a[b][e](c))return d;return c},registerWidget:function(b,c){a[b]||(a[b]=[]),a[b].length>0&&console.log("组件已经注册过了!"),a[b].push(c)},relieveWidget:function(b){delete a[b]},getObject:function(a,c){if(b[a])for(var d,e=0,f=b[a].length;e0&&console.log("对象已经注册过了!"),b[a].push(c)},relieveObject:function(a){delete b[a]}})}(),$.extend(Array.prototype,{contains:function(a){return this.indexOf(a)>-1},remove:function(a){var b=this.indexOf(a);return b!==-1&&this.splice(b,1),this},pushArray:function(a){for(var b=0;b=0;a--){var b=localStorage.key(a);b&&0===b.indexOf(BI.Cache._getKeyPrefix())&&localStorage.removeItem(b)}},keys:function(){for(var a=[],b=localStorage.length;b>=0;b--){var c=localStorage.key(b);if(c){var d=BI.Cache._getKeyPrefix();0===c.indexOf(d)&&(a[a.length]=c.substring(d.length))}}return a},addCookie:function(a,b,c,d){var e=a+"="+escape(b);if(d&&d>0){var f=new Date;f.setTime(f.getTime()+3600*d*1e3),e=e+"; expires="+f.toGMTString()}c&&(e=e+"; path="+c),document.cookie=e},getCookie:function(a){var b,c=new RegExp("(^| )"+a+"=([^;]*)(;|$)");return(b=document.cookie.match(c))?unescape(b[2]):null},deleteCookie:function(a,b){var c=new Date;c.setTime(c.getTime()-1e4);var d=a+"=v; expires="+c.toGMTString();b&&(d=d+"; path="+b),document.cookie=d}},Date._DN=[BI.i18nText("BI-Basic_Sunday"),BI.i18nText("BI-Basic_Monday"),BI.i18nText("BI-Basic_Tuesday"),BI.i18nText("BI-Basic_Wednesday"),BI.i18nText("BI-Basic_Thursday"),BI.i18nText("BI-Basic_Friday"),BI.i18nText("BI-Basic_Saturday"),BI.i18nText("BI-Basic_Sunday")],Date._SDN=[BI.i18nText("BI-Basic_Simple_Sunday"),BI.i18nText("BI-Basic_Simple_Monday"),BI.i18nText("BI-Basic_Simple_Tuesday"),BI.i18nText("BI-Basic_Simple_Wednesday"),BI.i18nText("BI-Basic_Simple_Thursday"),BI.i18nText("BI-Basic_Simple_Friday"),BI.i18nText("BI-Basic_Simple_Saturday"),BI.i18nText("BI-Basic_Simple_Sunday")],Date._FD=1,Date._MN=[BI.i18nText("BI-Basic_January"),BI.i18nText("BI-Basic_February"),BI.i18nText("BI-Basic_March"),BI.i18nText("BI-Basic_April"),BI.i18nText("BI-Basic_May"),BI.i18nText("BI-Basic_June"),BI.i18nText("BI-Basic_July"),BI.i18nText("BI-Basic_August"),BI.i18nText("BI-Basic_September"),BI.i18nText("BI-Basic_October"),BI.i18nText("BI-Basic_November"),BI.i18nText("BI-Basic_December")],Date._SMN=[0,1,2,3,4,5,6,7,8,9,10,11],Date._QN=["",BI.i18nText("BI-Quarter_1"),BI.i18nText("BI-Quarter_2"),BI.i18nText("BI-Quarter_3"),BI.i18nText("BI-Quarter_4")],Date._MD=[31,28,31,30,31,30,31,31,30,31,30,31],Date.SECOND=1e3,Date.MINUTE=60*Date.SECOND,Date.HOUR=60*Date.MINUTE,Date.DAY=24*Date.HOUR,Date.WEEK=7*Date.DAY,Date.prototype.getTimezone=function(){return this.toString().replace(/^.* (?:\((.*)\)|([A-Z]{1,4})(?:[\-+][0-9]{4})?(?: -?\d+)?)$/,"$1$2").replace(/[^A-Z]/g,"")},Date.prototype.getMonthDays=function(a){var b=this.getFullYear();return"undefined"==typeof a&&(a=this.getMonth()),0!=b%4||0==b%100&&0!=b%400||1!=a?Date._MD[a]:29},Date.prototype.getLastDateOfMonth=function(){return new Date(this.getFullYear(),this.getMonth(),this.getMonthDays())},Date.prototype.getDayOfYear=function(){var a=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0),b=new Date(this.getFullYear(),0,0,0,0,0),c=a-b;return Math.floor(c/Date.DAY)},Date.prototype.getWeekNumber=function(){var a=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0),b=a.getDay();if(0===this.getMonth()&&this.getDate()<=b)return 1;a.setDate(this.getDate()-b);var c=a.valueOf();a.setMonth(0),a.setDate(1);var d=Math.floor((c-a.valueOf())/6048e5)+1;return a.getDay()>0&&d++,d},Date.prototype.getOffsetDate=function(a){return new Date(this.getTime()+864e5*a)},Date.prototype.getAfterMulQuarter=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()+3*a),b},Date.prototype.getBeforeMulQuarter=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()-3*a),b},Date.prototype.getQuarterStartMonth=function(){var a=0,b=this.getMonth();return b<3&&(a=0),28&&(a=9),a},Date.prototype.getQuarterStartDate=function(){return new Date(this.getFullYear(),this.getQuarterStartMonth(),1)},Date.prototype.getQuarterEndDate=function(){var a=this.getQuarterStartMonth()+2;return new Date(this.getFullYear(),a,this.getMonthDays(a))},Date.prototype.getAfterMultiMonth=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()+a|0),b},Date.prototype.getBeforeMultiMonth=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()-a|0),b},Date.prototype.getAfterMulQuarter=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()+3*a),b},Date.prototype.getBeforeMulQuarter=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()-3*a),b},Date.prototype.getQuarterStartMonth=function(){var a=0,b=this.getMonth();return b<3&&(a=0),28&&(a=9),a},Date.prototype.getOffsetMonth=function(a){var b=new Date(this.getTime()),c=b.getDate(),d=new Date(b.getFullYear(),b.getMonth()+parseInt(a),1).getMonthDays();return c>d&&(c=d),b.setDate(c),b.setMonth(b.getMonth()+parseInt(a)),b},Date.prototype.getWeekStartDate=function(){var a=this.getDay();return this.getOffsetDate(-a)},Date.prototype.getWeekEndDate=function(){var a=this.getDay(),b=0===a?6:6-a;return this.getOffsetDate(b)},Date.prototype.getQuarterStartDate=function(){return new Date(this.getFullYear(),this.getQuarterStartMonth(),1)},Date.prototype.getQuarterEndDate=function(){var a=this.getQuarterStartMonth()+2;return new Date(this.getFullYear(),a,this.getMonthDays(a))},Date.prototype.getAfterMultiMonth=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()+a|0),b},Date.prototype.getBeforeMultiMonth=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()-a|0),b},Date.prototype.equalsTo=function(a){return this.getFullYear()==a.getFullYear()&&this.getMonth()==a.getMonth()&&this.getDate()==a.getDate()&&this.getHours()==a.getHours()&&this.getMinutes()==a.getMinutes()&&this.getSeconds()==a.getSeconds()},Date.prototype.setDateOnly=function(a){var b=new Date(a);this.setDate(1),this.setFullYear(b.getFullYear()),this.setMonth(b.getMonth()),this.setDate(b.getDate())},Date.prototype.print=function(a){var b=this.getMonth(),c=this.getDate(),d=this.getFullYear(),e=this.getWeekNumber(),f=this.getDay(),g={},h=this.getHours(),i=h>=12,j=i?h-12:h,k=this.getDayOfYear();0==j&&(j=12);var l=this.getMinutes(),m=this.getSeconds();g["%a"]=Date._SDN[f],g["%A"]=Date._DN[f],g["%b"]=Date._SMN[b],g["%B"]=Date._MN[b],g["%C"]=1+Math.floor(d/100),g["%d"]=c<10?"0"+c:c,g["%e"]=c,g["%H"]=h<10?"0"+h:h,g["%I"]=j<10?"0"+j:j,g["%j"]=k<100?k<10?"00"+k:"0"+k:k,g["%k"]=h,g["%l"]=j,g["%X"]=b<9?"0"+(1+b):1+b,g["%x"]=b+1,g["%M"]=l<10?"0"+l:l,g["%n"]="\n",g["%p"]=i?"PM":"AM",g["%P"]=i?"pm":"am",g["%s"]=Math.floor(this.getTime()/1e3),g["%S"]=m<10?"0"+m:m,g["%t"]="\t",g["%U"]=g["%W"]=g["%V"]=e<10?"0"+e:e,g["%u"]=f+1,g["%w"]=f,g["%y"]=(""+d).substr(2,2),g["%Y"]=d,g["%%"]="%";var n=/%./g;if(!BI.isKhtml())return a.replace(n,function(a){return g[a]||a});for(var o=a.match(n),p=0;pe[0]?f=["y",1]:a>=d[0]&&a<=e[0]&&(a==d[0]&&(be[1]?f=["m",1]:b==e[1]&&c>e[2]&&(f=["d",1]))),f},Date.checkLegal=function(a){var b=a.match(/\d+/g),c=0|b[0],d=0|b[1],e=0|b[2];if(b.length<=1)return!0;if(b.length<=2)return d>=1&&d<=12;var f=Date._MD.slice(0);return f[1]=Date.isLeap(c)?29:28,d>=1&&d<=12&&e<=f[d-1]},Date.parseDateTime=function(a,b){var c=new Date,d=0,e=0,f=1,g=a.split(/\W+/);if("%y%x"==b.toLowerCase()||"%y%x%d"==b.toLowerCase()){var h=4,i=2;g[0]=a.substring(0,h),g[1]=a.substring(h,h+i),g[2]=a.substring(h+i,h+2*i)}var j=b.match(/%./g),k=0,l=0,m=0,n=0,o=0;for(k=0;k29?1900:2e3);break;case"%b":case"%B":for(l=0;l<12;++l)if(Date._MN[l].substr(0,g[k].length).toLowerCase()==g[k].toLowerCase()){e=l;break}break;case"%H":case"%I":case"%k":case"%l":m=parseInt(g[k],10);break;case"%P":case"%p":/pm/i.test(g[k])&&m<12?m+=12:/am/i.test(g[k])&&m>=12&&(m-=12);break;case"%M":n=parseInt(g[k],10);case"%S":o=parseInt(g[k],10)}if(isNaN(d)&&(d=c.getFullYear()),isNaN(e)&&(e=c.getMonth()),isNaN(f)&&(f=c.getDate()),isNaN(m)&&(m=c.getHours()),isNaN(n)&&(n=c.getMinutes()), -isNaN(o)&&(o=c.getSeconds()),0!=d)return new Date(d,e,f,m,n,o);for(d=0,e=-1,f=0,k=0;k31&&0==d?(d=parseInt(g[k],10),d<100&&(d+=d>29?1900:2e3)):0==f&&(f=g[k]);return 0==d&&(d=c.getFullYear()),e!=-1&&0!=f?new Date(d,e,f,m,n,o):c},$.extend($.Event.prototype,{stopEvent:function(){this.stopPropagation(),this.preventDefault()}}),Function.prototype.before=function(a){var b=this;return function(){return a.apply(this,arguments)!==!1&&b.apply(this,arguments)}},Function.prototype.after=function(a){var b=this;return function(){var c=b.apply(this,arguments);return c!==!1&&(a.apply(this,arguments),c)}},jQuery&&!function(a){a.fn.insets||(a.fn.insets=function(){var a=this.padding(),b=this.border();return{top:a.top,bottom:a.bottom+b.bottom+b.top,left:a.left,right:a.right+b.right+b.left}}),a.fn.bounds||(a.fn.bounds=function(a){var b={hasIgnoredBounds:!0};return a?(isNaN(a.x)||(b.left=a.x),isNaN(a.y)||(b.top=a.y),null!=a.width&&(b.width=a.width-(this.outerWidth(!0)-this.width()),b.width=b.width>=0?b.width:a.width),null!=a.height&&(b.height=a.height-(this.outerHeight(!0)-this.height()),b.height=b.height>=0?b.height:a.height),this.css(b),this):(b=this.position(),{x:b.left,y:b.top,width:this.outerWidth(),height:this.outerHeight()})})}(jQuery),Number.prototype.toFixed&&"0.000"===8e-5.toFixed(3)&&"0"!==.9.toFixed(0)&&"1.25"===1.255.toFixed(2)&&"1000000000000000128"===(0xde0b6b3a7640080).toFixed(0)||!function(){function a(a,b){for(var c=-1;++c=0;)c+=h[b],h[b]=Math.floor(c/a),c=c%a*f}function c(){for(var a=g,b="";--a>=0;)if(""!==b||0===a||0!==h[a]){var c=String(h[a]);""===b?b=c:b+="0000000".slice(0,7-c.length)+c}return b}function d(a,b,c){return 0===b?c:b%2===1?d(a,b-1,c*a):d(a*a,b/2,c)}function e(a){for(var b=0;a>=4096;)b+=12,a/=4096;for(;a>=2;)b+=1,a/=2;return b}var f,g,h;f=1e7,g=6,h=[0,0,0,0,0,0],Number.prototype.toFixed=function(f){var g,h,i,j,k,l,m,n;if(g=Number(f),g=g!==g?0:Math.floor(g),g<0||g>20)throw new RangeError("Number.toFixed called with invalid number of decimals");if(h=Number(this),h!==h)return"NaN";if(h<=-1e21||h>1e21)return String(h);if(i="",h<0&&(i="-",h=-h),j="0",h>1e-21)if(k=e(h*d(2,69,1))-69,l=k<0?h*d(2,-k,1):h/d(2,k,1),l*=4503599627370496,k=52-k,k>0){for(a(0,l),m=g;m>=7;)a(1e7,0),m-=7;for(a(d(10,m,1),0),m=k-1;m>=23;)b(1<<23),m-=23;b(1<0?(n=j.length,j=n<=g?i+"0.0000000000000000000".slice(0,g-n+2)+j:i+j.slice(0,n-g)+"."+j.slice(n-g)):j=i+j,j}}(),Number.prototype.add=function(a){return accAdd(a,this)},Number.prototype.sub=function(a){return accSub(this,a)},Number.prototype.mul=function(a){return accMul(a,this)},Number.prototype.div=function(a){return accDiv(this,a)},$.extend(String.prototype,{startWith:function(a){return!(null==a||""==a||0===this.length||a.length>this.length)&&this.substr(0,a.length)==a},endWith:function(a){return!(null==a||""==a||0===this.length||a.length>this.length)&&this.substring(this.length-a.length)==a},getQuery:function(a){var b=new RegExp("(^|&)"+a+"=([^&]*)(&|$)"),c=this.substr(this.indexOf("?")+1).match(b);return c?unescape(c[2]):null},appendQuery:function(a){if(!a)return this;var b=this;return b.indexOf("?")===-1&&(b+="?"),b.endWith("?")!==!1||(b+="&"),$.each(a,function(a,c){"string"==typeof a&&(b+=a+"="+c+"&")}),b=b.substr(0,b.length-1)},replaceAll:function(a,b){return this.replace(new RegExp(a,"gm"),b)},perfectStart:function(a){return this.startWith(a)?this:a+this},allIndexOf:function(a){if("string"!=typeof a)return[];for(var b=this,c=[],d=0;b.length>0;){var e=b.indexOf(a);if(e===-1)break;c.push(d+e),b=b.substring(e+a.length,b.length),d+=e+a.length}return c}}),$.extend(String,{escape:function(a){return a.replace(/('|\\)/g,"\\$1")},leftPad:function(a,b,c){var d=String(a);for(c||(c=" ");d.length").attr({cellspacing:0,cellpadding:0}).css({position:"relative",width:"100%",height:"100%","white-space":"nowrap","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.$tr=$("
"),this.$tr.appendTo(this.$table),this.populate(this.options.items)},_addElement:function(a,b){var c,d=this.options,e=d.columnSize[a]<=1?100*d.columnSize[a]+"%":d.columnSize[a];if(this.hasWidget(this._getChildName(a)))c=this.getWidgetByName(this._getChildName(a)),c.element.attr("width",e);else{var f=BI.createWidget(b);f.element.css({position:"relative",top:"0",left:"0",margin:"0px auto"}),c=BI.createWidget({type:"bi.default",tagName:"td",attributes:{width:e},items:[f]}),this.addWidget(this._getChildName(a),c)}return c.element.css({"max-width":d.columnSize[a]}),0===a&&c.element.addClass("first-element"),c.element.css({position:"relative",height:"100%","vertical-align":"middle",margin:"0",padding:"0",border:"none"}),d.hgap+d.lgap+(b.lgap||0)!==0&&f.element.css({"margin-left":d.hgap+d.lgap+(b.lgap||0)+"px"}),d.hgap+d.rgap+(b.rgap||0)!==0&&f.element.css({"margin-right":d.hgap+d.rgap+(b.rgap||0)+"px"}),d.vgap+d.tgap+(b.tgap||0)!==0&&f.element.css({"margin-top":d.vgap+d.tgap+(b.tgap||0)+"px"}),d.vgap+d.bgap+(b.bgap||0)!==0&&f.element.css({"margin-bottom":d.vgap+d.bgap+(b.bgap||0)+"px"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$tr.append(b),this.element.append(this.$table))},resize:function(){},_getWrapper:function(){return this.$tr},populate:function(a){BI.CenterAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.center_adapt",BI.CenterAdaptLayout),BI.HorizontalAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.HorizontalAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-horizontal-adapt-layout",verticalAlign:BI.VerticalAlign.Middle,columnSize:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.HorizontalAdaptLayout.superclass.render.apply(this,arguments),this.$table=$("
").attr({cellspacing:0,cellpadding:0}).css({position:"relative",width:"100%","white-space":"nowrap","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.$tr=$(""),this.$tr.appendTo(this.$table),this.populate(this.options.items)},_addElement:function(a,b){var c,d=this.options,e=d.columnSize[a]<=1?100*d.columnSize[a]+"%":d.columnSize[a];if(this.hasWidget(this._getChildName(a)))c=this.getWidgetByName(this._getChildName(a)),c.element.attr("width",e);else{var f=BI.createWidget(b);f.element.css({position:"relative",top:"0",left:"0",margin:"0px auto"}),c=BI.createWidget({type:"bi.default",tagName:"td",attributes:{width:e},items:[f]}),this.addWidget(this._getChildName(a),c)}return c.element.css({"max-width":d.columnSize[a]+"px"}),0===a&&c.element.addClass("first-element"),c.element.css({position:"relative","vertical-align":d.verticalAlign,margin:"0",padding:"0",border:"none"}),d.hgap+d.lgap+(b.lgap||0)!==0&&f.element.css({"margin-left":d.hgap+d.lgap+(b.lgap||0)+"px"}),d.hgap+d.rgap+(b.rgap||0)!==0&&f.element.css({"margin-right":d.hgap+d.rgap+(b.rgap||0)+"px"}),d.vgap+d.tgap+(b.tgap||0)!==0&&f.element.css({"margin-top":d.vgap+d.tgap+(b.tgap||0)+"px"}),d.vgap+d.bgap+(b.bgap||0)!==0&&f.element.css({"margin-bottom":d.vgap+d.bgap+(b.bgap||0)+"px"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$tr.append(b),this.element.append(this.$table))},resize:function(){},_getWrapper:function(){return this.$tr},populate:function(a){BI.HorizontalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal_adapt",BI.HorizontalAdaptLayout),BI.LeftRightVerticalAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.LeftRightVerticalAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-left-right-vertical-adapt-layout",items:{},llgap:0,lrgap:0,lhgap:0,rlgap:0,rrgap:0,rhgap:0})},render:function(){BI.LeftRightVerticalAdaptLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},stroke:function(a){var b=this.options;if("left"in a){var c=BI.createWidget({type:"bi.vertical_adapt",items:a.left,hgap:b.lhgap,lgap:b.llgap,rgap:b.lrgap});c.element.css("height","100%"),BI.createWidget({type:"bi.left",element:this,items:[c]})}if("right"in a){var d=BI.createWidget({type:"bi.vertical_adapt",items:a.right,hgap:b.rhgap,lgap:b.rlgap,rgap:b.rrgap});d.element.css("height","100%"),BI.createWidget({type:"bi.right",element:this,items:[d]})}},populate:function(a){BI.LeftRightVerticalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.left_right_vertical_adapt",BI.LeftRightVerticalAdaptLayout),BI.LeftVerticalAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.LeftRightVerticalAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-left-vertical-adapt-layout",items:[],lgap:0,rgap:0,hgap:0})},render:function(){BI.LeftVerticalAdaptLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},stroke:function(a){var b=this.options,c=BI.createWidget({type:"bi.vertical_adapt",items:a,lgap:b.lgap,hgap:b.hgap,rgap:b.rgap});c.element.css("height","100%"),BI.createWidget({type:"bi.left",element:this,items:[c]})},populate:function(a){BI.LeftVerticalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.left_vertical_adapt",BI.LeftVerticalAdaptLayout),BI.RightVerticalAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.RightVerticalAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-right-vertical-adapt-layout",items:[],lgap:0,rgap:0,hgap:0})},render:function(){BI.RightVerticalAdaptLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},stroke:function(a){var b=this.options,c=BI.createWidget({type:"bi.vertical_adapt",items:a,lgap:b.lgap,hgap:b.hgap,rgap:b.rgap});c.element.css("height","100%"),BI.createWidget({type:"bi.right",element:this,items:[c]})},populate:function(a){BI.RightVerticalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.right_vertical_adapt",BI.RightVerticalAdaptLayout),BI.VerticalAdaptLayout=BI.inherit(BI.Layout,{props:{baseCls:"bi-vertical-adapt-layout",columnSize:[],horizontalAlign:BI.HorizontalAlign.Left,hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0},render:function(){BI.VerticalAdaptLayout.superclass.render.apply(this,arguments);var a=this.options;this.$table=$("
").attr({cellspacing:0,cellpadding:0}).css({position:"relative",width:a.horizontalAlign===BI.HorizontalAlign.Stretch?"100%":"auto",height:"100%","white-space":"nowrap","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.$tr=$(""),this.$tr.appendTo(this.$table),this.populate(this.options.items)},_addElement:function(a,b){var c,d=this.options,e=d.columnSize[a]<=1?100*d.columnSize[a]+"%":d.columnSize[a];if(this.hasWidget(this._getChildName(a)))c=this.getWidgetByName(this._getChildName(a)),c.element.attr("width",e);else{var f=BI.createWidget(b);f.element.css({position:"relative",top:"0",left:"0",margin:"0px auto"}),c=BI.createWidget({type:"bi.default",tagName:"td",attributes:{width:e},items:[f]}),this.addWidget(this._getChildName(a),c)}return 0===a&&c.element.addClass("first-element"),c.element.css({position:"relative",height:"100%","vertical-align":"middle",margin:"0",padding:"0",border:"none"}),d.hgap+d.lgap+(b.lgap||0)!==0&&f.element.css({"margin-left":d.hgap+d.lgap+(b.lgap||0)+"px"}),d.hgap+d.rgap+(b.rgap||0)!==0&&f.element.css({"margin-right":d.hgap+d.rgap+(b.rgap||0)+"px"}),d.vgap+d.tgap+(b.tgap||0)!==0&&f.element.css({"margin-top":d.vgap+d.tgap+(b.tgap||0)+"px"}),d.vgap+d.bgap+(b.bgap||0)!==0&&f.element.css({"margin-bottom":d.vgap+d.bgap+(b.bgap||0)+"px"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$tr.append(b),this.element.append(this.$table))},_getWrapper:function(){return this.$tr},resize:function(){},populate:function(a){BI.VerticalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.vertical_adapt",BI.VerticalAdaptLayout),BI.HorizontalAutoLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.HorizontalAutoLayout.superclass.props.apply(this,arguments),{baseCls:"bi-horizon-auto-layout",hgap:0,lgap:0,rgap:0,vgap:0,tgap:0,bgap:0})},render:function(){BI.HorizontalAutoLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.HorizontalAutoLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative",margin:"0px auto"}),c.hgap+c.lgap+(b.lgap||0)!==0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)!==0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)!==0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)!==0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},resize:function(){},populate:function(a){BI.HorizontalAutoLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal_auto",BI.HorizontalAutoLayout),BI.FloatCenterAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FloatCenterAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-float-center-adapt-layout",items:[],hgap:0,vgap:0,tgap:0,bgap:0,lgap:0,rgap:0})},render:function(){BI.FloatCenterAdaptLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},mounted:function(){var a=this,b=this.left.element.outerWidth(),c=this.left.element.outerHeight();this.left.element.width(b).height(c).css("float","none"),BI.remove(this._children,function(b,c){c===a.container&&delete a._children[b]}),BI.createWidget({type:"bi.center_adapt",element:this,items:[this.left]})},stroke:function(a){var b=this.options;this.left=BI.createWidget({type:"bi.vertical",items:a,hgap:b.hgap,vgap:b.vgap,tgap:b.tgap,bgap:b.bgap,lgap:b.lgap,rgap:b.rgap}),this.container=BI.createWidget({type:"bi.left",element:this,items:[this.left]})},populate:function(a){BI.FloatCenterAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.float_center_adapt",BI.FloatCenterAdaptLayout),BI.FloatHorizontalLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FloatHorizontalLayout.superclass.props.apply(this,arguments),{baseCls:"bi-float-horizontal-adapt-layout",items:[],hgap:0,vgap:0,tgap:0,bgap:0,lgap:0,rgap:0})},render:function(){BI.FloatHorizontalLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},mounted:function(){var a=this,b=this.left.element.width(),c=this.left.element.height();this.left.element.width(b).height(c).css("float","none"),BI.remove(this._children,function(b,c){c===a.container&&delete a._children[b]}),BI.createWidget({type:"bi.horizontal_auto",element:this,items:[this.left]})},_addElement:function(a,b){var c=this.options;return this.left=BI.createWidget({type:"bi.vertical",items:[b],hgap:c.hgap,vgap:c.vgap,tgap:c.tgap,bgap:c.bgap,lgap:c.lgap,rgap:c.rgap}),this.container=BI.createWidget({type:"bi.left",element:this,items:[this.left]}),this.left},populate:function(a){BI.HorizontalAutoLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal_float",BI.FloatHorizontalLayout),BI.FlexCenterLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexCenterLayout.superclass.props.apply(this,arguments),{baseCls:"bi-flex-center-layout"})},render:function(){BI.FlexCenterLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=(this.options,BI.FlexCenterLayout.superclass._addElement.apply(this,arguments));return c.element.css({position:"relative","flex-shrink":"0"}),c},resize:function(){},populate:function(a){BI.FlexCenterLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_center",BI.FlexCenterLayout),BI.FlexHorizontalLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexHorizontalLayout.superclass.props.apply(this,arguments),{baseCls:"bi-flex-horizontal-layout",verticalAlign:BI.VerticalAlign.Top,columnSize:[],scrollx:!0,hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FlexHorizontalLayout.superclass.render.apply(this,arguments);var a=this.options;this.element.addClass(a.verticalAlign),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FlexHorizontalLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative","flex-shrink":"0"}),c.hgap+c.lgap+(b.lgap||0)>0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)>0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)>0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},resize:function(){},populate:function(a){BI.FlexHorizontalLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_horizontal",BI.FlexHorizontalLayout),BI.FlexVerticalCenter=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexVerticalCenter.superclass.props.apply(this,arguments),{baseCls:"bi-flex-vertical-center",horizontalAlign:BI.HorizontalAlign.Left,columnSize:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FlexVerticalCenter.superclass.render.apply(this,arguments);var a=this.options;this.element.addClass(a.horizontalAlign),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FlexVerticalCenter.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative","flex-shrink":"0"}),c.hgap+c.lgap+(b.lgap||0)>0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)>0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)>0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},resize:function(){},populate:function(a){BI.FlexVerticalCenter.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_vertical_center",BI.FlexVerticalCenter),BI.FlexCenterLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexCenterLayout.superclass.props.apply(this,arguments),{baseCls:"bi-flex-wrapper-center-layout clearfix"})},render:function(){BI.FlexCenterLayout.superclass.render.apply(this,arguments),this.$wrapper=$("
").addClass("flex-wrapper-center-layout-wrapper"),this.populate(this.options.items)},_addElement:function(a,b){var c=(this.options,BI.FlexCenterLayout.superclass._addElement.apply(this,arguments));return c.element.css({position:"relative"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$wrapper.append(b),this.element.append(this.$wrapper))},_getWrapper:function(){return this.$wrapper},resize:function(){},populate:function(a){BI.FlexCenterLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_wrapper_center",BI.FlexCenterLayout),BI.FlexHorizontalLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexHorizontalLayout.superclass.props.apply(this,arguments),{baseCls:"bi-flex-wrapper-horizontal-layout clearfix",verticalAlign:BI.VerticalAlign.Middle,columnSize:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FlexHorizontalLayout.superclass.render.apply(this,arguments);var a=this.options;this.$wrapper=$("
").addClass("flex-wrapper-horizontal-layout-wrapper "+a.verticalAlign),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FlexHorizontalLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative"}),c.hgap+c.lgap+(b.lgap||0)>0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)>0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)>0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$wrapper.append(b),this.element.append(this.$wrapper))},_getWrapper:function(){return this.$wrapper},resize:function(){},populate:function(a){BI.FlexHorizontalLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_wrapper_horizontal",BI.FlexHorizontalLayout),BI.FlexVerticalCenter=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexVerticalCenter.superclass.props.apply(this,arguments),{baseCls:"bi-flex-wrapper-vertical-center clearfix",horizontalAlign:BI.HorizontalAlign.Middle,columnSize:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FlexVerticalCenter.superclass.render.apply(this,arguments);var a=this.options;this.$wrapper=$("
").addClass("flex-wrapper-vertical-center-wrapper "+a.horizontalAlign),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FlexVerticalCenter.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative"}),c.hgap+c.lgap+(b.lgap||0)>0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)>0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)>0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$wrapper.append(b),this.element.append(this.$wrapper))},_getWrapper:function(){return this.$wrapper},resize:function(){},populate:function(a){BI.FlexVerticalCenter.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_wrapper_vertical_center",BI.FlexVerticalCenter),BI.AbsoluteLayout=BI.inherit(BI.Layout,{props:function(){ -return BI.extend(BI.AbsoluteLayout.superclass.props.apply(this,arguments),{baseCls:"bi-absolute-layout",hgap:null,vgap:null,lgap:null,rgap:null,tgap:null,bgap:null})},render:function(){BI.AbsoluteLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.AbsoluteLayout.superclass._addElement.apply(this,arguments),e=0,f=0,g=0,h=0;return BI.isNotNull(b.left)&&(d.element.css({left:b.left}),e+=b.left),BI.isNotNull(b.right)&&(d.element.css({right:b.right}),f+=b.right),BI.isNotNull(b.top)&&(d.element.css({top:b.top}),g+=b.top),BI.isNotNull(b.bottom)&&(d.element.css({bottom:b.bottom}),h+=b.bottom),BI.isNotNull(c.hgap)&&(e+=c.hgap,d.element.css({left:e}),f+=c.hgap,d.element.css({right:f})),BI.isNotNull(c.vgap)&&(g+=c.vgap,d.element.css({top:g}),h+=c.vgap,d.element.css({bottom:h})),BI.isNotNull(c.lgap)&&(e+=c.lgap,d.element.css({left:e})),BI.isNotNull(c.rgap)&&(f+=c.rgap,d.element.css({right:f})),BI.isNotNull(c.tgap)&&(g+=c.tgap,d.element.css({top:g})),BI.isNotNull(c.bgap)&&(h+=c.bgap,d.element.css({bottom:h})),BI.isNotNull(b.width)&&d.element.css({width:b.width}),BI.isNotNull(b.height)&&d.element.css({height:b.height}),d.element.css({position:"absolute"}),d},resize:function(){this.stroke(this.options.items)},stroke:function(a){this.options.items=a||[];var b=this;BI.each(a,function(a,c){if(c){if(!BI.isWidget(c)&&!c.el)throw new Error("el must be exist");b._addElement(a,c)}})},populate:function(a){BI.AbsoluteLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.absolute",BI.AbsoluteLayout),BI.AdaptiveLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.AdaptiveLayout.superclass.props.apply(this,arguments),{baseCls:"bi-adaptive-layout",hgap:null,vgap:null,lgap:null,rgap:null,tgap:null,bgap:null})},render:function(){BI.AdaptiveLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.AdaptiveLayout.superclass._addElement.apply(this,arguments);d.element.css({position:"relative"});var e=0,f=0,g=0,h=0;return BI.isNotNull(b.left)&&d.element.css({"margin-left":b.left}),BI.isNotNull(b.right)&&d.element.css({"margin-right":b.right}),BI.isNotNull(b.top)&&d.element.css({"margin-top":b.top}),BI.isNotNull(b.bottom)&&d.element.css({"margin-bottom":b.bottom}),BI.isNotNull(c.hgap)&&(e+=c.hgap,d.element.css({left:e}),f+=c.hgap,d.element.css({right:f})),BI.isNotNull(c.vgap)&&(g+=c.vgap,d.element.css({top:g}),h+=c.vgap,d.element.css({bottom:h})),BI.isNotNull(c.lgap)&&(e+=c.lgap,d.element.css({left:e})),BI.isNotNull(c.rgap)&&(f+=c.rgap,d.element.css({right:f})),BI.isNotNull(c.tgap)&&(g+=c.tgap,d.element.css({top:g})),BI.isNotNull(c.bgap)&&(h+=c.bgap,d.element.css({bottom:h})),BI.isNotNull(b.width)&&d.element.css({width:b.width}),BI.isNotNull(b.height)&&d.element.css({height:b.height}),d},resize:function(){this.stroke(this.options.items)},populate:function(a){BI.AbsoluteLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.adaptive",BI.AdaptiveLayout),BI.BorderLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.BorderLayout.superclass.props.apply(this,arguments),{baseCls:"bi-border-layout",items:{}})},render:function(){BI.BorderLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){this.stroke(this.options.items)},addItem:function(a){throw new Error("cannot be added")},stroke:function(a){var b,c=0,d=0,e=0,f=0;if("north"in a&&(b=a.north,null!=b)){if(b.el){if(!this.hasWidget(this.getName()+"north")){var g=BI.createWidget(b);this.addWidget(this.getName()+"north",g)}this.getWidgetByName(this.getName()+"north").element.height(b.height).css({position:"absolute",top:b.top||0,left:b.left||0,right:b.right||0,bottom:"initial"})}c=(b.height||0)+(b.top||0)+(b.bottom||0)}if("south"in a&&(b=a.south,null!=b)){if(b.el){if(!this.hasWidget(this.getName()+"south")){var g=BI.createWidget(b);this.addWidget(this.getName()+"south",g)}this.getWidgetByName(this.getName()+"south").element.height(b.height).css({position:"absolute",bottom:b.bottom||0,left:b.left||0,right:b.right||0,top:"initial"})}d=(b.height||0)+(b.top||0)+(b.bottom||0)}if("west"in a&&(b=a.west,null!=b)){if(b.el){if(!this.hasWidget(this.getName()+"west")){var g=BI.createWidget(b);this.addWidget(this.getName()+"west",g)}this.getWidgetByName(this.getName()+"west").element.width(b.width).css({position:"absolute",left:b.left||0,top:c,bottom:d,right:"initial"})}e=(b.width||0)+(b.left||0)+(b.right||0)}if("east"in a&&(b=a.east,null!=b)){if(b.el){if(!this.hasWidget(this.getName()+"east")){var g=BI.createWidget(b);this.addWidget(this.getName()+"east",g)}this.getWidgetByName(this.getName()+"east").element.width(b.width).css({position:"absolute",right:b.right||0,top:c,bottom:d,left:"initial"})}f=(b.width||0)+(b.left||0)+(b.right||0)}if("center"in a&&(b=a.center,null!=b)){if(!this.hasWidget(this.getName()+"center")){var g=BI.createWidget(b);this.addWidget(this.getName()+"center",g)}this.getWidgetByName(this.getName()+"center").element.css({position:"absolute",top:c,bottom:d,left:e,right:f})}},populate:function(a){BI.BorderLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.border",BI.BorderLayout),BI.CardLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.CardLayout.superclass.props.apply(this,arguments),{baseCls:"bi-card-layout",items:[]})},render:function(){BI.CardLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},stroke:function(a){var b=this,c=this.options;this.showIndex=void 0,BI.each(a,function(a,d){if(d){if(b.hasWidget(d.cardName))var e=b.getWidgetByName(d.cardName);else{var e=BI.createWidget(d);e.on(BI.Events.DESTROY,function(){var a=BI.findIndex(c.items,function(a,b){return b.cardName==d.cardName});a>-1&&c.items.splice(a,1)}),b.addWidget(d.cardName,e)}e.element.css({position:"absolute",top:"0",right:"0",bottom:"0",left:"0"}),e.setVisible(!1)}})},update:function(){},empty:function(){BI.CardLayout.superclass.empty.apply(this,arguments),this.options.items=[]},populate:function(a){BI.CardLayout.superclass.populate.apply(this,arguments),this._mount(),this.options.defaultShowName&&this.showCardByName(this.options.defaultShowName)},isCardExisted:function(a){return BI.some(this.options.items,function(b,c){return c.cardName==a&&c.el})},getCardByName:function(a){if(!this.isCardExisted(a))throw new Error("cardName is not exist");return this._children[a]},_deleteCardByName:function(a){delete this._children[a];var b=BI.findIndex(this.options.items,function(b,c){return c.cardName==a});b>-1&&this.options.items.splice(b,1)},deleteCardByName:function(a){if(!this.isCardExisted(a))throw new Error("cardName is not exist");var b=this._children[a];this._deleteCardByName(a),b&&b._destroy()},addCardByName:function(a,b){if(this.isCardExisted(a))throw new Error("cardName is already exist");var c=BI.createWidget(b);return c.element.css({position:"relative",top:"0",left:"0",width:"100%",height:"100%"}).appendTo(this.element),c.invisible(),this.addWidget(a,c),this.options.items.push({el:b,cardName:a}),c},showCardByName:function(a,b,c){var d=this,e=this.isCardExisted(a);null!=this.showIndex&&(this.lastShowIndex=this.showIndex),this.showIndex=a;var f=!1;BI.each(this.options.items,function(g,h){var i=d._children[h.cardName];i&&(a!=h.cardName?!f&&!e&&BI.Action&&b instanceof BI.Action?(b.actionBack(i),f=!0):i.invisible():BI.Action&&b instanceof BI.Action?b.actionPerformed(void 0,i,c):(i.visible(),c&&c()))})},showLastCard:function(){var a=this;this.showIndex=this.lastShowIndex,BI.each(this.options.items,function(b,c){a._children[c.cardName].setVisible(a.showIndex==b)})},setDefaultShowName:function(a){return this.options.defaultShowName=a,this},getDefaultShowName:function(){return this.options.defaultShowName},getAllCardNames:function(){return BI.map(this.options.items,function(a,b){return b.cardName})},getShowingCard:function(){if(BI.isKey(this.showIndex))return this.getWidgetByName(this.showIndex)},deleteAllCard:function(){var a=this;BI.each(this.getAllCardNames(),function(b,c){a.deleteCardByName(c)})},hideAllCard:function(){var a=this;BI.each(this.options.items,function(b,c){a._children[c.cardName].invisible()})},isAllCardHide:function(){var a=this,b=!0;return BI.some(this.options.items,function(c,d){if(a._children[d.cardName].isVisible())return b=!1,!1}),b},removeWidget:function(a){var b;BI.isWidget(a)?BI.each(this._children,function(c,d){d===a&&(b=c)}):b=a,b&&this._deleteCardByName(b)}}),BI.shortcut("bi.card",BI.CardLayout),BI.DefaultLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.DefaultLayout.superclass.props.apply(this,arguments),{hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0,items:[]})},render:function(){BI.DefaultLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.DefaultLayout.superclass._addElement.apply(this,arguments);return c.vgap+c.tgap+(b.tgap||0)!==0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.hgap+c.lgap+(b.lgap||0)!==0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)!==0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)!==0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},resize:function(){},populate:function(a){BI.DefaultLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.default",BI.DefaultLayout),BI.DivisionLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.DivisionLayout.superclass.props.apply(this,arguments),{baseCls:"bi-division-layout",columns:null,rows:null,items:[]})},render:function(){BI.DivisionLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){this.stroke(this.opitons.items)},addItem:function(a){throw new Error("cannot be added")},stroke:function(a){function b(a,b,c){0===b&&a.addClass("first-row"),0===c&&a.addClass("first-col"),a.addClass(BI.isOdd(b+1)?"odd-row":"even-row"),a.addClass(BI.isOdd(c+1)?"odd-col":"even-col"),a.addClass("center-element")}function c(a,b,c){var d="";0===b&&(d+=" first-row"),0===c&&(d+=" first-col"),d+=BI.isOdd(b+1)?" odd-row":" even-row",d+=BI.isOdd(c+1)?" odd-col":" even-col",a.cls=(a.cls||"")+d+" center-element"}function d(a,d,e){a instanceof BI.Widget?b(a.element,d,e):a.el instanceof BI.Widget?b(a.el.element,d,e):a.el?c(a.el,d,e):c(a,d,e)}var e=this.options,f=e.rows||e.items.length,g=e.columns||0|(e.items[0]&&e.items[0].length),h=BI.makeArray(f),i={},j={};BI.each(h,function(a){h[a]=BI.makeArray(g)}),BI.each(a,function(a,b){return BI.isArray(b)?void BI.each(b,function(c,d){i[a]=(i[a]||0)+b.width,j[c]=(j[c]||0)+b.height,h[a][c]=d}):(i[b.row]=(i[b.row]||0)+b.width,j[b.column]=(j[b.column]||0)+b.height,void(h[b.row][b.column]=b))});for(var k=0;k0){var p=this.getWidgetByName(this.getName()+k+"_"+(m-1));p.element.css({right:100-o+"%"})}m==e.columns-1&&n.element.css({right:"0%"}),d(n,k,m),l+=h[k][m].width}for(var m=0;m0){var p=this.getWidgetByName(this.getName()+(k-1)+"_"+m);p.element.css({bottom:100-r+"%"})}k==e.rows-1&&n.element.css({bottom:"0%"}),q+=h[k][m].height}},populate:function(a){BI.DivisionLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.division",BI.DivisionLayout),BI.FloatLeftLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FloatLeftLayout.superclass.props.apply(this,arguments),{baseCls:"bi-float-left-layout clearfix",hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FloatLeftLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FloatLeftLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative","float":"left"}),BI.isNotNull(b.left)&&d.element.css({left:b.left}),BI.isNotNull(b.right)&&d.element.css({right:b.right}),BI.isNotNull(b.top)&&d.element.css({top:b.top}),(b.lgap||0)+c.hgap+c.lgap!==0&&d.element.css("margin-left",(b.lgap||0)+c.hgap+c.lgap),(b.rgap||0)+c.hgap+c.rgap!==0&&d.element.css("margin-right",(b.rgap||0)+c.hgap+c.rgap),(b.tgap||0)+c.vgap+c.tgap!==0&&d.element.css("margin-top",(b.tgap||0)+c.vgap+c.tgap),(b.bgap||0)+c.vgap+c.bgap!==0&&d.element.css("margin-bottom",(b.bgap||0)+c.vgap+c.bgap),d},resize:function(){this.stroke(this.options.items)},populate:function(a){BI.FloatLeftLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.left",BI.FloatLeftLayout),BI.FloatRightLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FloatRightLayout.superclass.props.apply(this,arguments),{baseCls:"bi-float-right-layout clearfix",hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FloatRightLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FloatRightLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative","float":"right"}),BI.isNotNull(b.left)&&d.element.css({left:b.left}),BI.isNotNull(b.right)&&d.element.css({right:b.right}),BI.isNotNull(b.top)&&d.element.css({top:b.top}),(b.lgap||0)+c.hgap+c.lgap!==0&&d.element.css("margin-left",(b.lgap||0)+c.hgap+c.lgap),(b.rgap||0)+c.hgap+c.rgap!==0&&d.element.css("margin-right",(b.rgap||0)+c.hgap+c.rgap),(b.tgap||0)+c.vgap+c.tgap!==0&&d.element.css("margin-top",(b.tgap||0)+c.vgap+c.tgap),(b.bgap||0)+c.vgap+c.bgap!==0&&d.element.css("margin-bottom",(b.bgap||0)+c.vgap+c.bgap),d},resize:function(){this.stroke(this.options.items)},populate:function(a){BI.FloatRightLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.right",BI.FloatRightLayout),BI.GridLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.GridLayout.superclass.props.apply(this,arguments),{baseCls:"bi-grid-layout",columns:null,rows:null,items:[]})},render:function(){BI.GridLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},stroke:function(a){function b(a,b,c){0===b&&a.addClass("first-row"),0===c&&a.addClass("first-col"),a.addClass(BI.isOdd(b+1)?"odd-row":"even-row"),a.addClass(BI.isOdd(c+1)?"odd-col":"even-col"),a.addClass("center-element")}function c(a,b,c){var d="";0===b&&(d+=" first-row"),0===c&&(d+=" first-col"),d+=BI.isOdd(b+1)?" odd-row":" even-row",d+=BI.isOdd(c+1)?" odd-col":" even-col",a.cls=(a.cls||"")+d+" center-element"}function d(a,d,e){a instanceof BI.Widget?b(a.element,d,e):a.el instanceof BI.Widget?b(a.el.element,d,e):a.el?c(a.el,d,e):c(a,d,e)}for(var e=this.options,f=e.rows||e.items.length,g=e.columns||0|(e.items[0]&&e.items[0].length),h=100/g,i=100/f,j=[],k=0;k").attr({cellspacing:0,cellpadding:0}).css({position:"relative","white-space":"nowrap","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.$tr=$("
"),this.$tr.appendTo(this.$table),this.populate(this.options.items)},_addElement:function(a,b){var c,d=this.options,e=d.columnSize[a]<=1?100*d.columnSize[a]+"%":d.columnSize[a];if(this.hasWidget(this._getChildName(a)))c=this.getWidgetByName(this._getChildName(a)),c.element.attr("width",e);else{var f=BI.createWidget(b);f.element.css({position:"relative",margin:"0px auto"}),c=BI.createWidget({type:"bi.default",tagName:"td",attributes:{width:e},items:[f]}),this.addWidget(this._getChildName(a),c)}return 0===a&&c.element.addClass("first-element"),c.element.css({position:"relative","vertical-align":d.verticalAlign,margin:"0",padding:"0",border:"none"}),d.hgap+d.lgap+(b.lgap||0)>0&&f.element.css({"margin-left":d.hgap+d.lgap+(b.lgap||0)+"px"}),d.hgap+d.rgap+(b.rgap||0)>0&&f.element.css({"margin-right":d.hgap+d.rgap+(b.rgap||0)+"px"}),d.vgap+d.tgap+(b.tgap||0)>0&&f.element.css({"margin-top":d.vgap+d.tgap+(b.tgap||0)+"px"}),d.vgap+d.bgap+(b.bgap||0)>0&&f.element.css({"margin-bottom":d.vgap+d.bgap+(b.bgap||0)+"px"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$tr.append(b),this.element.append(this.$table))},resize:function(){},_getWrapper:function(){return this.$tr},populate:function(a){BI.HorizontalLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal",BI.HorizontalLayout),BI.HorizontalCellLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.HorizontalCellLayout.superclass.props.apply(this,arguments),{baseCls:"bi-horizontal-cell-layout",scrollable:!0,hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.HorizontalCellLayout.superclass.render.apply(this,arguments),this.element.css({display:"table","vertical-align":"top"}),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.HorizontalCellLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative",display:"table-cell","vertical-align":"middle"}),c.hgap+c.lgap>0&&d.element.css({"margin-left":c.hgap+c.lgap+"px"}),c.hgap+c.rgap>0&&d.element.css({"margin-right":c.hgap+c.rgap+"px"}),c.vgap+c.tgap>0&&d.element.css({"margin-top":c.vgap+c.tgap+"px"}),c.vgap+c.bgap>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+"px"}),d},resize:function(){},populate:function(a){BI.HorizontalCellLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal_cell",BI.HorizontalCellLayout),BI.LatticeLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.LatticeLayout.superclass.props.apply(this,arguments),{baseCls:"bi-lattice-layout clearfix"})},render:function(){BI.LatticeLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.LatticeLayout.superclass._addElement.apply(this,arguments);if(c.columnSize&&c.columnSize[a])var e=c.columnSize[a]/BI.sum(c.columnSize)*100+"%";else var e=1/this.options.items.length*100+"%";return d.element.css({position:"relative","float":"left",width:e}),d},addItem:function(a){var b=BI.LatticeLayout.superclass.addItem.apply(this,arguments);return this.resize(),b},addItemAt:function(a){var b=BI.LatticeLayout.superclass.addItemAt.apply(this,arguments);return this.resize(),b},resize:function(){this.stroke(this.options.items)},populate:function(a){BI.LatticeLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.lattice",BI.LatticeLayout),BI.TableLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.TableLayout.superclass.props.apply(this,arguments),{baseCls:"bi-table-layout",scrolly:!0,columnSize:[200,200,"fill"],rowSize:30,hgap:0,vgap:0,items:[[{el:{text:"label1"}},{el:{text:"label2"}},{el:{text:"label3"}}]]})},render:function(){BI.TableLayout.superclass.render.apply(this,arguments),this.rows=0,this.populate(this.options.items)},_addElement:function(a,b){function c(a,b,c){0===b&&a.addClass("first-row"),0===c&&a.addClass("first-col"),a.addClass(BI.isOdd(b+1)?"odd-row":"even-row"),a.addClass(BI.isOdd(c+1)?"odd-col":"even-col"),a.addClass("center-element")}function d(a,b,c){var d="";0===b&&(d+=" first-row"),0===c&&(d+=" first-col"),d+=BI.isOdd(b+1)?" odd-row":" even-row",d+=BI.isOdd(c+1)?" odd-col":" even-col",a.cls=(a.cls||"")+d+" center-element"}function e(a,b,e){a instanceof BI.Widget?c(a.element,b,e):a.el instanceof BI.Widget?c(a.el.element,b,e):a.el?d(a.el,b,e):d(a,b,e)}var f,g,h=this.options,i=[],j=0,k=0;for(f=0;ff;g--){if(!BI.isNumber(h.columnSize[g]))throw new Error("item with fill can only be one");e(b[g],this.rows,g),i.push(BI.extend({top:0,bottom:0,right:h.columnSize[g]<=1?100*k+"%":k,width:h.columnSize[g]<=1?100*h.columnSize[g]+"%":h.columnSize[g]},b[g])),k+=h.columnSize[g]+(h.columnSize[g]<1?0:h.hgap)}f>=0&&f0&&this.getWidgetByName(this.getName()+(this.rows-1)).element.css({"margin-bottom":h.vgap}),l.element.css({position:"relative"}),this.addWidget(this.getName()+this.rows++,l),l},resize:function(){},addItem:function(a){if(!BI.isArray(a))throw new Error("item must be array");return BI.TableLayout.superclass.addItem.apply(this,arguments)},populate:function(a){BI.TableLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.table",BI.TableLayout),BI.HTapeLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.HTapeLayout.superclass.props.apply(this,arguments),{baseCls:"bi-h-tape-layout",hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0,items:[{width:100,el:{type:"bi.button",text:"button1"}},{width:"fill",el:{type:"bi.button",text:"button2"}},{width:200,el:{type:"bi.button",text:"button3"}}]})},render:function(){BI.HTapeLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){this.stroke(this.options.items)},addItem:function(a){throw new Error("cannot be added")},stroke:function(a){var b=this,c=this.options;a=BI.compact(a),BI.each(a,function(a,d){if(b.hasWidget(b.getName()+a+""))e=b.getWidgetByName(b.getName()+a+"");else{var e=BI.createWidget(d);b.addWidget(b.getName()+a+"",e)}e.element.css({position:"absolute",top:c.vgap+c.tgap+"px",bottom:c.vgap+c.bgap+"px"})});var d={},e={};d[0]=0,e[a.length-1]=0,BI.any(a,function(e,f){var g=b.getWidgetByName(b.getName()+e+"");if(BI.isNull(d[e])&&(d[e]=d[e-1]+a[e-1].width+2*c.hgap+c.lgap+c.rgap),f.width<1&&f.width>=0?g.element.css({left:100*d[e]+"%",width:100*f.width+"%"}):g.element.css({left:d[e]+c.hgap+c.lgap+"px",width:BI.isNumber(f.width)?f.width:""}),!BI.isNumber(f.width))return!0}),BI.backAny(a,function(d,f){var g=b.getWidgetByName(b.getName()+d+"");if(BI.isNull(e[d])&&(e[d]=e[d+1]+a[d+1].width+2*c.hgap+c.lgap+c.rgap),f.width<1&&f.width>=0?g.element.css({right:100*e[d]+"%",width:100*f.width+"%"}):g.element.css({right:e[d]+c.hgap+c.rgap+"px",width:BI.isNumber(f.width)?f.width:""}),!BI.isNumber(f.width))return!0})},populate:function(a){BI.HTapeLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.htape",BI.HTapeLayout),BI.VTapeLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.VTapeLayout.superclass.props.apply(this,arguments),{baseCls:"bi-v-tape-layout",hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0,items:[{height:100,el:{type:"bi.button",text:"button1"}},{height:"fill",el:{type:"bi.button",text:"button2"}},{height:200,el:{type:"bi.button",text:"button3"}}]})},render:function(){BI.VTapeLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){this.stroke(this.options.items)},addItem:function(a){throw new Error("cannot be added")},stroke:function(a){var b=this,c=this.options;a=BI.compact(a),BI.each(a,function(a,d){if(b.hasWidget(b.getName()+a+""))e=b.getWidgetByName(b.getName()+a+"");else{var e=BI.createWidget(d);b.addWidget(b.getName()+a+"",e)}e.element.css({position:"absolute",left:c.hgap+c.lgap+"px",right:c.hgap+c.rgap+"px"})});var d={},e={};d[0]=0,e[a.length-1]=0,BI.any(a,function(e,f){var g=b.getWidgetByName(b.getName()+e+"");if(BI.isNull(d[e])&&(d[e]=d[e-1]+a[e-1].height+2*c.vgap+c.tgap+c.bgap),f.height<1&&f.height>=0?g.element.css({top:100*d[e]+"%",height:100*f.height+"%"}):g.element.css({top:d[e]+c.vgap+c.tgap+"px",height:BI.isNumber(f.height)?f.height:""}),!BI.isNumber(f.height))return!0}),BI.backAny(a,function(d,f){var g=b.getWidgetByName(b.getName()+d+"");if(BI.isNull(e[d])&&(e[d]=e[d+1]+a[d+1].height+2*c.vgap+c.tgap+c.bgap),f.height<1&&f.height>=0?g.element.css({bottom:100*e[d]+"%",height:100*f.height+"%"}):g.element.css({bottom:e[d]+c.vgap+c.bgap+"px",height:BI.isNumber(f.height)?f.height:""}),!BI.isNumber(f.height))return!0})},populate:function(a){BI.VTapeLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.vtape",BI.VTapeLayout),BI.TdLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.TdLayout.superclass.props.apply(this,arguments),{baseCls:"bi-td-layout",columnSize:[200,200,200],hgap:0,vgap:0,items:[[{el:{text:"label1"}},{el:{text:"label2"}},{el:{text:"label3"}}]]})},render:function(){BI.TdLayout.superclass.render.apply(this,arguments),this.$table=$("
").attr({cellspacing:0,cellpadding:0}).css({position:"relative",width:"100%",height:"100%","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.rows=0,this.populate(this.options.items)},_addElement:function(a,b){function c(a,b,c){0===b&&a.addClass("first-row"),0===c&&a.addClass("first-col"),a.addClass(BI.isOdd(b+1)?"odd-row":"even-row"),a.addClass(BI.isOdd(c+1)?"odd-col":"even-col"),a.addClass("center-element")}function d(a,b,c){var d="";0===b&&(d+=" first-row"),0===c&&(d+=" first-col"),d+=BI.isOdd(b+1)?" odd-row":" even-row",d+=BI.isOdd(c+1)?" odd-col":" even-col",a.cls=(a.cls||"")+d+" center-element"}function e(a,b,e){a instanceof BI.Widget?c(a.element,b,e):a.el instanceof BI.Widget?c(a.el.element,b,e):a.el?d(a.el,b,e):d(a,b,e)}for(var f=this.options,g=BI.createWidget({type:"bi.default",tagName:"tr"}),h=0;h=0;f--){for(var g=0;g=0&&(this.getChild(c)&&this.getChild(c).setRight(a),a.setLeft(this.getChild(c))),BI.isUndefined(b)?this.children.push(a):this.children.splice(b,0,a)},equals:function(a){return this===a||this.id===a.id},clear:function(){this.parent=null,this.left=null,this.right=null,this.children=[]}},BI.extend(BI.Tree,{transformToArrayFormat:function(a,b){if(!a)return[];var c=[];if(BI.isArray(a))for(var d=0,e=a.length;d=this.x&&a<=this.x+this.w&&b>=this.y&&b<=this.y+this.h)},getPosition:function(){var a=[];return a.push(this.x+this.w/2),a.push(this.y+this.h/2),a}},BI.BehaviorFactory={createBehavior:function(a,b){var c;switch(a){case"highlight":c=BI.HighlightBehavior;break;case"redmark":c=BI.RedMarkBehavior}return new c(b)}},BI.Behavior=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.Behavior.superclass._defaultConfig.apply(this,arguments),{rule:function(){return!0}})},_init:function(){BI.Behavior.superclass._init.apply(this,arguments)},doBehavior:function(){}}),BI.Layout=BI.inherit(BI.Widget,{props:function(){return{scrollable:null,scrollx:!1,scrolly:!1,items:[]}},render:function(){this._init4Margin(),this._init4Scroll()},_init4Margin:function(){this.options.top&&this.element.css("top",this.options.top),this.options.left&&this.element.css("left",this.options.left),this.options.bottom&&this.element.css("bottom",this.options.bottom),this.options.right&&this.element.css("right",this.options.right)},_init4Scroll:function(){switch(this.options.scrollable){case!0:this.element.css("overflow","auto");break;case!1:this.element.css("overflow","hidden")}this.options.scrollx&&this.element.css({"overflow-x":"auto","overflow-y":"hidden"}),this.options.scrolly&&this.element.css({"overflow-x":"hidden","overflow-y":"auto"})},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&this.element.append(b)},_getChildName:function(a){return a+""},_addElement:function(a,b){var c,d=this;return this.hasWidget(this._getChildName(a))?c=this.getWidgetByName(this._getChildName(a)):(c=BI.createWidget(b),c.on(BI.Events.DESTROY,function(){BI.each(d._children,function(a,b){b===c&&(BI.remove(d._children,b),d.removeItemAt(0|a))})}),this.addWidget(this._getChildName(a),c)),c},_getOptions:function(a){return a instanceof BI.Widget&&(a=a.options),a=BI.stripEL(a),a instanceof BI.Widget&&(a=a.options),a},_compare:function(a,b){function c(a,b,e,f){if(a===b)return 0!==a||1/a===1/b;if(null==a||null==b)return a===b;var g=Object.prototype.toString.call(a);switch(g){case"[object RegExp]":case"[object String]":return""+a==""+b;case"[object Number]":return+a!==+a?+b!==+b:0===+a?1/+a===1/b:+a===+b;case"[object Date]":case"[object Boolean]":return+a===+b}var h="[object Array]"===g;if(!h){if(BI.isFunction(a)&&BI.isFunction(b))return!0;a=d._getOptions(a),b=d._getOptions(b)}e=e||[],f=f||[];for(var i=e.length;i--;)if(e[i]===a)return f[i]===b;if(e.push(a),f.push(b),h){if(i=a.length,i!==b.length)return!1;for(;i--;)if(!c(a[i],b[i],e,f))return!1}else{var j,k=_.keys(a);if(i=k.length,_.keys(b).length!==i)return!1;for(;i--;)if(j=k[i],!_.has(b,j)||!c(a[j],b[j],e,f))return!1}return e.pop(),f.pop(),!0}var d=this;return c(a,b)},_getWrapper:function(){return this.element},_addItemAt:function(a,b){for(var c=this.options.items.length;c>a;c--)this._children[this._getChildName(c)]=this._children[this._getChildName(c-1)];delete this._children[this._getChildName(a)],this.options.items.splice(a,0,b)},_removeItemAt:function(a){for(var b=a;bthis.options.items.length)){this._addItemAt(a,b);var c=this._addElement(a,b);return a>0?this._children[this._getChildName(a-1)].element.after(c.element):c.element.prependTo(this._getWrapper()),c._mount(),c}},removeItemAt:function(a){a=BI.isArray(a)?a:[a];for(var b=[],c=[],d={},e=0,f=this.options.items.length;ethis.options.items.length-1)){var c,d=this._children[this._getChildName(a)];if(c=d.update(this._getOptions(b)))return c;var e=this._children[this._getChildName(a)];delete this._children[this._getChildName(a)],this.options.items.splice(a,1);var f=this._addElement(a,b);this.options.items.splice(a,0,b),this._children[this._getChildName(a)]=f,a>0?this._children[this._getChildName(a-1)].element.after(f.element):f.element.prependTo(this._getWrapper()),e._destroy(),f._mount()}},addItems:function(a){var b=this,c=this.options,d=document.createDocumentFragment(),e=[];BI.each(a,function(a,f){var g=b._addElement(c.items.length,f);b._children[b._getChildName(c.items.length)]=g,c.items.push(f),e.push(g),d.appendChild(g.element[0])}),this._getWrapper().append(d),BI.each(e,function(a,b){b._mount()})},prependItems:function(a){var b=this;a=a||[];for(var c=document.createDocumentFragment(),d=[],e=a.length-1;e>=0;e--){this._addItemAt(0,a[e]);var f=this._addElement(0,a[e]);b._children[b._getChildName(0)]=f,this.options.items.unshift(a[e]),d.push(f),c.appendChild(f.element[0])}this._getWrapper().prepend(c),BI.each(d,function(a,b){b._mount()})},getValue:function(){var a,b=this,c=[];return BI.each(this.options.items,function(d){if(a=b._children[b._getChildName(d)]){var e=a.getValue();e=BI.isArray(e)?e:[e],c=c.concat(e)}}),c},setValue:function(a){var b,c=this;BI.each(this.options.items,function(d){(b=c._children[c._getChildName(d)])&&b.setValue(a)})},setText:function(a){var b,c=this;BI.each(this.options.items,function(d){(b=c._children[c._getChildName(d)])&&b.setText(a)})},patchItem:function(a,b,c){if(!this._compare(a,b))return this.updateItemAt(c,b)},updateChildren:function(a,b){function c(a,b,c,d){return a=j._getOptions(a),b=j._getOptions(b),BI.isKey(a.key)?a.key===b.key:c>=0?c===d:void 0}function d(a,b){var c=j._getOptions(a),d=null==c.key?b:c.key;return s[d]=j._addElement(d,a)}function e(a,b,c,e){for(;c<=e;++c){var f=d(b[c],c);g(f,a)}}function f(a,b,c){for(;b<=c;++b){var d=j._getOptions(a[b]),e=null==d.key?b:d.key;s[e]._destroy()}}function g(a,b,c){if(a=j._getOptions(a),b=b&&j._getOptions(b),!BI.isKey(a.key))throw"key is not defined";if(b&&s[b.key]){var d;d=c?s[b.key].element.next():s[b.key].element,d.length>0?d.before(s[a.key].element):j._getWrapper().append(s[a.key].element)}else j._getWrapper().append(s[a.key].element)}var h,i,j=this,k=0,l=0,m=a.length-1,n=a[0],o=a[m],p=b.length-1,q=b[0],r=b[p],s={};for(BI.each(a,function(a,b){b=j._getOptions(b);var c=null==b.key?a:b.key;BI.isKey(c)&&(s[c]=j._children[j._getChildName(a)])});k<=m&&l<=p;)if(BI.isNull(n))n=a[++k];else if(BI.isNull(o))o=a[--m];else if(c(n,q,k,l))i=this.patchItem(n,q,k)||i,n=a[++k],q=b[++l];else if(c(o,r,m,p))i=this.patchItem(o,r,m)||i,o=a[--m],r=b[--p];else if(c(n,r))i=this.patchItem(n,r,k)||i,g(n,o,!0),n=a[++k],r=b[--p];else if(c(o,q))i=this.patchItem(o,q,m)||i,g(o,n),o=a[--m],q=b[++l];else{var t=d(q);g(t,n),q=b[++l]}return k>m?(h=BI.isNull(b[p+1])?null:b[p+1].elm,e(h,b,l,p)):l>p&&f(a,k,m),this._children={},BI.each(b,function(a,b){var c=j._getOptions(b),d=null==c.key?a:c.key;j._children[j._getChildName(a)]=s[d]}),i},update:function(a){var b=this.options,c=a.items||[],d=this.updateChildren(b.items,c);return this.options.items=c,d},stroke:function(a){var b=this;BI.each(a,function(a,c){c&&b._addElement(a,c)})},removeWidget:function(a){var b;BI.isWidget(a)?BI.each(this._children,function(c,d){d===a&&(b=c)}):b=a,b&&this._removeItemAt(0|b)},empty:function(){BI.Layout.superclass.empty.apply(this,arguments),this.options.items=[]},destroy:function(){BI.Layout.superclass.destroy.apply(this,arguments),this.options.items=[]},populate:function(a){this.options;return a=a||[],this._isMounted?void this.update({items:a}):(this.options.items=a,void this.stroke(a))},resize:function(){}}),BI.shortcut("bi.layout",BI.Layout),BI.Action=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.Action.superclass._defaultConfig.apply(this,arguments),{src:null,tar:null})},_init:function(){BI.Action.superclass._init.apply(this,arguments)},actionPerformed:function(a,b,c){},actionBack:function(a,b,c){}}),BI.ActionFactory={createAction:function(a,b){var c;switch(a){case"show":c=BI.ShowAction}return new c(b)}},BI.ShowAction=BI.inherit(BI.Action,{_defaultConfig:function(){return BI.extend(BI.ShowAction.superclass._defaultConfig.apply(this,arguments),{})},_init:function(){BI.ShowAction.superclass._init.apply(this,arguments)},actionPerformed:function(a,b,c){b=b||this.options.tar,b.setVisible(!0),c&&c()},actionBack:function(a,b,c){a=a||this.options.tar,a.setVisible(!1),c&&c()}}),BI.FloatSection=BI.inherit(BI.View,{_init:function(){BI.FloatSection.superclass._init.apply(this,arguments);var a=this,b=["_init","_defaultConfig","_vessel","_render","getName","listenEnd","local","refresh","load","change"];b=BI.makeObject(b,!0),BI.each(this.constructor.caller.caller.caller.prototype,function(c){if(!b[c]){var d=a[c];BI.isFunction(d)&&(a[c]=BI.bind(function(){return this.model._start===!0?void this._F.push({f:d,arg:arguments}):d.apply(this,arguments)},a))}})},rebuildNorth:function(a){return!0},rebuildCenter:function(a){},rebuildSouth:function(a){return!1},close:function(){this.notifyParentEnd(),this.trigger(BI.PopoverSection.EVENT_CLOSE)},end:function(){}}),BI.PopoverSection=BI.inherit(BI.Widget,{_init:function(){BI.PopoverSection.superclass._init.apply(this,arguments)},rebuildNorth:function(a){return!0},rebuildCenter:function(a){},rebuildSouth:function(a){return!1},close:function(){this.fireEvent(BI.PopoverSection.EVENT_CLOSE)},end:function(){}}),BI.PopoverSection.EVENT_CLOSE="EVENT_CLOSE",function(){function a(a){var b=""===a||null===a||void 0===a;return b}function b(a){return"Invalid Date"==a||"NaN"==a}function c(a,b){var c=b.indexOf("E"),d=b.substr(0,c),e=b.substr(c+1);if(/^[0\.-]+$/.test(a))a=BI._numberFormat(0,d)+"E"+BI._numberFormat(0,e);else{var f=a<0;f&&(a=a.substr(1));var g=(d.split(".")[0]||"").length,h=a.indexOf(".");h<0&&(h=a.length);var i=0;a=a.replace(".","");for(var j=a.length;i="1")break}var l=h-i-g,m=a.substr(i,g),n=i+g-a.length;if(n>0)for(var o=0;o-1)return a>=0?d(a+"",b.substring(0,c)):d(-a+"",b.substr(c+1));if(+a<0&&"-"!==b.charAt(0))return d(-a+"","-"+b);var g=a.split("."),h=b.split("."),i=g[0]||"",j=h[0]||"",k=g[1]||"",l=h[1]||"";if(/[%‰]$/.test(b)){var m=/[%]$/.test(b)?"00":"000";k+=m,i+=k.substr(0,m.length),i=i.replace(/^0+/gi,""),k=k.substr(m.length).replace(/0+$/gi,"")}var n=e(k,l);n.leftPlus&&(i=parseInt(i)+1+"",i=isNaN(i)?"1":i),n=n.num;var o=f(i,j);return/[0-9]/.test(o)||(o+="0"),/[0-9]/.test(n)?o+"."+n:o+n}function e(b,c){for(var d="",e=0,f=0,g=c.length;f4){k.leftPlus=!0;var l=d.match(/^[0-9]+/);if(l){var m=l[0],n=m.length,o=parseInt(m)+1+"";o.length>n?o=o.substr(1):(o=String.leftPad(o,n,"0"),k.leftPlus=!1),d=d.replace(/^[0-9]+/,o)}}return k.num=d,k}function f(b,c){for(var d="",e=b.length-1,f=-1,g=-1,h=c.length-1;h>=0;h--){var i=c.charAt(h),j=b.charAt(e);switch(i){case"0":a(j)&&(j="0"),g=-1,d=j+d,e--;break;case"#":g=h,d=j+d,e--;break;case",":if(!a(j)){var k=c.match(/,[#0]+/);k&&(f=k[0].length-1),d=","+d}break;default:d=i+d}}if(g>-1){var l=b.substr(0,e+1);d=d.substr(0,g)+l+d.substr(g)}if(f>0){var m=d.match(/[0-9]+,/);if(m){m=m[0];for(var n="",o=m.length-1-f;o>=0;o-=f)n=m.substr(o,f)+","+n;var p=m.substr(0,o+f);a(p)||(n=p+","+n)}d=d.replace(/[0-9]+,/,n)}return d}window.BI||(window.BI={}),BI.cjkEncode=function(a){if("string"!=typeof a)return a;for(var b="",c=0;c=128||91===d||93===d?"["+d.toString(16)+"]":a.charAt(c)}return b},BI.cjkEncodeDO=function(a){if(BI.isPlainObject(a)){var b={};return $.each(a,function(a,c){"string"!=typeof c&&(c=BI.jsonEncode(c)),a=BI.cjkEncode(a),b[a]=BI.cjkEncode(c)}),b}return a},BI.jsonEncode=function(a){var b=!!{}.hasOwnProperty,c={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},d=function(a){return/["\\\x00-\x1f]/.test(a)?'"'+a.replace(/([\x00-\x1f\\"])/g,function(a,b){var d=c[b];return d?d:(d=b.charCodeAt(),"\\u00"+Math.floor(d/16).toString(16)+(d%16).toString(16))})+'"':'"'+a+'"'},e=function(a){var b,c,d,e=["["],f=a.length;for(c=0;c2?Date._MN[b.getMonth()]:d<2?b.getMonth()+1:String.leftPad(b.getMonth()+1+"",2,"0");break;case"d":c=d>1?String.leftPad(b.getDate()+"",2,"0"):b.getDate();break;case"h":var f=b.getHours()%12;0===f&&(f=12),c=d>1?String.leftPad(f+"",2,"0"):f;break;case"H":c=d>1?String.leftPad(b.getHours()+"",2,"0"):b.getHours();break;case"m":c=d>1?String.leftPad(b.getMinutes()+"",2,"0"):b.getMinutes();break;case"s":c=d>1?String.leftPad(b.getSeconds()+"",2,"0"):b.getSeconds();break;case"a":c=b.getHours()<12?"am":"pm";break;case"z":c=b.getTimezone();break;default:c=a.str}return c}if(!a)return"";var d=b.length,e="";if(d>0){for(var f=b.charAt(0),g=0,h=f,i=1;i$("body").outerWidth()&&(l-=k.element.outerWidth()),m+k.element.outerHeight()>$("body").outerHeight()?(m-=k.element.outerHeight()+15,j=h.top-k.element.outerHeight()-5,!f.belowMouse&&(m=Math.min(m,j))):!f.belowMouse&&(m=Math.max(m,j)),k.element.css({left:l<0?0:l+"px",top:m<0?0:m+"px"}),k.element.hover(function(){g.remove(b),e.element.trigger("mouseleave.title"+e.getName())}),this; +},add:function(a,b){return this.has(a)?this:(this.set(a,b),this)},get:function(a){return this.tooltipsManager[a]},set:function(a,b){this.tooltipsManager[a]=b},has:function(a){return null!=this.tooltipsManager[a]},remove:function(a){return this.has(a)?(this.tooltipsManager[a].destroy(),delete this.tooltipsManager[a],this):this}}),BI.FloatBoxRouter=BI.inherit(BI.WRouter,{routes:{},_init:function(){this.store={},this.views={}},createView:function(a,b,c,d){return BI.Factory.createView(a,this.get(a),b||{},c||{},d)},open:function(a,b,c,d,e){var f=this,g=BI.isKey(b);e||(e={}),a=d.rootURL+"/"+a;var h=void 0;if(g){b+="";var i=b.split(".");BI.each(i,function(a,b){h=0===a?d.model.get(b)||{}:h[b]||{}}),h.id=e.id||i[i.length-1]}else h=b;if(BI.extend(h,e.data),this.controller||(this.controller=new BI.FloatBoxController),!this.store[a]){this.store[a]=BI.createWidget({type:"bi.float_box"},e);var j=this.createView(a,h,c,d);g&&d.model.addChild(b,j.model),j.listenTo(j.model,"destroy",function(){f.remove(a,d)}),d.on(BI.Events.UNMOUNT,function(){f.remove(a,d)}),this.store[a].populate(j),this.views[a]=j,this.controller.add(a,this.store[a]),d&&d.on("end:"+j.cid,function(){BI.nextTick(function(){f.close(a),d.listenEnd.apply(d,g?b.split("."):[b])!==!1&&d.populate()},30)}).on("change:"+j.cid,_.bind(d.notifyParent,d))}return this.controller.open(a),this.views[a].populate(h,e.force||!0),this},close:function(a){return this.controller&&this.controller.close(a),this},remove:function(a,b){return a=b.rootURL+"/"+a,this.controller&&(this.controller.remove(a),delete this.store[a],this.views[a]&&this.views[a].model.destroy(),delete this.views[a]),this}}),BI.EventList=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.EventList.superclass._defaultConfig.apply(this,arguments),{event:"click",callback:BI.emptyFn,handle:"",items:[]})},_init:function(){BI.EventList.superclass._init.apply(this,arguments),this.populate(this.options.items)},_getHandle:function(a){var b=this.options.handle?_.result(a,this.options.handle):a;return b.element||b},populate:function(a){var b=this,c=this.options.event,d=this.options.callback;BI.nextTick(function(){BI.each(a,function(a,e){var f=d(e);BI.isFunction(f)&&(f=BI.debounce(f,BI.EVENT_RESPONSE_TIME,!0)),b._getHandle(e)[c](f)})})}}),BI.ListenerList=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.ListenerList.superclass._defaultConfig.apply(this,arguments),{event:"click",callback:BI.emptyFn,items:[]})},_init:function(){BI.ListenerList.superclass._init.apply(this,arguments),this.populate(this.options.items)},_getHandle:function(a){var b=this.options.handle?_.result(a,this.options.handle):a;return b.element||b},populate:function(a){var b=this,c=this.options.event,d=this.options.callback;BI.nextTick(function(){BI.each(a,function(a,e){var f=d(e);BI.isFunction(f)&&(f=BI.debounce(f,BI.EVENT_RESPONSE_TIME,!0)),b._getHandle(e).on(c,f)})})}}),BI.OffList=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.OffList.superclass._defaultConfig.apply(this,arguments),{event:"click",items:[]})},_init:function(){BI.OffList.superclass._init.apply(this,arguments),this.populate(this.options.items)},_getHandle:function(a){var b=this.options.handle?_.result(a,this.options.handle):a;return b.element||b},populate:function(a){var b=this,c=this.options.event;BI.each(a,function(a,d){b._getHandle(d).off(c)})}}),_.extend(BI,{Events:{KEYDOWN:"_KEYDOWN",BACKSPACE:"_BACKSPACE",SPACE:"_SPACE",ENTER:"_ENTER",CONFIRM:"_CONFIRM",ERROR:"_ERROR",PAUSE:"_PAUSE",DESTROY:"_DESTROY",UNMOUNT:"_UNMOUNT",CLEAR:"_CLEAR",ADD:"_ADD",EDITING:"_EDITING",EMPTY:"_EMPTY",VIEW:"_VIEW",RESIZE:"_RESIZE",BEFOREEDIT:"_BEFOREEDIT",AFTEREDIT:"_AFTEREDIT",STARTEDIT:"_STARTEDIT",STOPEDIT:"_STOPEDIT",CHANGE:"_CHANGE",EXPAND:"_EXPAND",COLLAPSE:"_COLLAPSE",CALLBACK:"_CALLBACK",CLICK:"_CLICK",STATECHANGE:"_STATECHANGE",BEFORESTATECHANGE:"_BEFORESTATECHANGE",INIT:"_INIT",AFTERINIT:"_AFTERINIT",SCROLL:"_SCROLL",STARTLOAD:"_STARTLOAD",AFTERLOAD:"_AFTERLOAD",BS:"beforesubmit",AS:"aftersubmit",SC:"submitcomplete",SF:"submitfailure",SS:"submitsuccess",BVW:"beforeverifywrite",AVW:"afterverifywrite",AV:"afterverify",BW:"beforewrite",AW:"afterwrite",WS:"writesuccess",WF:"writefailure",BA:"beforeappend",AA:"afterappend",BD:"beforedelete",AD:"beforedelete",UC:"unloadcheck",BTOPDF:"beforetopdf",ATOPDF:"aftertopdf",BTOEXCEL:"beforetoexcel",ATOEXCEL:"aftertoexcel",BTOWORD:"beforetoword",ATOWORD:"aftertoword",BTOIMAGE:"beforetoimage",ATOIMAGE:"aftertoimage",BTOHTML:"beforetohtml",ATOHTML:"aftertohtml",BIMEXCEL:"beforeimportexcel",AIMEXCEL:"afterimportexcel",BPDFPRINT:"beforepdfprint",APDFPRINT:"afterpdfprint",BFLASHPRINT:"beforeflashprint",AFLASHPRINT:"afterflashprint",BAPPLETPRINT:"beforeappletprint",AAPPLETPRINT:"afterappletprint",BSEVERPRINT:"beforeserverprint",ASERVERPRINT:"afterserverprint",BEMAIL:"beforeemail",AEMAIL:"afteremail"}}),BI.extend(jQuery.fn,{destroy:function(){this.remove(),BI.isIE()===!0&&(this[0].outerHTML="")},__textKeywordMarked__:function(a,b,c){if(!BI.isKey(b)||(a+"").length>100)return this.text((a+"").replaceAll(" "," "));b+="",b=BI.toUpperCase(b);var d=(a||"")+"";for(c=(c||BI.makeFirstPY(a))+"",null!=c&&(c=BI.toUpperCase(c)),this.empty();;){var e=BI.toUpperCase(d).indexOf(b),f=null;if(null!=c&&(f=c.indexOf(b),f>=0&&(f%=a.length)),e>=0)this.append(d.substr(0,e)),this.append($("").addClass("bi-keyword-red-mark").text(d.substr(e,b.length).replaceAll(" "," "))),d=d.substr(e+b.length),null!=c&&(c=c.substr(e+b.length));else{if(!(null!=f&&f>=0&&Math.floor(f/a.length)===Math.floor((f+b.length-1)/a.length))){this.append(d);break}this.append(d.substr(0,f)),this.append($("").addClass("bi-keyword-red-mark").text(d.substr(f,b.length).replaceAll(" "," "))),null!=c&&(c=c.substr(f+b.length)),d=d.substr(f+b.length)}}return this},getDomHeight:function(a){var b=$(this).clone();b.appendTo($(a||"body"));var c=b.height();return b.remove(),c},hasVerticalScroll:function(){return this.height()>0&&this[0].clientWidth0&&this[0].clientHeightb.left+this.outerWidth()||a.pageYb.top+this.outerHeight())},__hasZIndexMask__:function(a){return a&&null!=this.zIndexMask[a]},__buildZIndexMask__:function(a,b){this.zIndexMask=this.zIndexMask||{},this.indexMask=this.indexMask||[];var c=BI.createWidget({type:"bi.center_adapt",cls:"bi-z-index-mask",items:b});return c.element.css({"z-index":a}),BI.createWidget({type:"bi.absolute",element:this,items:[{el:c,left:0,right:0,top:0,bottom:0}]}),this.indexMask.push(c),a&&(this.zIndexMask[a]=c),c.element},__releaseZIndexMask__:function(a){if(a&&this.zIndexMask[a])return this.indexMask.remove(this.zIndexMask[a]),void this.zIndexMask[a].destroy();this.indexMask=this.indexMask||[];var b=this.indexMask.pop();b&&b.destroy()}}),BI.extend(jQuery,{getLeftPosition:function(a,b,c){return{left:a.element.offset().left-b.element.outerWidth()-(c||0)}},getRightPosition:function(a,b,c){var d=a.element;return{left:d.offset().left+d.outerWidth()+(c||0)}},getTopPosition:function(a,b,c){return{top:a.element.offset().top-b.element.outerHeight()-(c||0)}},getBottomPosition:function(a,b,c){var d=a.element;return{top:d.offset().top+d.outerHeight()+(c||0)}},isLeftSpaceEnough:function(a,b,c){return $.getLeftPosition(a,b,c).left>=0},isRightSpaceEnough:function(a,b,c){var d=b.element.bounds(),e=$("body").bounds();return $.getRightPosition(a,b,c).left+d.width<=e.width},isTopSpaceEnough:function(a,b,c){return $.getTopPosition(a,b,c).top>=0},isBottomSpaceEnough:function(a,b,c){var d=b.element.bounds(),e=$("body").bounds();return $.getBottomPosition(a,b,c).top+d.height<=e.height},isRightSpaceLarger:function(a){var b=$("body").bounds();return b.width-a.element.offset().left-a.element.bounds().width>=a.element.offset().left},isBottomSpaceLarger:function(a){var b=$("body").bounds();return b.height-a.element.offset().top-a.element.bounds().height>=a.element.offset().top},getLeftAlignPosition:function(a,b,c){var d=b.element.bounds(),e=$("body").bounds(),f=a.element.offset().left+c;return f+d.width>e.width&&(f=e.width-d.width),f<0&&(f=0),{left:f}},getLeftAdaptPosition:function(a,b,c){return $.isLeftSpaceEnough(a,b,c)?$.getLeftPosition(a,b,c):{left:0}},getRightAlignPosition:function(a,b,c){var d=a.element.bounds(),e=b.element.bounds(),f=a.element.offset().left+d.width-e.width-c;return f<0&&(f=0),{left:f}},getRightAdaptPosition:function(a,b,c){return $.isRightSpaceEnough(a,b,c)?$.getRightPosition(a,b,c):{left:$("body").bounds().width-b.element.bounds().width}},getTopAlignPosition:function(a,b,c,d){var e,f,g=a.element.offset(),h=a.element.bounds(),i=b.element.bounds(),j=$("body").bounds();return $.isBottomSpaceEnough(a,b,-1*h.height+c)?e=g.top+c:d?(e=g.top+c,f=j.height-e):(e=j.height-i.height,ef.height?{top:0,adaptHeight:f.height-c}:{top:0}},getBottomAlignPosition:function(a,b,c,d){var e,f,g=a.element.offset(),h=a.element.bounds(),i=b.element.bounds(),j=$("body").bounds();return $.isTopSpaceEnough(a,b,-1*h.height+c)?e=g.top+h.height-i.height-c:d?(e=0,f=g.top+h.height-c):(e=0,i.height+c>j.height&&(f=j.height-c)),e<0&&(e=0),f?{top:e,adaptHeight:f}:{top:e}},getBottomAdaptPosition:function(a,b,c,d){var e=a.element.offset(),f=a.element.bounds(),g=b.element.bounds(),h=$("body").bounds();return $.isBottomSpaceEnough(a,b,c)?$.getBottomPosition(a,b,c):d?{top:e.top+f.height+c,adaptHeight:h.height-e.top-f.height-c}:g.height+c>h.height?{top:c,adaptHeight:h.height-c}:{top:h.height-g.height-c}},getCenterAdaptPosition:function(a,b){var c,d=a.element.offset(),e=a.element.bounds(),f=b.element.bounds(),g=$("body").bounds();return c=d.left+e.width/2+f.width/2>g.width?g.width-f.width:d.left+e.width/2-f.width/2,c<0&&(c=0),{left:c}},getMiddleAdaptPosition:function(a,b){var c,d=a.element.offset(),e=a.element.bounds(),f=b.element.bounds(),g=$("body").bounds();return c=d.top+e.height/2+f.height/2>g.height?g.height-f.height:d.top+e.height/2-f.height/2,c<0&&(c=0),{top:c}},getComboPositionByDirections:function(a,b,c,d,e,f){c||(c=0),d||(d=0);var g,h,i,j,k,l=[],m=[],n=!1,o=!1,p=!1;for(g=0;g-1?f===b?d?h.push(j):h[a]=j:d?i.push(j):i[a]=j:(k=g.indexOf(b),k>-1&&Math.floor(k/f.length)===Math.floor((k+b.length-1)/f.length)&&(f===b||b.length===f.length?d?h.push(j):h[a]=j:d?i.push(j):i[a]=j))}),{matched:h,finded:i}}}),BI.DOM={},BI.extend(BI.DOM,{hang:function(a){if(!BI.isEmpty(a)){var b=document.createDocumentFragment();return BI.each(a,function(a,c){c instanceof BI.Widget&&(c=c.element),c instanceof $&&c[0]&&b.appendChild(c[0])}),b}},isExist:function(a){return $("body").find(a.element).length>0},preloadImages:function(a,b){function c(){d++,d>=a.length&&b()}var d=0,e=[];BI.each(a,function(a,b){e[a]=new Image,e[a].src=b,e[a].onload=function(){c()},e[a].onerror=function(){c()}})},isColor:function(a){return a&&(this.isRGBColor(a)||this.isHexColor(a))},isRGBColor:function(a){return!!a&&"rgb"===a.substr(0,3)},isHexColor:function(a){return!!a&&("#"===a[0]&&7===a.length)},isDarkColor:function(a){if(!a||!this.isHexColor(a))return!1;var b=this.rgb2json(this.hex2rgb(a)),c=Math.round(.299*b.r+.587*b.g+.114*b.b);return c<192},getContrastColor:function(a){return a&&this.isColor(a)?this.isDarkColor(a)?"#ffffff":"#1a1a1a":""},rgb2hex:function(a){if(!a||"rgb"!=a.substr(0,3))return"";var b=a.match(/\d+(\.\d+)?/g),c=BI.parseInt(b[0]),d=BI.parseInt(b[1]),e=BI.parseInt(b[2]),f="#"+this.int2hex(c)+this.int2hex(d)+this.int2hex(e);return f},rgb2json:function(a){if(!a)return{};if(!this.isRGBColor(a))return{};var b=a.match(/\d+(\.\d+)?/g);return{r:BI.parseInt(b[0]),g:BI.parseInt(b[1]),b:BI.parseInt(b[2])}},rgba2json:function(a){if(!a)return{};var b=a.match(/\d+(\.\d+)?/g);return{r:BI.parseInt(b[0]),g:BI.parseInt(b[1]),b:BI.parseInt(b[2]),a:BI.parseFloat(b[3])}},json2rgb:function(a){return BI.isKey(a.r)&&BI.isKey(a.g)&&BI.isKey(a.b)?"rgb("+a.r+","+a.g+","+a.b+")":""},json2rgba:function(a){return BI.isKey(a.r)&&BI.isKey(a.g)&&BI.isKey(a.b)?"rgba("+a.r+","+a.g+","+a.b+","+a.a+")":""},int2hex:function(a){var b=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];return b[a>>>4]+""+b[15&a]},hex2rgb:function(a){if(!a)return"";if(!this.isHexColor(a))return a;var b,c="rgb(";return 7===a.length?b=[BI.parseInt("0x"+a.substring(1,3)),BI.parseInt("0x"+a.substring(3,5)),BI.parseInt("0x"+a.substring(5,7))]:4===a.length&&(b=[BI.parseInt("0x"+a.substring(1,2)),BI.parseInt("0x"+a.substring(2,3)),BI.parseInt("0x"+a.substring(3,4))]),c+=b[0]+",",c+=b[1]+",",c+=b[2]+")"},rgba2rgb:function(a,b){if(BI.isNull(b)&&(b=1),"rgba"!=a.substr(0,4))return"";var c=a.match(/\d+(\.\d+)?/g);if(c.length<4)return"";var d=BI.parseFloat(c[0]),e=BI.parseFloat(c[1]),f=BI.parseFloat(c[2]),g=BI.parseFloat(c[3]);return"rgb("+Math.floor(255*(b*(1-g))+d*g)+","+Math.floor(255*(b*(1-g))+e*g)+","+Math.floor(255*(b*(1-g))+f*g)+")"},getTextSizeWidth:function(a,b){var c=$("").addClass("text-width-span").appendTo($("body"));null==b&&(b=12),b+="px",c.css("font-size",b).text(a);var d=c.width();return c.remove(),d},getScrollWidth:function(){if(null==this._scrollWidth){var a=$("
").width(50).height(50).css({position:"absolute",top:"-9999px",overflow:"scroll"}).appendTo($("body"));this._scrollWidth=a[0].offsetWidth-a[0].clientWidth,a.destroy()}return this._scrollWidth}}),BI.ShowListener=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.ShowListener.superclass._defaultConfig.apply(this,arguments),{eventObj:BI.createWidget(),cardLayout:null,cardNameCreator:function(a){return a},cardCreator:BI.emptyFn,afterCardCreated:BI.emptyFn,afterCardShow:BI.emptyFn})},_init:function(){BI.ShowListener.superclass._init.apply(this,arguments);var a=this,b=this.options;b.eventObj.on(BI.Controller.EVENT_CHANGE,function(c,d,e){if(c===BI.Events.CLICK){if(d=d||b.eventObj.getValue(),d=BI.isArray(d)?d.length>1?d.toString():d[0]:d,BI.isNull(d))throw new Error("value cannot be null");var f=b.cardNameCreator(d);if(!b.cardLayout.isCardExisted(f)){var g=b.cardCreator(f);b.cardLayout.addCardByName(f,g),b.afterCardCreated(f)}b.cardLayout.showCardByName(f),BI.nextTick(function(){b.afterCardShow(f),a.fireEvent(BI.ShowListener.EVENT_CHANGE,f)})}})}}),BI.ShowListener.EVENT_CHANGE="ShowListener.EVENT_CHANGE",BI.StyleLoaderManager=BI.inherit(BI.OB,{_defaultConfig:function(){return BI.extend(BI.StyleLoaderManager.superclass._defaultConfig.apply(this,arguments),{})},_init:function(){BI.StyleLoaderManager.superclass._init.apply(this,arguments),this.stylesManager={}},loadStyle:function(a,b){var c=document,d=c.createElement("style");return c.getElementsByTagName("head")[0].appendChild(d),d.setAttribute("type","text/css"),d.styleSheet?d.styleSheet.cssText=b:d.appendChild(document.createTextNode(b)),this.stylesManager[a]=d,this},get:function(a){return this.stylesManager[a]},has:function(a){return null!=this.stylesManager[a]},removeStyle:function(a){return this.has(a)?(this.stylesManager[a].parentNode.removeChild(this.stylesManager[a]),delete this.stylesManager[a],this):this}}),BI.Logic=BI.inherit(BI.OB,{createLogic:function(){return this.options||{}}}),BI.LogicFactory={Type:{Vertical:"vertical",Horizontal:"horizontal",Table:"table",HorizontalFill:"horizontal_fill"},createLogic:function(a,b){var c;switch(a){case BI.LogicFactory.Type.Vertical:c=BI.VerticalLayoutLogic;break;case BI.LogicFactory.Type.Horizontal:c=BI.HorizontalLayoutLogic;break;case BI.LogicFactory.Type.Table:c=BI.TableLayoutLogic;break;case BI.LogicFactory.Type.HorizontalFill:c=BI.HorizontalFillLayoutLogic;break;default:c=BI.Logic}return new c(b).createLogic()},createLogicTypeByDirection:function(a){switch(a){case BI.Direction.Top:case BI.Direction.Bottom:case BI.Direction.Custom:return BI.LogicFactory.Type.Vertical;case BI.Direction.Left:case BI.Direction.Right:return BI.LogicFactory.Type.Horizontal}},createLogicItemsByDirection:function(a){var b,c=Array.prototype.slice.call(arguments,1);switch(c=BI.map(c,function(a,b){return BI.isWidget(b)?{el:b,width:b.options.width,height:b.options.height}:b}),a){case BI.Direction.Bottom:b=BI.LogicFactory.Type.Vertical,c.reverse();break;case BI.Direction.Right:b=BI.LogicFactory.Type.Horizontal,c.reverse();break;case BI.Direction.Custom:c=c.slice(1)}return c}},BI.VerticalLayoutLogic=BI.inherit(BI.Logic,{_defaultConfig:function(){return BI.extend(BI.VerticalLayoutLogic.superclass._defaultConfig.apply(this,arguments),{dynamic:!1,scrollable:null,scrolly:!1,scrollx:!1,items:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},createLogic:function(){var a,b=this.options;return a=b.dynamic?"bi.vertical":"bi.vtape",{type:a,scrollable:b.scrollable,scrolly:b.scrolly,scrollx:b.scrollx,hgap:b.hgap,vgap:b.vgap,lgap:b.lgap,rgap:b.rgap,tgap:b.tgap,bgap:b.bgap,items:b.items}},_init:function(){BI.VerticalLayoutLogic.superclass._init.apply(this,arguments)}}),BI.HorizontalLayoutLogic=BI.inherit(BI.Logic,{_defaultConfig:function(){return BI.extend(BI.HorizontalLayoutLogic.superclass._defaultConfig.apply(this,arguments),{dynamic:!1,scrollable:null,scrolly:!1,scrollx:!1,items:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},createLogic:function(){var a,b=this.options;return a=b.dynamic?"bi.vertical_adapt":"bi.htape",{type:a,scrollable:b.scrollable,scrolly:b.scrolly,scrollx:b.scrollx,hgap:b.hgap,vgap:b.vgap,lgap:b.lgap,rgap:b.rgap,tgap:b.tgap,bgap:b.bgap,items:b.items}},_init:function(){BI.HorizontalLayoutLogic.superclass._init.apply(this,arguments)}}),BI.TableLayoutLogic=BI.inherit(BI.Logic,{_defaultConfig:function(){return BI.extend(BI.TableLayoutLogic.superclass._defaultConfig.apply(this,arguments),{dynamic:!1,scrollable:null,scrolly:!1,scrollx:!1,columns:0,rows:0,columnSize:[],rowSize:[],hgap:0,vgap:0,items:[]})},createLogic:function(){var a,b=this.options;return a=b.dynamic?"bi.table":"bi.window",{type:a,scrollable:b.scrollable,scrolly:b.scrolly,scrollx:b.scrollx,columns:b.columns,rows:b.rows,columnSize:b.columnSize,rowSize:b.rowSize,hgap:b.hgap,vgap:b.vgap,items:b.items}},_init:function(){BI.TableLayoutLogic.superclass._init.apply(this,arguments)}}),BI.HorizontalFillLayoutLogic=BI.inherit(BI.Logic,{_defaultConfig:function(){return BI.extend(BI.HorizontalFillLayoutLogic.superclass._defaultConfig.apply(this,arguments),{dynamic:!1,scrollable:null,scrolly:!1,scrollx:!1,items:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},createLogic:function(){var a,b=this.options,c=[];return BI.each(b.items,function(a,b){c.push(b.width||0)}),a=b.dynamic?"bi.horizontal_adapt":"bi.htape",{type:a,columnSize:c,scrollable:b.scrollable,scrolly:b.scrolly,scrollx:b.scrollx,hgap:b.hgap,vgap:b.vgap,lgap:b.lgap,rgap:b.rgap,tgap:b.tgap,bgap:b.bgap,items:b.items}},_init:function(){BI.HorizontalFillLayoutLogic.superclass._init.apply(this,arguments)}}),BI.Plugin=BI.Plugin||{},function(){var a={},b={};BI.extend(BI.Plugin,{getWidget:function(b,c){if(a[b])for(var d,e=a[b].length-1;e>=0;e--)if(d=a[b][e](c))return d;return c},registerWidget:function(b,c){a[b]||(a[b]=[]),a[b].length>0&&console.log("组件已经注册过了!"),a[b].push(c)},relieveWidget:function(b){delete a[b]},getObject:function(a,c){if(b[a])for(var d,e=0,f=b[a].length;e0&&console.log("对象已经注册过了!"),b[a].push(c)},relieveObject:function(a){delete b[a]}})}(),$.extend(Array.prototype,{contains:function(a){return this.indexOf(a)>-1},remove:function(a){var b=this.indexOf(a);return b!==-1&&this.splice(b,1),this},pushArray:function(a){for(var b=0;b=0;a--){var b=localStorage.key(a);b&&0===b.indexOf(BI.Cache._getKeyPrefix())&&localStorage.removeItem(b)}},keys:function(){for(var a=[],b=localStorage.length;b>=0;b--){var c=localStorage.key(b);if(c){var d=BI.Cache._getKeyPrefix();0===c.indexOf(d)&&(a[a.length]=c.substring(d.length))}}return a},addCookie:function(a,b,c,d){var e=a+"="+escape(b);if(d&&d>0){var f=new Date;f.setTime(f.getTime()+3600*d*1e3),e=e+"; expires="+f.toGMTString()}c&&(e=e+"; path="+c),document.cookie=e},getCookie:function(a){var b,c=new RegExp("(^| )"+a+"=([^;]*)(;|$)");return(b=document.cookie.match(c))?unescape(b[2]):null},deleteCookie:function(a,b){var c=new Date;c.setTime(c.getTime()-1e4);var d=a+"=v; expires="+c.toGMTString();b&&(d=d+"; path="+b),document.cookie=d}},Date._DN=[BI.i18nText("BI-Basic_Sunday"),BI.i18nText("BI-Basic_Monday"),BI.i18nText("BI-Basic_Tuesday"),BI.i18nText("BI-Basic_Wednesday"),BI.i18nText("BI-Basic_Thursday"),BI.i18nText("BI-Basic_Friday"),BI.i18nText("BI-Basic_Saturday"),BI.i18nText("BI-Basic_Sunday")],Date._SDN=[BI.i18nText("BI-Basic_Simple_Sunday"),BI.i18nText("BI-Basic_Simple_Monday"),BI.i18nText("BI-Basic_Simple_Tuesday"),BI.i18nText("BI-Basic_Simple_Wednesday"),BI.i18nText("BI-Basic_Simple_Thursday"),BI.i18nText("BI-Basic_Simple_Friday"),BI.i18nText("BI-Basic_Simple_Saturday"),BI.i18nText("BI-Basic_Simple_Sunday")],Date._FD=1,Date._MN=[BI.i18nText("BI-Basic_January"),BI.i18nText("BI-Basic_February"),BI.i18nText("BI-Basic_March"),BI.i18nText("BI-Basic_April"),BI.i18nText("BI-Basic_May"),BI.i18nText("BI-Basic_June"),BI.i18nText("BI-Basic_July"),BI.i18nText("BI-Basic_August"),BI.i18nText("BI-Basic_September"),BI.i18nText("BI-Basic_October"),BI.i18nText("BI-Basic_November"),BI.i18nText("BI-Basic_December")],Date._SMN=[0,1,2,3,4,5,6,7,8,9,10,11],Date._QN=["",BI.i18nText("BI-Quarter_1"),BI.i18nText("BI-Quarter_2"),BI.i18nText("BI-Quarter_3"),BI.i18nText("BI-Quarter_4")],Date._MD=[31,28,31,30,31,30,31,31,30,31,30,31],Date.SECOND=1e3,Date.MINUTE=60*Date.SECOND,Date.HOUR=60*Date.MINUTE,Date.DAY=24*Date.HOUR,Date.WEEK=7*Date.DAY,Date.prototype.getTimezone=function(){return this.toString().replace(/^.* (?:\((.*)\)|([A-Z]{1,4})(?:[\-+][0-9]{4})?(?: -?\d+)?)$/,"$1$2").replace(/[^A-Z]/g,"")},Date.prototype.getMonthDays=function(a){var b=this.getFullYear();return"undefined"==typeof a&&(a=this.getMonth()),0!=b%4||0==b%100&&0!=b%400||1!=a?Date._MD[a]:29},Date.prototype.getLastDateOfMonth=function(){return new Date(this.getFullYear(),this.getMonth(),this.getMonthDays())},Date.prototype.getDayOfYear=function(){var a=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0),b=new Date(this.getFullYear(),0,0,0,0,0),c=a-b;return Math.floor(c/Date.DAY)},Date.prototype.getWeekNumber=function(){var a=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0),b=a.getDay();if(0===this.getMonth()&&this.getDate()<=b)return 1;a.setDate(this.getDate()-b);var c=a.valueOf();a.setMonth(0),a.setDate(1);var d=Math.floor((c-a.valueOf())/6048e5)+1;return a.getDay()>0&&d++,d},Date.prototype.getOffsetDate=function(a){return new Date(this.getTime()+864e5*a)},Date.prototype.getAfterMulQuarter=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()+3*a),b},Date.prototype.getBeforeMulQuarter=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()-3*a),b},Date.prototype.getQuarterStartMonth=function(){var a=0,b=this.getMonth();return b<3&&(a=0),28&&(a=9),a},Date.prototype.getQuarterStartDate=function(){return new Date(this.getFullYear(),this.getQuarterStartMonth(),1)},Date.prototype.getQuarterEndDate=function(){var a=this.getQuarterStartMonth()+2;return new Date(this.getFullYear(),a,this.getMonthDays(a))},Date.prototype.getAfterMultiMonth=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()+a|0),b},Date.prototype.getBeforeMultiMonth=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()-a|0),b},Date.prototype.getAfterMulQuarter=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()+3*a),b},Date.prototype.getBeforeMulQuarter=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()-3*a),b},Date.prototype.getQuarterStartMonth=function(){var a=0,b=this.getMonth();return b<3&&(a=0),28&&(a=9),a},Date.prototype.getOffsetMonth=function(a){var b=new Date(this.getTime()),c=b.getDate(),d=new Date(b.getFullYear(),b.getMonth()+parseInt(a),1).getMonthDays();return c>d&&(c=d),b.setDate(c),b.setMonth(b.getMonth()+parseInt(a)),b},Date.prototype.getWeekStartDate=function(){var a=this.getDay();return this.getOffsetDate(-a)},Date.prototype.getWeekEndDate=function(){var a=this.getDay(),b=0===a?6:6-a;return this.getOffsetDate(b)},Date.prototype.getQuarterStartDate=function(){return new Date(this.getFullYear(),this.getQuarterStartMonth(),1)},Date.prototype.getQuarterEndDate=function(){var a=this.getQuarterStartMonth()+2;return new Date(this.getFullYear(),a,this.getMonthDays(a))},Date.prototype.getAfterMultiMonth=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()+a|0),b},Date.prototype.getBeforeMultiMonth=function(a){var b=new Date(this.getTime());return b.setMonth(b.getMonth()-a|0),b},Date.prototype.equalsTo=function(a){return this.getFullYear()==a.getFullYear()&&this.getMonth()==a.getMonth()&&this.getDate()==a.getDate()&&this.getHours()==a.getHours()&&this.getMinutes()==a.getMinutes()&&this.getSeconds()==a.getSeconds()},Date.prototype.setDateOnly=function(a){var b=new Date(a);this.setDate(1),this.setFullYear(b.getFullYear()),this.setMonth(b.getMonth()),this.setDate(b.getDate())},Date.prototype.print=function(a){var b=this.getMonth(),c=this.getDate(),d=this.getFullYear(),e=this.getWeekNumber(),f=this.getDay(),g={},h=this.getHours(),i=h>=12,j=i?h-12:h,k=this.getDayOfYear();0==j&&(j=12);var l=this.getMinutes(),m=this.getSeconds();g["%a"]=Date._SDN[f],g["%A"]=Date._DN[f],g["%b"]=Date._SMN[b],g["%B"]=Date._MN[b],g["%C"]=1+Math.floor(d/100),g["%d"]=c<10?"0"+c:c,g["%e"]=c,g["%H"]=h<10?"0"+h:h,g["%I"]=j<10?"0"+j:j,g["%j"]=k<100?k<10?"00"+k:"0"+k:k,g["%k"]=h,g["%l"]=j,g["%X"]=b<9?"0"+(1+b):1+b,g["%x"]=b+1,g["%M"]=l<10?"0"+l:l,g["%n"]="\n",g["%p"]=i?"PM":"AM",g["%P"]=i?"pm":"am",g["%s"]=Math.floor(this.getTime()/1e3),g["%S"]=m<10?"0"+m:m,g["%t"]="\t",g["%U"]=g["%W"]=g["%V"]=e<10?"0"+e:e,g["%u"]=f+1,g["%w"]=f,g["%y"]=(""+d).substr(2,2),g["%Y"]=d,g["%%"]="%";var n=/%./g;if(!BI.isKhtml())return a.replace(n,function(a){return g[a]||a});for(var o=a.match(n),p=0;pe[0]?f=["y",1]:a>=d[0]&&a<=e[0]&&(a==d[0]&&(be[1]?f=["m",1]:b==e[1]&&c>e[2]&&(f=["d",1]))),f},Date.checkLegal=function(a){var b=a.match(/\d+/g),c=0|b[0],d=0|b[1],e=0|b[2];if(b.length<=1)return!0;if(b.length<=2)return d>=1&&d<=12;var f=Date._MD.slice(0);return f[1]=Date.isLeap(c)?29:28,d>=1&&d<=12&&e<=f[d-1]},Date.parseDateTime=function(a,b){var c=new Date,d=0,e=0,f=1,g=a.split(/\W+/);if("%y%x"==b.toLowerCase()||"%y%x%d"==b.toLowerCase()){var h=4,i=2;g[0]=a.substring(0,h),g[1]=a.substring(h,h+i),g[2]=a.substring(h+i,h+2*i)}var j=b.match(/%./g),k=0,l=0,m=0,n=0,o=0;for(k=0;k29?1900:2e3);break;case"%b":case"%B":for(l=0;l<12;++l)if(Date._MN[l].substr(0,g[k].length).toLowerCase()==g[k].toLowerCase()){e=l;break}break;case"%H":case"%I":case"%k":case"%l":m=parseInt(g[k],10);break;case"%P":case"%p":/pm/i.test(g[k])&&m<12?m+=12:/am/i.test(g[k])&&m>=12&&(m-=12);break;case"%M":n=parseInt(g[k],10);case"%S":o=parseInt(g[k],10)}if(isNaN(d)&&(d=c.getFullYear()),isNaN(e)&&(e=c.getMonth()),isNaN(f)&&(f=c.getDate()),isNaN(m)&&(m=c.getHours()), +isNaN(n)&&(n=c.getMinutes()),isNaN(o)&&(o=c.getSeconds()),0!=d)return new Date(d,e,f,m,n,o);for(d=0,e=-1,f=0,k=0;k31&&0==d?(d=parseInt(g[k],10),d<100&&(d+=d>29?1900:2e3)):0==f&&(f=g[k]);return 0==d&&(d=c.getFullYear()),e!=-1&&0!=f?new Date(d,e,f,m,n,o):c},$.extend($.Event.prototype,{stopEvent:function(){this.stopPropagation(),this.preventDefault()}}),Function.prototype.before=function(a){var b=this;return function(){return a.apply(this,arguments)!==!1&&b.apply(this,arguments)}},Function.prototype.after=function(a){var b=this;return function(){var c=b.apply(this,arguments);return c!==!1&&(a.apply(this,arguments),c)}},jQuery&&!function(a){a.fn.insets||(a.fn.insets=function(){var a=this.padding(),b=this.border();return{top:a.top,bottom:a.bottom+b.bottom+b.top,left:a.left,right:a.right+b.right+b.left}}),a.fn.bounds||(a.fn.bounds=function(a){var b={hasIgnoredBounds:!0};return a?(isNaN(a.x)||(b.left=a.x),isNaN(a.y)||(b.top=a.y),null!=a.width&&(b.width=a.width-(this.outerWidth(!0)-this.width()),b.width=b.width>=0?b.width:a.width),null!=a.height&&(b.height=a.height-(this.outerHeight(!0)-this.height()),b.height=b.height>=0?b.height:a.height),this.css(b),this):(b=this.position(),{x:b.left,y:b.top,width:this.outerWidth(),height:this.outerHeight()})})}(jQuery),Number.prototype.toFixed&&"0.000"===8e-5.toFixed(3)&&"0"!==.9.toFixed(0)&&"1.25"===1.255.toFixed(2)&&"1000000000000000128"===(0xde0b6b3a7640080).toFixed(0)||!function(){function a(a,b){for(var c=-1;++c=0;)c+=h[b],h[b]=Math.floor(c/a),c=c%a*f}function c(){for(var a=g,b="";--a>=0;)if(""!==b||0===a||0!==h[a]){var c=String(h[a]);""===b?b=c:b+="0000000".slice(0,7-c.length)+c}return b}function d(a,b,c){return 0===b?c:b%2===1?d(a,b-1,c*a):d(a*a,b/2,c)}function e(a){for(var b=0;a>=4096;)b+=12,a/=4096;for(;a>=2;)b+=1,a/=2;return b}var f,g,h;f=1e7,g=6,h=[0,0,0,0,0,0],Number.prototype.toFixed=function(f){var g,h,i,j,k,l,m,n;if(g=Number(f),g=g!==g?0:Math.floor(g),g<0||g>20)throw new RangeError("Number.toFixed called with invalid number of decimals");if(h=Number(this),h!==h)return"NaN";if(h<=-1e21||h>1e21)return String(h);if(i="",h<0&&(i="-",h=-h),j="0",h>1e-21)if(k=e(h*d(2,69,1))-69,l=k<0?h*d(2,-k,1):h/d(2,k,1),l*=4503599627370496,k=52-k,k>0){for(a(0,l),m=g;m>=7;)a(1e7,0),m-=7;for(a(d(10,m,1),0),m=k-1;m>=23;)b(1<<23),m-=23;b(1<0?(n=j.length,j=n<=g?i+"0.0000000000000000000".slice(0,g-n+2)+j:i+j.slice(0,n-g)+"."+j.slice(n-g)):j=i+j,j}}(),Number.prototype.add=function(a){return accAdd(a,this)},Number.prototype.sub=function(a){return accSub(this,a)},Number.prototype.mul=function(a){return accMul(a,this)},Number.prototype.div=function(a){return accDiv(this,a)},$.extend(String.prototype,{startWith:function(a){return!(null==a||""==a||0===this.length||a.length>this.length)&&this.substr(0,a.length)==a},endWith:function(a){return!(null==a||""==a||0===this.length||a.length>this.length)&&this.substring(this.length-a.length)==a},getQuery:function(a){var b=new RegExp("(^|&)"+a+"=([^&]*)(&|$)"),c=this.substr(this.indexOf("?")+1).match(b);return c?unescape(c[2]):null},appendQuery:function(a){if(!a)return this;var b=this;return b.indexOf("?")===-1&&(b+="?"),b.endWith("?")!==!1||(b+="&"),$.each(a,function(a,c){"string"==typeof a&&(b+=a+"="+c+"&")}),b=b.substr(0,b.length-1)},replaceAll:function(a,b){return this.replace(new RegExp(a,"gm"),b)},perfectStart:function(a){return this.startWith(a)?this:a+this},allIndexOf:function(a){if("string"!=typeof a)return[];for(var b=this,c=[],d=0;b.length>0;){var e=b.indexOf(a);if(e===-1)break;c.push(d+e),b=b.substring(e+a.length,b.length),d+=e+a.length}return c}}),$.extend(String,{escape:function(a){return a.replace(/('|\\)/g,"\\$1")},leftPad:function(a,b,c){var d=String(a);for(c||(c=" ");d.length").attr({cellspacing:0,cellpadding:0}).css({position:"relative",width:"100%",height:"100%","white-space":"nowrap","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.$tr=$("
"),this.$tr.appendTo(this.$table),this.populate(this.options.items)},_addElement:function(a,b){var c,d=this.options,e=d.columnSize[a]<=1?100*d.columnSize[a]+"%":d.columnSize[a];if(this.hasWidget(this._getChildName(a)))c=this.getWidgetByName(this._getChildName(a)),c.element.attr("width",e);else{var f=BI.createWidget(b);f.element.css({position:"relative",top:"0",left:"0",margin:"0px auto"}),c=BI.createWidget({type:"bi.default",tagName:"td",attributes:{width:e},items:[f]}),this.addWidget(this._getChildName(a),c)}return c.element.css({"max-width":d.columnSize[a]}),0===a&&c.element.addClass("first-element"),c.element.css({position:"relative",height:"100%","vertical-align":"middle",margin:"0",padding:"0",border:"none"}),d.hgap+d.lgap+(b.lgap||0)!==0&&f.element.css({"margin-left":d.hgap+d.lgap+(b.lgap||0)+"px"}),d.hgap+d.rgap+(b.rgap||0)!==0&&f.element.css({"margin-right":d.hgap+d.rgap+(b.rgap||0)+"px"}),d.vgap+d.tgap+(b.tgap||0)!==0&&f.element.css({"margin-top":d.vgap+d.tgap+(b.tgap||0)+"px"}),d.vgap+d.bgap+(b.bgap||0)!==0&&f.element.css({"margin-bottom":d.vgap+d.bgap+(b.bgap||0)+"px"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$tr.append(b),this.element.append(this.$table))},resize:function(){},_getWrapper:function(){return this.$tr},populate:function(a){BI.CenterAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.center_adapt",BI.CenterAdaptLayout),BI.HorizontalAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.HorizontalAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-horizontal-adapt-layout",verticalAlign:BI.VerticalAlign.Middle,columnSize:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.HorizontalAdaptLayout.superclass.render.apply(this,arguments),this.$table=$("
").attr({cellspacing:0,cellpadding:0}).css({position:"relative",width:"100%","white-space":"nowrap","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.$tr=$(""),this.$tr.appendTo(this.$table),this.populate(this.options.items)},_addElement:function(a,b){var c,d=this.options,e=d.columnSize[a]<=1?100*d.columnSize[a]+"%":d.columnSize[a];if(this.hasWidget(this._getChildName(a)))c=this.getWidgetByName(this._getChildName(a)),c.element.attr("width",e);else{var f=BI.createWidget(b);f.element.css({position:"relative",top:"0",left:"0",margin:"0px auto"}),c=BI.createWidget({type:"bi.default",tagName:"td",attributes:{width:e},items:[f]}),this.addWidget(this._getChildName(a),c)}return c.element.css({"max-width":d.columnSize[a]+"px"}),0===a&&c.element.addClass("first-element"),c.element.css({position:"relative","vertical-align":d.verticalAlign,margin:"0",padding:"0",border:"none"}),d.hgap+d.lgap+(b.lgap||0)!==0&&f.element.css({"margin-left":d.hgap+d.lgap+(b.lgap||0)+"px"}),d.hgap+d.rgap+(b.rgap||0)!==0&&f.element.css({"margin-right":d.hgap+d.rgap+(b.rgap||0)+"px"}),d.vgap+d.tgap+(b.tgap||0)!==0&&f.element.css({"margin-top":d.vgap+d.tgap+(b.tgap||0)+"px"}),d.vgap+d.bgap+(b.bgap||0)!==0&&f.element.css({"margin-bottom":d.vgap+d.bgap+(b.bgap||0)+"px"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$tr.append(b),this.element.append(this.$table))},resize:function(){},_getWrapper:function(){return this.$tr},populate:function(a){BI.HorizontalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal_adapt",BI.HorizontalAdaptLayout),BI.LeftRightVerticalAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.LeftRightVerticalAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-left-right-vertical-adapt-layout",items:{},llgap:0,lrgap:0,lhgap:0,rlgap:0,rrgap:0,rhgap:0})},render:function(){BI.LeftRightVerticalAdaptLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},stroke:function(a){var b=this.options;if("left"in a){var c=BI.createWidget({type:"bi.vertical_adapt",items:a.left,hgap:b.lhgap,lgap:b.llgap,rgap:b.lrgap});c.element.css("height","100%"),BI.createWidget({type:"bi.left",element:this,items:[c]})}if("right"in a){var d=BI.createWidget({type:"bi.vertical_adapt",items:a.right,hgap:b.rhgap,lgap:b.rlgap,rgap:b.rrgap});d.element.css("height","100%"),BI.createWidget({type:"bi.right",element:this,items:[d]})}},populate:function(a){BI.LeftRightVerticalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.left_right_vertical_adapt",BI.LeftRightVerticalAdaptLayout),BI.LeftVerticalAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.LeftRightVerticalAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-left-vertical-adapt-layout",items:[],lgap:0,rgap:0,hgap:0})},render:function(){BI.LeftVerticalAdaptLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},stroke:function(a){var b=this.options,c=BI.createWidget({type:"bi.vertical_adapt",items:a,lgap:b.lgap,hgap:b.hgap,rgap:b.rgap});c.element.css("height","100%"),BI.createWidget({type:"bi.left",element:this,items:[c]})},populate:function(a){BI.LeftVerticalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.left_vertical_adapt",BI.LeftVerticalAdaptLayout),BI.RightVerticalAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.RightVerticalAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-right-vertical-adapt-layout",items:[],lgap:0,rgap:0,hgap:0})},render:function(){BI.RightVerticalAdaptLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},stroke:function(a){var b=this.options,c=BI.createWidget({type:"bi.vertical_adapt",items:a,lgap:b.lgap,hgap:b.hgap,rgap:b.rgap});c.element.css("height","100%"),BI.createWidget({type:"bi.right",element:this,items:[c]})},populate:function(a){BI.RightVerticalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.right_vertical_adapt",BI.RightVerticalAdaptLayout),BI.VerticalAdaptLayout=BI.inherit(BI.Layout,{props:{baseCls:"bi-vertical-adapt-layout",columnSize:[],horizontalAlign:BI.HorizontalAlign.Left,hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0},render:function(){BI.VerticalAdaptLayout.superclass.render.apply(this,arguments);var a=this.options;this.$table=$("
").attr({cellspacing:0,cellpadding:0}).css({position:"relative",width:a.horizontalAlign===BI.HorizontalAlign.Stretch?"100%":"auto",height:"100%","white-space":"nowrap","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.$tr=$(""),this.$tr.appendTo(this.$table),this.populate(this.options.items)},_addElement:function(a,b){var c,d=this.options,e=d.columnSize[a]<=1?100*d.columnSize[a]+"%":d.columnSize[a];if(this.hasWidget(this._getChildName(a)))c=this.getWidgetByName(this._getChildName(a)),c.element.attr("width",e);else{var f=BI.createWidget(b);f.element.css({position:"relative",top:"0",left:"0",margin:"0px auto"}),c=BI.createWidget({type:"bi.default",tagName:"td",attributes:{width:e},items:[f]}),this.addWidget(this._getChildName(a),c)}return 0===a&&c.element.addClass("first-element"),c.element.css({position:"relative",height:"100%","vertical-align":"middle",margin:"0",padding:"0",border:"none"}),d.hgap+d.lgap+(b.lgap||0)!==0&&f.element.css({"margin-left":d.hgap+d.lgap+(b.lgap||0)+"px"}),d.hgap+d.rgap+(b.rgap||0)!==0&&f.element.css({"margin-right":d.hgap+d.rgap+(b.rgap||0)+"px"}),d.vgap+d.tgap+(b.tgap||0)!==0&&f.element.css({"margin-top":d.vgap+d.tgap+(b.tgap||0)+"px"}),d.vgap+d.bgap+(b.bgap||0)!==0&&f.element.css({"margin-bottom":d.vgap+d.bgap+(b.bgap||0)+"px"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$tr.append(b),this.element.append(this.$table))},_getWrapper:function(){return this.$tr},resize:function(){},populate:function(a){BI.VerticalAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.vertical_adapt",BI.VerticalAdaptLayout),BI.HorizontalAutoLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.HorizontalAutoLayout.superclass.props.apply(this,arguments),{baseCls:"bi-horizon-auto-layout",hgap:0,lgap:0,rgap:0,vgap:0,tgap:0,bgap:0})},render:function(){BI.HorizontalAutoLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.HorizontalAutoLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative",margin:"0px auto"}),c.hgap+c.lgap+(b.lgap||0)!==0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)!==0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)!==0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)!==0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},resize:function(){},populate:function(a){BI.HorizontalAutoLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal_auto",BI.HorizontalAutoLayout),BI.FloatCenterAdaptLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FloatCenterAdaptLayout.superclass.props.apply(this,arguments),{baseCls:"bi-float-center-adapt-layout",items:[],hgap:0,vgap:0,tgap:0,bgap:0,lgap:0,rgap:0})},render:function(){BI.FloatCenterAdaptLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},mounted:function(){var a=this,b=this.left.element.outerWidth(),c=this.left.element.outerHeight();this.left.element.width(b).height(c).css("float","none"),BI.remove(this._children,function(b,c){c===a.container&&delete a._children[b]}),BI.createWidget({type:"bi.center_adapt",element:this,items:[this.left]})},stroke:function(a){var b=this.options;this.left=BI.createWidget({type:"bi.vertical",items:a,hgap:b.hgap,vgap:b.vgap,tgap:b.tgap,bgap:b.bgap,lgap:b.lgap,rgap:b.rgap}),this.container=BI.createWidget({type:"bi.left",element:this,items:[this.left]})},populate:function(a){BI.FloatCenterAdaptLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.float_center_adapt",BI.FloatCenterAdaptLayout),BI.FloatHorizontalLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FloatHorizontalLayout.superclass.props.apply(this,arguments),{baseCls:"bi-float-horizontal-adapt-layout",items:[],hgap:0,vgap:0,tgap:0,bgap:0,lgap:0,rgap:0})},render:function(){BI.FloatHorizontalLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},mounted:function(){var a=this,b=this.left.element.width(),c=this.left.element.height();this.left.element.width(b).height(c).css("float","none"),BI.remove(this._children,function(b,c){c===a.container&&delete a._children[b]}),BI.createWidget({type:"bi.horizontal_auto",element:this,items:[this.left]})},_addElement:function(a,b){var c=this.options;return this.left=BI.createWidget({type:"bi.vertical",items:[b],hgap:c.hgap,vgap:c.vgap,tgap:c.tgap,bgap:c.bgap,lgap:c.lgap,rgap:c.rgap}),this.container=BI.createWidget({type:"bi.left",element:this,items:[this.left]}),this.left},populate:function(a){BI.HorizontalAutoLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal_float",BI.FloatHorizontalLayout),BI.FlexCenterLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexCenterLayout.superclass.props.apply(this,arguments),{baseCls:"bi-flex-center-layout"})},render:function(){BI.FlexCenterLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=(this.options,BI.FlexCenterLayout.superclass._addElement.apply(this,arguments));return c.element.css({position:"relative","flex-shrink":"0"}),c},resize:function(){},populate:function(a){BI.FlexCenterLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_center",BI.FlexCenterLayout),BI.FlexHorizontalLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexHorizontalLayout.superclass.props.apply(this,arguments),{baseCls:"bi-flex-horizontal-layout",verticalAlign:BI.VerticalAlign.Top,columnSize:[],scrollx:!0,hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FlexHorizontalLayout.superclass.render.apply(this,arguments);var a=this.options;this.element.addClass(a.verticalAlign),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FlexHorizontalLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative","flex-shrink":"0"}),c.hgap+c.lgap+(b.lgap||0)>0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)>0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)>0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},resize:function(){},populate:function(a){BI.FlexHorizontalLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_horizontal",BI.FlexHorizontalLayout),BI.FlexVerticalCenter=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexVerticalCenter.superclass.props.apply(this,arguments),{baseCls:"bi-flex-vertical-center",horizontalAlign:BI.HorizontalAlign.Left,columnSize:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FlexVerticalCenter.superclass.render.apply(this,arguments);var a=this.options;this.element.addClass(a.horizontalAlign),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FlexVerticalCenter.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative","flex-shrink":"0"}),c.hgap+c.lgap+(b.lgap||0)>0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)>0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)>0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},resize:function(){},populate:function(a){BI.FlexVerticalCenter.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_vertical_center",BI.FlexVerticalCenter),BI.FlexCenterLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexCenterLayout.superclass.props.apply(this,arguments),{baseCls:"bi-flex-wrapper-center-layout clearfix"})},render:function(){BI.FlexCenterLayout.superclass.render.apply(this,arguments),this.$wrapper=$("
").addClass("flex-wrapper-center-layout-wrapper"),this.populate(this.options.items)},_addElement:function(a,b){var c=(this.options,BI.FlexCenterLayout.superclass._addElement.apply(this,arguments));return c.element.css({position:"relative"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$wrapper.append(b),this.element.append(this.$wrapper))},_getWrapper:function(){return this.$wrapper},resize:function(){},populate:function(a){BI.FlexCenterLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_wrapper_center",BI.FlexCenterLayout),BI.FlexHorizontalLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexHorizontalLayout.superclass.props.apply(this,arguments),{baseCls:"bi-flex-wrapper-horizontal-layout clearfix",verticalAlign:BI.VerticalAlign.Middle,columnSize:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FlexHorizontalLayout.superclass.render.apply(this,arguments);var a=this.options;this.$wrapper=$("
").addClass("flex-wrapper-horizontal-layout-wrapper "+a.verticalAlign),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FlexHorizontalLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative"}),c.hgap+c.lgap+(b.lgap||0)>0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)>0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)>0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$wrapper.append(b),this.element.append(this.$wrapper))},_getWrapper:function(){return this.$wrapper},resize:function(){},populate:function(a){BI.FlexHorizontalLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_wrapper_horizontal",BI.FlexHorizontalLayout),BI.FlexVerticalCenter=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FlexVerticalCenter.superclass.props.apply(this,arguments),{baseCls:"bi-flex-wrapper-vertical-center clearfix",horizontalAlign:BI.HorizontalAlign.Middle,columnSize:[],hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FlexVerticalCenter.superclass.render.apply(this,arguments);var a=this.options;this.$wrapper=$("
").addClass("flex-wrapper-vertical-center-wrapper "+a.horizontalAlign),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FlexVerticalCenter.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative"}),c.hgap+c.lgap+(b.lgap||0)>0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)>0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.tgap+(b.tgap||0)>0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$wrapper.append(b),this.element.append(this.$wrapper))},_getWrapper:function(){return this.$wrapper},resize:function(){},populate:function(a){BI.FlexVerticalCenter.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.flex_wrapper_vertical_center",BI.FlexVerticalCenter),BI.AbsoluteLayout=BI.inherit(BI.Layout,{ +props:function(){return BI.extend(BI.AbsoluteLayout.superclass.props.apply(this,arguments),{baseCls:"bi-absolute-layout",hgap:null,vgap:null,lgap:null,rgap:null,tgap:null,bgap:null})},render:function(){BI.AbsoluteLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.AbsoluteLayout.superclass._addElement.apply(this,arguments),e=0,f=0,g=0,h=0;return BI.isNotNull(b.left)&&(d.element.css({left:b.left}),e+=b.left),BI.isNotNull(b.right)&&(d.element.css({right:b.right}),f+=b.right),BI.isNotNull(b.top)&&(d.element.css({top:b.top}),g+=b.top),BI.isNotNull(b.bottom)&&(d.element.css({bottom:b.bottom}),h+=b.bottom),BI.isNotNull(c.hgap)&&(e+=c.hgap,d.element.css({left:e}),f+=c.hgap,d.element.css({right:f})),BI.isNotNull(c.vgap)&&(g+=c.vgap,d.element.css({top:g}),h+=c.vgap,d.element.css({bottom:h})),BI.isNotNull(c.lgap)&&(e+=c.lgap,d.element.css({left:e})),BI.isNotNull(c.rgap)&&(f+=c.rgap,d.element.css({right:f})),BI.isNotNull(c.tgap)&&(g+=c.tgap,d.element.css({top:g})),BI.isNotNull(c.bgap)&&(h+=c.bgap,d.element.css({bottom:h})),BI.isNotNull(b.width)&&d.element.css({width:b.width}),BI.isNotNull(b.height)&&d.element.css({height:b.height}),d.element.css({position:"absolute"}),d},resize:function(){this.stroke(this.options.items)},stroke:function(a){this.options.items=a||[];var b=this;BI.each(a,function(a,c){if(c){if(!BI.isWidget(c)&&!c.el)throw new Error("el must be exist");b._addElement(a,c)}})},populate:function(a){BI.AbsoluteLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.absolute",BI.AbsoluteLayout),BI.AdaptiveLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.AdaptiveLayout.superclass.props.apply(this,arguments),{baseCls:"bi-adaptive-layout",hgap:null,vgap:null,lgap:null,rgap:null,tgap:null,bgap:null})},render:function(){BI.AdaptiveLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.AdaptiveLayout.superclass._addElement.apply(this,arguments);d.element.css({position:"relative"});var e=0,f=0,g=0,h=0;return BI.isNotNull(b.left)&&d.element.css({"margin-left":b.left}),BI.isNotNull(b.right)&&d.element.css({"margin-right":b.right}),BI.isNotNull(b.top)&&d.element.css({"margin-top":b.top}),BI.isNotNull(b.bottom)&&d.element.css({"margin-bottom":b.bottom}),BI.isNotNull(c.hgap)&&(e+=c.hgap,d.element.css({left:e}),f+=c.hgap,d.element.css({right:f})),BI.isNotNull(c.vgap)&&(g+=c.vgap,d.element.css({top:g}),h+=c.vgap,d.element.css({bottom:h})),BI.isNotNull(c.lgap)&&(e+=c.lgap,d.element.css({left:e})),BI.isNotNull(c.rgap)&&(f+=c.rgap,d.element.css({right:f})),BI.isNotNull(c.tgap)&&(g+=c.tgap,d.element.css({top:g})),BI.isNotNull(c.bgap)&&(h+=c.bgap,d.element.css({bottom:h})),BI.isNotNull(b.width)&&d.element.css({width:b.width}),BI.isNotNull(b.height)&&d.element.css({height:b.height}),d},resize:function(){this.stroke(this.options.items)},populate:function(a){BI.AbsoluteLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.adaptive",BI.AdaptiveLayout),BI.BorderLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.BorderLayout.superclass.props.apply(this,arguments),{baseCls:"bi-border-layout",items:{}})},render:function(){BI.BorderLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){this.stroke(this.options.items)},addItem:function(a){throw new Error("cannot be added")},stroke:function(a){var b,c=0,d=0,e=0,f=0;if("north"in a&&(b=a.north,null!=b)){if(b.el){if(!this.hasWidget(this.getName()+"north")){var g=BI.createWidget(b);this.addWidget(this.getName()+"north",g)}this.getWidgetByName(this.getName()+"north").element.height(b.height).css({position:"absolute",top:b.top||0,left:b.left||0,right:b.right||0,bottom:"initial"})}c=(b.height||0)+(b.top||0)+(b.bottom||0)}if("south"in a&&(b=a.south,null!=b)){if(b.el){if(!this.hasWidget(this.getName()+"south")){var g=BI.createWidget(b);this.addWidget(this.getName()+"south",g)}this.getWidgetByName(this.getName()+"south").element.height(b.height).css({position:"absolute",bottom:b.bottom||0,left:b.left||0,right:b.right||0,top:"initial"})}d=(b.height||0)+(b.top||0)+(b.bottom||0)}if("west"in a&&(b=a.west,null!=b)){if(b.el){if(!this.hasWidget(this.getName()+"west")){var g=BI.createWidget(b);this.addWidget(this.getName()+"west",g)}this.getWidgetByName(this.getName()+"west").element.width(b.width).css({position:"absolute",left:b.left||0,top:c,bottom:d,right:"initial"})}e=(b.width||0)+(b.left||0)+(b.right||0)}if("east"in a&&(b=a.east,null!=b)){if(b.el){if(!this.hasWidget(this.getName()+"east")){var g=BI.createWidget(b);this.addWidget(this.getName()+"east",g)}this.getWidgetByName(this.getName()+"east").element.width(b.width).css({position:"absolute",right:b.right||0,top:c,bottom:d,left:"initial"})}f=(b.width||0)+(b.left||0)+(b.right||0)}if("center"in a&&(b=a.center,null!=b)){if(!this.hasWidget(this.getName()+"center")){var g=BI.createWidget(b);this.addWidget(this.getName()+"center",g)}this.getWidgetByName(this.getName()+"center").element.css({position:"absolute",top:c,bottom:d,left:e,right:f})}},populate:function(a){BI.BorderLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.border",BI.BorderLayout),BI.CardLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.CardLayout.superclass.props.apply(this,arguments),{baseCls:"bi-card-layout",items:[]})},render:function(){BI.CardLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},stroke:function(a){var b=this,c=this.options;this.showIndex=void 0,BI.each(a,function(a,d){if(d){if(b.hasWidget(d.cardName))var e=b.getWidgetByName(d.cardName);else{var e=BI.createWidget(d);e.on(BI.Events.DESTROY,function(){var a=BI.findIndex(c.items,function(a,b){return b.cardName==d.cardName});a>-1&&c.items.splice(a,1)}),b.addWidget(d.cardName,e)}e.element.css({position:"absolute",top:"0",right:"0",bottom:"0",left:"0"}),e.setVisible(!1)}})},update:function(){},empty:function(){BI.CardLayout.superclass.empty.apply(this,arguments),this.options.items=[]},populate:function(a){BI.CardLayout.superclass.populate.apply(this,arguments),this._mount(),this.options.defaultShowName&&this.showCardByName(this.options.defaultShowName)},isCardExisted:function(a){return BI.some(this.options.items,function(b,c){return c.cardName==a&&c.el})},getCardByName:function(a){if(!this.isCardExisted(a))throw new Error("cardName is not exist");return this._children[a]},_deleteCardByName:function(a){delete this._children[a];var b=BI.findIndex(this.options.items,function(b,c){return c.cardName==a});b>-1&&this.options.items.splice(b,1)},deleteCardByName:function(a){if(!this.isCardExisted(a))throw new Error("cardName is not exist");var b=this._children[a];this._deleteCardByName(a),b&&b._destroy()},addCardByName:function(a,b){if(this.isCardExisted(a))throw new Error("cardName is already exist");var c=BI.createWidget(b);return c.element.css({position:"relative",top:"0",left:"0",width:"100%",height:"100%"}).appendTo(this.element),c.invisible(),this.addWidget(a,c),this.options.items.push({el:b,cardName:a}),c},showCardByName:function(a,b,c){var d=this,e=this.isCardExisted(a);null!=this.showIndex&&(this.lastShowIndex=this.showIndex),this.showIndex=a;var f=!1;BI.each(this.options.items,function(g,h){var i=d._children[h.cardName];i&&(a!=h.cardName?!f&&!e&&BI.Action&&b instanceof BI.Action?(b.actionBack(i),f=!0):i.invisible():BI.Action&&b instanceof BI.Action?b.actionPerformed(void 0,i,c):(i.visible(),c&&c()))})},showLastCard:function(){var a=this;this.showIndex=this.lastShowIndex,BI.each(this.options.items,function(b,c){a._children[c.cardName].setVisible(a.showIndex==b)})},setDefaultShowName:function(a){return this.options.defaultShowName=a,this},getDefaultShowName:function(){return this.options.defaultShowName},getAllCardNames:function(){return BI.map(this.options.items,function(a,b){return b.cardName})},getShowingCard:function(){if(BI.isKey(this.showIndex))return this.getWidgetByName(this.showIndex)},deleteAllCard:function(){var a=this;BI.each(this.getAllCardNames(),function(b,c){a.deleteCardByName(c)})},hideAllCard:function(){var a=this;BI.each(this.options.items,function(b,c){a._children[c.cardName].invisible()})},isAllCardHide:function(){var a=this,b=!0;return BI.some(this.options.items,function(c,d){if(a._children[d.cardName].isVisible())return b=!1,!1}),b},removeWidget:function(a){var b;BI.isWidget(a)?BI.each(this._children,function(c,d){d===a&&(b=c)}):b=a,b&&this._deleteCardByName(b)}}),BI.shortcut("bi.card",BI.CardLayout),BI.DefaultLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.DefaultLayout.superclass.props.apply(this,arguments),{hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0,items:[]})},render:function(){BI.DefaultLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.DefaultLayout.superclass._addElement.apply(this,arguments);return c.vgap+c.tgap+(b.tgap||0)!==0&&d.element.css({"margin-top":c.vgap+c.tgap+(b.tgap||0)+"px"}),c.hgap+c.lgap+(b.lgap||0)!==0&&d.element.css({"margin-left":c.hgap+c.lgap+(b.lgap||0)+"px"}),c.hgap+c.rgap+(b.rgap||0)!==0&&d.element.css({"margin-right":c.hgap+c.rgap+(b.rgap||0)+"px"}),c.vgap+c.bgap+(b.bgap||0)!==0&&d.element.css({"margin-bottom":c.vgap+c.bgap+(b.bgap||0)+"px"}),d},resize:function(){},populate:function(a){BI.DefaultLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.default",BI.DefaultLayout),BI.DivisionLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.DivisionLayout.superclass.props.apply(this,arguments),{baseCls:"bi-division-layout",columns:null,rows:null,items:[]})},render:function(){BI.DivisionLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){this.stroke(this.opitons.items)},addItem:function(a){throw new Error("cannot be added")},stroke:function(a){function b(a,b,c){0===b&&a.addClass("first-row"),0===c&&a.addClass("first-col"),a.addClass(BI.isOdd(b+1)?"odd-row":"even-row"),a.addClass(BI.isOdd(c+1)?"odd-col":"even-col"),a.addClass("center-element")}function c(a,b,c){var d="";0===b&&(d+=" first-row"),0===c&&(d+=" first-col"),d+=BI.isOdd(b+1)?" odd-row":" even-row",d+=BI.isOdd(c+1)?" odd-col":" even-col",a.cls=(a.cls||"")+d+" center-element"}function d(a,d,e){a instanceof BI.Widget?b(a.element,d,e):a.el instanceof BI.Widget?b(a.el.element,d,e):a.el?c(a.el,d,e):c(a,d,e)}var e=this.options,f=e.rows||e.items.length,g=e.columns||0|(e.items[0]&&e.items[0].length),h=BI.makeArray(f),i={},j={};BI.each(h,function(a){h[a]=BI.makeArray(g)}),BI.each(a,function(a,b){return BI.isArray(b)?void BI.each(b,function(c,d){i[a]=(i[a]||0)+b.width,j[c]=(j[c]||0)+b.height,h[a][c]=d}):(i[b.row]=(i[b.row]||0)+b.width,j[b.column]=(j[b.column]||0)+b.height,void(h[b.row][b.column]=b))});for(var k=0;k0){var p=this.getWidgetByName(this.getName()+k+"_"+(m-1));p.element.css({right:100-o+"%"})}m==e.columns-1&&n.element.css({right:"0%"}),d(n,k,m),l+=h[k][m].width}for(var m=0;m0){var p=this.getWidgetByName(this.getName()+(k-1)+"_"+m);p.element.css({bottom:100-r+"%"})}k==e.rows-1&&n.element.css({bottom:"0%"}),q+=h[k][m].height}},populate:function(a){BI.DivisionLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.division",BI.DivisionLayout),BI.FloatLeftLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FloatLeftLayout.superclass.props.apply(this,arguments),{baseCls:"bi-float-left-layout clearfix",hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FloatLeftLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FloatLeftLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative","float":"left"}),BI.isNotNull(b.left)&&d.element.css({left:b.left}),BI.isNotNull(b.right)&&d.element.css({right:b.right}),BI.isNotNull(b.top)&&d.element.css({top:b.top}),(b.lgap||0)+c.hgap+c.lgap!==0&&d.element.css("margin-left",(b.lgap||0)+c.hgap+c.lgap),(b.rgap||0)+c.hgap+c.rgap!==0&&d.element.css("margin-right",(b.rgap||0)+c.hgap+c.rgap),(b.tgap||0)+c.vgap+c.tgap!==0&&d.element.css("margin-top",(b.tgap||0)+c.vgap+c.tgap),(b.bgap||0)+c.vgap+c.bgap!==0&&d.element.css("margin-bottom",(b.bgap||0)+c.vgap+c.bgap),d},resize:function(){this.stroke(this.options.items)},populate:function(a){BI.FloatLeftLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.left",BI.FloatLeftLayout),BI.FloatRightLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.FloatRightLayout.superclass.props.apply(this,arguments),{baseCls:"bi-float-right-layout clearfix",hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.FloatRightLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.FloatRightLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative","float":"right"}),BI.isNotNull(b.left)&&d.element.css({left:b.left}),BI.isNotNull(b.right)&&d.element.css({right:b.right}),BI.isNotNull(b.top)&&d.element.css({top:b.top}),(b.lgap||0)+c.hgap+c.lgap!==0&&d.element.css("margin-left",(b.lgap||0)+c.hgap+c.lgap),(b.rgap||0)+c.hgap+c.rgap!==0&&d.element.css("margin-right",(b.rgap||0)+c.hgap+c.rgap),(b.tgap||0)+c.vgap+c.tgap!==0&&d.element.css("margin-top",(b.tgap||0)+c.vgap+c.tgap),(b.bgap||0)+c.vgap+c.bgap!==0&&d.element.css("margin-bottom",(b.bgap||0)+c.vgap+c.bgap),d},resize:function(){this.stroke(this.options.items)},populate:function(a){BI.FloatRightLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.right",BI.FloatRightLayout),BI.GridLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.GridLayout.superclass.props.apply(this,arguments),{baseCls:"bi-grid-layout",columns:null,rows:null,items:[]})},render:function(){BI.GridLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){},addItem:function(){throw new Error("cannot be added")},stroke:function(a){function b(a,b,c){0===b&&a.addClass("first-row"),0===c&&a.addClass("first-col"),a.addClass(BI.isOdd(b+1)?"odd-row":"even-row"),a.addClass(BI.isOdd(c+1)?"odd-col":"even-col"),a.addClass("center-element")}function c(a,b,c){var d="";0===b&&(d+=" first-row"),0===c&&(d+=" first-col"),d+=BI.isOdd(b+1)?" odd-row":" even-row",d+=BI.isOdd(c+1)?" odd-col":" even-col",a.cls=(a.cls||"")+d+" center-element"}function d(a,d,e){a instanceof BI.Widget?b(a.element,d,e):a.el instanceof BI.Widget?b(a.el.element,d,e):a.el?c(a.el,d,e):c(a,d,e)}for(var e=this.options,f=e.rows||e.items.length,g=e.columns||0|(e.items[0]&&e.items[0].length),h=100/g,i=100/f,j=[],k=0;k").attr({cellspacing:0,cellpadding:0}).css({position:"relative","white-space":"nowrap","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.$tr=$("
"),this.$tr.appendTo(this.$table),this.populate(this.options.items)},_addElement:function(a,b){var c,d=this.options,e=d.columnSize[a]<=1?100*d.columnSize[a]+"%":d.columnSize[a];if(this.hasWidget(this._getChildName(a)))c=this.getWidgetByName(this._getChildName(a)),c.element.attr("width",e);else{var f=BI.createWidget(b);f.element.css({position:"relative",margin:"0px auto"}),c=BI.createWidget({type:"bi.default",tagName:"td",attributes:{width:e},items:[f]}),this.addWidget(this._getChildName(a),c)}return 0===a&&c.element.addClass("first-element"),c.element.css({position:"relative","vertical-align":d.verticalAlign,margin:"0",padding:"0",border:"none"}),d.hgap+d.lgap+(b.lgap||0)>0&&f.element.css({"margin-left":d.hgap+d.lgap+(b.lgap||0)+"px"}),d.hgap+d.rgap+(b.rgap||0)>0&&f.element.css({"margin-right":d.hgap+d.rgap+(b.rgap||0)+"px"}),d.vgap+d.tgap+(b.tgap||0)>0&&f.element.css({"margin-top":d.vgap+d.tgap+(b.tgap||0)+"px"}),d.vgap+d.bgap+(b.bgap||0)>0&&f.element.css({"margin-bottom":d.vgap+d.bgap+(b.bgap||0)+"px"}),c},_mountChildren:function(){var a=this,b=document.createDocumentFragment(),c=!1;BI.each(this._children,function(d,e){e.element!==a.element&&(b.appendChild(e.element[0]),c=!0)}),c===!0&&(this.$tr.append(b),this.element.append(this.$table))},resize:function(){},_getWrapper:function(){return this.$tr},populate:function(a){BI.HorizontalLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal",BI.HorizontalLayout),BI.HorizontalCellLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.HorizontalCellLayout.superclass.props.apply(this,arguments),{baseCls:"bi-horizontal-cell-layout",scrollable:!0,hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0})},render:function(){BI.HorizontalCellLayout.superclass.render.apply(this,arguments),this.element.css({display:"table","vertical-align":"top"}),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.HorizontalCellLayout.superclass._addElement.apply(this,arguments);return d.element.css({position:"relative",display:"table-cell","vertical-align":"middle"}),c.hgap+c.lgap>0&&d.element.css({"margin-left":c.hgap+c.lgap+"px"}),c.hgap+c.rgap>0&&d.element.css({"margin-right":c.hgap+c.rgap+"px"}),c.vgap+c.tgap>0&&d.element.css({"margin-top":c.vgap+c.tgap+"px"}),c.vgap+c.bgap>0&&d.element.css({"margin-bottom":c.vgap+c.bgap+"px"}),d},resize:function(){},populate:function(a){BI.HorizontalCellLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.horizontal_cell",BI.HorizontalCellLayout),BI.LatticeLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.LatticeLayout.superclass.props.apply(this,arguments),{baseCls:"bi-lattice-layout clearfix"})},render:function(){BI.LatticeLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},_addElement:function(a,b){var c=this.options,d=BI.LatticeLayout.superclass._addElement.apply(this,arguments);if(c.columnSize&&c.columnSize[a])var e=c.columnSize[a]/BI.sum(c.columnSize)*100+"%";else var e=1/this.options.items.length*100+"%";return d.element.css({position:"relative","float":"left",width:e}),d},addItem:function(a){var b=BI.LatticeLayout.superclass.addItem.apply(this,arguments);return this.resize(),b},addItemAt:function(a){var b=BI.LatticeLayout.superclass.addItemAt.apply(this,arguments);return this.resize(),b},resize:function(){this.stroke(this.options.items)},populate:function(a){BI.LatticeLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.lattice",BI.LatticeLayout),BI.TableLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.TableLayout.superclass.props.apply(this,arguments),{baseCls:"bi-table-layout",scrolly:!0,columnSize:[200,200,"fill"],rowSize:30,hgap:0,vgap:0,items:[[{el:{text:"label1"}},{el:{text:"label2"}},{el:{text:"label3"}}]]})},render:function(){BI.TableLayout.superclass.render.apply(this,arguments),this.rows=0,this.populate(this.options.items)},_addElement:function(a,b){function c(a,b,c){0===b&&a.addClass("first-row"),0===c&&a.addClass("first-col"),a.addClass(BI.isOdd(b+1)?"odd-row":"even-row"),a.addClass(BI.isOdd(c+1)?"odd-col":"even-col"),a.addClass("center-element")}function d(a,b,c){var d="";0===b&&(d+=" first-row"),0===c&&(d+=" first-col"),d+=BI.isOdd(b+1)?" odd-row":" even-row",d+=BI.isOdd(c+1)?" odd-col":" even-col",a.cls=(a.cls||"")+d+" center-element"}function e(a,b,e){a instanceof BI.Widget?c(a.element,b,e):a.el instanceof BI.Widget?c(a.el.element,b,e):a.el?d(a.el,b,e):d(a,b,e)}var f,g,h=this.options,i=[],j=0,k=0;for(f=0;ff;g--){if(!BI.isNumber(h.columnSize[g]))throw new Error("item with fill can only be one");e(b[g],this.rows,g),i.push(BI.extend({top:0,bottom:0,right:h.columnSize[g]<=1?100*k+"%":k,width:h.columnSize[g]<=1?100*h.columnSize[g]+"%":h.columnSize[g]},b[g])),k+=h.columnSize[g]+(h.columnSize[g]<1?0:h.hgap)}f>=0&&f0&&this.getWidgetByName(this.getName()+(this.rows-1)).element.css({"margin-bottom":h.vgap}),l.element.css({position:"relative"}),this.addWidget(this.getName()+this.rows++,l),l},resize:function(){},addItem:function(a){if(!BI.isArray(a))throw new Error("item must be array");return BI.TableLayout.superclass.addItem.apply(this,arguments)},populate:function(a){BI.TableLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.table",BI.TableLayout),BI.HTapeLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.HTapeLayout.superclass.props.apply(this,arguments),{baseCls:"bi-h-tape-layout",hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0,items:[{width:100,el:{type:"bi.button",text:"button1"}},{width:"fill",el:{type:"bi.button",text:"button2"}},{width:200,el:{type:"bi.button",text:"button3"}}]})},render:function(){BI.HTapeLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){this.stroke(this.options.items)},addItem:function(a){throw new Error("cannot be added")},stroke:function(a){var b=this,c=this.options;a=BI.compact(a),BI.each(a,function(a,d){if(b.hasWidget(b.getName()+a+""))e=b.getWidgetByName(b.getName()+a+"");else{var e=BI.createWidget(d);b.addWidget(b.getName()+a+"",e)}e.element.css({position:"absolute",top:c.vgap+c.tgap+"px",bottom:c.vgap+c.bgap+"px"})});var d={},e={};d[0]=0,e[a.length-1]=0,BI.any(a,function(e,f){var g=b.getWidgetByName(b.getName()+e+"");if(BI.isNull(d[e])&&(d[e]=d[e-1]+a[e-1].width+2*c.hgap+c.lgap+c.rgap),f.width<1&&f.width>=0?g.element.css({left:100*d[e]+"%",width:100*f.width+"%"}):g.element.css({left:d[e]+c.hgap+c.lgap+"px",width:BI.isNumber(f.width)?f.width:""}),!BI.isNumber(f.width))return!0}),BI.backAny(a,function(d,f){var g=b.getWidgetByName(b.getName()+d+"");if(BI.isNull(e[d])&&(e[d]=e[d+1]+a[d+1].width+2*c.hgap+c.lgap+c.rgap),f.width<1&&f.width>=0?g.element.css({right:100*e[d]+"%",width:100*f.width+"%"}):g.element.css({right:e[d]+c.hgap+c.rgap+"px",width:BI.isNumber(f.width)?f.width:""}),!BI.isNumber(f.width))return!0})},populate:function(a){BI.HTapeLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.htape",BI.HTapeLayout),BI.VTapeLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.VTapeLayout.superclass.props.apply(this,arguments),{baseCls:"bi-v-tape-layout",hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0,items:[{height:100,el:{type:"bi.button",text:"button1"}},{height:"fill",el:{type:"bi.button",text:"button2"}},{height:200,el:{type:"bi.button",text:"button3"}}]})},render:function(){BI.VTapeLayout.superclass.render.apply(this,arguments),this.populate(this.options.items)},resize:function(){this.stroke(this.options.items)},addItem:function(a){throw new Error("cannot be added")},stroke:function(a){var b=this,c=this.options;a=BI.compact(a),BI.each(a,function(a,d){if(b.hasWidget(b.getName()+a+""))e=b.getWidgetByName(b.getName()+a+"");else{var e=BI.createWidget(d);b.addWidget(b.getName()+a+"",e)}e.element.css({position:"absolute",left:c.hgap+c.lgap+"px",right:c.hgap+c.rgap+"px"})});var d={},e={};d[0]=0,e[a.length-1]=0,BI.any(a,function(e,f){var g=b.getWidgetByName(b.getName()+e+"");if(BI.isNull(d[e])&&(d[e]=d[e-1]+a[e-1].height+2*c.vgap+c.tgap+c.bgap),f.height<1&&f.height>=0?g.element.css({top:100*d[e]+"%",height:100*f.height+"%"}):g.element.css({top:d[e]+c.vgap+c.tgap+"px",height:BI.isNumber(f.height)?f.height:""}),!BI.isNumber(f.height))return!0}),BI.backAny(a,function(d,f){var g=b.getWidgetByName(b.getName()+d+"");if(BI.isNull(e[d])&&(e[d]=e[d+1]+a[d+1].height+2*c.vgap+c.tgap+c.bgap),f.height<1&&f.height>=0?g.element.css({bottom:100*e[d]+"%",height:100*f.height+"%"}):g.element.css({bottom:e[d]+c.vgap+c.bgap+"px",height:BI.isNumber(f.height)?f.height:""}),!BI.isNumber(f.height))return!0})},populate:function(a){BI.VTapeLayout.superclass.populate.apply(this,arguments),this._mount()}}),BI.shortcut("bi.vtape",BI.VTapeLayout),BI.TdLayout=BI.inherit(BI.Layout,{props:function(){return BI.extend(BI.TdLayout.superclass.props.apply(this,arguments),{baseCls:"bi-td-layout",columnSize:[200,200,200],hgap:0,vgap:0,items:[[{el:{text:"label1"}},{el:{text:"label2"}},{el:{text:"label3"}}]]})},render:function(){BI.TdLayout.superclass.render.apply(this,arguments),this.$table=$("
").attr({cellspacing:0,cellpadding:0}).css({position:"relative",width:"100%",height:"100%","border-spacing":"0px",border:"none","border-collapse":"separate"}),this.rows=0,this.populate(this.options.items)},_addElement:function(a,b){function c(a,b,c){0===b&&a.addClass("first-row"),0===c&&a.addClass("first-col"),a.addClass(BI.isOdd(b+1)?"odd-row":"even-row"),a.addClass(BI.isOdd(c+1)?"odd-col":"even-col"),a.addClass("center-element")}function d(a,b,c){var d="";0===b&&(d+=" first-row"),0===c&&(d+=" first-col"),d+=BI.isOdd(b+1)?" odd-row":" even-row",d+=BI.isOdd(c+1)?" odd-col":" even-col",a.cls=(a.cls||"")+d+" center-element"}function e(a,b,e){a instanceof BI.Widget?c(a.element,b,e):a.el instanceof BI.Widget?c(a.el.element,b,e):a.el?d(a.el,b,e):d(a,b,e)}for(var f=this.options,g=BI.createWidget({type:"bi.default",tagName:"tr"}),h=0;h=0;f--){for(var g=0;g=0;g--){for(var f=0;f=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var a=h.length;a;)this.addEventListener(h[--a],b,!1);else this.onmousewheel=b},teardown:function(){if(this.removeEventListener)for(var a=h.length;a;)this.removeEventListener(h[--a],b,!1);else this.onmousewheel=null},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})}),function(a){var b=document.createElement("input"),c="oninput"in b&&(!("documentMode"in document)||document.documentMode>9),d=function(a){return"INPUT"===a.nodeName&&("text"===a.type||"password"===a.type)},e=null,f=null,g=null,h={get:function(){return g.get.call(this)},set:function(a){f=a,g.set.call(this,a)}},i=function(a){e=a,f=a.value,g=Object.getOwnPropertyDescriptor(a.constructor.prototype,"value"),Object.defineProperty(e,"value",h),e.attachEvent("onpropertychange",k)},j=function(){e&&(delete e.value,e.detachEvent("onpropertychange",k),e=null,f=null,g=null)},k=function(b){if("value"===b.propertyName){var c=b.srcElement.value;c!==f&&(f=c,a(e).trigger("textchange"))}};c?a(document).on("input",function(b){"TEXTAREA"!==b.target.nodeName&&a(b.target).trigger("textchange")}):a(document).on("focusin",function(a){d(a.target)&&(j(),i(a.target))}).on("focusout",function(){j()}).on("selectionchange keyup keydown",function(){e&&e.value!==f&&(f=e.value,a(e).trigger("textchange"))})}(jQuery),BI.Pane=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Pane.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-pane",tipText:BI.i18nText("BI-No_Selected_Item"),overlap:!0,onLoaded:BI.emptyFn})},_init:function(){BI.Pane.superclass._init.apply(this,arguments)},_assertTip:function(){var a=this.options;this._tipText||(this._tipText=BI.createWidget({type:"bi.label",cls:"bi-tips",text:a.tipText,height:25}),BI.createWidget({type:"bi.vertical",element:this,items:[this._tipText],bgap:25}))},loading:function(){var a=this,b=this.options;b.overlap===!0?(BI.Layers.has(this.getName())||BI.createWidget({type:"bi.vtape",items:[{el:{type:"bi.layout",cls:"loading-background"},height:30}],element:BI.Layers.make(this.getName(),this)}),BI.Layers.show(a.getName())):BI.isNull(this._loading)&&(this._loading=BI.createWidget({type:"bi.layout",cls:"loading-background",height:30}),this._loading.element.css("zIndex",1),BI.createWidget({type:"bi.absolute",element:this,items:[{el:this._loading,left:0,right:0,top:0}]}))},loaded:function(){var a=this,b=this.options;BI.Layers.remove(a.getName()),this._loading&&this._loading.destroy(),this._loading&&(this._loading=null),b.onLoaded(),a.fireEvent(BI.Pane.EVENT_LOADED)},check:function(){this.setTipVisible(BI.isEmpty(this.options.items))},setTipVisible:function(a){a===!0?(this._assertTip(),this._tipText.setVisible(!0)):this._tipText&&this._tipText.setVisible(!1)},populate:function(a){this.options.items=a||[],this.check()},empty:function(){}}),BI.Pane.EVENT_LOADED="EVENT_LOADED",BI.Single=BI.inherit(BI.Widget,{_defaultConfig:function(){var a=BI.Single.superclass._defaultConfig.apply(this,arguments);return BI.extend(a,{baseCls:(a.baseCls||"")+" bi-single",readonly:!1,title:null,warningTitle:null,tipType:null,value:null})},_showToolTip:function(a,b){b||(b={});var c=this.getTipType()||(this.isEnabled()?"success":"warning"),d="success"===c?this.getTitle():this.getWarningTitle()||this.getTitle();BI.isKey(d)&&BI.Tooltips.show(a,this.getName(),d,c,this,b)},_hideTooltip:function(){var a=this,b=BI.Tooltips.get(this.getName());BI.isNotNull(b)&&b.element.fadeOut(200,function(){BI.Tooltips.remove(a.getName())})},_init:function(){BI.Single.superclass._init.apply(this,arguments);var a=this.options;(BI.isKey(a.title)||BI.isKey(a.warningTitle)||BI.isFunction(a.title)||BI.isFunction(a.warningTitle))&&this.enableHover()},enableHover:function(a){a||(a={});var b=this;this._hoverBinded||(this.element.on("mouseenter.title"+this.getName(),function(c){b._e=c,"warning"===b.getTipType()||BI.isKey(b.getWarningTitle())&&!b.isEnabled()?b.timeout=BI.delay(function(){b._showToolTip(b._e||c,a)},200):("success"===b.getTipType()||b.isEnabled())&&(b.timeout=BI.delay(function(){b._showToolTip(b._e||c,a)},500))}),this.element.on("mousemove.title"+this.getName(),function(a){b._e=a,b.element.__isMouseInBounds__(a)||(BI.isNotNull(b.timeout)&&clearTimeout(b.timeout),b._hideTooltip())}),this.element.on("mouseleave.title"+this.getName(),function(){b._e=null,BI.isNotNull(b.timeout)&&clearTimeout(b.timeout),b._hideTooltip()}),this._hoverBinded=!0)},disabledHover:function(){BI.isNotNull(this.timeout)&&clearTimeout(this.timeout),this._hideTooltip(),$(this.element).unbind("mouseenter.title"+this.getName()).unbind("mousemove.title"+this.getName()).unbind("mouseleave.title"+this.getName()),this._hoverBinded=!1},populate:function(a){this.items=a||[]},setTitle:function(a,b){this.options.title=a,BI.isKey(a)?this.enableHover(b):this.disabledHover()},setWarningTitle:function(a,b){this.options.warningTitle=a,BI.isKey(a)?this.enableHover(b):this.disabledHover()},getTipType:function(){return this.options.tipType},isReadOnly:function(){return!!this.options.readonly},getTitle:function(){var a=this.options.title;return BI.isFunction(a)?a():a},getWarningTitle:function(){var a=this.options.warningTitle;return BI.isFunction(a)?a():a},setValue:function(a){this.options.readonly||(this.options.value=a)},getValue:function(){return this.options.value}}),BI.Text=BI.inherit(BI.Single,{_defaultConfig:function(){var a=BI.Text.superclass._defaultConfig.apply(this,arguments);return BI.extend(a,{baseCls:(a.baseCls||"")+" bi-text",textAlign:"left",whiteSpace:"normal",lineHeight:null,handler:null,hgap:0,vgap:0,lgap:0,rgap:0,tgap:0,bgap:0,text:"",py:""})},_init:function(){BI.Text.superclass._init.apply(this,arguments);var a=this,b=this.options;b.hgap+b.lgap>0&&this.element.css({"padding-left":b.hgap+b.lgap+"px"}),b.hgap+b.rgap>0&&this.element.css({"padding-right":b.hgap+b.rgap+"px"}),b.vgap+b.tgap>0&&this.element.css({"padding-top":b.vgap+b.tgap+"px"}),b.vgap+b.bgap>0&&this.element.css({"padding-bottom":b.vgap+b.bgap+"px"}),BI.isNumber(b.height)&&this.element.css({lineHeight:b.height+"px"}),BI.isNumber(b.lineHeight)&&this.element.css({lineHeight:b.lineHeight+"px"}),this.element.css({textAlign:b.textAlign,whiteSpace:b.whiteSpace}),b.handler?(this.text=BI.createWidget({type:"bi.layout",tagName:"span"}),this.text.element.click(function(){b.handler(a.getValue())}),BI.createWidget({type:"bi.default",element:this,items:[this.text]})):this.text=this,BI.isKey(b.text)?this.setText(b.text):BI.isKey(b.value)&&this.setText(b.value),BI.isKey(b.keyword)&&this.text.element.__textKeywordMarked__(b.text,b.keyword,b.py)},doRedMark:function(a){var b=this.options;this.text.element.__textKeywordMarked__(b.text||b.value,a,b.py)},unRedMark:function(){var a=this.options;this.text.element.__textKeywordMarked__(a.text||a.value,"",a.py)},doHighLight:function(){this.text.element.addClass("bi-high-light")},unHighLight:function(){this.text.element.removeClass("bi-high-light")},setValue:function(a){BI.Text.superclass.setValue.apply(this,arguments),this.isReadOnly()||this.setText(a)},setStyle:function(a){this.text.element.css(a)},setText:function(a){BI.Text.superclass.setText.apply(this,arguments),this.options.text=a,this.text.element.text((a+"").replaceAll(" "," "))}}),BI.shortcut("bi.text",BI.Text),BI.BasicButton=BI.inherit(BI.Single,{_defaultConfig:function(){var a=BI.BasicButton.superclass._defaultConfig.apply(this,arguments);return BI.extend(a,{baseCls:(a.baseCls||"")+" bi-basic-button"+(a.invalid?"":" cursor-pointer"),value:"",text:"",stopEvent:!1,stopPropagation:!1,selected:!1,once:!1,forceSelected:!1,forceNotSelected:!1,disableSelected:!1,shadow:!1,isShadowShowingOnSelected:!1,trigger:null,handler:BI.emptyFn})},_init:function(){BI.BasicButton.superclass._init.apply(this,arguments);var a=this.options;a.selected===!0&&BI.nextTick(BI.bind(function(){this.setSelected(a.selected)},this)),BI.nextTick(BI.bind(this.bindEvent,this)),a.shadow&&this._createShadow()},_createShadow:function(){var a=this,b=this.options,c=function(){a.$mask||(a.$mask=BI.createWidget(BI.isObject(b.shadow)?b.shadow:{},{type:"bi.layout",cls:"bi-button-mask"}),a.$mask.invisible(),BI.createWidget({type:"bi.absolute",element:a,items:[{el:a.$mask,left:0,right:0,top:0,bottom:0}]}))};this.element.mouseup(function(){a._hover||b.isShadowShowingOnSelected||(c(),a.$mask.invisible())}),this.element.on("mouseenter."+this.getName(),function(d){a.element.__isMouseInBounds__(d)&&(!a.isEnabled()||a._hover||!b.isShadowShowingOnSelected&&a.isSelected()||(c(),a.$mask.visible()))}),this.element.on("mousemove."+this.getName(),function(b){a.element.__isMouseInBounds__(b)||a.isEnabled()&&!a._hover&&(c(),a.$mask.invisible())}),this.element.on("mouseleave."+this.getName(),function(){a.isEnabled()&&!a._hover&&(c(),a.$mask.invisible())})},bindEvent:function(){function a(a){d.stopEvent&&a.stopEvent(),d.stopPropagation&&a.stopPropagation()}function b(b){a(b),!c.isEnabled()||c.isOnce()&&c.isSelected()||h.apply(c,arguments)}var c=this,d=this.options,f=this.handle();if(f){f=f.element;var g=(d.trigger||"").split(",");BI.each(g,function(g,h){switch(h){case"mouseup":var i=!1;f.mousedown(function(){i=!0,a(e)}),f.mouseup(function(c){i===!0&&b(c),i=!1,a(c)});break;case"mousedown":var i=!1,j=!1;f.mousedown(function(d){$(document).bind("mouseup."+c.getName(),function(a){!BI.DOM.isExist(c)||f.__isMouseInBounds__(a)||i!==!0||j||c._trigger(),i=!1,$(document).unbind("mouseup."+c.getName())}),i!==!0&&(c.isSelected()?j=!0:b(d),i=!0,a(d))}),f.mouseup(function(a){BI.DOM.isExist(c)&&i===!0&&j===!0&&b(a),i=!1,j=!1,$(document).unbind("mouseup."+c.getName())});break;case"dblclick":f.dblclick(b);break;case"lclick":var k,i=!1;f.mousedown(function(b){$(document).bind("mouseup."+c.getName(),function(a){k&&clearInterval(k),k=null,i=!1,$(document).unbind("mouseup."+c.getName())}),i!==!0&&(!c.isEnabled()||c.isOnce()&&c.isSelected()||(k=setInterval(function(){c.doClick()},100),i=!0,a(b)))});break;default:(d.stopEvent||d.stopPropagation)&&(f.mousedown(function(b){a(b)}),f.mouseup(function(b){a(b)})),f.click(b)}});var h=BI.debounce(this._doClick,BI.EVENT_RESPONSE_TIME,!0)}},_trigger:function(){var a=this.options;if(this.isEnabled()&&(this.isDisableSelected()||(this.isForceSelected()?this.setSelected(!0):this.isForceNotSelected()?this.setSelected(!1):this.setSelected(!this.isSelected())),this.isValid())){a.handler.call(this,this.getValue(),this);var b=this.getValue();this.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.CLICK,b,this),this.fireEvent(BI.BasicButton.EVENT_CHANGE,b,this)}},_doClick:function(a){this.isValid()&&this.beforeClick(a),this._trigger(),this.isValid()&&this.doClick(a)},beforeClick:function(){},doClick:function(){},handle:function(){return this},hover:function(){this._hover=!0,this.handle().element.addClass("hover"),this.options.shadow&&this.$mask&&this.$mask.setVisible(!0)},dishover:function(){this._hover=!1,this.handle().element.removeClass("hover"),this.options.shadow&&this.$mask&&this.$mask.setVisible(!1)},setSelected:function(a){var b=this.options;b.selected=a,a?this.handle().element.addClass("active"):this.handle().element.removeClass("active"),b.shadow&&!b.isShadowShowingOnSelected&&this.$mask&&this.$mask.setVisible(!1)},isSelected:function(){return this.options.selected},isOnce:function(){return this.options.once},isForceSelected:function(){return this.options.forceSelected},isForceNotSelected:function(){return this.options.forceNotSelected},isDisableSelected:function(){return this.options.disableSelected},setText:function(a){this.options.text=a},getText:function(){return this.options.text},_setEnable:function(a){BI.BasicButton.superclass._setEnable.apply(this,arguments),a===!0?this.element.removeClass("base-disabled disabled"):a===!1&&this.element.addClass("base-disabled disabled"),a||this.options.shadow&&this.$mask&&this.$mask.setVisible(!1)},empty:function(){$(document).unbind("mouseup."+this.getName()),BI.BasicButton.superclass.empty.apply(this,arguments)},destroy:function(){BI.BasicButton.superclass.destroy.apply(this,arguments)}}),BI.BasicButton.EVENT_CHANGE="BasicButton.EVENT_CHANGE",BI.NodeButton=BI.inherit(BI.BasicButton,{_defaultConfig:function(){var a=BI.NodeButton.superclass._defaultConfig.apply(this,arguments);return BI.extend(a,{baseCls:(a.baseCls||"")+" bi-node",open:!1})},_init:function(){BI.NodeButton.superclass._init.apply(this,arguments);var a=this;BI.nextTick(function(){a.setOpened(a.isOpened())})},doClick:function(){BI.NodeButton.superclass.doClick.apply(this,arguments),this.setOpened(!this.isOpened())},isOnce:function(){return!1},isOpened:function(){return!!this.options.open},setOpened:function(a){this.options.open=!!a},triggerCollapse:function(){this.isOpened()&&(this.setOpened(!1),this.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,this.getValue(),this))},triggerExpand:function(){this.isOpened()||(this.setOpened(!0),this.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,this.getValue(),this))}}),BI.Tip=BI.inherit(BI.Single,{_defaultConfig:function(){var a=BI.Link.superclass._defaultConfig.apply(this,arguments);return BI.extend(a,{baseCls:(a.baseCls||"")+" bi-tip",zIndex:BI.zIndex_tip})},_init:function(){BI.Tip.superclass._init.apply(this,arguments),this.element.css({zIndex:this.options.zIndex})}}),BI.ButtonGroup=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.ButtonGroup.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-button-group",behaviors:{},items:[],chooseType:BI.Selection.Single,layouts:[{type:"bi.center",hgap:0,vgap:0}]})},_init:function(){BI.ButtonGroup.superclass._init.apply(this,arguments);var a={};BI.each(this.options.behaviors,function(b,c){a[b]=BI.BehaviorFactory.createBehavior(b,{rule:c})}),this.behaviors=a,this.populate(this.options.items)},_createBtns:function(a){this.options;return BI.createWidgets(BI.createItems(a,{type:"bi.text_button"}))},_btnsCreator:function(a){var b=this,c=Array.prototype.slice.call(arguments),d=this.options,e=this._createBtns(a);return c[0]=e,BI.each(this.behaviors,function(a,b){b.doBehavior.apply(b,c)}),BI.each(e,function(a,c){c.on(BI.Controller.EVENT_CHANGE,function(a,e,f){if(a===BI.Events.CLICK){switch(d.chooseType){case BI.ButtonGroup.CHOOSE_TYPE_SINGLE:b.setValue(c.getValue());break;case BI.ButtonGroup.CHOOSE_TYPE_NONE:b.setValue([])}b.fireEvent(BI.Controller.EVENT_CHANGE,arguments),b.fireEvent(BI.ButtonGroup.EVENT_CHANGE,e,f)}else b.fireEvent(BI.Controller.EVENT_CHANGE,arguments)}),c.on(BI.Events.DESTROY,function(){BI.remove(b.buttons,c)})}),e},_packageBtns:function(a){for(var b=this.options,c=b.layouts.length-1;c>0;c--)a=BI.map(a,function(a,d){return BI.extend({},b.layouts[c],{items:[BI.extend({},b.layouts[c].el,{el:d})]})});return a},_packageSimpleItems:function(a){var b=this.options;return BI.map(b.items,function(b,c){return BI.stripEL(c)===c?a[b]:BI.extend({},c,{el:a[b]})})},_packageItems:function(a,b){return BI.createItems(BI.makeArrayByArray(a,{}),BI.clone(b))},_packageLayout:function(a){for(var b=this.options,c=BI.deepClone(b.layouts[0]),d=BI.formatEL(c).el;d&&d.items&&!BI.isEmpty(d.items);)d=BI.formatEL(d.items[0]).el;return d.items=a,c},_isSimpleLayout:function(){var a=this.options;return 1===a.layouts.length&&!BI.isArray(a.items[0])},doBehavior:function(){var a=Array.prototype.slice.call(arguments);a.unshift(this.buttons),BI.each(this.behaviors,function(b,c){c.doBehavior.apply(c,a)})},prependItems:function(a){var b=(this.options,this._btnsCreator.apply(this,arguments));return this.buttons=BI.concat(b,this.buttons),this._isSimpleLayout()&&this.layouts&&this.layouts.prependItems?void this.layouts.prependItems(b):(a=this._packageItems(a,this._packageBtns(b)),void this.layouts.prependItems(this._packageLayout(a).items))},addItems:function(a){var b=(this.options,this._btnsCreator.apply(this,arguments));return this.buttons=BI.concat(this.buttons,b),this._isSimpleLayout()&&this.layouts&&this.layouts.addItems?void this.layouts.addItems(b):(a=this._packageItems(a,this._packageBtns(b)),void this.layouts.addItems(this._packageLayout(a).items))},removeItemAt:function(a){BI.removeAt(this.buttons,a),this.layouts.removeItemAt(a)},removeItems:function(a){a=BI.isArray(a)?a:[a];var b=[];BI.each(this.buttons,function(c,d){BI.deepContains(a,d.getValue())&&b.push(c)}),BI.removeAt(this.buttons,b),this.layouts.removeItemAt(b)},populate:function(a){a=a||[],this.empty(),this.options.items=a,this.buttons=this._btnsCreator.apply(this,arguments),a=this._isSimpleLayout()?this._packageSimpleItems(this.buttons):this._packageItems(a,this._packageBtns(this.buttons)),this.layouts=BI.createWidget(BI.extend({element:this},this._packageLayout(a)))},setNotSelectedValue:function(a){a=BI.isArray(a)?a:[a],BI.each(this.buttons,function(b,c){BI.deepContains(a,c.getValue())?c.setSelected&&c.setSelected(!1):c.setSelected&&c.setSelected(!0)})},setEnabledValue:function(a){a=BI.isArray(a)?a:[a],BI.each(this.buttons,function(b,c){BI.deepContains(a,c.getValue())?c.setEnable(!0):c.setEnable(!1)})},setValue:function(a){a=BI.isArray(a)?a:[a],BI.each(this.buttons,function(b,c){BI.deepContains(a,c.getValue())?c.setSelected&&c.setSelected(!0):c.setSelected&&c.setSelected(!1)})},getNotSelectedValue:function(){var a=[];return BI.each(this.buttons,function(b,c){!c.isEnabled()||c.isSelected&&c.isSelected()||a.push(c.getValue())}),a},getValue:function(){var a=[];return BI.each(this.buttons,function(b,c){c.isEnabled()&&c.isSelected&&c.isSelected()&&a.push(c.getValue())}),a},getAllButtons:function(){return this.buttons},getAllLeaves:function(){return this.buttons},getSelectedButtons:function(){var a=[];return BI.each(this.buttons,function(b,c){c.isSelected&&c.isSelected()&&a.push(c)}),a},getNotSelectedButtons:function(){var a=[];return BI.each(this.buttons,function(b,c){c.isSelected&&!c.isSelected()&&a.push(c)}),a},getIndexByValue:function(a){var b=-1;return BI.any(this.buttons,function(c,d){if(d.isEnabled()&&d.getValue()===a)return b=c,!0}),b},getNodeById:function(a){var b;return BI.any(this.buttons,function(c,d){if(d.isEnabled()&&d.options.id===a)return b=d,!0}),b},getNodeByValue:function(a){var b;return BI.any(this.buttons,function(c,d){if(d.isEnabled()&&d.getValue()===a)return b=d,!0}),b},empty:function(){BI.ButtonGroup.superclass.empty.apply(this,arguments),this.options.items=[]},destroy:function(){BI.ButtonGroup.superclass.destroy.apply(this,arguments),this.options.items=[]}}),BI.extend(BI.ButtonGroup,{CHOOSE_TYPE_SINGLE:BI.Selection.Single,CHOOSE_TYPE_MULTI:BI.Selection.Multi,CHOOSE_TYPE_ALL:BI.Selection.All,CHOOSE_TYPE_NONE:BI.Selection.None,CHOOSE_TYPE_DEFAULT:BI.Selection.Default}),BI.ButtonGroup.EVENT_CHANGE="EVENT_CHANGE",BI.shortcut("bi.button_group",BI.ButtonGroup),BI.ButtonTree=BI.inherit(BI.ButtonGroup,{_defaultConfig:function(){return BI.extend(BI.ButtonTree.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-button-tree"})},_init:function(){BI.ButtonTree.superclass._init.apply(this,arguments)},setNotSelectedValue:function(a){a=BI.isArray(a)?a:[a],BI.each(this.buttons,function(b,c){return BI.isFunction(c.setSelected)?void(BI.deepContains(a,c.getValue())?c.setSelected(!1):c.setSelected(!0)):void c.setNotSelectedValue(a)})},setEnabledValue:function(a){a=BI.isArray(a)?a:[a],BI.each(this.buttons,function(b,c){return BI.isFunction(c.setEnabledValue)?void c.setEnabledValue(a):void(BI.deepContains(a,c.getValue())?c.setEnable(!0):c.setEnable(!1))})},setValue:function(a){a=BI.isArray(a)?a:[a],BI.each(this.buttons,function(b,c){return BI.isFunction(c.setSelected)?void(BI.deepContains(a,c.getValue())?c.setSelected(!0):c.setSelected(!1)):void c.setValue(a)})},getNotSelectedValue:function(){var a=[];return BI.each(this.buttons,function(b,c){return c.isEnabled()&&!BI.isFunction(c.setSelected)?void(a=BI.concat(a,c.getNotSelectedValue())):void(c.isEnabled()&&c.isSelected&&!c.isSelected()&&a.push(c.getValue()))}),a},getValue:function(){var a=[];return BI.each(this.buttons,function(b,c){return c.isEnabled()&&!BI.isFunction(c.setSelected)?void(a=BI.concat(a,c.getValue())):void(c.isEnabled()&&c.isSelected&&c.isSelected()&&a.push(c.getValue()))}),a},getSelectedButtons:function(){var a=[];return BI.each(this.buttons,function(b,c){return c.isEnabled()&&!BI.isFunction(c.setSelected)?void(a=a.concat(c.getSelectedButtons())):void(c.isSelected&&c.isSelected()&&a.push(c))}),a},getNotSelectedButtons:function(){var a=[];return BI.each(this.buttons,function(b,c){return c.isEnabled()&&!BI.isFunction(c.setSelected)?void(a=a.concat(c.getNotSelectedButtons())):void(c.isSelected&&!c.isSelected()&&a.push(c))}),a},getAllLeaves:function(){var a=[];return BI.each(this.buttons,function(b,c){return c.isEnabled()&&!BI.isFunction(c.setSelected)?void(a=a.concat(c.getAllLeaves())):void(c.isEnabled()&&a.push(c))}),a},getIndexByValue:function(a){var b=-1;return BI.any(this.buttons,function(c,d){var e=d.getValue();if(d.isEnabled()&&(e===a||BI.contains(e,a)))return b=c,!0}),b},getNodeById:function(a){var b;return BI.any(this.buttons,function(c,d){if(d.isEnabled()){if(d.attr("id")===a)return b=d,!0;if(BI.isFunction(d.getNodeById)&&(b=d.getNodeById(a)))return!0}}),b},getNodeByValue:function(a){var b;return BI.any(this.buttons,function(c,d){if(d.isEnabled())if(BI.isFunction(d.getNodeByValue)){if(b=d.getNodeByValue(a))return!0}else if(d.attr("value")===a)return b=d,!0}),b}}),BI.ButtonTree.EVENT_CHANGE="EVENT_CHANGE",BI.shortcut("bi.button_tree",BI.ButtonTree),BI.TreeView=BI.inherit(BI.Pane,{_defaultConfig:function(){return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-tree",paras:{},itemsCreator:BI.emptyFn})},_init:function(){BI.TreeView.superclass._init.apply(this,arguments),this._stop=!1,this._createTree(),this.tip=BI.createWidget({type:"bi.loading_bar",invisible:!0,handler:BI.bind(this._loadMore,this)}),BI.createWidget({type:"bi.vertical",scrollable:!0,scrolly:!1,element:this,items:[this.tip]})},_createTree:function(){this.id="bi-tree"+BI.UUID(),this.nodes&&this.nodes.destroy(),this.tree&&this.tree.destroy(),this.tree=BI.createWidget({type:"bi.layout",element:"
    "}),BI.createWidget({type:"bi.default",element:this.element,items:[this.tree]})},_selectTreeNode:function(a,b){this.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.CLICK,b,this),this.fireEvent(BI.TreeView.EVENT_CHANGE,b,this)},_configSetting:function(){function a(a,b,c){l.nodes.checkNode(c,!c.checked,!0,!0)}function b(a,b){var c=l._getParentValues(b);b.times=b.times||1;var d="id="+b.id+"×="+b.times++ +"&parentValues= "+window.encodeURIComponent(BI.jsonEncode(c))+"&checkState="+window.encodeURIComponent(BI.jsonEncode(b.getCheckStatus()));return BI.servletURL+"?op="+l.options.op+"&cmd="+l.options.cmd+"&"+d}function c(a,b){return b.isAjaxing?(BI.Msg.toast("Please Wait。","warning"),!1):(b.children||(b.times=1,f(b,"refresh")),!0)}function d(a,b,c,d){if(c.halfCheck=!1,d&&0!==d.length&&!/^[\s,\S]*<\/html>$/gi.test(d)&&!l._stop){var e=l.nodes,g=c.count||0;c.children.length>g?(c.count=c.children.length,BI.delay(function(){f(c)},n)):(e.updateNode(c),e.selectNode(c.children[0]))}}function e(a,b,c,d,e,f){l.nodes;BI.Msg.toast("Error!","warning")}function f(a,b){var c=l.nodes;"refresh"==b&&c.updateNode(a), c.reAsyncChildNodes(a,b,!0)}function g(a,b){function c(a){BI.each(a,function(a,b){b.halfCheck===!0&&(b.halfCheck=!1,c(b.children))})}if(b.halfCheck=!1,b.checked===!0){c(b.children);var d=l.nodes,e=d.getSelectedNodes();$.each(e,function(a,b){b.halfCheck=!1})}}function h(a,b,c){l._selectTreeNode(b,c)}function i(a,b,c){c.halfCheck=!1}function j(a,b,c){}var k=this.options.paras,l=this,m={async:{enable:!0,url:b,autoParam:["id","name"],otherParam:BI.cjkEncodeDO(k)},check:{enable:!0},data:{key:{title:"title",name:"text"},simpleData:{enable:!0}},view:{showIcon:!1,expandSpeed:"",nameIsHTML:!0,dblClickExpand:!1},callback:{beforeExpand:c,onAsyncSuccess:d,onAsyncError:e,beforeCheck:g,onCheck:h,onExpand:i,onCollapse:j,onClick:a}},n=100;return m},_getParentValues:function(a){if(!a.getParentNode())return[];var b=a.getParentNode(),c=this._getParentValues(b);return c=c.concat([this._getNodeValue(b)])},_getNodeValue:function(a){return null==a.value?a.text.replace(/<[^>]+>/g,"").replaceAll(" "," "):a.value},_getHalfSelectedValues:function(a,b){var c=this,d=b.getCheckStatus();if(d.checked!==!1||d.half!==!1){if(BI.isNotEmptyArray(b.children)&&d.half===!0){var e=b.children;return void BI.each(e,function(b,d){c._getHalfSelectedValues(a,d)})}var f=b.parentValues||c._getParentValues(b),g=f.concat(this._getNodeValue(b));if(BI.isNotEmptyArray(b.children)||d.half===!1)return void this._buildTree(a,g);var h=BI.deepClone(this.options.paras.selectedValues),i=this._getTree(h,g);this._addTreeNode(a,f,this._getNodeValue(b),i)}},_getTree:function(a,b){var c=a;return BI.any(b,function(a,b){return null==c[b]||void(c=c[b])}),c},_addTreeNode:function(a,b,c,d){var e=a;BI.each(b,function(a,b){null==e[b]&&(e[b]={}),e=e[b]}),e[c]=d},_buildTree:function(a,b){var c=a;BI.each(b,function(a,b){null==c[b]&&(c[b]={}),c=c[b]})},_getSelectedValues:function(){function a(a){BI.each(a,function(a,d){var e=d.getCheckStatus();if(e.checked===!0||e.half===!0)if(e.half===!0)b._getHalfSelectedValues(c,d);else{var f=d.parentValues||b._getParentValues(d),g=f.concat([b._getNodeValue(d)]);b._buildTree(c,g)}})}var b=this,c={},d=this.nodes.getNodes();return a(d),c},_dealWidthNodes:function(a){var b=this.options,c=BI.Tree.arrayFormat(a);return BI.each(c,function(a,c){c.title=c.title||c.text||c.value,BI.isKey(b.paras.keyword)?c.text=$("
    ").__textKeywordMarked__(c.text,b.paras.keyword,c.py).html():c.text=(c.text+"").replaceAll(" "," ")}),a},_loadMore:function(){var a=this,b=this.options;this.tip.setLoading();var c=BI.extend({},b.paras,{times:++this.times});b.itemsCreator(c,function(b){if(a._stop!==!0){var c=!!b.hasNext,d=b.items||[];c?a.tip.setLoaded():a.tip.setEnd(),d.length>0&&a.nodes.addNodes(null,a._dealWidthNodes(d))}})},_initTree:function(a){var b=this,c=this.options;b.fireEvent(BI.Events.INIT),this.times=1;var d=this.tree;d.empty(),this.loading(),this.tip.setVisible(!1);var e=function(c){b._stop!==!0&&(b.nodes=$.fn.zTree.init(d.element,a,c))},f=BI.extend({},c.paras,{times:1});c.itemsCreator(f,function(a){if(b._stop!==!0){var c=!!a.hasNext,d=a.items||[];d.length>0&&e(b._dealWidthNodes(d)),b.setTipVisible(d.length<=0),b.loaded(),c?b.tip.setLoaded():b.tip.invisible(),1===f.times&&b.fireEvent(BI.Events.AFTERINIT)}})},initTree:function(a,b){var b=b||{async:{enable:!1},check:{enable:!1},data:{key:{title:"title",name:"text"},simpleData:{enable:!0}},view:{showIcon:!1,expandSpeed:"",nameIsHTML:!0},callback:{}};this.nodes=$.fn.zTree.init(this.tree.element,b,a)},start:function(){this._stop=!1},stop:function(){this._stop=!0},stroke:function(a){delete this.options.keyword,BI.extend(this.options.paras,a);var b=this._configSetting();this._createTree(),this.start(),this._initTree(b)},populate:function(){this.stroke.apply(this,arguments)},hasChecked:function(){var a=this.nodes;return a.getCheckedNodes(!0).length>0},checkAll:function(a){function b(a){BI.each(a,function(a,c){c.halfCheck=!1,b(c.children)})}BI.each(this.nodes.getNodes(),function(a,c){c.halfCheck=!1,b(c.children)}),this.nodes&&this.nodes.checkAllNodes(a)},expandAll:function(a){this.nodes&&this.nodes.expandAll(a)},setValue:function(a,b){this.checkAll(!1),this.updateValue(a,b),this.refresh()},setSelectedValue:function(a){this.options.paras.selectedValues=BI.deepClone(a||{})},updateValue:function(a,b){if(this.nodes){b||(b="value");var c=this.nodes;BI.each(a,function(a,d){var e=c.getNodesByParam(b,a,null);BI.each(e,function(a,b){BI.extend(b,{checked:!0},d),c.updateNode(b)})})}},refresh:function(){this.nodes&&this.nodes.refresh()},getValue:function(){return this.nodes?this._getSelectedValues():null},destroyed:function(){this.stop(),this.nodes&&this.nodes.destroy()}}),BI.extend(BI.TreeView,{REQ_TYPE_INIT_DATA:1,REQ_TYPE_ADJUST_DATA:2,REQ_TYPE_SELECT_DATA:3,REQ_TYPE_GET_SELECTED_DATA:4}),BI.TreeView.EVENT_CHANGE="EVENT_CHANGE",BI.TreeView.EVENT_INIT=BI.Events.INIT,BI.TreeView.EVENT_AFTERINIT=BI.Events.AFTERINIT,BI.shortcut("bi.tree_view",BI.TreeView),BI.AsyncTree=BI.inherit(BI.TreeView,{_defaultConfig:function(){return BI.extend(BI.AsyncTree.superclass._defaultConfig.apply(this,arguments),{})},_init:function(){BI.AsyncTree.superclass._init.apply(this,arguments)},_configSetting:function(){function a(a,b,c){var d=$.fn.zTree.getZTreeObj(b);d.checkNode(c,!c.checked,!0,!0)}function b(a,b){function c(a){BI.each(a,function(a,b){b.halfCheck===!0&&(b.halfCheck=!1,c(b.children))})}if(b.halfCheck=!1,b.checked===!0){c(b.children);var d=$.fn.zTree.getZTreeObj(a),e=d.getSelectedNodes();BI.each(e,function(a,b){b.halfCheck=!1})}}function c(a,b){h._beforeExpandNode(a,b)}function d(a,b,c){h._selectTreeNode(b,c)}function e(a,b,c){c.halfCheck=!1}function f(a,b,c){c.halfCheck=!1}var g=this.options.paras,h=this,i={async:{enable:!1,otherParam:BI.cjkEncodeDO(g)},check:{enable:!0},data:{key:{title:"title",name:"text"},simpleData:{enable:!0}},view:{showIcon:!1,expandSpeed:"",nameIsHTML:!0,dblClickExpand:!1},callback:{beforeCheck:b,onCheck:d,beforeExpand:c,onExpand:e,onCollapse:f,onClick:a}};return i},_selectTreeNode:function(a,b){var c=this,d=(this.options,BI.deepClone(b.parentValues||c._getParentValues(b))),e=this._getNodeValue(b);if(b.checked===!0);else{var f=b,g=this._getTree(this.options.paras.selectedValues,d);for(BI.isNotNull(g[e])&&delete g[e];null!=f&&BI.isEmpty(g);)d=d.slice(0,d.length-1),f=f.getParentNode(),null!=f&&(g=this._getTree(this.options.paras.selectedValues,d),e=this._getNodeValue(f),delete g[e])}BI.AsyncTree.superclass._selectTreeNode.apply(c,arguments)},_beforeExpandNode:function(a,b){function c(a,c){d.nodes.addNodes(b,a),c===!0&&BI.delay(function(){i++,g.times=i,e.itemsCreator(g,h)},100)}var d=this,e=this.options,f=b.parentValues||d._getParentValues(b),g=BI.extend({},e.paras,{id:b.id,times:1,parentValues:f.concat(this._getNodeValue(b)),checkState:b.getCheckStatus()}),h=function(a){var b=a.items||[];b.length>0&&c(d._dealWidthNodes(b),!!a.hasNext)},i=1;b.children||e.itemsCreator(g,h)},_join:function(a,b){function c(a,b,f){BI.each(b,function(g,h){BI.isNull(f[g])?d._addTreeNode(e,a,g,h):BI.isEmpty(f[g])?d._addTreeNode(e,a,g,{}):c(a.concat([g]),b[g],f[g])})}var d=this,e={};return c([],a,b),c([],b,a),e},hasChecked:function(){return!BI.isEmpty(this.options.paras.selectedValues)||BI.AsyncTree.superclass.hasChecked.apply(this,arguments)},getValue:function(){if(!this.nodes)return{};var a=this._getSelectedValues();return BI.isEmpty(a)?BI.deepClone(this.options.paras.selectedValues):BI.isEmpty(this.options.paras.selectedValues)?a:this._join(a,this.options.paras.selectedValues)},stroke:function(a){delete this.options.keyword,BI.extend(this.options.paras,a);var b=this._configSetting();this._initTree(b)}}),BI.shortcut("bi.async_tree",BI.AsyncTree),BI.PartTree=BI.inherit(BI.AsyncTree,{_defaultConfig:function(){return BI.extend(BI.PartTree.superclass._defaultConfig.apply(this,arguments),{})},_init:function(){BI.PartTree.superclass._init.apply(this,arguments)},_loadMore:function(){var a=this,b=this.options,c=BI.extend({},b.paras,{type:BI.TreeView.REQ_TYPE_INIT_DATA,times:++this.times});this.tip.setLoading(),b.itemsCreator(c,function(c){var d=!!c.hasNext,e=c.items||[];b.paras.lastSearchValue=c.lastSearchValue,a._stop!==!0&&(d?a.tip.setLoaded():a.tip.setEnd(),e.length>0&&a.nodes.addNodes(null,a._dealWidthNodes(e)))})},_selectTreeNode:function(a,b){var c=this,d=this.options,e=BI.deepClone(b.parentValues||c._getParentValues(b)),f=this._getNodeValue(b);if(b.checked===!0)BI.AsyncTree.superclass._selectTreeNode.apply(c,arguments);else{for(var g=this.options.paras.selectedValues,h=e.concat(f),i=0,j=h.length;i0&&c(d._dealWidthNodes(g)),d.setTipVisible(g.length<=0),d.loaded(),f?d.tip.setLoaded():d.tip.invisible(),d.fireEvent(BI.Events.AFTERINIT)}};BI.delay(function(){e.itemsCreator(g,h)},100)},getValue:function(){var a=this.options,b=BI.PartTree.superclass.getValue.apply(this,arguments);return a.itemsCreator({type:BI.TreeView.REQ_TYPE_ADJUST_DATA,selectedValues:b},function(a){b=a}),b},stroke:function(a){var b=this.options;delete b.paras.keyword,BI.extend(b.paras,a),delete b.paras.lastSearchValue;var c=this._configSetting();this._initTree(c,b.paras.keyword)}}),BI.shortcut("bi.part_tree",BI.PartTree),BI.Resizers=new BI.ResizeController,BI.Layers=new BI.LayerController,BI.Maskers=new BI.MaskersController,BI.Bubbles=new BI.BubblesController,BI.Tooltips=new BI.TooltipsController,BI.Popovers=new BI.FloatBoxController,BI.Broadcasts=new BI.BroadcastController,BI.StyleLoaders=new BI.StyleLoaderManager,BI.Canvas=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Canvas.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-canvas"})},_init:function(){BI.Canvas.superclass._init.apply(this,arguments);var a=this.options,b=document.createElement("canvas");document.createElement("canvas").getContext||(b=window.G_vmlCanvasManager.initElement(b)),this.element.append(b),b.width=a.width,b.height=a.height,$(b).width("100%"),$(b).height("100%"),this.canvas=b,this._queue=[]},_getContext:function(){return this.ctx||(this.ctx=this.canvas.getContext("2d")),this.ctx},_attr:function(a,b){var c=this;if(!BI.isNull(a))return BI.isObject(a)?void BI.each(a,function(a,b){c._queue.push({k:a,v:b})}):void this._queue.push({k:a,v:b})},_line:function(a,b){var c=this,d=[].slice.call(arguments,2);BI.isOdd(d.length)&&(this._attr(BI.last(d)),d=BI.initial(d)),this._attr("moveTo",[a,b]);var e=BI.filter(d,function(a){return a%2===0}),f=BI.filter(d,function(a){return a%2!==0});d=BI.zip(e,f),BI.each(d,function(a,b){c._attr("lineTo",b)})},line:function(a,b,c,d){this._line.apply(this,arguments),this._attr("stroke",[])},rect:function(a,b,c,d,e){this._attr("fillStyle",e),this._attr("fillRect",[a,b,c,d])},circle:function(a,b,c,d){this._attr({fillStyle:d,beginPath:[],arc:[a,b,c,0,2*Math.PI,!0],closePath:[],fill:[]})},hollow:function(){this._attr("beginPath",[]),this._line.apply(this,arguments),this._attr("closePath",[]),this._attr("stroke",[])},solid:function(){this.hollow.apply(this,arguments),this._attr("fill",[])},gradient:function(a,b,c,d,e,f){var g=this._getContext().createLinearGradient(a,b,c,d);return g.addColorStop(0,e),g.addColorStop(1,f),g},reset:function(){this._getContext().clearRect(0,0,this.canvas.width,this.canvas.height)},stroke:function(a){var b=this;BI.nextTick(function(){var c=b._getContext();BI.each(b._queue,function(a,b){BI.isFunction(c[b.k])?c[b.k].apply(c,b.v):c[b.k]=b.v}),b._queue=[],a&&a()})}}),BI.shortcut("bi.canvas",BI.Canvas),BI.CollectionView=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.CollectionView.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-collection",overflowX:!0,overflowY:!0,cellSizeAndPositionGetter:BI.emptyFn,horizontalOverscanSize:0,verticalOverscanSize:0,scrollLeft:0,scrollTop:0,items:[]})},_init:function(){BI.CollectionView.superclass._init.apply(this,arguments);var a=this,b=this.options;this.renderedCells=[],this.renderedKeys=[],this.renderRange={},this._scrollLock=!1,this._debounceRelease=BI.debounce(function(){a._scrollLock=!1},1e3/60),this.container=BI.createWidget({type:"bi.absolute"}),this.element.scroll(function(){a._scrollLock!==!0&&(b.scrollLeft=a.element.scrollLeft(),b.scrollTop=a.element.scrollTop(),a._calculateChildrenToRender(),a.fireEvent(BI.CollectionView.EVENT_SCROLL,{scrollLeft:b.scrollLeft,scrollTop:b.scrollTop}))}),BI.createWidget({type:"bi.vertical",element:this,scrollable:b.overflowX===!0&&b.overflowY===!0,scrolly:b.overflowX===!1&&b.overflowY===!0,scrollx:b.overflowX===!0&&b.overflowY===!1,items:[this.container]}),b.items.length>0&&(this._calculateSizeAndPositionData(),this._populate()),0===b.scrollLeft&&0===b.scrollTop||BI.nextTick(function(){a.element.scrollTop(b.scrollTop),a.element.scrollLeft(b.scrollLeft)})},_calculateSizeAndPositionData:function(){for(var a=this.options,b=[],c=new BI.SectionManager,d=0,e=0,f=0,g=a.items.length;f0&&h>0){if(f>=this.renderRange.minY&&h<=this.renderRange.maxY&&e>=this.renderRange.minX&&g<=this.renderRange.maxX)return;for(var i=this._cellRenderers(h-f,g-e,e,f),j=[],k={},l={},m={},n={},o=0,p=i.length;o=0?(q.width!==this.renderedCells[A]._width&&(this.renderedCells[A]._width=q.width,this.renderedCells[A].el.setWidth(q.width)),q.height!==this.renderedCells[A]._height&&(this.renderedCells[A]._height=q.height,this.renderedCells[A].el.setHeight(q.height)),this.renderedCells[A]._left!==q.x&&this.renderedCells[A].el.element.css("left",q.x+"px"),this.renderedCells[A]._top!==q.y&&this.renderedCells[A].el.element.css("top",q.y+"px"),j.push(z=this.renderedCells[A])):(z=BI.createWidget(BI.extend({type:"bi.label",width:q.width,height:q.height},b.items[q.index],{cls:(b.items[q.index].cls||"")+" container-cell"+(0===q.y?" first-row":"")+(0===q.x?" first-col":""),_left:q.x,_top:q.y})),j.push({el:z,left:q.x,top:q.y,_left:q.x,_top:q.y,_width:q.width,_height:q.height}));for(var B=0|s[q.y],C=0|s[q.y+q.height],D=B;D<=C;D++){var E=n[D];x(t,E),y(u,E),t[E]=Math.min(t[E],q.x),u[E]=Math.max(u[E],q.x+q.width)}for(var F=0|r[q.x],G=0|r[q.x+q.width],D=F;D<=G;D++){var H=m[D];x(v,H),y(w,H),v[H]=Math.min(v[H],q.y),w[H]=Math.max(w[H],q.y+q.height)}k[q.index]=[q.index,o],l[o]=z}var I={},J={},K=[];BI.each(k,function(b,c){a.renderedKeys[b]?I[b]=c:J[b]=c}),BI.each(this.renderedKeys,function(a,b){I[a]||J[a]||K.push(b[1])}),BI.each(K,function(b,c){a.renderedCells[c].el._destroy()});var L=[];BI.each(J,function(a,b){L.push(j[b[1]])}),this.container.addItems(L),this.container._children=l,this.container.attr("items",j),this.renderedCells=j,this.renderedKeys=k;var M=BI.min(t),N=BI.max(u),O=BI.max(v),P=BI.min(w);this.renderRange={minX:M,minY:O,maxX:N,maxY:P}}},_getMaxScrollLeft:function(){return Math.max(0,this._width-this.options.width+(this.options.overflowX?BI.DOM.getScrollWidth():0))},_getMaxScrollTop:function(){return Math.max(0,this._height-this.options.height+(this.options.overflowY?BI.DOM.getScrollWidth():0))},_populate:function(a){var b=this.options;this._reRange(),a&&a!==this.options.items&&(this.options.items=a,this._calculateSizeAndPositionData()),b.items.length>0&&(this.container.setWidth(this._width),this.container.setHeight(this._height),this._calculateChildrenToRender(),this.element.scrollTop(b.scrollTop),this.element.scrollLeft(b.scrollLeft))},setScrollLeft:function(a){this.options.scrollLeft!==a&&(this._scrollLock=!0,this.options.scrollLeft=BI.clamp(a||0,0,this._getMaxScrollLeft()),this._debounceRelease(),this._calculateChildrenToRender(),this.element.scrollLeft(this.options.scrollLeft))},setScrollTop:function(a){this.options.scrollTop!==a&&(this._scrollLock=!0,this.options.scrollTop=BI.clamp(a||0,0,this._getMaxScrollTop()),this._debounceRelease(),this._calculateChildrenToRender(),this.element.scrollTop(this.options.scrollTop))},setOverflowX:function(a){var b=this;this.options.overflowX!==!!a&&(this.options.overflowX=!!a,BI.nextTick(function(){b.element.css({overflowX:a?"auto":"hidden"})}))},setOverflowY:function(a){var b=this;this.options.overflowY!==!!a&&(this.options.overflowY=!!a,BI.nextTick(function(){b.element.css({overflowY:a?"auto":"hidden"})}))},getScrollLeft:function(){return this.options.scrollLeft},getScrollTop:function(){return this.options.scrollTop},getMaxScrollLeft:function(){return this._getMaxScrollLeft()},getMaxScrollTop:function(){return this._getMaxScrollTop()},_reRange:function(){this.renderRange={}},_clearChildren:function(){this.container._children={},this.container.attr("items",[])},restore:function(){BI.each(this.renderedCells,function(a,b){b.el._destroy()}),this._clearChildren(),this.renderedCells=[],this.renderedKeys=[],this.renderRange={},this._scrollLock=!1},populate:function(a){a&&a!==this.options.items&&this.restore(),this._populate(a)}}),BI.CollectionView.EVENT_SCROLL="EVENT_SCROLL",BI.shortcut("bi.collection_view",BI.CollectionView),BI.Combo=BI.inherit(BI.Widget,{_defaultConfig:function(){var a=BI.Combo.superclass._defaultConfig.apply(this,arguments);return BI.extend(a,{baseCls:(a.baseCls||"")+" bi-combo",trigger:"click",toggle:!0,direction:"bottom",isDefaultInit:!1,destroyWhenHide:!1,isNeedAdjustHeight:!0,isNeedAdjustWidth:!0,stopEvent:!1,stopPropagation:!1,adjustLength:0,adjustXOffset:0,adjustYOffset:0,hideChecker:BI.emptyFn,offsetStyle:"left",el:{},popup:{},comboClass:"bi-combo-popup",hoverClass:"bi-combo-hover"})},_init:function(){BI.Combo.superclass._init.apply(this,arguments);var a=this,b=this.options;this._initCombo(),this._initPullDownAction(),this.combo.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.isEnabled()&&a.isValid()&&(b===BI.Events.EXPAND&&a._popupView(),b===BI.Events.COLLAPSE&&a._hideView(),b===BI.Events.EXPAND&&(a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a.fireEvent(BI.Combo.EVENT_EXPAND)),b===BI.Events.COLLAPSE&&(a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a.isViewVisible()&&a.fireEvent(BI.Combo.EVENT_COLLAPSE)),b===BI.Events.CLICK&&a.fireEvent(BI.Combo.EVENT_TRIGGER_CHANGE,d))}),a.element.on("mouseenter."+a.getName(),function(c){a.isEnabled()&&a.isValid()&&a.combo.isEnabled()&&a.combo.isValid()&&a.element.addClass(b.hoverClass)}),a.element.on("mouseleave."+a.getName(),function(c){a.isEnabled()&&a.isValid()&&a.combo.isEnabled()&&a.combo.isValid()&&a.element.removeClass(b.hoverClass)}),BI.createWidget({type:"bi.vertical",scrolly:!1,element:this,items:[{el:this.combo}]}),b.isDefaultInit&&this._assertPopupView(),BI.Resizers.add(this.getName(),BI.bind(function(){this.isViewVisible()&&this._hideView()},this))},_toggle:function(){this._assertPopupViewRender(),this.popupView.isVisible()?this._hideView():this.isEnabled()&&this._popupView()},_initPullDownAction:function(){var a=this,b=this.options,c=this.options.trigger.split(","),d=function(a){b.stopEvent&&a.stopEvent(),b.stopPropagation&&a.stopPropagation()};BI.each(c,function(c,e){switch(e){case"hover":a.element.on("mouseenter."+a.getName(),function(b){a.isEnabled()&&a.isValid()&&a.combo.isEnabled()&&a.combo.isValid()&&(a._popupView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.combo),a.fireEvent(BI.Combo.EVENT_EXPAND))}),a.element.on("mouseleave."+a.getName(),function(c){a.isEnabled()&&a.isValid()&&a.combo.isEnabled()&&a.combo.isValid()&&b.toggle===!0&&(a._hideView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.combo),a.fireEvent(BI.Combo.EVENT_COLLAPSE))});break;case"click":var f=BI.debounce(function(c){if(a.combo.element.__isMouseInBounds__(c)&&a.isEnabled()&&a.isValid()&&a.combo.isEnabled()&&a.combo.isValid()){if(!b.toggle&&a.isViewVisible())return;b.toggle?a._toggle():a._popupView(),a.isViewVisible()?(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.combo),a.fireEvent(BI.Combo.EVENT_EXPAND)):(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.combo),a.fireEvent(BI.Combo.EVENT_COLLAPSE))}},BI.EVENT_RESPONSE_TIME,!0);a.element.off(e+"."+a.getName()).on(e+"."+a.getName(),function(a){f(a),d(a)});break;case"click-hover":var f=BI.debounce(function(b){if(a.combo.element.__isMouseInBounds__(b)&&a.isEnabled()&&a.isValid()&&a.combo.isEnabled()&&a.combo.isValid()){if(a.isViewVisible())return;a._popupView(),a.isViewVisible()&&(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.combo),a.fireEvent(BI.Combo.EVENT_EXPAND))}},BI.EVENT_RESPONSE_TIME,!0);a.element.off("click."+a.getName()).on("click."+a.getName(),function(a){f(a),d(a)}),a.element.on("mouseleave."+a.getName(),function(c){a.isEnabled()&&a.isValid()&&a.combo.isEnabled()&&a.combo.isValid()&&b.toggle===!0&&(a._hideView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.combo),a.fireEvent(BI.Combo.EVENT_COLLAPSE))})}})},_initCombo:function(){this.combo=BI.createWidget(this.options.el)},_assertPopupView:function(){var a=this;null==this.popupView&&(this.popupView=BI.createWidget(this.options.popup,{type:"bi.popup_view"}),this.popupView.on(BI.Controller.EVENT_CHANGE,function(b,c,d){b===BI.Events.CLICK&&(a.combo.setValue(a.getValue()),a.fireEvent(BI.Combo.EVENT_CHANGE,c,d)),a.fireEvent(BI.Controller.EVENT_CHANGE,arguments)}),this.popupView.setVisible(!1),BI.nextTick(function(){a.fireEvent(BI.Combo.EVENT_AFTER_INIT)}))},_assertPopupViewRender:function(){this._assertPopupView(),this._rendered||(BI.createWidget({type:"bi.vertical",scrolly:!1,element:this,items:[{el:this.popupView}]}),this._rendered=!0)},_hideIf:function(a){if(!(this.element.find(a.target).length>0||$(a.target).closest(".CodeMirror-hints").length>0)){var b=this.options.hideChecker.apply(this,[a]);b!==!1&&this._hideView()}},_hideView:function(){this.fireEvent(BI.Combo.EVENT_BEFORE_HIDEVIEW),this.options.destroyWhenHide===!0?(this.popupView&&this.popupView.destroy(),this.popupView=null,this._rendered=!1):this.popupView&&this.popupView.invisible(),this.element.removeClass(this.options.comboClass),$(document).unbind("mousedown."+this.getName()).unbind("mousewheel."+this.getName()),this.fireEvent(BI.Combo.EVENT_AFTER_HIDEVIEW)},_popupView:function(){this._assertPopupViewRender(),this.fireEvent(BI.Combo.EVENT_BEFORE_POPUPVIEW),this.popupView.visible(),this.adjustWidth(),this.adjustHeight(),this.element.addClass(this.options.comboClass),$(document).bind("mousedown."+this.getName(),BI.bind(this._hideIf,this)).bind("mousewheel."+this.getName(),BI.bind(this._hideIf,this)),this.fireEvent(BI.Combo.EVENT_AFTER_POPUPVIEW)},adjustWidth:function(){var a=this.options;if(this.popupView&&a.isNeedAdjustWidth===!0){this.resetListWidth("");var b=this.popupView.element.outerWidth(),c=this.element.outerWidth()||a.width;b>c+80?c+=80:b>c&&(c=b),this.resetListWidth(c<100?100:c)}},adjustHeight:function(){var a=this.options,b={};if(this.popupView){var c=this.popupView.isVisible();switch(this.popupView.visible(),a.direction){case"bottom":case"bottom,right":b=$.getComboPosition(this.combo,this.popupView,a.adjustXOffset,a.adjustYOffset||a.adjustLength,a.isNeedAdjustHeight,["bottom","top","right","left"],a.offsetStyle);break;case"top":case"top,right":b=$.getComboPosition(this.combo,this.popupView,a.adjustXOffset,a.adjustYOffset||a.adjustLength,a.isNeedAdjustHeight,["top","bottom","right","left"],a.offsetStyle);break;case"left":case"left,bottom":b=$.getComboPosition(this.combo,this.popupView,a.adjustXOffset||a.adjustLength,a.adjustYOffset,a.isNeedAdjustHeight,["left","right","bottom","top"],a.offsetStyle);break;case"right":case"right,bottom":b=$.getComboPosition(this.combo,this.popupView,a.adjustXOffset||a.adjustLength,a.adjustYOffset,a.isNeedAdjustHeight,["right","left","bottom","top"],a.offsetStyle);break;case"top,left":b=$.getComboPosition(this.combo,this.popupView,a.adjustXOffset,a.adjustYOffset||a.adjustLength,a.isNeedAdjustHeight,["top","bottom","left","right"],a.offsetStyle);break;case"bottom,left":b=$.getComboPosition(this.combo,this.popupView,a.adjustXOffset,a.adjustYOffset||a.adjustLength,a.isNeedAdjustHeight,["bottom","top","left","right"],a.offsetStyle);break;case"left,top":b=$.getComboPosition(this.combo,this.popupView,a.adjustXOffset||a.adjustLength,a.adjustYOffset,a.isNeedAdjustHeight,["left","right","top","bottom"],a.offsetStyle);break;case"right,top":b=$.getComboPosition(this.combo,this.popupView,a.adjustXOffset||a.adjustLength,a.adjustYOffset,a.isNeedAdjustHeight,["right","left","top","bottom"],a.offsetStyle);break;case"top,custom":case"custom,top":b=$.getTopAdaptPosition(this.combo,this.popupView,a.adjustYOffset||a.adjustLength,a.isNeedAdjustHeight);break;case"custom,bottom":case"bottom,custom":b=$.getBottomAdaptPosition(this.combo,this.popupView,a.adjustYOffset||a.adjustLength,a.isNeedAdjustHeight);break;case"left,custom":case"custom,left":b=$.getLeftAdaptPosition(this.combo,this.popupView,a.adjustXOffset||a.adjustLength),delete b.top,delete b.adaptHeight;break;case"custom,right":case"right,custom":b=$.getRightAdaptPosition(this.combo,this.popupView,a.adjustXOffset||a.adjustLength),delete b.top,delete b.adaptHeight}"adaptHeight"in b&&this.resetListHeight(b.adaptHeight),"left"in b&&this.popupView.element.css({left:b.left}),"top"in b&&this.popupView.element.css({top:b.top}),this.position=b,this.popupView.setVisible(c)}},resetListHeight:function(a){this._assertPopupView(),this.popupView.resetHeight&&this.popupView.resetHeight(a)},resetListWidth:function(a){this._assertPopupView(),this.popupView.resetWidth&&this.popupView.resetWidth(a)},populate:function(a){this._assertPopupView(),this.popupView.populate.apply(this.popupView,arguments),this.combo.populate.apply(this.combo,arguments)},_setEnable:function(a){BI.Combo.superclass._setEnable.apply(this,arguments),!a&&this.element.removeClass(this.options.hoverClass),!a&&this.isViewVisible()&&this._hideView()},setValue:function(a){this._assertPopupView(),this.combo.setValue(a),this.popupView&&this.popupView.setValue(a)},getValue:function(){return this._assertPopupView(),this.popupView&&this.popupView.getValue()},isViewVisible:function(){return this.isEnabled()&&this.combo.isEnabled()&&!!this.popupView&&this.popupView.isVisible()},showView:function(){this.isEnabled()&&this.combo.isEnabled()&&this._popupView()},hideView:function(){this._hideView()},getView:function(){return this.popupView},getPopupPosition:function(){return this.position},toggle:function(){this._toggle()},destroy:function(){$(document).unbind("mousedown."+this.getName()).unbind("mousewheel."+this.getName()).unbind("mouseenter."+this.getName()).unbind("mousemove."+this.getName()).unbind("mouseleave."+this.getName()),BI.Resizers.remove(this.getName()),BI.Combo.superclass.destroy.apply(this,arguments)}}),BI.Combo.EVENT_TRIGGER_CHANGE="EVENT_TRIGGER_CHANGE",BI.Combo.EVENT_CHANGE="EVENT_CHANGE",BI.Combo.EVENT_EXPAND="EVENT_EXPAND",BI.Combo.EVENT_COLLAPSE="EVENT_COLLAPSE",BI.Combo.EVENT_AFTER_INIT="EVENT_AFTER_INIT",BI.Combo.EVENT_BEFORE_POPUPVIEW="EVENT_BEFORE_POPUPVIEW",BI.Combo.EVENT_AFTER_POPUPVIEW="EVENT_AFTER_POPUPVIEW",BI.Combo.EVENT_BEFORE_HIDEVIEW="EVENT_BEFORE_HIDEVIEW",BI.Combo.EVENT_AFTER_HIDEVIEW="EVENT_AFTER_HIDEVIEW",BI.shortcut("bi.combo",BI.Combo),BI.Expander=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Expander.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-expander",trigger:"click",toggle:!0,isDefaultInit:!1,el:{},popup:{},expanderClass:"bi-expander-popup",hoverClass:"bi-expander-hover"})},_init:function(){BI.Expander.superclass._init.apply(this,arguments);var a=this,b=this.options;this._expanded=!!b.el.open,this._initExpander(),this._initPullDownAction(),this.expander.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.isEnabled()&&a.isValid()&&(b===BI.Events.EXPAND&&a._popupView(),b===BI.Events.COLLAPSE&&a._hideView(),b===BI.Events.EXPAND&&(a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a.fireEvent(BI.Expander.EVENT_EXPAND)),b===BI.Events.COLLAPSE&&(a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a.isViewVisible()&&a.fireEvent(BI.Expander.EVENT_COLLAPSE)),b===BI.Events.CLICK&&a.fireEvent(BI.Expander.EVENT_TRIGGER_CHANGE,c,d))}),this.element.hover(function(){a.isEnabled()&&a.isValid()&&a.expander.isEnabled()&&a.expander.isValid()&&a.element.addClass(b.hoverClass)},function(){a.isEnabled()&&a.isValid()&&a.expander.isEnabled()&&a.expander.isValid()&&a.element.removeClass(b.hoverClass)}),BI.createWidget({type:"bi.vertical",scrolly:!1,element:this,items:[{el:this.expander}]}),b.isDefaultInit&&this._assertPopupView(),this.expander.isOpened()===!0&&this._popupView()},_toggle:function(){this._assertPopupViewRender(),this.popupView.isVisible()?this._hideView():this.isEnabled()&&this._popupView()},_initPullDownAction:function(){var a=this,b=this.options,c=this.options.trigger.split(",");BI.each(c,function(c,d){switch(d){case"hover":a.element[d](function(b){a.isEnabled()&&a.isValid()&&a.expander.isEnabled()&&a.expander.isValid()&&(a._popupView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.expander),a.fireEvent(BI.Expander.EVENT_EXPAND))},function(){a.isEnabled()&&a.isValid()&&a.expander.isEnabled()&&a.expander.isValid()&&b.toggle&&(a._hideView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.expander),a.fireEvent(BI.Expander.EVENT_COLLAPSE))});break;default:d&&a.element.off(d+"."+a.getName()).on(d+"."+a.getName(),BI.debounce(function(c){a.expander.element.__isMouseInBounds__(c)&&a.isEnabled()&&a.isValid()&&a.expander.isEnabled()&&a.expander.isValid()&&(b.toggle?a._toggle():a._popupView(),a.isExpanded()?(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.expander),a.fireEvent(BI.Expander.EVENT_EXPAND)):(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.expander),a.fireEvent(BI.Expander.EVENT_COLLAPSE)))},BI.EVENT_RESPONSE_TIME,!0))}})},_initExpander:function(){this.expander=BI.createWidget(this.options.el)},_assertPopupView:function(){var a=this;null==this.popupView&&(this.popupView=BI.createWidget(this.options.popup,{ -type:"bi.button_group",cls:"expander-popup",layouts:[{type:"bi.vertical",hgap:0,vgap:0}]}),this.popupView.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),b===BI.Events.CLICK&&a.fireEvent(BI.Expander.EVENT_CHANGE,c,d)}),this.popupView.setVisible(this.isExpanded()),BI.nextTick(function(){a.fireEvent(BI.Expander.EVENT_AFTER_INIT)}))},_assertPopupViewRender:function(){this._assertPopupView(),this._rendered||(BI.createWidget({type:"bi.vertical",scrolly:!1,element:this,items:[{el:this.popupView}]}),this._rendered=!0)},_hideView:function(){this.fireEvent(BI.Expander.EVENT_BEFORE_HIDEVIEW),this._expanded=!1,this.expander.setOpened(!1),this.popupView&&this.popupView.invisible(),this.element.removeClass(this.options.expanderClass),this.fireEvent(BI.Expander.EVENT_AFTER_HIDEVIEW)},_popupView:function(){this._assertPopupViewRender(),this.fireEvent(BI.Expander.EVENT_BEFORE_POPUPVIEW),this._expanded=!0,this.expander.setOpened(!0),this.popupView.visible(),this.element.addClass(this.options.expanderClass),this.fireEvent(BI.Expander.EVENT_AFTER_POPUPVIEW)},populate:function(a){this.popupView&&this.popupView.populate.apply(this.popupView,arguments),this.expander.populate.apply(this.expander,arguments)},_setEnable:function(a){BI.Expander.superclass._setEnable.apply(this,arguments),!a&&this.element.removeClass(this.options.hoverClass),!a&&this.isViewVisible()&&this._hideView()},setValue:function(a){this.expander.setValue(a),this.popupView&&this.popupView.setValue(a)},getValue:function(){return this.popupView?this.popupView.getValue():[]},isViewVisible:function(){return this.isEnabled()&&this.expander.isEnabled()&&!!this.popupView&&this.popupView.isVisible()},isExpanded:function(){return this._expanded},showView:function(){this.isEnabled()&&this.expander.isEnabled()&&this._popupView()},hideView:function(){this._hideView()},getView:function(){return this.popupView},getAllLeaves:function(){return this.popupView&&this.popupView.getAllLeaves()},getNodeById:function(a){return this.expander.options.id===a?this.expander:this.popupView&&this.popupView.getNodeById(a)},getNodeByValue:function(a){return this.expander.getValue()===a?this.expander:this.popupView&&this.popupView.getNodeByValue(a)},destroy:function(){BI.Expander.superclass.destroy.apply(this,arguments)}}),BI.Expander.EVENT_EXPAND="EVENT_EXPAND",BI.Expander.EVENT_COLLAPSE="EVENT_COLLAPSE",BI.Expander.EVENT_TRIGGER_CHANGE="EVENT_TRIGGER_CHANGE",BI.Expander.EVENT_CHANGE="EVENT_CHANGE",BI.Expander.EVENT_AFTER_INIT="EVENT_AFTER_INIT",BI.Expander.EVENT_BEFORE_POPUPVIEW="EVENT_BEFORE_POPUPVIEW",BI.Expander.EVENT_AFTER_POPUPVIEW="EVENT_AFTER_POPUPVIEW",BI.Expander.EVENT_BEFORE_HIDEVIEW="EVENT_BEFORE_HIDEVIEW",BI.Expander.EVENT_AFTER_HIDEVIEW="EVENT_AFTER_HIDEVIEW",BI.shortcut("bi.expander",BI.Expander),BI.ComboGroup=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.ComboGroup.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-combo-group bi-list-item",trigger:"click,hover",direction:"right",adjustLength:0,isDefaultInit:!1,isNeedAdjustHeight:!1,isNeedAdjustWidth:!1,el:{type:"bi.text_button",text:"",value:""},children:[],popup:{el:{type:"bi.button_tree",chooseType:0,layouts:[{type:"bi.vertical"}]}}})},_init:function(){BI.ComboGroup.superclass._init.apply(this,arguments),this.populate(this.options.el)},populate:function(a){var b=this,c=this.options,d=c.children;if(BI.isEmpty(d))throw new Error("ComboGroup构造错误");BI.each(d,function(a,b){var d=BI.formatEL(b).el.children;b=BI.formatEL(b).el,BI.isEmpty(d)||(b.el=BI.clone(b),b.children=d,b.type="bi.combo_group",b.action=c.action,b.height=c.height,b.direction=c.direction,b.isDefaultInit=c.isDefaultInit,b.isNeedAdjustHeight=c.isNeedAdjustHeight,b.isNeedAdjustWidth=c.isNeedAdjustWidth,b.adjustLength=c.adjustLength,b.popup=c.popup)}),this.combo=BI.createWidget({type:"bi.combo",element:this,height:c.height,trigger:c.trigger,direction:c.direction,isDefaultInit:c.isDefaultInit,isNeedAdjustWidth:c.isNeedAdjustWidth,isNeedAdjustHeight:c.isNeedAdjustHeight,adjustLength:c.adjustLength,el:a,popup:BI.extend({},c.popup,{el:BI.extend({items:d},c.popup.el)})}),this.combo.on(BI.Controller.EVENT_CHANGE,function(a,c,d){b.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a===BI.Events.CLICK&&b.fireEvent(BI.ComboGroup.EVENT_CHANGE,d)})},getValue:function(){return this.combo.getValue()},setValue:function(a){this.combo.setValue(a)}}),BI.ComboGroup.EVENT_CHANGE="EVENT_CHANGE",BI.shortcut("bi.combo_group",BI.ComboGroup),BI.VirtualGroup=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.VirtualGroup.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-virtual-group",items:[],layouts:[{type:"bi.center",hgap:0,vgap:0}]})},render:function(){this.populate(this.options.items)},_packageBtns:function(a){for(var b=this.options,c=b.layouts.length-1;c>0;c--)a=BI.map(a,function(a,d){return BI.extend({},b.layouts[c],{items:[BI.extend({},b.layouts[c].el,{el:BI.stripEL(d)})]})});return a},_packageItems:function(a,b){return BI.createItems(BI.makeArrayByArray(a,{}),BI.clone(b))},_packageLayout:function(a){for(var b=this.options,c=BI.deepClone(b.layouts[0]),d=BI.formatEL(c).el;d&&d.items&&!BI.isEmpty(d.items);)d=BI.formatEL(d.items[0]).el;return d.items=a,c},addItems:function(a){this.layouts.addItems(a)},prependItems:function(a){this.layouts.prependItems(a)},setValue:function(a){this.layouts.setValue(a)},getValue:function(){return this.layouts.getValue()},populate:function(a){a=a||[],this.options.items=a,a=this._packageBtns(a),this.layouts?this.layouts.populate(a):this.layouts=BI.createWidget(BI.extend({element:this},this._packageLayout(a)))}}),BI.VirtualGroup.EVENT_CHANGE="EVENT_CHANGE",BI.shortcut("bi.virtual_group",BI.VirtualGroup),BI.Loader=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Loader.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-loader",direction:"top",isDefaultInit:!0,logic:{dynamic:!0,scrolly:!0},el:{type:"bi.button_group"},items:[],itemsCreator:BI.emptyFn,onLoaded:BI.emptyFn,count:!1,prev:!1,next:{},hasPrev:BI.emptyFn,hasNext:BI.emptyFn})},_prevLoad:function(){var a=this,b=this.options;this.prev.setLoading(),b.itemsCreator.apply(this,[{times:--this.times},function(){a.prev.setLoaded(),a.prependItems.apply(a,arguments)}])},_nextLoad:function(){var a=this,b=this.options;this.next.setLoading(),b.itemsCreator.apply(this,[{times:++this.times},function(){a.next.setLoaded(),a.addItems.apply(a,arguments)}])},_init:function(){BI.Loader.superclass._init.apply(this,arguments);var a=this,b=this.options;b.itemsCreator===!1&&(b.prev=!1,b.next=!1),b.prev!==!1&&(this.prev=BI.createWidget(BI.extend({type:"bi.loading_bar"},b.prev)),this.prev.on(BI.Controller.EVENT_CHANGE,function(b){b===BI.Events.CLICK&&a._prevLoad()})),this.button_group=BI.createWidget(b.el,{type:"bi.button_group",chooseType:0,items:b.items,behaviors:{},layouts:[{type:"bi.vertical"}]}),this.button_group.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),b===BI.Events.CLICK&&a.fireEvent(BI.Loader.EVENT_CHANGE,d)}),b.next!==!1&&(this.next=BI.createWidget(BI.extend({type:"bi.loading_bar"},b.next)),this.next.on(BI.Controller.EVENT_CHANGE,function(b){b===BI.Events.CLICK&&a._nextLoad()})),BI.createWidget(BI.extend({element:this},BI.LogicFactory.createLogic(BI.LogicFactory.createLogicTypeByDirection(b.direction),BI.extend({scrolly:!0},b.logic,{items:BI.LogicFactory.createLogicItemsByDirection(b.direction,this.prev,this.button_group,this.next)})))),b.isDefaultInit&&BI.isEmpty(b.items)&&BI.nextTick(BI.bind(function(){b.isDefaultInit&&BI.isEmpty(b.items)&&this.populate()},this)),BI.isNotEmptyArray(b.items)&&this.populate(b.items)},hasPrev:function(){var a=this.options;return BI.isNumber(a.count)?this.count0&&f.push(c),BI.Maskers.show(a.getName()),a.popupView.populate.apply(a.popupView,f),b.isAutoSync&&b.adapter&&b.adapter.getValue&&a.popupView.setValue(b.adapter.getValue()),a.popupView.loaded&&a.popupView.loaded(),a.fireEvent(BI.Searcher.EVENT_SEARCHING)}})}},setAdapter:function(a){this.options.adapter=a,BI.Maskers.remove(this.getName())},doSearch:function(){this.isSearching()&&this._search()},stopSearch:function(){this._stopSearch();try{this.editor.blur()}catch(a){if(!this.editor.blur)throw new Error("editor没有实现blur方法")}finally{this.editor.setValue("")}},isSearching:function(){return this._isSearching},isViewVisible:function(){return this.editor.isEnabled()&&BI.Maskers.isVisible(this.getName())},getView:function(){return this.popupView},hasMatched:function(){return this._assertPopupView(),this.popupView.hasMatched()},adjustHeight:function(){BI.Maskers.has(this.getName())&&BI.Maskers.get(this.getName()).isVisible()&&BI.Maskers.show(this.getName())},adjustView:function(){this.isViewVisible()&&BI.Maskers.show(this.getName())},setValue:function(a){this._assertPopupView(),this.popupView&&this.popupView.setValue(a)},getKeyword:function(){return this.editor.getValue()},getKeywords:function(){return this.editor.getKeywords()},getValue:function(){var a=this.options;return a.isAutoSync&&a.adapter&&a.adapter.getValue?a.adapter.getValue():this.isSearching()?this.popupView.getValue():a.adapter&&a.adapter.getValue?a.adapter.getValue():this.popupView.getValue()},populate:function(a,b,c){var d=this.options;this._assertPopupView(),this.popupView.populate.apply(this.popupView,arguments),d.isAutoSync&&d.adapter&&d.adapter.getValue&&this.popupView.setValue(d.adapter.getValue())},empty:function(){this.popupView&&this.popupView.empty()},destroy:function(){BI.Maskers.remove(this.getName()),BI.Searcher.superclass.destroy.apply(this,arguments)}}),BI.Searcher.EVENT_CHANGE="EVENT_CHANGE",BI.Searcher.EVENT_START="EVENT_START",BI.Searcher.EVENT_STOP="EVENT_STOP",BI.Searcher.EVENT_PAUSE="EVENT_PAUSE",BI.Searcher.EVENT_SEARCHING="EVENT_SEARCHING",BI.Searcher.EVENT_AFTER_INIT="EVENT_AFTER_INIT",BI.shortcut("bi.searcher",BI.Searcher),BI.Switcher=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Switcher.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-switcher",direction:BI.Direction.Top,trigger:"click",toggle:!0,el:{},popup:{},adapter:null,masker:{},switcherClass:"bi-switcher-popup",hoverClass:"bi-switcher-hover"})},_init:function(){BI.Switcher.superclass._init.apply(this,arguments);var a=this,b=this.options;this._initSwitcher(),this._initPullDownAction(),this.switcher.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.isEnabled()&&a.isValid()&&(b===BI.Events.EXPAND&&a._popupView(),b===BI.Events.COLLAPSE&&a._hideView(),b===BI.Events.EXPAND&&(a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a.fireEvent(BI.Switcher.EVENT_EXPAND)),b===BI.Events.COLLAPSE&&(a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a.isViewVisible()&&a.fireEvent(BI.Switcher.EVENT_COLLAPSE)),b===BI.Events.CLICK&&a.fireEvent(BI.Switcher.EVENT_TRIGGER_CHANGE,c,d))}),this.element.hover(function(){a.isEnabled()&&a.switcher.isEnabled()&&a.element.addClass(b.hoverClass)},function(){a.isEnabled()&&a.switcher.isEnabled()&&a.element.removeClass(b.hoverClass)}),BI.createWidget({type:"bi.vertical",scrolly:!1,element:this,items:[{el:this.switcher}]}),b.isDefaultInit&&this._assertPopupView()},_toggle:function(){this._assertPopupView(),this.isExpanded()?this._hideView():this.isEnabled()&&this._popupView()},_initPullDownAction:function(){var a=this,b=this.options,c=this.options.trigger.split(",");BI.each(c,function(c,d){switch(d){case"hover":a.element[d](function(b){a.isEnabled()&&a.switcher.isEnabled()&&(a._popupView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.switcher),a.fireEvent(BI.Switcher.EVENT_EXPAND))},function(){a.isEnabled()&&a.switcher.isEnabled()&&b.toggle&&(a._hideView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.switcher),a.fireEvent(BI.Switcher.EVENT_COLLAPSE))});break;default:d&&a.element.off(d+"."+a.getName()).on(d+"."+a.getName(),BI.debounce(function(c){a.switcher.element.__isMouseInBounds__(c)&&a.isEnabled()&&a.switcher.isEnabled()&&(b.toggle?a._toggle():a._popupView(),a.isExpanded()?(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.switcher),a.fireEvent(BI.Switcher.EVENT_EXPAND)):(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.switcher),a.fireEvent(BI.Switcher.EVENT_COLLAPSE)))},BI.EVENT_RESPONSE_TIME,!0))}})},_initSwitcher:function(){this.switcher=BI.createWidget(this.options.el)},_assertPopupView:function(){var a=this,b=this.options;this._created||(this.popupView=BI.createWidget(b.popup,{type:"bi.button_group",element:b.adapter&&BI.Maskers.create(this.getName(),b.adapter,BI.extend({container:this},b.masker)),cls:"switcher-popup",layouts:[{type:"bi.vertical",hgap:0,vgap:0}]}),this.popupView.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),b===BI.Events.CLICK&&a.fireEvent(BI.Switcher.EVENT_CHANGE,c,d)}),b.direction===BI.Direction.Custom||b.adapter||BI.createWidget({type:"bi.vertical",scrolly:!1,element:this,items:[{el:this.popupView}]}),this._created=!0,BI.nextTick(function(){a.fireEvent(BI.Switcher.EVENT_AFTER_INIT)}))},_hideView:function(){this.fireEvent(BI.Switcher.EVENT_BEFORE_HIDEVIEW);var a=this,b=this.options;b.adapter?BI.Maskers.hide(a.getName()):a.popupView&&a.popupView.setVisible(!1),BI.nextTick(function(){b.adapter?BI.Maskers.hide(a.getName()):a.popupView&&a.popupView.setVisible(!1),a.element.removeClass(b.switcherClass),a.fireEvent(BI.Switcher.EVENT_AFTER_HIDEVIEW)})},_popupView:function(){var a=this,b=this.options;this._assertPopupView(),this.fireEvent(BI.Switcher.EVENT_BEFORE_POPUPVIEW),b.adapter?BI.Maskers.show(this.getName()):a.popupView.setVisible(!0),BI.nextTick(function(c){b.adapter?BI.Maskers.show(c):a.popupView.setVisible(!0),a.element.addClass(b.switcherClass),a.fireEvent(BI.Switcher.EVENT_AFTER_POPUPVIEW)},this.getName())},populate:function(a){this._assertPopupView(),this.popupView.populate.apply(this.popupView,arguments),this.switcher.populate.apply(this.switcher,arguments)},_setEnable:function(a){BI.Switcher.superclass._setEnable.apply(this,arguments),!a&&this.isViewVisible()&&this._hideView()},setValue:function(a){this._assertPopupView(),this.switcher.setValue(a),this.popupView&&this.popupView.setValue(a)},getValue:function(){return this._assertPopupView(),this.popupView?this.popupView.getValue():[]},setAdapter:function(a){this.options.adapter=a,BI.Maskers.remove(this.getName())},isViewVisible:function(){return this.isEnabled()&&this.switcher.isEnabled()&&(this.options.adapter?BI.Maskers.isVisible(this.getName()):this.popupView&&this.popupView.isVisible())},isExpanded:function(){return this.isViewVisible()},showView:function(){this.isEnabled()&&this.switcher.isEnabled()&&this._popupView()},hideView:function(){this._hideView()},getView:function(){return this.popupView},adjustView:function(){this.isViewVisible()&&BI.Maskers.show(this.getName())},getAllLeaves:function(){return this.popupView&&this.popupView.getAllLeaves()},getNodeById:function(a){return this.switcher.attr("id")===a?this.switcher:this.popupView&&this.popupView.getNodeById(a)},getNodeByValue:function(a){return this.switcher.getValue()===a?this.switcher:this.popupView&&this.popupView.getNodeByValue(a)},empty:function(){this.popupView&&this.popupView.empty()},destroy:function(){BI.Switcher.superclass.destroy.apply(this,arguments)}}),BI.Switcher.EVENT_EXPAND="EVENT_EXPAND",BI.Switcher.EVENT_COLLAPSE="EVENT_COLLAPSE",BI.Switcher.EVENT_TRIGGER_CHANGE="EVENT_TRIGGER_CHANGE",BI.Switcher.EVENT_CHANGE="EVENT_CHANGE",BI.Switcher.EVENT_AFTER_INIT="EVENT_AFTER_INIT",BI.Switcher.EVENT_BEFORE_POPUPVIEW="EVENT_BEFORE_POPUPVIEW",BI.Switcher.EVENT_AFTER_POPUPVIEW="EVENT_AFTER_POPUPVIEW",BI.Switcher.EVENT_BEFORE_HIDEVIEW="EVENT_BEFORE_HIDEVIEW",BI.Switcher.EVENT_AFTER_HIDEVIEW="EVENT_AFTER_HIDEVIEW",BI.shortcut("bi.switcher",BI.Switcher),BI.Tab=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Tab.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-tab",direction:"top",single:!1,logic:{dynamic:!1},defaultShowIndex:!1,tab:!1,cardCreator:function(a){return BI.createWidget()}})},render:function(){var a=this,b=this.options;BI.isObject(b.tab)&&(this.tab=BI.createWidget(this.options.tab,{type:"bi.button_group"}),this.tab.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments)})),this.cardMap={},this.layout=BI.createWidget({type:"bi.card"}),BI.createWidget(BI.extend({element:this},BI.LogicFactory.createLogic(BI.LogicFactory.createLogicTypeByDirection(b.direction),BI.extend({},b.logic,{items:BI.LogicFactory.createLogicItemsByDirection(b.direction,this.tab,this.layout)}))));var c=new BI.ShowListener({eventObj:this.tab,cardLayout:this.layout,cardCreator:function(c){var d=b.cardCreator.apply(a,arguments);return a.cardMap[c]=d,d},afterCardShow:function(b){a._deleteOtherCards(b),a.curr=b}});c.on(BI.ShowListener.EVENT_CHANGE,function(b){a.fireEvent(BI.Tab.EVENT_CHANGE,b,a)})},_deleteOtherCards:function(a){var b=this,c=this.options;c.single===!0&&BI.each(this.cardMap,function(c,d){c!==a+""&&(b.layout.deleteCardByName(c),delete b.cardMap[c])})},_assertCard:function(a){if(!this.layout.isCardExisted(a)){var b=this.options.cardCreator(a);this.cardMap[a]=b,this.layout.addCardByName(a,b)}},mounted:function(){var a=this.options;a.defaultShowIndex!==!1&&this.setSelect(a.defaultShowIndex)},setSelect:function(a){this.tab&&this.tab.setValue(a),this._assertCard(a),this.layout.showCardByName(a),this._deleteOtherCards(a),this.curr!==a&&(this.curr=a)},removeTab:function(a){var b=this;this.options;BI.any(this.cardMap,function(c,d){if(BI.isEqual(c,a+""))return b.layout.deleteCardByName(c),delete b.cardMap[c],!0})},getSelect:function(){return this.curr},getSelectedTab:function(){return this.layout.getShowingCard()},getTab:function(a){return this._assertCard(a),this.layout.getCardByName(a)},setValue:function(a){var b=this.layout.getShowingCard();b&&b.setValue(a)},getValue:function(){var a=this.layout.getShowingCard();if(a)return a.getValue()},populate:function(){var a=this.layout.getShowingCard();if(a)return a.populate&&a.populate.apply(a,arguments)},empty:function(){this.layout.deleteAllCard(),this.cardMap={}},destroy:function(){this.cardMap={},BI.Tab.superclass.destroy.apply(this,arguments)}}),BI.Tab.EVENT_CHANGE="EVENT_CHANGE",BI.shortcut("bi.tab",BI.Tab),BI.EL=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.EL.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-el",el:{},layout:{}})},_init:function(){BI.EL.superclass._init.apply(this,arguments);var a=this,b=this.options;this.ele=BI.createWidget(b.el),BI.createWidget(b.layout,{type:"bi.adaptive",element:this,items:[this.ele]}),this.ele.on(BI.Controller.EVENT_CHANGE,function(){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments)})},setValue:function(a){this.ele.setValue(a)},getValue:function(){return this.ele.getValue()},populate:function(){this.ele.populate.apply(this,arguments)}}),BI.shortcut("bi.el",BI.EL),function(a){this.CodeMirror=a()}(function(){"use strict";function a(c,d){if(!(this instanceof a))return new a(c,d);this.options=d=d?He(d):{},He(Vf,d,!1),n(d);var e=d.value;"string"==typeof e&&(e=new rg(e,d.mode)),this.doc=e;var f=new a.inputStyles[d.inputStyle](this),g=this.display=new b(c,e,f);g.wrapper.CodeMirror=this,j(this),h(this),d.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),d.autofocus&&!xf&&g.input.focus(),r(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:!1,cutIncoming:!1,draggingText:!1,highlight:new ze,keySeq:null,specialChars:null};var i=this;nf&&of<11&&setTimeout(function(){i.display.input.reset(!0)},20),Pb(this),Te(),tb(this),this.curOp.forceUpdate=!0,Ud(this,e),d.autofocus&&!xf||i.hasFocus()?setTimeout(Ie(nc,this),20):oc(this);for(var k in Wf)Wf.hasOwnProperty(k)&&Wf[k](this,d[k],Xf);w(this),d.finishInit&&d.finishInit(this);for(var l=0;l<_f.length;++l)_f[l](this);vb(this),pf&&d.lineWrapping&&"optimizelegibility"==getComputedStyle(g.lineDiv).textRendering&&(g.lineDiv.style.textRendering="auto")}function b(a,b,c){var d=this;this.input=c,d.scrollbarFiller=Me("div",null,"CodeMirror-scrollbar-filler"),d.scrollbarFiller.setAttribute("cm-not-content","true"),d.gutterFiller=Me("div",null,"CodeMirror-gutter-filler"),d.gutterFiller.setAttribute("cm-not-content","true"),d.lineDiv=Me("div",null,"CodeMirror-code"),d.selectionDiv=Me("div",null,null,"position: relative; z-index: 1"),d.cursorDiv=Me("div",null,"CodeMirror-cursors"),d.measure=Me("div",null,"CodeMirror-measure"),d.lineMeasure=Me("div",null,"CodeMirror-measure"),d.lineSpace=Me("div",[d.measure,d.lineMeasure,d.selectionDiv,d.cursorDiv,d.lineDiv],null,"position: relative; outline: none"),d.mover=Me("div",[Me("div",[d.lineSpace],"CodeMirror-lines")],null,"position: relative"),d.sizer=Me("div",[d.mover],"CodeMirror-sizer"),d.sizerWidth=null,d.heightForcer=Me("div",null,null,"position: absolute; height: "+Bg+"px; width: 1px;"),d.gutters=Me("div",null,"CodeMirror-gutters"),d.lineGutter=null,d.scroller=Me("div",[d.sizer,d.heightForcer,d.gutters],"CodeMirror-scroll"),d.scroller.setAttribute("tabIndex","-1"),d.wrapper=Me("div",[d.scrollbarFiller,d.gutterFiller,d.scroller],"CodeMirror"),nf&&of<8&&(d.gutters.style.zIndex=-1,d.scroller.style.paddingRight=0),pf||kf&&xf||(d.scroller.draggable=!0),a&&(a.appendChild?a.appendChild(d.wrapper):a(d.wrapper)),d.viewFrom=d.viewTo=b.first,d.reportedViewFrom=d.reportedViewTo=b.first,d.view=[],d.renderedView=null,d.externalMeasured=null,d.viewOffset=0,d.lastWrapHeight=d.lastWrapWidth=0,d.updateLineNumbers=null,d.nativeBarWidth=d.barHeight=d.barWidth=0,d.scrollbarsClipped=!1,d.lineNumWidth=d.lineNumInnerWidth=d.lineNumChars=null,d.alignWidgets=!1,d.cachedCharWidth=d.cachedTextHeight=d.cachedPaddingH=null,d.maxLine=null,d.maxLineLength=0,d.maxLineChanged=!1,d.wheelDX=d.wheelDY=d.wheelStartX=d.wheelStartY=null,d.shift=!1,d.selForContextMenu=null,d.activeTouch=null,c.init(d)}function c(b){b.doc.mode=a.getMode(b.options,b.doc.modeOption),d(b)}function d(a){a.doc.iter(function(a){a.stateAfter&&(a.stateAfter=null),a.styles&&(a.styles=null)}),a.doc.frontier=a.doc.first,Ma(a,100),a.state.modeGen++,a.curOp&&Ib(a)}function e(a){a.options.lineWrapping?(Rg(a.display.wrapper,"CodeMirror-wrap"),a.display.sizer.style.minWidth="",a.display.sizerWidth=null):(Qg(a.display.wrapper,"CodeMirror-wrap"),m(a)),g(a),Ib(a),gb(a),setTimeout(function(){s(a)},100)}function f(a){var b=rb(a.display),c=a.options.lineWrapping,d=c&&Math.max(5,a.display.scroller.clientWidth/sb(a.display)-3);return function(e){if(sd(a.doc,e))return 0;var f=0;if(e.widgets)for(var g=0;g0;c--)a=BI.map(a,function(a,d){return BI.extend({},b.layouts[c],{items:[BI.extend({},b.layouts[c].el,{el:BI.stripEL(d)})]})});return a},_packageItems:function(a,b){return BI.createItems(BI.makeArrayByArray(a,{}),BI.clone(b))},_packageLayout:function(a){for(var b=this.options,c=BI.deepClone(b.layouts[0]),d=BI.formatEL(c).el;d&&d.items&&!BI.isEmpty(d.items);)d=BI.formatEL(d.items[0]).el;return d.items=a,c},addItems:function(a){this.layouts.addItems(a)},prependItems:function(a){this.layouts.prependItems(a)},setValue:function(a){},getValue:function(){return this.layouts.getValue()},populate:function(a){a=a||[],this.options.items=a,a=this._packageBtns(a),this.layouts?this.layouts.populate(a):this.layouts=BI.createWidget(BI.extend({element:this},this._packageLayout(a)))}}),BI.VirtualGroup.EVENT_CHANGE="EVENT_CHANGE",BI.shortcut("bi.virtual_group",BI.VirtualGroup),BI.Loader=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Loader.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-loader",direction:"top",isDefaultInit:!0,logic:{dynamic:!0,scrolly:!0},el:{type:"bi.button_group"},items:[],itemsCreator:BI.emptyFn,onLoaded:BI.emptyFn,count:!1,prev:!1,next:{},hasPrev:BI.emptyFn,hasNext:BI.emptyFn})},_prevLoad:function(){var a=this,b=this.options;this.prev.setLoading(),b.itemsCreator.apply(this,[{times:--this.times},function(){a.prev.setLoaded(),a.prependItems.apply(a,arguments)}])},_nextLoad:function(){var a=this,b=this.options;this.next.setLoading(),b.itemsCreator.apply(this,[{times:++this.times},function(){a.next.setLoaded(),a.addItems.apply(a,arguments)}])},_init:function(){BI.Loader.superclass._init.apply(this,arguments);var a=this,b=this.options;b.itemsCreator===!1&&(b.prev=!1,b.next=!1),b.prev!==!1&&(this.prev=BI.createWidget(BI.extend({type:"bi.loading_bar"},b.prev)),this.prev.on(BI.Controller.EVENT_CHANGE,function(b){b===BI.Events.CLICK&&a._prevLoad()})),this.button_group=BI.createWidget(b.el,{type:"bi.button_group",chooseType:0,items:b.items,behaviors:{},layouts:[{type:"bi.vertical"}]}),this.button_group.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),b===BI.Events.CLICK&&a.fireEvent(BI.Loader.EVENT_CHANGE,d)}),b.next!==!1&&(this.next=BI.createWidget(BI.extend({type:"bi.loading_bar"},b.next)),this.next.on(BI.Controller.EVENT_CHANGE,function(b){b===BI.Events.CLICK&&a._nextLoad()})),BI.createWidget(BI.extend({element:this},BI.LogicFactory.createLogic(BI.LogicFactory.createLogicTypeByDirection(b.direction),BI.extend({scrolly:!0},b.logic,{items:BI.LogicFactory.createLogicItemsByDirection(b.direction,this.prev,this.button_group,this.next)})))),b.isDefaultInit&&BI.isEmpty(b.items)&&BI.nextTick(BI.bind(function(){b.isDefaultInit&&BI.isEmpty(b.items)&&this.populate()},this)),BI.isNotEmptyArray(b.items)&&this.populate(b.items)},hasPrev:function(){var a=this.options;return BI.isNumber(a.count)?this.count0&&f.push(c),BI.Maskers.show(a.getName()),a.popupView.populate.apply(a.popupView,f),b.isAutoSync&&b.adapter&&b.adapter.getValue&&a.popupView.setValue(b.adapter.getValue()),a.popupView.loaded&&a.popupView.loaded(),a.fireEvent(BI.Searcher.EVENT_SEARCHING)}})}},setAdapter:function(a){this.options.adapter=a,BI.Maskers.remove(this.getName())},doSearch:function(){this.isSearching()&&this._search()},stopSearch:function(){this._stopSearch();try{this.editor.blur()}catch(a){if(!this.editor.blur)throw new Error("editor没有实现blur方法")}finally{this.editor.setValue("")}},isSearching:function(){return this._isSearching},isViewVisible:function(){return this.editor.isEnabled()&&BI.Maskers.isVisible(this.getName())},getView:function(){return this.popupView},hasMatched:function(){return this._assertPopupView(),this.popupView.hasMatched()},adjustHeight:function(){BI.Maskers.has(this.getName())&&BI.Maskers.get(this.getName()).isVisible()&&BI.Maskers.show(this.getName())},adjustView:function(){this.isViewVisible()&&BI.Maskers.show(this.getName())},setValue:function(a){this._assertPopupView(),this.popupView&&this.popupView.setValue(a)},getKeyword:function(){return this.editor.getValue()},getKeywords:function(){return this.editor.getKeywords()},getValue:function(){var a=this.options;return a.isAutoSync&&a.adapter&&a.adapter.getValue?a.adapter.getValue():this.isSearching()?this.popupView.getValue():a.adapter&&a.adapter.getValue?a.adapter.getValue():this.popupView.getValue()},populate:function(a,b,c){var d=this.options;this._assertPopupView(),this.popupView.populate.apply(this.popupView,arguments),d.isAutoSync&&d.adapter&&d.adapter.getValue&&this.popupView.setValue(d.adapter.getValue())},empty:function(){this.popupView&&this.popupView.empty()},destroy:function(){BI.Maskers.remove(this.getName()),BI.Searcher.superclass.destroy.apply(this,arguments)}}),BI.Searcher.EVENT_CHANGE="EVENT_CHANGE",BI.Searcher.EVENT_START="EVENT_START",BI.Searcher.EVENT_STOP="EVENT_STOP",BI.Searcher.EVENT_PAUSE="EVENT_PAUSE",BI.Searcher.EVENT_SEARCHING="EVENT_SEARCHING",BI.Searcher.EVENT_AFTER_INIT="EVENT_AFTER_INIT",BI.shortcut("bi.searcher",BI.Searcher),BI.Switcher=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Switcher.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-switcher",direction:BI.Direction.Top,trigger:"click",toggle:!0,el:{},popup:{},adapter:null,masker:{},switcherClass:"bi-switcher-popup",hoverClass:"bi-switcher-hover"})},_init:function(){BI.Switcher.superclass._init.apply(this,arguments);var a=this,b=this.options;this._initSwitcher(),this._initPullDownAction(),this.switcher.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.isEnabled()&&a.isValid()&&(b===BI.Events.EXPAND&&a._popupView(),b===BI.Events.COLLAPSE&&a._hideView(),b===BI.Events.EXPAND&&(a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a.fireEvent(BI.Switcher.EVENT_EXPAND)),b===BI.Events.COLLAPSE&&(a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),a.isViewVisible()&&a.fireEvent(BI.Switcher.EVENT_COLLAPSE)),b===BI.Events.CLICK&&a.fireEvent(BI.Switcher.EVENT_TRIGGER_CHANGE,c,d))}),this.element.hover(function(){a.isEnabled()&&a.switcher.isEnabled()&&a.element.addClass(b.hoverClass)},function(){a.isEnabled()&&a.switcher.isEnabled()&&a.element.removeClass(b.hoverClass)}),BI.createWidget({type:"bi.vertical",scrolly:!1,element:this,items:[{el:this.switcher}]}),b.isDefaultInit&&this._assertPopupView()},_toggle:function(){this._assertPopupView(),this.isExpanded()?this._hideView():this.isEnabled()&&this._popupView()},_initPullDownAction:function(){var a=this,b=this.options,c=this.options.trigger.split(",");BI.each(c,function(c,d){switch(d){case"hover":a.element[d](function(b){a.isEnabled()&&a.switcher.isEnabled()&&(a._popupView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.switcher),a.fireEvent(BI.Switcher.EVENT_EXPAND))},function(){a.isEnabled()&&a.switcher.isEnabled()&&b.toggle&&(a._hideView(),a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.switcher),a.fireEvent(BI.Switcher.EVENT_COLLAPSE))});break;default:d&&a.element.off(d+"."+a.getName()).on(d+"."+a.getName(),BI.debounce(function(c){a.switcher.element.__isMouseInBounds__(c)&&a.isEnabled()&&a.switcher.isEnabled()&&(b.toggle?a._toggle():a._popupView(),a.isExpanded()?(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.EXPAND,"",a.switcher),a.fireEvent(BI.Switcher.EVENT_EXPAND)):(a.fireEvent(BI.Controller.EVENT_CHANGE,BI.Events.COLLAPSE,"",a.switcher),a.fireEvent(BI.Switcher.EVENT_COLLAPSE)))},BI.EVENT_RESPONSE_TIME,!0))}})},_initSwitcher:function(){this.switcher=BI.createWidget(this.options.el)},_assertPopupView:function(){var a=this,b=this.options;this._created||(this.popupView=BI.createWidget(b.popup,{type:"bi.button_group",element:b.adapter&&BI.Maskers.create(this.getName(),b.adapter,BI.extend({container:this},b.masker)),cls:"switcher-popup",layouts:[{type:"bi.vertical",hgap:0,vgap:0}]}),this.popupView.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments),b===BI.Events.CLICK&&a.fireEvent(BI.Switcher.EVENT_CHANGE,c,d)}),b.direction===BI.Direction.Custom||b.adapter||BI.createWidget({type:"bi.vertical",scrolly:!1,element:this,items:[{el:this.popupView}]}),this._created=!0,BI.nextTick(function(){a.fireEvent(BI.Switcher.EVENT_AFTER_INIT)}))},_hideView:function(){this.fireEvent(BI.Switcher.EVENT_BEFORE_HIDEVIEW);var a=this,b=this.options;b.adapter?BI.Maskers.hide(a.getName()):a.popupView&&a.popupView.setVisible(!1),BI.nextTick(function(){b.adapter?BI.Maskers.hide(a.getName()):a.popupView&&a.popupView.setVisible(!1),a.element.removeClass(b.switcherClass),a.fireEvent(BI.Switcher.EVENT_AFTER_HIDEVIEW)})},_popupView:function(){var a=this,b=this.options;this._assertPopupView(),this.fireEvent(BI.Switcher.EVENT_BEFORE_POPUPVIEW),b.adapter?BI.Maskers.show(this.getName()):a.popupView.setVisible(!0),BI.nextTick(function(c){b.adapter?BI.Maskers.show(c):a.popupView.setVisible(!0),a.element.addClass(b.switcherClass),a.fireEvent(BI.Switcher.EVENT_AFTER_POPUPVIEW)},this.getName())},populate:function(a){this._assertPopupView(),this.popupView.populate.apply(this.popupView,arguments),this.switcher.populate.apply(this.switcher,arguments)},_setEnable:function(a){BI.Switcher.superclass._setEnable.apply(this,arguments),!a&&this.isViewVisible()&&this._hideView()},setValue:function(a){this._assertPopupView(),this.switcher.setValue(a),this.popupView&&this.popupView.setValue(a)},getValue:function(){return this._assertPopupView(),this.popupView?this.popupView.getValue():[]},setAdapter:function(a){this.options.adapter=a,BI.Maskers.remove(this.getName())},isViewVisible:function(){return this.isEnabled()&&this.switcher.isEnabled()&&(this.options.adapter?BI.Maskers.isVisible(this.getName()):this.popupView&&this.popupView.isVisible())},isExpanded:function(){return this.isViewVisible()},showView:function(){this.isEnabled()&&this.switcher.isEnabled()&&this._popupView()},hideView:function(){this._hideView()},getView:function(){return this.popupView},adjustView:function(){this.isViewVisible()&&BI.Maskers.show(this.getName())},getAllLeaves:function(){return this.popupView&&this.popupView.getAllLeaves()},getNodeById:function(a){return this.switcher.attr("id")===a?this.switcher:this.popupView&&this.popupView.getNodeById(a)},getNodeByValue:function(a){return this.switcher.getValue()===a?this.switcher:this.popupView&&this.popupView.getNodeByValue(a)},empty:function(){this.popupView&&this.popupView.empty()},destroy:function(){BI.Switcher.superclass.destroy.apply(this,arguments)}}),BI.Switcher.EVENT_EXPAND="EVENT_EXPAND",BI.Switcher.EVENT_COLLAPSE="EVENT_COLLAPSE",BI.Switcher.EVENT_TRIGGER_CHANGE="EVENT_TRIGGER_CHANGE",BI.Switcher.EVENT_CHANGE="EVENT_CHANGE",BI.Switcher.EVENT_AFTER_INIT="EVENT_AFTER_INIT",BI.Switcher.EVENT_BEFORE_POPUPVIEW="EVENT_BEFORE_POPUPVIEW",BI.Switcher.EVENT_AFTER_POPUPVIEW="EVENT_AFTER_POPUPVIEW",BI.Switcher.EVENT_BEFORE_HIDEVIEW="EVENT_BEFORE_HIDEVIEW",BI.Switcher.EVENT_AFTER_HIDEVIEW="EVENT_AFTER_HIDEVIEW",BI.shortcut("bi.switcher",BI.Switcher),BI.Tab=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.Tab.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-tab",direction:"top",single:!1,logic:{dynamic:!1},defaultShowIndex:!1,tab:!1,cardCreator:function(a){return BI.createWidget()}})},render:function(){var a=this,b=this.options;BI.isObject(b.tab)&&(this.tab=BI.createWidget(this.options.tab,{type:"bi.button_group"}),this.tab.on(BI.Controller.EVENT_CHANGE,function(b,c,d){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments)})),this.cardMap={},this.layout=BI.createWidget({type:"bi.card"}),BI.createWidget(BI.extend({element:this},BI.LogicFactory.createLogic(BI.LogicFactory.createLogicTypeByDirection(b.direction),BI.extend({},b.logic,{items:BI.LogicFactory.createLogicItemsByDirection(b.direction,this.tab,this.layout)}))));var c=new BI.ShowListener({eventObj:this.tab,cardLayout:this.layout,cardCreator:function(c){var d=b.cardCreator.apply(a,arguments);return a.cardMap[c]=d,d},afterCardShow:function(b){a._deleteOtherCards(b),a.curr=b}});c.on(BI.ShowListener.EVENT_CHANGE,function(b){a.fireEvent(BI.Tab.EVENT_CHANGE,b,a)})},_deleteOtherCards:function(a){var b=this,c=this.options;c.single===!0&&BI.each(this.cardMap,function(c,d){c!==a+""&&(b.layout.deleteCardByName(c),delete b.cardMap[c])})},_assertCard:function(a){if(!this.layout.isCardExisted(a)){var b=this.options.cardCreator(a);this.cardMap[a]=b,this.layout.addCardByName(a,b)}},mounted:function(){var a=this.options;a.defaultShowIndex!==!1&&this.setSelect(a.defaultShowIndex)},setSelect:function(a){this.tab&&this.tab.setValue(a),this._assertCard(a),this.layout.showCardByName(a),this._deleteOtherCards(a),this.curr!==a&&(this.curr=a)},removeTab:function(a){var b=this;this.options;BI.any(this.cardMap,function(c,d){if(BI.isEqual(c,a+""))return b.layout.deleteCardByName(c),delete b.cardMap[c],!0})},getSelect:function(){return this.curr},getSelectedTab:function(){return this.layout.getShowingCard()},getTab:function(a){return this._assertCard(a),this.layout.getCardByName(a)},setValue:function(a){var b=this.layout.getShowingCard();b&&b.setValue(a)},getValue:function(){var a=this.layout.getShowingCard();if(a)return a.getValue()},populate:function(){var a=this.layout.getShowingCard();if(a)return a.populate&&a.populate.apply(a,arguments)},empty:function(){this.layout.deleteAllCard(),this.cardMap={}},destroy:function(){this.cardMap={},BI.Tab.superclass.destroy.apply(this,arguments)}}),BI.Tab.EVENT_CHANGE="EVENT_CHANGE",BI.shortcut("bi.tab",BI.Tab),BI.EL=BI.inherit(BI.Widget,{_defaultConfig:function(){return BI.extend(BI.EL.superclass._defaultConfig.apply(this,arguments),{baseCls:"bi-el",el:{},layout:{}})},_init:function(){BI.EL.superclass._init.apply(this,arguments);var a=this,b=this.options;this.ele=BI.createWidget(b.el),BI.createWidget(b.layout,{type:"bi.adaptive",element:this,items:[this.ele]}),this.ele.on(BI.Controller.EVENT_CHANGE,function(){a.fireEvent(BI.Controller.EVENT_CHANGE,arguments)})},setValue:function(a){this.ele.setValue(a)},getValue:function(){return this.ele.getValue()},populate:function(){this.ele.populate.apply(this,arguments)}}),BI.shortcut("bi.el",BI.EL),function(a){this.CodeMirror=a()}(function(){"use strict";function a(c,d){if(!(this instanceof a))return new a(c,d);this.options=d=d?He(d):{},He(Vf,d,!1),n(d);var e=d.value;"string"==typeof e&&(e=new rg(e,d.mode)),this.doc=e;var f=new a.inputStyles[d.inputStyle](this),g=this.display=new b(c,e,f);g.wrapper.CodeMirror=this,j(this),h(this),d.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),d.autofocus&&!xf&&g.input.focus(),r(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:!1,cutIncoming:!1,draggingText:!1,highlight:new ze,keySeq:null,specialChars:null};var i=this;nf&&of<11&&setTimeout(function(){i.display.input.reset(!0)},20),Pb(this),Te(),tb(this),this.curOp.forceUpdate=!0,Ud(this,e),d.autofocus&&!xf||i.hasFocus()?setTimeout(Ie(nc,this),20):oc(this);for(var k in Wf)Wf.hasOwnProperty(k)&&Wf[k](this,d[k],Xf);w(this),d.finishInit&&d.finishInit(this);for(var l=0;l<_f.length;++l)_f[l](this);vb(this),pf&&d.lineWrapping&&"optimizelegibility"==getComputedStyle(g.lineDiv).textRendering&&(g.lineDiv.style.textRendering="auto")}function b(a,b,c){var d=this;this.input=c,d.scrollbarFiller=Me("div",null,"CodeMirror-scrollbar-filler"),d.scrollbarFiller.setAttribute("cm-not-content","true"),d.gutterFiller=Me("div",null,"CodeMirror-gutter-filler"),d.gutterFiller.setAttribute("cm-not-content","true"),d.lineDiv=Me("div",null,"CodeMirror-code"),d.selectionDiv=Me("div",null,null,"position: relative; z-index: 1"),d.cursorDiv=Me("div",null,"CodeMirror-cursors"),d.measure=Me("div",null,"CodeMirror-measure"),d.lineMeasure=Me("div",null,"CodeMirror-measure"),d.lineSpace=Me("div",[d.measure,d.lineMeasure,d.selectionDiv,d.cursorDiv,d.lineDiv],null,"position: relative; outline: none"),d.mover=Me("div",[Me("div",[d.lineSpace],"CodeMirror-lines")],null,"position: relative"),d.sizer=Me("div",[d.mover],"CodeMirror-sizer"),d.sizerWidth=null,d.heightForcer=Me("div",null,null,"position: absolute; height: "+Bg+"px; width: 1px;"),d.gutters=Me("div",null,"CodeMirror-gutters"),d.lineGutter=null,d.scroller=Me("div",[d.sizer,d.heightForcer,d.gutters],"CodeMirror-scroll"),d.scroller.setAttribute("tabIndex","-1"),d.wrapper=Me("div",[d.scrollbarFiller,d.gutterFiller,d.scroller],"CodeMirror"),nf&&of<8&&(d.gutters.style.zIndex=-1,d.scroller.style.paddingRight=0),pf||kf&&xf||(d.scroller.draggable=!0),a&&(a.appendChild?a.appendChild(d.wrapper):a(d.wrapper)),d.viewFrom=d.viewTo=b.first,d.reportedViewFrom=d.reportedViewTo=b.first,d.view=[],d.renderedView=null,d.externalMeasured=null,d.viewOffset=0,d.lastWrapHeight=d.lastWrapWidth=0,d.updateLineNumbers=null,d.nativeBarWidth=d.barHeight=d.barWidth=0,d.scrollbarsClipped=!1,d.lineNumWidth=d.lineNumInnerWidth=d.lineNumChars=null,d.alignWidgets=!1,d.cachedCharWidth=d.cachedTextHeight=d.cachedPaddingH=null,d.maxLine=null,d.maxLineLength=0,d.maxLineChanged=!1,d.wheelDX=d.wheelDY=d.wheelStartX=d.wheelStartY=null,d.shift=!1,d.selForContextMenu=null,d.activeTouch=null,c.init(d)}function c(b){b.doc.mode=a.getMode(b.options,b.doc.modeOption),d(b)}function d(a){a.doc.iter(function(a){a.stateAfter&&(a.stateAfter=null),a.styles&&(a.styles=null)}),a.doc.frontier=a.doc.first,Ma(a,100),a.state.modeGen++,a.curOp&&Ib(a)}function e(a){a.options.lineWrapping?(Rg(a.display.wrapper,"CodeMirror-wrap"),a.display.sizer.style.minWidth="",a.display.sizerWidth=null):(Qg(a.display.wrapper,"CodeMirror-wrap"),m(a)),g(a),Ib(a),gb(a),setTimeout(function(){s(a)},100)}function f(a){var b=rb(a.display),c=a.options.lineWrapping,d=c&&Math.max(5,a.display.scroller.clientWidth/sb(a.display)-3);return function(e){if(sd(a.doc,e))return 0;var f=0;if(e.widgets)for(var g=0;gb.maxLineLength&&(b.maxLineLength=c,b.maxLine=a)})}function n(a){var b=De(a.gutters,"CodeMirror-linenumbers");b==-1&&a.lineNumbers?a.gutters=a.gutters.concat(["CodeMirror-linenumbers"]):b>-1&&!a.lineNumbers&&(a.gutters=a.gutters.slice(0),a.gutters.splice(b,1))}function o(a){var b=a.display,c=b.gutters.offsetWidth,d=Math.round(a.doc.height+Ra(a.display));return{clientHeight:b.scroller.clientHeight,viewHeight:b.wrapper.clientHeight,scrollWidth:b.scroller.scrollWidth,clientWidth:b.scroller.clientWidth,viewWidth:b.wrapper.clientWidth,barLeft:a.options.fixedGutter?c:0,docHeight:d,scrollHeight:d+Ta(a)+b.barHeight,nativeBarWidth:b.nativeBarWidth,gutterWidth:c}}function p(a,b,c){this.cm=c;var d=this.vert=Me("div",[Me("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),e=this.horiz=Me("div",[Me("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");a(d),a(e),xg(d,"scroll",function(){d.clientHeight&&b(d.scrollTop,"vertical")}),xg(e,"scroll",function(){e.clientWidth&&b(e.scrollLeft,"horizontal")}),this.checkedOverlay=!1,nf&&of<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")}function q(){}function r(b){b.display.scrollbars&&(b.display.scrollbars.clear(),b.display.scrollbars.addClass&&Qg(b.display.wrapper,b.display.scrollbars.addClass)),b.display.scrollbars=new a.scrollbarModel[b.options.scrollbarStyle](function(a){b.display.wrapper.insertBefore(a,b.display.scrollbarFiller),xg(a,"mousedown",function(){b.state.focused&&setTimeout(function(){b.display.input.focus()},0)}),a.setAttribute("cm-not-content","true")},function(a,c){"horizontal"==c?bc(b,a):ac(b,a)},b),b.display.scrollbars.addClass&&Rg(b.display.wrapper,b.display.scrollbars.addClass)}function s(a,b){b||(b=o(a));var c=a.display.barWidth,d=a.display.barHeight;t(a,b);for(var e=0;e<4&&c!=a.display.barWidth||d!=a.display.barHeight;e++)c!=a.display.barWidth&&a.options.lineWrapping&&F(a),t(a,o(a)),c=a.display.barWidth,d=a.display.barHeight}function t(a,b){var c=a.display,d=c.scrollbars.update(b);c.sizer.style.paddingRight=(c.barWidth=d.right)+"px",c.sizer.style.paddingBottom=(c.barHeight=d.bottom)+"px",d.right&&d.bottom?(c.scrollbarFiller.style.display="block",c.scrollbarFiller.style.height=d.bottom+"px",c.scrollbarFiller.style.width=d.right+"px"):c.scrollbarFiller.style.display="",d.bottom&&a.options.coverGutterNextToScrollbar&&a.options.fixedGutter?(c.gutterFiller.style.display="block",c.gutterFiller.style.height=d.bottom+"px",c.gutterFiller.style.width=b.gutterWidth+"px"):c.gutterFiller.style.display=""}function u(a,b,c){var d=c&&null!=c.top?Math.max(0,c.top):a.scroller.scrollTop;d=Math.floor(d-Qa(a));var e=c&&null!=c.bottom?c.bottom:d+a.wrapper.clientHeight,f=$d(b,d),g=$d(b,e);if(c&&c.ensure){var h=c.ensure.from.line,i=c.ensure.to.line;h=g&&(f=$d(b,_d(Vd(b,i))-a.wrapper.clientHeight),g=i)}return{from:f,to:Math.max(g,f+1)}}function v(a){var b=a.display,c=b.view;if(b.alignWidgets||b.gutters.firstChild&&a.options.fixedGutter){for(var d=y(b)-b.scroller.scrollLeft+a.doc.scrollLeft,e=b.gutters.offsetWidth,f=d+"px",g=0;g=c.viewFrom&&b.visible.to<=c.viewTo&&(null==c.updateLineNumbers||c.updateLineNumbers>=c.viewTo)&&c.renderedView==c.view&&0==Ob(a))return!1;w(a)&&(Kb(a),b.dims=H(a));var e=d.first+d.size,f=Math.max(b.visible.from-a.options.viewportMargin,d.first),g=Math.min(e,b.visible.to+a.options.viewportMargin);c.viewFromg&&c.viewTo-g<20&&(g=Math.min(e,c.viewTo)),Ef&&(f=qd(a.doc,f),g=rd(a.doc,g));var h=f!=c.viewFrom||g!=c.viewTo||c.lastWrapHeight!=b.wrapperHeight||c.lastWrapWidth!=b.wrapperWidth;Nb(a,f,g),c.viewOffset=_d(Vd(a.doc,c.viewFrom)),a.display.mover.style.top=c.viewOffset+"px";var i=Ob(a);if(!h&&0==i&&!b.force&&c.renderedView==c.view&&(null==c.updateLineNumbers||c.updateLineNumbers>=c.viewTo))return!1;var j=Pe();return i>4&&(c.lineDiv.style.display="none"),I(a,c.updateLineNumbers,b.dims),i>4&&(c.lineDiv.style.display=""),c.renderedView=c.view,j&&Pe()!=j&&j.offsetHeight&&j.focus(),Ne(c.cursorDiv),Ne(c.selectionDiv),c.gutters.style.height=0,h&&(c.lastWrapHeight=b.wrapperHeight,c.lastWrapWidth=b.wrapperWidth,Ma(a,400)),c.updateLineNumbers=null,!0}function C(a,b){for(var c=b.viewport,d=!0;(d&&a.options.lineWrapping&&b.oldDisplayWidth!=Ua(a)||(c&&null!=c.top&&(c={top:Math.min(a.doc.height+Ra(a.display)-Va(a),c.top)}),b.visible=u(a.display,a.doc,c),!(b.visible.from>=a.display.viewFrom&&b.visible.to<=a.display.viewTo)))&&B(a,b);d=!1){F(a);var e=o(a);Ha(a),E(a,e),s(a,e)}b.signal(a,"update",a),a.display.viewFrom==a.display.reportedViewFrom&&a.display.viewTo==a.display.reportedViewTo||(b.signal(a,"viewportChange",a,a.display.viewFrom,a.display.viewTo),a.display.reportedViewFrom=a.display.viewFrom,a.display.reportedViewTo=a.display.viewTo)}function D(a,b){var c=new z(a,b);if(B(a,c)){F(a),C(a,c);var d=o(a);Ha(a),E(a,d),s(a,d),c.finish()}}function E(a,b){a.display.sizer.style.minHeight=b.docHeight+"px";var c=b.docHeight+a.display.barHeight;a.display.heightForcer.style.top=c+"px",a.display.gutters.style.height=Math.max(c+Ta(a),b.clientHeight)+"px"}function F(a){for(var b=a.display,c=b.lineDiv.offsetTop,d=0;d.001||i<-.001)&&(Yd(f.line,e),G(f.line),f.rest))for(var j=0;j-1&&(m=!1),J(a,l,j,c)),m&&(Ne(l.lineNumber),l.lineNumber.appendChild(document.createTextNode(x(a.options,j)))),h=l.node.nextSibling}else{var n=R(a,l,j,c);g.insertBefore(n,h)}j+=l.size}for(;h;)h=d(h)}function J(a,b,c,d){for(var e=0;e1&&(Hf&&Hf.join("\n")==b?i=d.ranges.length%Hf.length==0&&Ee(Hf,Ug):h.length==d.ranges.length&&(i=Ee(h,function(a){return[a]})));for(var j=d.ranges.length-1;j>=0;j--){var k=d.ranges[j],l=k.from(),m=k.to();k.empty()&&(c&&c>0?l=Ff(l.line,l.ch-c):a.state.overwrite&&!g&&(m=Ff(m.line,Math.min(Vd(f,m.line).text.length,m.ch+Ce(h).length))));var n=a.curOp.updateInput,o={from:l,to:m,text:i?i[j%i.length]:h,origin:e||(g?"paste":a.state.cutIncoming?"cut":"+input")};wc(a.doc,o),te(a,"inputRead",a,o)}b&&!g&&aa(a,b),Ic(a),a.curOp.updateInput=n,a.curOp.typing=!0,a.state.pasteIncoming=a.state.cutIncoming=!1}function _(a,b){var c=a.clipboardData&&a.clipboardData.getData("text/plain");if(c)return a.preventDefault(),Cb(b,function(){$(b,c,0,null,"paste")}),!0}function aa(a,b){if(a.options.electricChars&&a.options.smartIndent)for(var c=a.doc.sel,d=c.ranges.length-1;d>=0;d--){var e=c.ranges[d];if(!(e.head.ch>100||d&&c.ranges[d-1].head.line==e.head.line)){var f=a.getModeAt(e.head),g=!1;if(f.electricChars){for(var h=0;h-1){g=Kc(a,e.head.line,"smart");break}}else f.electricInput&&f.electricInput.test(Vd(a.doc,e.head.line).text.slice(0,e.head.ch))&&(g=Kc(a,e.head.line,"smart"));g&&te(a,"electricInput",a,e.head.line)}}}function ba(a){for(var b=[],c=[],d=0;d=0){var g=X(f.from(),e.from()),h=W(f.to(),e.to()),i=f.empty()?e.from()==e.head:f.from()==f.head;d<=b&&--b,a.splice(--d,2,new ma(i?h:g,i?g:h))}}return new la(a,b)}function oa(a,b){return new la([new ma(a,b||a)],0)}function pa(a,b){return Math.max(a.first,Math.min(b,a.first+a.size-1))}function qa(a,b){if(b.linec?Ff(c,Vd(a,c).text.length):ra(b,Vd(a,b.line).text.length)}function ra(a,b){var c=a.ch;return null==c||c>b?Ff(a.line,b):c<0?Ff(a.line,0):a}function sa(a,b){return b>=a.first&&b=f.ch:j.to>f.ch))){if(d&&(zg(k,"beforeCursorEnter"),k.explicitlyCleared)){if(h.markedSpans){--i;continue}break}if(!k.atomic)continue;var l=k.find(g<0?-1:1);if(0==Gf(l,f)&&(l.ch+=g,l.ch<0?l=l.line>a.first?qa(a,Ff(l.line-1)):null:l.ch>h.text.length&&(l=l.line3&&(d(n,p.top,null,p.bottom),n=j,p.bottomi.bottom||l.bottom==i.bottom&&l.right>i.right)&&(i=l),n0?b.blinker=setInterval(function(){b.cursorDiv.style.visibility=(c=!c)?"":"hidden"},a.options.cursorBlinkRate):a.options.cursorBlinkRate<0&&(b.cursorDiv.style.visibility="hidden")}}function Ma(a,b){a.doc.mode.startState&&a.doc.frontier=a.display.viewTo)){var c=+new Date+a.options.workTime,d=bg(b.mode,Pa(a,b.frontier)),e=[];b.iter(b.frontier,Math.min(b.first+b.size,a.display.viewTo+500),function(f){if(b.frontier>=a.display.viewFrom){var g=f.styles,h=Ed(a,f,d,!0);f.styles=h.styles;var i=f.styleClasses,j=h.classes;j?f.styleClasses=j:i&&(f.styleClasses=null);for(var k=!g||g.length!=f.styles.length||i!=j&&(!i||!j||i.bgClass!=j.bgClass||i.textClass!=j.textClass),l=0;!k&&lc)return Ma(a,a.options.workDelay),!0}),e.length&&Cb(a,function(){for(var b=0;bg;--h){if(h<=f.first)return f.first;var i=Vd(f,h-1);if(i.stateAfter&&(!c||h<=f.frontier))return h;var j=Gg(i.text,null,a.options.tabSize);(null==e||d>j)&&(e=h-1,d=j)}return e}function Pa(a,b,c){var d=a.doc,e=a.display;if(!d.mode.startState)return!0;var f=Oa(a,b,c),g=f>d.first&&Vd(d,f-1).stateAfter;return g=g?bg(d.mode,g):cg(d.mode),d.iter(f,b,function(c){Gd(a,c.text,g);var h=f==b-1||f%5==0||f>=e.viewFrom&&f2&&f.push((i.bottom+j.top)/2-c.top)}}f.push(c.bottom-c.top)}}function Xa(a,b,c){if(a.line==b)return{map:a.measure.map,cache:a.measure.cache};for(var d=0;dc)return{map:a.measure.maps[d],cache:a.measure.caches[d],before:!0}}function Ya(a,b){b=od(b);var c=Zd(b),d=a.display.externalMeasured=new Gb(a.doc,b,c);d.lineN=c;var e=d.built=Id(a,d);return d.text=e.pre,Oe(a.display.lineMeasure,e.pre),d}function Za(a,b,c,d){return ab(a,_a(a,b),c,d)}function $a(a,b){if(b>=a.display.viewFrom&&b=c.lineN&&bb)&&(f=j-i,e=f-1,b>=j&&(g="right")),null!=e){if(d=a[h+2],i==j&&c==(d.insertLeft?"left":"right")&&(g=c),"left"==c&&0==e)for(;h&&a[h-2]==a[h-3]&&a[h-1].insertLeft;)d=a[(h-=3)+2],g="left";if("right"==c&&e==j-i)for(;h0&&(j=d="right");var l;e=a.options.lineWrapping&&(l=g.getClientRects()).length>1?l["right"==d?l.length-1:0]:g.getBoundingClientRect()}if(nf&&of<9&&!h&&(!e||!e.left&&!e.right)){var m=g.parentNode.getClientRects()[0];e=m?{left:m.left,right:m.left+sb(a.display),top:m.top,bottom:m.bottom}:Lf}for(var n=e.top-b.rect.top,o=e.bottom-b.rect.top,p=(n+o)/2,q=b.view.measure.heights,k=0;kc.from?g(a-1):g(a,d)}d=d||Vd(a.doc,b.line),e||(e=_a(a,d));var i=ae(d),j=b.ch;if(!i)return g(j);var k=ff(i,j),l=h(j,k);return null!=Zg&&(l.other=h(j,Zg)),l}function nb(a,b){var c=0,b=qa(a.doc,b);a.options.lineWrapping||(c=sb(a.display)*b.ch);var d=Vd(a.doc,b.line),e=_d(d)+Qa(a.display);return{left:c,right:c,top:e,bottom:e+d.height}}function ob(a,b,c,d){var e=Ff(a,b);return e.xRel=d,c&&(e.outside=!0),e}function pb(a,b,c){var d=a.doc;if(c+=a.display.viewOffset,c<0)return ob(d.first,0,!0,-1);var e=$d(d,c),f=d.first+d.size-1;if(e>f)return ob(d.first+d.size-1,Vd(d,f).text.length,!0,1);b<0&&(b=0);for(var g=Vd(d,e);;){var h=qb(a,g,e,b,c),i=md(g),j=i&&i.find(0,!0);if(!i||!(h.ch>j.from.ch||h.ch==j.from.ch&&h.xRel>0))return h;e=Zd(g=j.to.line)}}function qb(a,b,c,d,e){function f(d){var e=mb(a,Ff(c,d),"line",b,j);return h=!0,g>e.bottom?e.left-i:gq)return ob(c,n,r,1);for(;;){if(k?n==m||n==hf(b,m,1):n-m<=1){for(var s=d1?1:0);return u}var v=Math.ceil(l/2),w=m+v;if(k){w=m;for(var x=0;xd?(n=w,q=y,(r=h)&&(q+=1e3),l=v):(m=w,o=y,p=h,l-=v)}}function rb(a){if(null!=a.cachedTextHeight)return a.cachedTextHeight;if(null==If){If=Me("pre");for(var b=0;b<49;++b)If.appendChild(document.createTextNode("x")),If.appendChild(Me("br"));If.appendChild(document.createTextNode("x"))}Oe(a.measure,If);var c=If.offsetHeight/50;return c>3&&(a.cachedTextHeight=c),Ne(a.measure),c||1}function sb(a){if(null!=a.cachedCharWidth)return a.cachedCharWidth;var b=Me("span","xxxxxxxxxx"),c=Me("pre",[b]);Oe(a.measure,c);var d=b.getBoundingClientRect(),e=(d.right-d.left)/10;return e>2&&(a.cachedCharWidth=e),e||10}function tb(a){a.curOp={cm:a,viewChanged:!1,startHeight:a.doc.height,forceUpdate:!1,updateInput:null,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++Nf},Mf?Mf.ops.push(a.curOp):a.curOp.ownsGroup=Mf={ops:[a.curOp],delayedCallbacks:[]}}function ub(a){var b=a.delayedCallbacks,c=0;do{for(;c=c.viewTo)||c.maxLineChanged&&b.options.lineWrapping,a.update=a.mustUpdate&&new z(b,a.mustUpdate&&{top:a.scrollTop,ensure:a.scrollToPos},a.forceUpdate)}function yb(a){a.updatedDisplay=a.mustUpdate&&B(a.cm,a.update)}function zb(a){var b=a.cm,c=b.display;a.updatedDisplay&&F(b),a.barMeasure=o(b),c.maxLineChanged&&!b.options.lineWrapping&&(a.adjustWidthTo=Za(b,c.maxLine,c.maxLine.text.length).left+3,b.display.sizerWidth=a.adjustWidthTo,a.barMeasure.scrollWidth=Math.max(c.scroller.clientWidth,c.sizer.offsetLeft+a.adjustWidthTo+Ta(b)+b.display.barWidth),a.maxScrollLeft=Math.max(0,c.sizer.offsetLeft+a.adjustWidthTo-Ua(b))),(a.updatedDisplay||a.selectionChanged)&&(a.preparedSelection=c.input.prepareSelection())}function Ab(a){var b=a.cm;null!=a.adjustWidthTo&&(b.display.sizer.style.minWidth=a.adjustWidthTo+"px",a.maxScrollLeftb)&&(e.updateLineNumbers=b),a.curOp.viewChanged=!0,b>=e.viewTo)Ef&&qd(a.doc,b)e.viewFrom?Kb(a):(e.viewFrom+=d,e.viewTo+=d);else if(b<=e.viewFrom&&c>=e.viewTo)Kb(a);else if(b<=e.viewFrom){var f=Mb(a,c,c+d,1);f?(e.view=e.view.slice(f.index),e.viewFrom=f.lineN,e.viewTo+=d):Kb(a)}else if(c>=e.viewTo){var f=Mb(a,b,b,-1);f?(e.view=e.view.slice(0,f.index),e.viewTo=f.lineN):Kb(a)}else{var g=Mb(a,b,b,-1),h=Mb(a,c,c+d,1);g&&h?(e.view=e.view.slice(0,g.index).concat(Hb(a,g.lineN,h.lineN)).concat(e.view.slice(h.index)),e.viewTo+=d):Kb(a)}var i=e.externalMeasured;i&&(c=e.lineN&&b=d.viewTo)){var f=d.view[Lb(a,b)];if(null!=f.node){var g=f.changes||(f.changes=[]);De(g,c)==-1&&g.push(c)}}}function Kb(a){a.display.viewFrom=a.display.viewTo=a.doc.first,a.display.view=[],a.display.viewOffset=0}function Lb(a,b){if(b>=a.display.viewTo)return null;if(b-=a.display.viewFrom,b<0)return null;for(var c=a.display.view,d=0;d0){if(f==g.length-1)return null;e=i+g[f].size-b,f++}else e=i-b;b+=e,c+=e}for(;qd(a.doc,c)!=c;){if(f==(d<0?0:g.length-1))return null;c+=d*g[f-(d<0?1:0)].size,f+=d}return{index:f,lineN:c}}function Nb(a,b,c){var d=a.display,e=d.view;0==e.length||b>=d.viewTo||c<=d.viewFrom?(d.view=Hb(a,b,c),d.viewFrom=b):(d.viewFrom>b?d.view=Hb(a,b,d.viewFrom).concat(d.view):d.viewFromc&&(d.view=d.view.slice(0,Lb(a,c)))),d.viewTo=c}function Ob(a){for(var b=a.display.view,c=0,d=0;d400}var e=a.display;xg(e.scroller,"mousedown",Db(a,Ub)),nf&&of<11?xg(e.scroller,"dblclick",Db(a,function(b){if(!ve(a,b)){var c=Tb(a,b);if(c&&!Zb(a,b)&&!Sb(a.display,b)){ug(b);var d=a.findWordAt(c);va(a.doc,d.anchor,d.head)}}})):xg(e.scroller,"dblclick",function(b){ve(a,b)||ug(b)}),Cf||xg(e.scroller,"contextmenu",function(b){pc(a,b)});var f,g={end:0};xg(e.scroller,"touchstart",function(a){if(!c(a)){clearTimeout(f);var b=+new Date;e.activeTouch={start:b,moved:!1,prev:b-g.end<=300?g:null},1==a.touches.length&&(e.activeTouch.left=a.touches[0].pageX,e.activeTouch.top=a.touches[0].pageY)}}),xg(e.scroller,"touchmove",function(){e.activeTouch&&(e.activeTouch.moved=!0)}),xg(e.scroller,"touchend",function(c){var f=e.activeTouch;if(f&&!Sb(e,c)&&null!=f.left&&!f.moved&&new Date-f.start<300){var g,h=a.coordsChar(e.activeTouch,"page");g=!f.prev||d(f,f.prev)?new ma(h,h):!f.prev.prev||d(f,f.prev.prev)?a.findWordAt(h):new ma(Ff(h.line,0),qa(a.doc,Ff(h.line+1,0))),a.setSelection(g.anchor,g.head),a.focus(),ug(c)}b()}),xg(e.scroller,"touchcancel",b),xg(e.scroller,"scroll",function(){e.scroller.clientHeight&&(ac(a,e.scroller.scrollTop),bc(a,e.scroller.scrollLeft,!0),zg(a,"scroll",a))}),xg(e.scroller,"mousewheel",function(b){cc(a,b)}),xg(e.scroller,"DOMMouseScroll",function(b){cc(a,b)}),xg(e.wrapper,"scroll",function(){e.wrapper.scrollTop=e.wrapper.scrollLeft=0}),e.dragFunctions={simple:function(b){ve(a,b)||wg(b)},start:function(b){_b(a,b)},drop:Db(a,$b)};var h=e.input.getField();xg(h,"keyup",function(b){kc.call(a,b)}),xg(h,"keydown",Db(a,ic)),xg(h,"keypress",Db(a,lc)),xg(h,"focus",Ie(nc,a)),xg(h,"blur",Ie(oc,a))}function Qb(b,c,d){var e=d&&d!=a.Init;if(!c!=!e){var f=b.display.dragFunctions,g=c?xg:yg;g(b.display.scroller,"dragstart",f.start),g(b.display.scroller,"dragenter",f.simple),g(b.display.scroller,"dragover",f.simple),g(b.display.scroller,"drop",f.drop)}}function Rb(a){var b=a.display;b.lastWrapHeight==b.wrapper.clientHeight&&b.lastWrapWidth==b.wrapper.clientWidth||(b.cachedCharWidth=b.cachedTextHeight=b.cachedPaddingH=null,b.scrollbarsClipped=!1,a.setSize())}function Sb(a,b){for(var c=re(b);c!=a.wrapper;c=c.parentNode)if(!c||1==c.nodeType&&"true"==c.getAttribute("cm-ignore-events")||c.parentNode==a.sizer&&c!=a.mover)return!0}function Tb(a,b,c,d){var e=a.display;if(!c&&"true"==re(b).getAttribute("cm-not-content"))return null;var f,g,h=e.lineSpace.getBoundingClientRect();try{f=b.clientX-h.left,g=b.clientY-h.top}catch(b){return null}var i,j=pb(a,f,g);if(d&&1==j.xRel&&(i=Vd(a.doc,j.line).text).length==j.ch){var k=Gg(i,i.length,a.options.tabSize)-i.length;j=Ff(j.line,Math.max(0,Math.round((f-Sa(a.display).left)/sb(a.display))-k))}return j}function Ub(a){var b=this,c=b.display;if(!(c.activeTouch&&c.input.supportsTouch()||ve(b,a))){if(c.shift=a.shiftKey,Sb(c,a))return void(pf||(c.scroller.draggable=!1,setTimeout(function(){c.scroller.draggable=!0},100)));if(!Zb(b,a)){var d=Tb(b,a);switch(window.focus(),se(a)){case 1:d?Vb(b,a,d):re(a)==c.scroller&&ug(a);break;case 2:pf&&(b.state.lastMiddleDown=+new Date),d&&va(b.doc,d),setTimeout(function(){c.input.focus()},20),ug(a);break;case 3:Cf?pc(b,a):mc(b)}}}}function Vb(a,b,c){nf?setTimeout(Ie(Y,a),0):a.curOp.focus=Pe();var d,e=+new Date;Kf&&Kf.time>e-400&&0==Gf(Kf.pos,c)?d="triple":Jf&&Jf.time>e-400&&0==Gf(Jf.pos,c)?(d="double",Kf={time:e,pos:c}):(d="single",Jf={time:e,pos:c});var f,g=a.doc.sel,h=yf?b.metaKey:b.ctrlKey;a.options.dragDrop&&Tg&&!Z(a)&&"single"==d&&(f=g.contains(c))>-1&&(Gf((f=g.ranges[f]).from(),c)<0||c.xRel>0)&&(Gf(f.to(),c)>0||c.xRel<0)?Wb(a,b,c,h):Xb(a,b,c,d,h)}function Wb(a,b,c,d){var e=a.display,f=+new Date,g=Db(a,function(h){pf&&(e.scroller.draggable=!1),a.state.draggingText=!1,yg(document,"mouseup",g),yg(e.scroller,"drop",g),Math.abs(b.clientX-h.clientX)+Math.abs(b.clientY-h.clientY)<10&&(ug(h),!d&&+new Date-200s&&e.push(new ma(Ff(o,s),Ff(o,Ae(r,n,f))))}e.length||e.push(new ma(c,c)),Ba(j,na(m.ranges.slice(0,l).concat(e),l),{origin:"*mouse",scroll:!1}),a.scrollIntoView(b)}else{var t=k,u=t.anchor,v=b;if("single"!=d){if("double"==d)var w=a.findWordAt(b);else var w=new ma(Ff(b.line,0),qa(j,Ff(b.line+1,0)));Gf(w.anchor,u)>0?(v=w.head,u=X(t.from(),w.anchor)):(v=w.anchor,u=W(t.to(),w.head))}var e=m.ranges.slice(0);e[l]=new ma(qa(j,u),v),Ba(j,na(e,l),Eg)}}function g(b){var c=++s,e=Tb(a,b,!0,"rect"==d);if(e)if(0!=Gf(e,q)){a.curOp.focus=Pe(),f(e);var h=u(i,j);(e.line>=h.to||e.liner.bottom?20:0;k&&setTimeout(Db(a,function(){s==c&&(i.scroller.scrollTop+=k,g(b))}),50)}}function h(a){s=1/0,ug(a),i.input.focus(),yg(document,"mousemove",t),yg(document,"mouseup",v),j.history.lastSelOrigin=null}var i=a.display,j=a.doc;ug(b);var k,l,m=j.sel,n=m.ranges;if(e&&!b.shiftKey?(l=j.sel.contains(c),k=l>-1?n[l]:new ma(c,c)):(k=j.sel.primary(),l=j.sel.primIndex),b.altKey)d="rect",e||(k=new ma(c,c)),c=Tb(a,b,!0,!0),l=-1;else if("double"==d){var o=a.findWordAt(c);k=a.display.shift||j.extend?ua(j,k,o.anchor,o.head):o}else if("triple"==d){var p=new ma(Ff(c.line,0),qa(j,Ff(c.line+1,0)));k=a.display.shift||j.extend?ua(j,k,p.anchor,p.head):p}else k=ua(j,k,c);e?l==-1?(l=n.length,Ba(j,na(n.concat([k]),l),{scroll:!1,origin:"*mouse"})):n.length>1&&n[l].empty()&&"single"==d&&!b.shiftKey?(Ba(j,na(n.slice(0,l).concat(n.slice(l+1)),0)),m=j.sel):xa(j,l,k,Eg):(l=0,Ba(j,new la([k],0),Eg),m=j.sel);var q=c,r=i.wrapper.getBoundingClientRect(),s=0,t=Db(a,function(a){se(a)?g(a):h(a)}),v=Db(a,h);xg(document,"mousemove",t),xg(document,"mouseup",v)}function Yb(a,b,c,d,e){try{var f=b.clientX,g=b.clientY}catch(b){return!1}if(f>=Math.floor(a.display.gutters.getBoundingClientRect().right))return!1;d&&ug(b);var h=a.display,i=h.lineDiv.getBoundingClientRect();if(g>i.bottom||!xe(a,c))return qe(b);g-=i.top-h.viewOffset;for(var j=0;j=f){var l=$d(a.doc,g),m=a.options.gutters[j];return e(a,c,a,l,m,b),qe(b)}}}function Zb(a,b){return Yb(a,b,"gutterClick",!0,te)}function $b(a){var b=this;if(!ve(b,a)&&!Sb(b.display,a)){ug(a),nf&&(Of=+new Date);var c=Tb(b,a,!0),d=a.dataTransfer.files;if(c&&!Z(b))if(d&&d.length&&window.FileReader&&window.File)for(var e=d.length,f=Array(e),g=0,h=function(a,d){var h=new FileReader;h.onload=Db(b,function(){if(f[d]=h.result,++g==e){c=qa(b.doc,c);var a={from:c,to:c,text:Ug(f.join("\n")),origin:"paste"};wc(b.doc,a),Aa(b.doc,oa(c,Uf(a)))}}),h.readAsText(a)},i=0;i-1)return b.state.draggingText(a),void setTimeout(function(){b.display.input.focus()},20);try{var f=a.dataTransfer.getData("Text");if(f){if(b.state.draggingText&&!(yf?a.altKey:a.ctrlKey))var j=b.listSelections();if(Ca(b.doc,oa(c,c)),j)for(var i=0;ig.clientWidth||e&&g.scrollHeight>g.clientHeight){if(e&&yf&&pf)a:for(var h=b.target,i=f.view;h!=g;h=h.parentNode)for(var j=0;j=0;--e)xc(a,{from:d[e].from,to:d[e].to,text:e?[""]:b.text});else xc(a,b)}}function xc(a,b){if(1!=b.text.length||""!=b.text[0]||0!=Gf(b.from,b.to)){var c=sc(a,b);fe(a,b,c,a.cm?a.cm.curOp.id:NaN),Ac(a,b,c,bd(a,b));var d=[];Td(a,function(a,c){c||De(d,a.history)!=-1||(pe(a.history,b),d.push(a.history)),Ac(a,b,null,bd(a,b))})}}function yc(a,b,c){if(!a.cm||!a.cm.state.suppressEdits){for(var d,e=a.history,f=a.sel,g="undo"==b?e.done:e.undone,h="undo"==b?e.undone:e.done,i=0;i=0;--i){var l=d.changes[i];if(l.origin=b,k&&!vc(a,l,!1))return void(g.length=0);j.push(ce(a,l));var m=i?sc(a,l):Ce(g);Ac(a,l,m,dd(a,l)),!i&&a.cm&&a.cm.scrollIntoView({from:l.from,to:Uf(l)});var n=[];Td(a,function(a,b){b||De(n,a.history)!=-1||(pe(a.history,l),n.push(a.history)),Ac(a,l,null,dd(a,l))})}}}}function zc(a,b){if(0!=b&&(a.first+=b,a.sel=new la(Ee(a.sel.ranges,function(a){return new ma(Ff(a.anchor.line+b,a.anchor.ch),Ff(a.head.line+b,a.head.ch))}),a.sel.primIndex),a.cm)){Ib(a.cm,a.first,a.first-b,b);for(var c=a.cm.display,d=c.viewFrom;da.lastLine())){if(b.from.linef&&(b={from:b.from,to:Ff(f,Vd(a,f).text.length),text:[b.text[0]],origin:b.origin}),b.removed=Wd(a,b.from,b.to),c||(c=sc(a,b)),a.cm?Bc(a.cm,b,d):Qd(a,b,d),Ca(a,c,Dg)}}function Bc(a,b,c){var d=a.doc,e=a.display,g=b.from,h=b.to,i=!1,j=g.line;a.options.lineWrapping||(j=Zd(od(Vd(d,g.line))),d.iter(j,h.line+1,function(a){if(a==e.maxLine)return i=!0,!0})),d.sel.contains(b.from,b.to)>-1&&we(a),Qd(d,b,c,f(a)),a.options.lineWrapping||(d.iter(j,g.line+b.text.length,function(a){var b=l(a);b>e.maxLineLength&&(e.maxLine=a,e.maxLineLength=b,e.maxLineChanged=!0,i=!1)}),i&&(a.curOp.updateMaxLine=!0)),d.frontier=Math.min(d.frontier,g.line),Ma(a,400);var k=b.text.length-(h.line-g.line)-1;b.full?Ib(a):g.line!=h.line||1!=b.text.length||Pd(a.doc,b)?Ib(a,g.line,h.line+1,k):Jb(a,g.line,"text");var m=xe(a,"changes"),n=xe(a,"change");if(n||m){var o={from:g,to:h,text:b.text,removed:b.removed,origin:b.origin};n&&te(a,"change",a,o),m&&(a.curOp.changeObjs||(a.curOp.changeObjs=[])).push(o)}a.display.selForContextMenu=null}function Cc(a,b,c,d,e){if(d||(d=c),Gf(d,c)<0){var f=d;d=c,c=f}"string"==typeof b&&(b=Ug(b)),wc(a,{from:c,to:d,text:b,origin:e})}function Dc(a,b){if(!ve(a,"scrollCursorIntoView")){var c=a.display,d=c.sizer.getBoundingClientRect(),e=null;if(b.top+d.top<0?e=!0:b.bottom+d.top>(window.innerHeight||document.documentElement.clientHeight)&&(e=!1),null!=e&&!vf){var f=Me("div","​",null,"position: absolute; top: "+(b.top-c.viewOffset-Qa(a.display))+"px; height: "+(b.bottom-b.top+Ta(a)+c.barHeight)+"px; left: "+b.left+"px; width: 2px;");a.display.lineSpace.appendChild(f),f.scrollIntoView(e),a.display.lineSpace.removeChild(f)}}}function Ec(a,b,c,d){null==d&&(d=0);for(var e=0;e<5;e++){var f=!1,g=mb(a,b),h=c&&c!=b?mb(a,c):g,i=Gc(a,Math.min(g.left,h.left),Math.min(g.top,h.top)-d,Math.max(g.left,h.left),Math.max(g.bottom,h.bottom)+d),j=a.doc.scrollTop,k=a.doc.scrollLeft;if(null!=i.scrollTop&&(ac(a,i.scrollTop),Math.abs(a.doc.scrollTop-j)>1&&(f=!0)),null!=i.scrollLeft&&(bc(a,i.scrollLeft),Math.abs(a.doc.scrollLeft-k)>1&&(f=!0)),!f)break}return g}function Fc(a,b,c,d,e){var f=Gc(a,b,c,d,e);null!=f.scrollTop&&ac(a,f.scrollTop),null!=f.scrollLeft&&bc(a,f.scrollLeft)}function Gc(a,b,c,d,e){var f=a.display,g=rb(a.display);c<0&&(c=0);var h=a.curOp&&null!=a.curOp.scrollTop?a.curOp.scrollTop:f.scroller.scrollTop,i=Va(a),j={};e-c>i&&(e=c+i);var k=a.doc.height+Ra(f),l=ck-g;if(ch+i){var n=Math.min(c,(m?k:e)-i);n!=h&&(j.scrollTop=n)}var o=a.curOp&&null!=a.curOp.scrollLeft?a.curOp.scrollLeft:f.scroller.scrollLeft,p=Ua(a)-(a.options.fixedGutter?f.gutters.offsetWidth:0),q=d-b>p;return q&&(d=b+p),b<10?j.scrollLeft=0:bp+o-3&&(j.scrollLeft=d+(q?0:10)-p),j}function Hc(a,b,c){null==b&&null==c||Jc(a),null!=b&&(a.curOp.scrollLeft=(null==a.curOp.scrollLeft?a.doc.scrollLeft:a.curOp.scrollLeft)+b),null!=c&&(a.curOp.scrollTop=(null==a.curOp.scrollTop?a.doc.scrollTop:a.curOp.scrollTop)+c)}function Ic(a){Jc(a);var b=a.getCursor(),c=b,d=b;a.options.lineWrapping||(c=b.ch?Ff(b.line,b.ch-1):b,d=Ff(b.line,b.ch+1)),a.curOp.scrollToPos={from:c,to:d,margin:a.options.cursorScrollMargin,isCursor:!0}}function Jc(a){var b=a.curOp.scrollToPos;if(b){a.curOp.scrollToPos=null;var c=nb(a,b.from),d=nb(a,b.to),e=Gc(a,Math.min(c.left,d.left),Math.min(c.top,d.top)-b.margin,Math.max(c.right,d.right),Math.max(c.bottom,d.bottom)+b.margin);a.scrollTo(e.scrollLeft,e.scrollTop)}}function Kc(a,b,c,d){var e,f=a.doc;null==c&&(c="add"),"smart"==c&&(f.mode.indent?e=Pa(a,b):c="prev");var g=a.options.tabSize,h=Vd(f,b),i=Gg(h.text,null,g);h.stateAfter&&(h.stateAfter=null);var j,k=h.text.match(/^\s*/)[0];if(d||/\S/.test(h.text)){if("smart"==c&&(j=f.mode.indent(e,h.text.slice(k.length),h.text),j==Cg||j>150)){if(!d)return;c="prev"}}else j=0,c="not";"prev"==c?j=b>f.first?Gg(Vd(f,b-1).text,null,g):0:"add"==c?j=i+a.options.indentUnit:"subtract"==c?j=i-a.options.indentUnit:"number"==typeof c&&(j=i+c),j=Math.max(0,j);var l="",m=0;if(a.options.indentWithTabs)for(var n=Math.floor(j/g);n;--n)m+=g,l+="\t";if(m=0;b--)Cc(a.doc,"",d[b].from,d[b].to,"+delete");Ic(a)})}function Nc(a,b,c,d,e){function f(){var b=h+c;return b=a.first+a.size?l=!1:(h=b,k=Vd(a,b))}function g(a){var b=(e?hf:jf)(k,i,c,!0);if(null==b){if(a||!f())return l=!1;i=e?(c<0?af:_e)(k):c<0?k.text.length:0}else i=b;return!0}var h=b.line,i=b.ch,j=c,k=Vd(a,h),l=!0;if("char"==d)g();else if("column"==d)g(!0);else if("word"==d||"group"==d)for(var m=null,n="group"==d,o=a.cm&&a.cm.getHelper(b,"wordChars"),p=!0;!(c<0)||g(!p);p=!1){var q=k.text.charAt(i)||"\n",r=Je(q,o)?"w":n&&"\n"==q?"n":!n||/\s/.test(q)?null:"p";if(!n||p||r||(r="s"),m&&m!=r){c<0&&(c=1,g());break}if(r&&(m=r),c>0&&!g(!p))break}var s=Ga(a,Ff(h,i),j,!0);return l||(s.hitSide=!0),s}function Oc(a,b,c,d){var e,f=a.doc,g=b.left;if("page"==d){var h=Math.min(a.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight);e=b.top+c*(h-(c<0?1.5:.5)*rb(a.display))}else"line"==d&&(e=c>0?b.bottom+3:b.top-3);for(;;){var i=pb(a,g,e);if(!i.outside)break;if(c<0?e<=0:e>=f.height){i.hitSide=!0;break}e+=5*c}return i}function Pc(b,c,d,e){a.defaults[b]=c,d&&(Wf[b]=e?function(a,b,c){c!=Xf&&d(a,b,c)}:d)}function Qc(a){for(var b,c,d,e,f=a.split(/-(?!$)/),a=f[f.length-1],g=0;g0||0==g&&f.clearWhenEmpty!==!1)return f;if(f.replacedWith&&(f.collapsed=!0,f.widgetNode=Me("span",[f.replacedWith],"CodeMirror-widget"),d.handleMouseEvents||f.widgetNode.setAttribute("cm-ignore-events","true"),d.insertLeft&&(f.widgetNode.insertLeft=!0)),f.collapsed){if(nd(a,b.line,b,c,f)||b.line!=c.line&&nd(a,c.line,b,c,f))throw new Error("Inserting collapsed marker partially overlapping an existing one");Ef=!0}f.addToHistory&&fe(a,{from:b,to:c,origin:"markText"},a.sel,NaN);var h,i=b.line,j=a.cm;if(a.iter(i,c.line+1,function(a){j&&f.collapsed&&!j.options.lineWrapping&&od(a)==j.display.maxLine&&(h=!0),f.collapsed&&i!=b.line&&Yd(a,0),$c(a,new Xc(f,i==b.line?b.ch:null,i==c.line?c.ch:null)),++i}),f.collapsed&&a.iter(b.line,c.line+1,function(b){sd(a,b)&&Yd(b,0)}),f.clearOnEnter&&xg(f,"beforeCursorEnter",function(){f.clear()}),f.readOnly&&(Df=!0,(a.history.done.length||a.history.undone.length)&&a.clearHistory()),f.collapsed&&(f.id=++jg,f.atomic=!0),j){if(h&&(j.curOp.updateMaxLine=!0),f.collapsed)Ib(j,b.line,c.line+1);else if(f.className||f.title||f.startStyle||f.endStyle||f.css)for(var k=b.line;k<=c.line;k++)Jb(j,k,"text");f.atomic&&Ea(j.doc),te(j,"markerAdded",j,f)}return f}function Tc(a,b,c,d,e){d=He(d),d.shared=!1;var f=[Sc(a,b,c,d,e)],g=f[0],h=d.widgetNode;return Td(a,function(a){h&&(d.widgetNode=h.cloneNode(!0)),f.push(Sc(a,qa(a,b),qa(a,c),d,e));for(var i=0;i=b:f.to>b);(d||(d=[])).push(new Xc(g,f.from,i?null:f.to))}}return d}function ad(a,b,c){if(a)for(var d,e=0;e=b:f.to>b);if(h||f.from==b&&"bookmark"==g.type&&(!c||f.marker.insertLeft)){var i=null==f.from||(g.inclusiveLeft?f.from<=b:f.from0&&h)for(var l=0;l0)){var k=[i,1],l=Gf(j.from,h.from),m=Gf(j.to,h.to);(l<0||!g.inclusiveLeft&&!l)&&k.push({from:j.from,to:h.from}),(m>0||!g.inclusiveRight&&!m)&&k.push({from:h.to,to:j.to}),e.splice.apply(e,k),i+=k.length-1}}return e}function fd(a){var b=a.markedSpans;if(b){for(var c=0;c=0&&l<=0||k<=0&&l>=0)&&(k<=0&&(Gf(j.to,c)>0||i.marker.inclusiveRight&&e.inclusiveLeft)||k>=0&&(Gf(j.from,d)<0||i.marker.inclusiveLeft&&e.inclusiveRight)))return!0}}}function od(a){for(var b;b=ld(a);)a=b.find(-1,!0).line;return a}function pd(a){for(var b,c;b=md(a);)a=b.find(1,!0).line,(c||(c=[])).push(a);return c}function qd(a,b){var c=Vd(a,b),d=od(c);return c==d?b:Zd(d)}function rd(a,b){if(b>a.lastLine())return b;var c,d=Vd(a,b);if(!sd(a,d))return b;for(;c=md(d);)d=c.find(1,!0).line;return Zd(d)+1}function sd(a,b){var c=Ef&&b.markedSpans;if(c)for(var d,e=0;ec.start)return g}throw new Error("Mode "+b.name+" failed to advance stream.")}function Cd(a,b,c,d){function e(a){return{start:l.start,end:l.pos,string:l.current(),type:f||null,state:a?bg(g.mode,k):k}}var f,g=a.doc,h=g.mode;b=qa(g,b);var i,j=Vd(g,b.line),k=Pa(a,b.line,c),l=new ig(j.text,a.options.tabSize);for(d&&(i=[]);(d||l.posa.options.maxHighlightLength?(h=!1,g&&Gd(a,b,d,l.pos),l.pos=b.length,i=null):i=zd(Bd(c,l,d,m),f),m){var n=m[0].name;n&&(i="m-"+(i?n+" "+i:n))}if(!h||k!=i){for(;ja&&e.splice(i,1,a,e[i+1],d),i+=2,j=Math.min(a,d)}if(b)if(h.opaque)e.splice(c,i-c,a,"cm-overlay "+b),i=c+2;else for(;cj&&m.from<=j)break}if(m.to>=k)return a(c,d,e,f,g,h,i);a(c,d.slice(0,m.to-j),e,f,null,h,i),f=null,d=d.slice(m.to-j),j=m.to}}}function Nd(a,b,c,d){var e=!d&&c.widgetNode;e&&a.map.push(a.pos,a.pos+b,e),!d&&a.cm.display.input.needsContentAttribute&&(e||(e=a.content.appendChild(document.createElement("span"))),e.setAttribute("cm-marker",c.id)),e&&(a.cm.display.input.setUneditable(e),a.content.appendChild(e)),a.pos+=b}function Od(a,b,c){var d=a.markedSpans,e=a.text,f=0;if(d)for(var g,h,i,j,k,l,m,n=e.length,o=0,p=1,q="",r=0;;){if(r==o){i=j=k=l=h="",m=null,r=1/0;for(var s=[],t=0;to||v.collapsed&&u.to==o&&u.from==o)?(null!=u.to&&u.to!=o&&r>u.to&&(r=u.to,j=""),v.className&&(i+=" "+v.className),v.css&&(h=v.css),v.startStyle&&u.from==o&&(k+=" "+v.startStyle),v.endStyle&&u.to==r&&(j+=" "+v.endStyle),v.title&&!l&&(l=v.title),v.collapsed&&(!m||jd(m.marker,v)<0)&&(m=u)):u.from>o&&r>u.from&&(r=u.from)}if(m&&(m.from||0)==o){if(Nd(b,(null==m.to?n+1:m.to)-o,m.marker,null==m.from),null==m.to)return;m.to==o&&(m=!1)}if(!m&&s.length)for(var t=0;t=n)break;for(var w=Math.min(n,r);;){if(q){var x=o+q.length;if(!m){var y=x>w?q.slice(0,w-o):q;b.addToken(b,y,g?g+i:i,k,o+y.length==r?j:"",l,h)}if(x>=w){q=q.slice(w-o),o=w;break}o=x,k=""}q=e.slice(f,f=c[p++]),g=Hd(c[p++],b.cm.options)}}else for(var p=1;p1&&a.remove(h.line+1,o-1),a.insert(h.line+1,p)}te(a,"change",a,b)}function Rd(a){this.lines=a,this.parent=null;for(var b=0,c=0;b=a.size)throw new Error("There is no line "+(b+a.first)+" in the document.");for(var c=a;!c.lines;)for(var d=0;;++d){var e=c.children[d],f=e.chunkSize();if(b1&&!a.done[a.done.length-2].ranges?(a.done.pop(),Ce(a.done)):void 0}function fe(a,b,c,d){var e=a.history;e.undone.length=0;var f,g=+new Date;if((e.lastOp==d||e.lastOrigin==b.origin&&b.origin&&("+"==b.origin.charAt(0)&&a.cm&&e.lastModTime>g-a.cm.options.historyEventDelay||"*"==b.origin.charAt(0)))&&(f=ee(e,e.lastOp==d))){var h=Ce(f.changes);0==Gf(b.from,b.to)&&0==Gf(b.from,h.to)?h.to=Uf(b):f.changes.push(ce(a,b))}else{var i=Ce(e.done);for(i&&i.ranges||ie(a.sel,e.done),f={changes:[ce(a,b)],generation:e.generation},e.done.push(f);e.done.length>e.undoDepth;)e.done.shift(),e.done[0].ranges||e.done.shift()}e.done.push(c),e.generation=++e.maxGeneration,e.lastModTime=e.lastSelTime=g,e.lastOp=e.lastSelOp=d,e.lastOrigin=e.lastSelOrigin=b.origin,h||zg(a,"historyAdded")}function ge(a,b,c,d){var e=b.charAt(0);return"*"==e||"+"==e&&c.ranges.length==d.ranges.length&&c.somethingSelected()==d.somethingSelected()&&new Date-a.history.lastSelTime<=(a.cm?a.cm.options.historyEventDelay:500)}function he(a,b,c,d){var e=a.history,f=d&&d.origin;c==e.lastSelOp||f&&e.lastSelOrigin==f&&(e.lastModTime==e.lastSelTime&&e.lastOrigin==f||ge(a,f,Ce(e.done),b))?e.done[e.done.length-1]=b:ie(b,e.done),e.lastSelTime=+new Date,e.lastSelOrigin=f,e.lastSelOp=c,d&&d.clearRedo!==!1&&de(e.undone)}function ie(a,b){var c=Ce(b);c&&c.ranges&&c.equals(a)||b.push(a)}function je(a,b,c,d){var e=b["spans_"+a.id],f=0;a.iter(Math.max(a.first,c),Math.min(a.first+a.size,d),function(c){c.markedSpans&&((e||(e=b["spans_"+a.id]={}))[f]=c.markedSpans),++f})}function ke(a){if(!a)return null;for(var b,c=0;c-1&&(Ce(h)[l]=k[l],delete k[l])}}}return e}function ne(a,b,c,d){c0}function ye(a){a.prototype.on=function(a,b){xg(this,a,b)},a.prototype.off=function(a,b){yg(this,a,b)}}function ze(){this.id=null}function Ae(a,b,c){for(var d=0,e=0;;){var f=a.indexOf("\t",d);f==-1&&(f=a.length);var g=f-d;if(f==a.length||e+g>=b)return d+Math.min(g,b-e);if(e+=f-d,e+=c-e%c,d=f+1,e>=b)return d}}function Be(a){for(;Hg.length<=a;)Hg.push(Ce(Hg)+" ");return Hg[a]}function Ce(a){return a[a.length-1]}function De(a,b){for(var c=0;c-1&&Lg(a))||b.test(a):Lg(a)}function Ke(a){for(var b in a)if(a.hasOwnProperty(b)&&a[b])return!1;return!0}function Le(a){return a.charCodeAt(0)>=768&&Mg.test(a)}function Me(a,b,c,d){var e=document.createElement(a);if(c&&(e.className=c),d&&(e.style.cssText=d),"string"==typeof b)e.appendChild(document.createTextNode(b));else if(b)for(var f=0;f0;--b)a.removeChild(a.firstChild);return a}function Oe(a,b){return Ne(a).appendChild(b)}function Pe(){return document.activeElement}function Qe(a){return new RegExp("(^|\\s)"+a+"(?:$|\\s)\\s*")}function Re(a,b){for(var c=a.split(" "),d=0;d2&&!(nf&&of<8))}var c=Og?Me("span","​"):Me("span"," ",null,"display: inline-block; width: 1px; margin-right: -1px");return c.setAttribute("cm-text",""),c}function We(a){if(null!=Pg)return Pg;var b=Oe(a,document.createTextNode("AخA")),c=Jg(b,0,1).getBoundingClientRect();if(!c||c.left==c.right)return!1;var d=Jg(b,1,2).getBoundingClientRect();return Pg=d.right-c.right<3}function Xe(a){if(null!=Xg)return Xg;var b=Oe(a,Me("span","x")),c=b.getBoundingClientRect(),d=Jg(b,0,1).getBoundingClientRect();return Xg=Math.abs(c.left-d.left)>1}function Ye(a,b,c,d){if(!a)return d(b,c,"ltr");for(var e=!1,f=0;fb||b==c&&g.to==b)&&(d(Math.max(g.from,b),Math.min(g.to,c),1==g.level?"rtl":"ltr"),e=!0)}e||d(b,c,"ltr")}function Ze(a){return a.level%2?a.to:a.from}function $e(a){return a.level%2?a.from:a.to}function _e(a){var b=ae(a);return b?Ze(b[0]):0}function af(a){var b=ae(a);return b?$e(Ce(b)):a.text.length}function bf(a,b){var c=Vd(a.doc,b),d=od(c);d!=c&&(b=Zd(d));var e=ae(d),f=e?e[0].level%2?af(d):_e(d):0;return Ff(b,f)}function cf(a,b){for(var c,d=Vd(a.doc,b);c=md(d);)d=c.find(1,!0).line,b=null;var e=ae(d),f=e?e[0].level%2?_e(d):af(d):d.text.length;return Ff(null==b?Zd(d):b,f)}function df(a,b){var c=bf(a,b.line),d=Vd(a.doc,c.line),e=ae(d);if(!e||0==e[0].level){var f=Math.max(0,d.text.search(/\S/)),g=b.line==c.line&&b.ch<=f&&b.ch;return Ff(c.line,g?0:f)}return c}function ef(a,b,c){var d=a[0].level;return b==d||c!=d&&bb)return d;if(e.from==b||e.to==b){if(null!=c)return ef(a,e.level,a[c].level)?(e.from!=e.to&&(Zg=c),d):(e.from!=e.to&&(Zg=d),c);c=d}}return c}function gf(a,b,c,d){if(!d)return b+c;do b+=c;while(b>0&&Le(a.text.charAt(b)));return b}function hf(a,b,c,d){var e=ae(a);if(!e)return jf(a,b,c,d);for(var f=ff(e,b),g=e[f],h=gf(a,b,g.level%2?-c:c,d);;){if(h>g.from&&h0==g.level%2?g.to:g.from);if(g=e[f+=c],!g)return null;h=c>0==g.level%2?gf(a,g.to,-1,d):gf(a,g.from,1,d)}}function jf(a,b,c,d){var e=b+c;if(d)for(;e>0&&Le(a.text.charAt(e));)e+=c;return e<0||e>a.text.length?null:e}var kf=/gecko\/\d/i.test(navigator.userAgent),lf=/MSIE \d/.test(navigator.userAgent),mf=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),nf=lf||mf,of=nf&&(lf?document.documentMode||6:mf[1]),pf=/WebKit\//.test(navigator.userAgent),qf=pf&&/Qt\/\d+\.\d+/.test(navigator.userAgent),rf=/Chrome\//.test(navigator.userAgent),sf=/Opera\//.test(navigator.userAgent),tf=/Apple Computer/.test(navigator.vendor),uf=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(navigator.userAgent),vf=/PhantomJS/.test(navigator.userAgent),wf=/AppleWebKit/.test(navigator.userAgent)&&/Mobile\/\w+/.test(navigator.userAgent),xf=wf||/Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(navigator.userAgent),yf=wf||/Mac/.test(navigator.platform),zf=/win/i.test(navigator.platform),Af=sf&&navigator.userAgent.match(/Version\/(\d*\.\d*)/);Af&&(Af=Number(Af[1])),Af&&Af>=15&&(sf=!1,pf=!0);var Bf=yf&&(qf||sf&&(null==Af||Af<12.11)),Cf=kf||nf&&of>=9,Df=!1,Ef=!1;p.prototype=He({update:function(a){var b=a.scrollWidth>a.clientWidth+1,c=a.scrollHeight>a.clientHeight+1,d=a.nativeBarWidth;if(c){this.vert.style.display="block",this.vert.style.bottom=b?d+"px":"0";var e=a.viewHeight-(b?d:0);this.vert.firstChild.style.height=Math.max(0,a.scrollHeight-a.clientHeight+e)+"px"}else this.vert.style.display="",this.vert.firstChild.style.height="0";if(b){this.horiz.style.display="block",this.horiz.style.right=c?d+"px":"0",this.horiz.style.left=a.barLeft+"px";var f=a.viewWidth-a.barLeft-(c?d:0);this.horiz.firstChild.style.width=a.scrollWidth-a.clientWidth+f+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedOverlay&&a.clientHeight>0&&(0==d&&this.overlayHack(),this.checkedOverlay=!0),{right:c?d:0,bottom:b?d:0}},setScrollLeft:function(a){this.horiz.scrollLeft!=a&&(this.horiz.scrollLeft=a)},setScrollTop:function(a){this.vert.scrollTop!=a&&(this.vert.scrollTop=a)},overlayHack:function(){var a=yf&&!uf?"12px":"18px";this.horiz.style.minHeight=this.vert.style.minWidth=a;var b=this,c=function(a){re(a)!=b.vert&&re(a)!=b.horiz&&Db(b.cm,Ub)(a)};xg(this.vert,"mousedown",c),xg(this.horiz,"mousedown",c)},clear:function(){var a=this.horiz.parentNode;a.removeChild(this.horiz),a.removeChild(this.vert)}},p.prototype),q.prototype=He({update:function(){return{bottom:0,right:0}},setScrollLeft:function(){},setScrollTop:function(){},clear:function(){}},q.prototype),a.scrollbarModel={"native":p,"null":q},z.prototype.signal=function(a,b){xe(a,b)&&this.events.push(arguments)},z.prototype.finish=function(){for(var a=0;a=9&&c.hasSelection&&(c.hasSelection=null),c.poll()}),xg(f,"paste",function(a){return!!_(a,d)||(d.state.pasteIncoming=!0,void c.fastPoll())}),xg(f,"cut",b),xg(f,"copy",b),xg(a.scroller,"paste",function(b){Sb(a,b)||(d.state.pasteIncoming=!0,c.focus())}),xg(a.lineSpace,"selectstart",function(b){Sb(a,b)||ug(b)}),xg(f,"compositionstart",function(){var a=d.getCursor("from");c.composing={start:a,range:d.markText(a,d.getCursor("to"),{className:"CodeMirror-composing"})}}),xg(f,"compositionend",function(){c.composing&&(c.poll(),c.composing.range.clear(),c.composing=null)})},prepareSelection:function(){var a=this.cm,b=a.display,c=a.doc,d=Ia(a);if(a.options.moveInputWithCursor){var e=mb(a,c.sel.primary().head,"div"),f=b.wrapper.getBoundingClientRect(),g=b.lineDiv.getBoundingClientRect();d.teTop=Math.max(0,Math.min(b.wrapper.clientHeight-10,e.top+g.top-f.top)),d.teLeft=Math.max(0,Math.min(b.wrapper.clientWidth-10,e.left+g.left-f.left))}return d},showSelection:function(a){var b=this.cm,c=b.display;Oe(c.cursorDiv,a.cursors),Oe(c.selectionDiv,a.selection),null!=a.teTop&&(this.wrapper.style.top=a.teTop+"px",this.wrapper.style.left=a.teLeft+"px")},reset:function(a){if(!this.contextMenuPending){var b,c,d=this.cm,e=d.doc;if(d.somethingSelected()){this.prevInput="";var f=e.sel.primary();b=Wg&&(f.to().line-f.from().line>100||(c=d.getSelection()).length>1e3);var g=b?"-":c||d.getSelection();this.textarea.value=g,d.state.focused&&Ig(this.textarea),nf&&of>=9&&(this.hasSelection=g)}else a||(this.prevInput=this.textarea.value="",nf&&of>=9&&(this.hasSelection=null));this.inaccurateSelection=b}},getField:function(){return this.textarea},supportsTouch:function(){return!1},focus:function(){if("nocursor"!=this.cm.options.readOnly&&(!xf||Pe()!=this.textarea))try{this.textarea.focus()}catch(a){}},blur:function(){this.textarea.blur()},resetPosition:function(){this.wrapper.style.top=this.wrapper.style.left=0},receivedFocus:function(){this.slowPoll()},slowPoll:function(){var a=this;a.pollingFast||a.polling.set(this.cm.options.pollInterval,function(){a.poll(),a.cm.state.focused&&a.slowPoll()})},fastPoll:function(){function a(){var d=c.poll();d||b?(c.pollingFast=!1,c.slowPoll()):(b=!0,c.polling.set(60,a))}var b=!1,c=this;c.pollingFast=!0,c.polling.set(20,a)},poll:function(){var a=this.cm,b=this.textarea,c=this.prevInput;if(this.contextMenuPending||!a.state.focused||Vg(b)&&!c||Z(a)||a.options.disableInput||a.state.keySeq)return!1;var d=b.value;if(d==c&&!a.somethingSelected())return!1;if(nf&&of>=9&&this.hasSelection===d||yf&&/[\uf700-\uf7ff]/.test(d))return a.display.input.reset(),!1;if(a.doc.sel==a.display.selForContextMenu){var e=d.charCodeAt(0);if(8203!=e||c||(c="​"),8666==e)return this.reset(),this.cm.execCommand("undo")}for(var f=0,g=Math.min(c.length,d.length);f1e3||d.indexOf("\n")>-1?b.value=h.prevInput="":h.prevInput=d,h.composing&&(h.composing.range.clear(),h.composing.range=a.markText(h.composing.start,a.getCursor("to"),{className:"CodeMirror-composing"}))}),!0},ensurePolled:function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},onKeyPress:function(){nf&&of>=9&&(this.hasSelection=null),this.fastPoll()},onContextMenu:function(a){function b(){if(null!=g.selectionStart){var a=e.somethingSelected(),b="​"+(a?g.value:"");g.value="⇚",g.value=b,d.prevInput=a?"":"​",g.selectionStart=1,g.selectionEnd=b.length,f.selForContextMenu=e.doc.sel}}function c(){if(d.contextMenuPending=!1,d.wrapper.style.position="relative",g.style.cssText=k,nf&&of<9&&f.scrollbars.setScrollTop(f.scroller.scrollTop=i),null!=g.selectionStart){(!nf||nf&&of<9)&&b();var a=0,c=function(){f.selForContextMenu==e.doc.sel&&0==g.selectionStart&&g.selectionEnd>0&&"​"==d.prevInput?Db(e,dg.selectAll)(e):a++<10?f.detectingSelectAll=setTimeout(c,500):f.input.reset()};f.detectingSelectAll=setTimeout(c,200)}}var d=this,e=d.cm,f=e.display,g=d.textarea,h=Tb(e,a),i=f.scroller.scrollTop;if(h&&!sf){var j=e.options.resetSelectionOnContextMenu;j&&e.doc.sel.contains(h)==-1&&Db(e,Ba)(e.doc,oa(h),Dg);var k=g.style.cssText;if(d.wrapper.style.position="absolute",g.style.cssText="position: fixed; width: 30px; height: 30px; top: "+(a.clientY-5)+"px; left: "+(a.clientX-5)+"px; z-index: 1000; background: "+(nf?"rgba(255, 255, 255, .05)":"transparent")+"; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",pf)var l=window.scrollY;if(f.input.focus(),pf&&window.scrollTo(null,l),f.input.reset(),e.somethingSelected()||(g.value=d.prevInput=" "),d.contextMenuPending=!0,f.selForContextMenu=e.doc.sel,clearTimeout(f.detectingSelectAll),nf&&of>=9&&b(),Cf){wg(a);var m=function(){yg(window,"mouseup",m),setTimeout(c,20)};xg(window,"mouseup",m)}else setTimeout(c,50)}},setUneditable:Fe,needsContentAttribute:!1},da.prototype),fa.prototype=He({init:function(a){function b(a){if(d.somethingSelected())Hf=d.getSelections(),"cut"==a.type&&d.replaceSelection("",null,"cut");else{if(!d.options.lineWiseCopyCut)return;var b=ba(d);Hf=b.text,"cut"==a.type&&d.operation(function(){d.setSelections(b.ranges,0,Dg),d.replaceSelection("",null,"cut")})}if(a.clipboardData&&!wf)a.preventDefault(),a.clipboardData.clearData(),a.clipboardData.setData("text/plain",Hf.join("\n"));else{var c=ea(),e=c.firstChild;d.display.lineSpace.insertBefore(c,d.display.lineSpace.firstChild),e.value=Hf.join("\n");var f=document.activeElement;Ig(e),setTimeout(function(){d.display.lineSpace.removeChild(c),f.focus()},50)}}var c=this,d=c.cm,e=c.div=a.lineDiv;e.contentEditable="true",ca(e),xg(e,"paste",function(a){_(a,d)}),xg(e,"compositionstart",function(a){var b=a.data;if(c.composing={sel:d.doc.sel,data:b,startData:b},b){var e=d.doc.sel.primary(),f=d.getLine(e.head.line),g=f.indexOf(b,Math.max(0,e.head.ch-b.length));g>-1&&g<=e.head.ch&&(c.composing.sel=oa(Ff(e.head.line,g),Ff(e.head.line,g+b.length)))}}),xg(e,"compositionupdate",function(a){c.composing.data=a.data}),xg(e,"compositionend",function(a){var b=c.composing;b&&(a.data==b.startData||/\u200b/.test(a.data)||(b.data=a.data),setTimeout(function(){b.handled||c.applyComposition(b),c.composing==b&&(c.composing=null)},50))}),xg(e,"touchstart",function(){c.forceCompositionEnd()}),xg(e,"input",function(){c.composing||c.pollContent()||Cb(c.cm,function(){Ib(d)})}),xg(e,"copy",b),xg(e,"cut",b)},prepareSelection:function(){var a=Ia(this.cm,!1);return a.focus=this.cm.state.focused, diff --git a/dist/core.js b/dist/core.js index 51ee978d3..bdeb10c73 100644 --- a/dist/core.js +++ b/dist/core.js @@ -18883,7 +18883,7 @@ $.extend(BI, { } child.setParent(this); if (cur >= 0) { - this.getChild(cur).setRight(child); + this.getChild(cur) && this.getChild(cur).setRight(child); child.setLeft(this.getChild(cur)); } if (BI.isUndefined(index)) { @@ -19917,7 +19917,7 @@ BI.Layout = BI.inherit(BI.Widget, { function addNode(vnode, index) { var opt = self._getOptions(vnode); - var key = opt.key == null ? i : opt.key; + var key = opt.key == null ? index : opt.key; return children[key] = self._addElement(key, vnode); } diff --git a/dist/demo.js b/dist/demo.js index 7d16b4076..51c451fbe 100644 --- a/dist/demo.js +++ b/dist/demo.js @@ -4213,7 +4213,44 @@ BI.DetailTableCell = BI.inherit(BI.Widget, { } }, }); -BI.shortcut("bi.detail_table_cell", BI.DetailTableCell);Demo.Face = BI.inherit(BI.Widget, { +BI.shortcut("bi.detail_table_cell", BI.DetailTableCell);/** + * Created by Young's on 2016/4/15. + */ +BI.DetailTableHeader = BI.inherit(BI.Widget, { + _defaultConfig: function () { + return BI.extend(BI.DetailTableHeader.superclass._defaultConfig.apply(this, arguments), { + baseCls: "bi-detail-table-header" + }) + }, + + _init: function () { + BI.DetailTableHeader.superclass._init.apply(this, arguments); + var self = this, o = this.options; + var dId = o.dId; + var name = o.text; + BI.createWidget({ + type: "bi.htape", + element: this, + items: [{ + el: { + type: "bi.label", + text: name, + title: name, + whiteSpace: "nowrap", + textAlign: "center", + lgap: 5, + height: o.height + } + }] + }); + + //表格样式 + if (BI.isNotNull(o.styles) && BI.isObject(o.styles)) { + this.element.css(o.styles); + } + }, +}); +BI.shortcut("bi.detail_table_header", BI.DetailTableHeader);Demo.Face = BI.inherit(BI.Widget, { props: { baseCls: "demo-face" }, @@ -4311,43 +4348,6 @@ BI.shortcut("bi.detail_table_cell", BI.DetailTableCell);Demo.Face = BI.inherit(B } }); BI.shortcut("demo.large_table", Demo.Face);/** - * Created by Young's on 2016/4/15. - */ -BI.DetailTableHeader = BI.inherit(BI.Widget, { - _defaultConfig: function () { - return BI.extend(BI.DetailTableHeader.superclass._defaultConfig.apply(this, arguments), { - baseCls: "bi-detail-table-header" - }) - }, - - _init: function () { - BI.DetailTableHeader.superclass._init.apply(this, arguments); - var self = this, o = this.options; - var dId = o.dId; - var name = o.text; - BI.createWidget({ - type: "bi.htape", - element: this, - items: [{ - el: { - type: "bi.label", - text: name, - title: name, - whiteSpace: "nowrap", - textAlign: "center", - lgap: 5, - height: o.height - } - }] - }); - - //表格样式 - if (BI.isNotNull(o.styles) && BI.isObject(o.styles)) { - this.element.css(o.styles); - } - }, -}); -BI.shortcut("bi.detail_table_header", BI.DetailTableHeader);/** * created by young * 默认风格表格——表头 */ @@ -4387,7 +4387,119 @@ BI.NormalSequenceHeaderCell = BI.inherit(BI.Widget, { BI.NormalSequenceHeaderCell.EVENT_CHANGE = "EVENT_CHANGE"; BI.shortcut("bi.normal_sequence_header_cell", BI.NormalSequenceHeaderCell);var TABLE_HEADER = [[{"type":"bi.detail_table_header","dId":"4bee81d36b4c6874","text":"合同金额","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"ce501b56c3bee73b","text":"购买数量","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"7fdfffca99e85f41","text":"购买的产品","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"c7e273fee68f9a84","text":"合同ID","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"06c1244c0bb8c971","text":"客户ID","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"3b8788e5243f4253","text":"销售机会ID","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"977f03aa6b05f170","text":"合同类型","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"fb18445e25042fad","text":"合同付款类型","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"7b4214f2ee25348f","text":"产品配送地址","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"e9270d71f05f8af6","text":"是否已经交货","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"0c20d70ab1c54e59","text":"年月日(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"26df741899dbe311","text":"年份(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"c54cc86e2d6ec8e8","text":"季度(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"a8179fbe73f32b78","text":"月份(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"4f3817018d5911d0","text":"星期(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"3d27b2b4010a87ae","text":"日(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"b9122528a8ef99b1","text":"周数(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"4754cdc8d2b0ccc1","text":"时(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"c44e00e1bc20135d","text":"分(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"b175741ff606ba3c","text":"秒(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"24f4dfbda51fdd3b","text":"年季度(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"c2cdf7336ecdfec0","text":"年月(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"7c86b54224352de6","text":"年周数(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"24cdfc858e5fec6f","text":"年月日时(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"7f4631a5465d63e3","text":"年月日时分(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}},{"type":"bi.detail_table_header","dId":"37025692264a3f08","text":"年月日时分秒(注册时间)","styles":{"background":"#04b1c2","color":"#ffffff"}}]] var TABLE_ITEMS = [[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"90,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"00115727-e145-44c0-9102-110523699369","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"ff61dfee-1c56-48b6-9f7b-21abef64c96f","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"f08a77cf-2282-4ad9-aa1c-ca93038d32a3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-07-28","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"七月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":28,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":31,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-07","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-07-28 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-07-28 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-07-28 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":0,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"2,000,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"40.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"00c7b96a-bf9e-423f-9246-3898c6ac3150","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"4219ad91-39f5-4f90-b580-c971dc692ece","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"d9e62a63-399b-4e8d-871f-491d13a484f1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"福州市湖滨路66号中福西湖花园东福楼18H","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":1,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"800,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"4.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"013b1dd8-1493-4c5b-8501-c0a78096d86a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"22502c61-4cb9-4a4b-b258-010f848a6215","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"cdbb713b-87e5-47d1-892b-8ba6928b4d1c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"徐州市西安北路亚华大厦10楼","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":2,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"32,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"026e9c86-1af5-4d25-99b1-42e1a6c610d1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":3,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"180,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"03374c0e-59d1-4158-8ab5-67b48d80d84e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"d9c85691-1c10-4ef9-8b42-98e1637cab77","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"8f5bda5b-89ea-492a-889d-ed3ad8bc4ae5","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-24","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":24,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-24 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-24 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-24 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":4,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"560,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"03ae814b-195b-48e0-ae47-c60ad8aa9cdf","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"3b1b4e83-aa87-4b40-b055-bc3e7bef2602","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"cbcba594-08b0-4be7-9ffd-e21aa3f0dcf9","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-08-19","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期一","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":19,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-08-19 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-08-19 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-08-19 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":5,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"32,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"040d00ce-c214-4191-a7ab-88b1ca558dc0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":6,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"750,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"04192b9b-dd8e-4136-8662-8f729430e5aa","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"925c3526-66a0-48a8-9098-0deb98a86274","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"03d40405-4089-4eea-809a-f6152b4b639a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":7,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"180,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"04289ab3-08e3-49d3-9582-4dbb945233e7","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"901aa1ba-ff07-4ff7-a836-4821219c9aae","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"213326cf-266b-4fb6-8d7b-eef2a90a1e8d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"西安市唐延路5号","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-09-19","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"九月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期三","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":19,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":38,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-38","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-09-19 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-09-19 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-09-19 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":8,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"16,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"042984b4-db31-48a4-9606-bf891bf6e7b2","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":9,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"1,400,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"4.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"047bae0c-ae18-426f-83a9-6519b986bfbc","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"1de1b758-be64-4c33-86f9-3dd0fc11106a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"76b8a148-77ea-46b7-80ef-7992d52b4ea2","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"上海市徐家汇路430号电力大楼16楼","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-03","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":3,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":31,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-03 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-03 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-03 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":10,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"260,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"04897502-5828-4273-8184-553aa0562930","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"88d567a8-feab-4ce5-8b8a-0cb7f5840179","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"43f6fe3c-ed93-4116-96b5-8beadb592545","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":11,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"1,200,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"04b0d7a7-1ef5-4eab-b6c2-811b9630cab4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6dfef093-d521-4807-b5b4-15f6c13d39f6","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"ee97ef3a-5fe1-4c80-b37b-beb0d017e9eb","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":12,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"500,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"056c2ca7-a186-40a4-a8a6-01b38151df57","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"9d7ce8a7-5f9a-4087-be3e-2ed0edf53709","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"212e1bce-b6b8-4677-904e-60666683c978","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-10-24","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":24,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":43,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-43","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-10-24 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-10-24 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-10-24 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":13,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"600,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"05bf042a-27f8-4e66-bc0c-9638145fd756","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"74643073-3ca1-4cf4-b921-af3e9c83702b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"e3231483-9848-438d-beff-1d8e7a35cd1c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-10-26","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":26,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":43,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-43","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-10-26 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-10-26 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-10-26 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":14,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"164,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"4.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"05cd066b-7aff-4726-9c52-096df32840db","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":15,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"99,800.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"06214078-99fc-4500-9e85-32ba2efbc1d9","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"62dc704c-c30a-4364-9253-62a582820430","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"8865c593-ee72-4eac-ad78-83441cf09b44","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":16,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"50,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"064c1610-a6d7-4aee-a71d-62e58ef7f89a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"8fa290a3-6595-4625-ad31-a2229cba9345","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bc89c6d9-615e-4f11-9004-3da41dedac19","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"福州市福新中路89号时代国际广场917-918单元","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":17,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"130,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0692a164-8159-4dda-901b-4003f432d41c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"de4b48c5-93b6-4af1-abd9-bc4e4499fb11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"5063bd4e-aa18-4034-a9a1-2413a55a602a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"长春市净月大街2555号东北师范大学净月校区软件学院2楼205","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-03","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":3,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":31,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-03 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-03 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-03 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":18,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"64,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"07d167a4-a45f-4adf-b342-681fab23d210","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":19,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"350,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"07f1b7a1-0fe6-4735-bce4-fb9d1204c324","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"68e41864-9ff9-4ee7-96d4-916138153778","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"672cf4a0-49b4-45a3-84dd-6a4c5a9561d9","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-02-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第1季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"二月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期二","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":12,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":7,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-02","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-7","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-02-12 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-02-12 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-02-12 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":20,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"210,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"080a241d-7372-4921-b171-b9ed2d4a9dd6","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"0e4cf623-44dd-470a-8a39-5bc705c5faf5","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"42433511-62e3-4a84-9c03-3d0506dbc846","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"服务协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-05-06","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第2季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"五月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期一","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":6,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":19,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-2","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-05","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-19","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-05-06 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-05-06 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-05-06 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":21,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"720,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"080cd368-af54-447a-a3ae-051425c84bc1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6370dee7-6d96-4881-9014-2ba42b674051","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"5a036477-4566-49f4-9f99-9af82094aad0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"\t西城区复兴门外地藏庵南巷1号电研大厦C1007","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-17","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":17,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":33,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-33","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-17 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-17 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-17 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":22,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0859c137-5a7a-48c0-8c16-e2c607d7b19f","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"3ed72882-0b77-4066-a9dc-76a94c2c0236","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"faf8603f-dba1-4d10-8f56-4b4ab52a4c01","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":23,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"150,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"087bab2a-7b5e-4304-808a-830b68556cee","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"ec8cec0b-012f-4b58-84ff-0c889e98f1a0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"3c02b621-2088-4826-9ca6-1ad3f0b9ae67","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"梅花山庄24栋602","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":9,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-09 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-09 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-09 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":24,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"320,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"08ce15be-bbfd-4c9b-b18f-39eb03e471ca","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"456419b5-d3c7-499b-b07b-b868cc68634e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"22f9a27a-08a4-4671-b748-7d2cc93e8840","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-25","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":25,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-25 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-25 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-25 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":25,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"1,800,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"30.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"09f59e37-bc7d-4abc-ba37-462adc1d5437","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"1b4eeefa-6c96-102f-9089-ad5cc5c899a4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"becbd468-3a22-4687-aaa3-886a12a20302","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":10,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-10 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-10 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-10 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":26,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"200,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0a392e38-b72f-46ad-b713-a19e06f6f46e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"ef35dd55-5306-4380-88ff-5db8847f07be","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"d5800b52-8a9d-4ed8-b290-481ea17d7970","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"海淀区北四环西路66号中国技术交易大厦2005室","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-17","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":17,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":33,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-33","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-17 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-17 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-17 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":27,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"270,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0a481a95-5f8f-4a2f-acac-711dcd77ed80","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"e210c77c-f1c3-44d2-ad08-fb1b36a8499f","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"905f4806-14ff-47cd-88dc-ac8f99239174","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"海淀区上地三街嘉华大厦C座十层","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":12,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":33,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-33","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-12 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-12 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-12 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":28,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"32,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0a4941a1-8ddd-4826-93dc-461f8bdbab8c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":29,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"660,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0ad9e460-6e0c-4dc0-83d6-750597f07825","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"7a70da02-199a-4e74-be08-3414783fbdd4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"788c76f2-87aa-45e7-a48c-eb7f73eac475","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":30,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"100,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0b2f2daa-5b8f-4169-8d99-0aa6120ed8c6","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"b0c38d7d-2cca-42c0-9099-05b2d5b3e38d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"13ccdb9e-d8fe-43db-b7d1-e5d2254787f8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":31,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"160,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0c2201db-3b7c-47a4-95bd-5815b14886ac","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"52e52309-cf7b-4919-80a1-e10eb0e6ced7","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"afa29ce6-1a90-4282-a3e6-69dea6131f1d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-08-26","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期一","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":26,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":35,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-35","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-08-26 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-08-26 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-08-26 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":32,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"350,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0c6e4368-0572-40e6-978e-de72b8997d15","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"1fb823f6-209e-4484-9919-8844e2e09135","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"90a67362-414b-47a6-9369-7c91019e81d4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-11-15","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十一月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":15,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":46,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-46","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-11-15 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-11-15 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-11-15 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":33,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"100,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0cdfd271-6a40-432a-ac04-fcf0e3e029dd","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"5917ef9b-f554-4364-b0ba-524bc7eee0db","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"97d8fa57-6cbd-4450-bf20-51d49581b885","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":34,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0dc1c555-2eb2-4d8e-9ee4-50e96688e6a6","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"0ef33a04-1464-417a-a976-01f41ba0b97e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"6b7b3b72-e8c3-4a25-961a-4cf64b456b93","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-24","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":24,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-24 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-24 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-24 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":35,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"2,380,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0e02341c-e7cd-44b6-b52c-c07fff904ffb","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"99a09a6a-ae50-4f5e-8c45-60d1fe07b465","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"fe305416-e143-411e-b5c8-5302c3a72c10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"郑州市嵩山南路14号","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-02","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":2,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":31,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-02 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-02 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-02 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":36,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"256,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0e1913de-c7bb-4f94-8650-b6fcc449dc31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":37,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"50,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0e2329e4-af5e-4bbc-8ea2-2b13d7f4b4eb","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"7ec522c2-ad8f-4018-8744-290b34bc175e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"afadb9c0-8b31-4c8b-abd0-5a15d691ada7","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":38,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"106,200.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0e3ee80d-6f21-430d-8b26-a9b68ccef22b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"830c72c1-86d0-4aca-aa90-14da68165833","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"e558bac7-38be-4a90-9bea-58d4fe9a6b99","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-24","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":24,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-24 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-24 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-24 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":39,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"380,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"0fb2bba0-ea35-42b0-8e03-1750962d64c1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"16dcafcf-97b2-4380-967a-0058fccdd9fd","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"cf8889b0-5897-4cdc-a8db-6ece8910ec7d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-01-26","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第1季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"一月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":26,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":4,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-01","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-01-26 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-01-26 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-01-26 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":40,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"400,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1045c5d8-64bd-438b-9879-d12b58e237b5","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"01c4d450-b85d-4f5c-a8f9-6b730a887c15","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"423d72a8-665d-4cf0-aa63-402b776950e4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-06-18","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第2季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"六月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期二","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":18,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":25,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-2","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-06","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-25","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-06-18 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-06-18 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-06-18 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":41,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"256,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"107b3879-67ba-4cf6-b7d5-e50585e13d68","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"62dbfeee-8e10-4809-8797-994df074ae9a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"1886c448-07c1-4d2b-9038-7f13465512e0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-12-29","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十二月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":29,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":52,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-52","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-12-29 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-12-29 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-12-29 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":42,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"2,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"108b8891-946d-44b0-b44d-9291b15d92dd","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"387e629d-627a-4387-9224-692dae0bf933","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"b5be6449-2c57-46ab-9dcc-76e8c0526dbe","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2011-10-04","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2011,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期二","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":4,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":41,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2011-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2011-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2011-41","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2011-10-04 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2011-10-04 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2011-10-04 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":43,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"120,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"11771d20-21eb-4148-a625-139ebebdbb2c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"10206f0d-c55c-4cdc-a8da-83f50f575c6f","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"7bbcb1bf-b497-4568-961d-1c64967d94d1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-10-27","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":27,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":44,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-44","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-10-27 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-10-27 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-10-27 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":44,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"300,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"121058bc-fc36-442e-81eb-5e44ad119e66","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"c30ffd1e-5b34-441b-a640-f13310ffafa5","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"f3e7cac0-8785-4fa3-bfdf-414f52d5ca0b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":45,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"400,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"122a9012-9065-44ac-aa47-fbb0bfa83e42","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"dfc7135c-0778-40e9-97b2-9b6702c774b8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"2b06fd25-da7a-4450-9162-f4c12e3b57b4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"杭州市莫干山路102号立新大厦10楼","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":9,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-09 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-09 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-09 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":46,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"200,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"12c45953-f32e-4170-9e50-29b68618e955","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"e32e89de-2825-404b-904b-783ae1952d2d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"049bb6e8-af01-4ba2-92d6-a53628745994","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"海淀区蓝靛厂东路2号金源时代商务中心C座6G","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":9,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-09 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-09 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-09 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":47,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1324cf84-ca10-403e-8207-b66dd97f272e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"c6e91cc0-da1d-4ad0-bbd5-3089ca56e078","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"9c9bf867-a84f-44ec-9daa-b63edae49bef","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":48,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1375352e-dadb-47b0-975c-724737d7854a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"e210c77c-f1c3-44d2-ad08-fb1b36a8499f","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"905f4806-14ff-47cd-88dc-ac8f99239174","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"海淀区上地三街九号嘉华大厦C座十层","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":10,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-10 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-10 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-10 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":49,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"500,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"13cd2da0-26d9-495c-a197-7bcfd4571776","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"ef794a84-0a45-4841-8f12-d6968f6cd370","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"a1485ce9-982c-49e6-bf34-f38d2c10fd6a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-09-22","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"九月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":22,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":39,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-39","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-09-22 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-09-22 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-09-22 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":50,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"150,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"147768c6-31c2-4ab3-a1f0-2788b8c26e6e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"740a42cb-bf98-4c39-9c2a-4c0c1f2ec32b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"2d15d041-5912-4d8e-a037-9dadc00d6a47","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-11-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十一月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":10,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":46,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-46","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-11-10 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-11-10 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-11-10 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":51,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"64,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"15072396-5ac7-43ce-beaa-0b56318634f7","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":52,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"159dc657-7dc7-4936-a238-11bc104251a6","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"b57a6968-ed5f-4c22-bd51-23fc8a2e51ef","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"7637b417-31c3-4ce4-8998-dcac4d7d6b1e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":53,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"2,780,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1677acc5-1843-470b-9b13-7ef5173ba150","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"813dba4f-3959-4aeb-b2c3-1f3ed2eadcf9","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"8b5c06c5-37b2-4b29-a017-e4eadd5f7bb0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-02-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第1季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"二月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":9,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":6,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-02","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-6","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-02-09 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-02-09 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-02-09 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":54,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"150,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"16a16248-64e3-4a61-ac5c-1d432832ba72","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"9867ee56-01e0-4ad1-a760-daf1b90bf421","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"f8c586b4-f693-4848-9f54-5542e03d7d8e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":55,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"260,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1996dd92-07a2-4254-833c-21bde260b0e4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"88d567a8-feab-4ce5-8b8a-0cb7f5840179","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"2b38042d-a42e-4ce2-b085-62d0f9674763","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"成都市人民南路4段9号237号","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":10,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-10 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-10 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-10 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":56,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"300,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"19a238d4-7436-4f45-83a1-8122df37de11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"cf681e58-7fb7-4752-8d60-3282b4438cc8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"ee61e56f-ec92-4c14-b5ae-529e99467429","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"北京市海淀区人大北路33号2号楼2302室","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-03","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":3,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":31,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-03 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-03 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-03 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":57,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"32,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"19deed03-f577-487f-a59a-7983d61f22c0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-22","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期三","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":22,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-22 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-22 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-22 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":58,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"32,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1a256a40-ecc6-4b1a-b34a-add1c718b6df","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":59,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"60,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1ac7b95f-d799-4206-a6d8-84d6ba396d00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6a72ac0d-82b0-499a-ac2a-27e5ed2103a9","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"b2586baf-baa1-4b8f-8f8b-b9c3e8ba0e3f","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"深圳宝安机场国际货运中心1205室","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":12,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":33,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-33","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-12 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-12 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-12 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":60,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"1,200,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1b3609b2-d56d-43b8-b213-3942a1aa5fb7","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"7ba15d66-9d46-4204-8f92-970e66713deb","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"c83a6839-e4af-4c27-aabb-117b02d30cef","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"海淀区上地三街嘉华大厦D座802","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":61,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"360,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1bc3a791-fd92-411f-8539-bd4ef25c468a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"20e07e5b-9ee5-4716-ae2c-b0e770406f10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"4f8b0a24-d89a-4ea9-928c-27414d82467d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-11-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十一月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期二","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":12,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":46,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-46","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-11-12 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-11-12 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-11-12 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":62,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"36,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1c0499ac-b04c-4edc-99dd-4d6212610d17","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"58b86288-86c3-4fff-81b4-b3a3363993b2","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"09679c48-8f7c-414d-b91d-cdde302fcdfa","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":63,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"240,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1c240eb8-99e1-4d6e-a000-ea365eb5787b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"271e168e-3614-4905-ac32-baa04bcde03b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"3b70f5f3-7309-4acc-830c-1e96cddcdabe","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-09-02","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"九月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期一","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":2,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":36,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-36","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-09-02 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-09-02 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-09-02 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":64,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1c297798-3f94-4742-b262-9e59d32e51e4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"c105518f-ddec-4d1f-9ffa-4f8ef41b84c6","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"83478f0d-8f5b-4c33-a831-4480c779ada9","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":65,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"240,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1c37baa0-b517-4adf-b3db-df2cbd74669a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"ba6335bf-56b2-42b2-a027-dd06a25c2206","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"ee807dfc-29ea-4834-8821-4371dfbf9773","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":66,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1cad07dc-c49b-4243-9274-8681d33bb131","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"25e15977-1b22-4ee1-a17c-2ad4e5889ac0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"aef9acfc-39f8-4915-b9e7-31bbe2cff0bb","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"石鼓路98号阳光大厦8楼","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":12,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":33,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-33","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-12 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-12 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-12 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":67,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"500,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"4.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1d6da355-7320-4940-b45d-8c45695ee748","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"3a4bdabb-8528-44ac-9760-13939fb57241","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"76c1addb-e078-4d99-a8ee-f26150106144","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-24","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":24,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-24 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-24 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-24 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":68,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"90,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1e055ac0-5a93-4119-b493-55443a2f3f3d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"ecf2517d-5bb3-4c36-b3a7-f9972639ba5d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"6c45e60d-9232-430b-9ca4-83ccc968c42e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-11-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十一月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":8,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":45,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-45","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-11-08 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-11-08 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-11-08 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":69,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1e5dc1de-f5be-4da8-a6ee-007cf0458b16","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"c2a65365-fe34-4795-8e3c-43c0a3089743","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"84afa342-04ac-4609-a90d-bb7da07cf684","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"南京市长乐路9号3号楼","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-19","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":19,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-19 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-19 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-19 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":70,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"220,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1e6db2a3-df08-4c47-8583-6851b3ed9f38","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"15d04bd6-6ad7-4f29-b74e-9b20ddf10b2c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"87c8a5ff-e5a6-420d-aebb-b62cad9ce0f1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"海淀区上地信息路2号国际创业园1号楼19E","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":9,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-09 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-09 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-09 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":71,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"1,400,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1fa0e1a1-44d4-43ff-8b17-3aee1c1973f5","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"5c5eb48b-3a9b-48e5-a8ef-b53e314cb281","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"df3c16e1-d3f4-450d-a562-e48462131f6c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"北京市海淀区海淀北二街6号莆田大厦12层","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-03","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":3,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":31,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-03 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-03 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-03 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":72,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"140,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1fb5b75e-868b-4610-a799-d030e2203d2a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"8aa89464-d3ee-4187-8abf-7f4079017da1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"e3f28dc5-ad7f-4583-957c-f66eefa73d70","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-24","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":24,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-24 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-24 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-24 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":73,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"2,200,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"1fd43ad5-e14d-4b44-90b4-3898d63e9354","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"310002c3-e467-4167-bbcd-7ca793c36d2a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"9d0dfbfe-4977-41f8-970a-00fc7c2eb9ea","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"服务协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":74,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"500,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"2073d3f9-f03e-41a6-b7ce-917112b0333b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"15520dd4-9cb4-40b9-9bce-3a43cf33eb46","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"dc546f9a-c53d-4178-a713-e53d32aed8a8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"兰州市张苏滩575号","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-03","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":3,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":31,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-03 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-03 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-03 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":75,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"192,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"20bcfb34-3ae8-44fe-9223-2ed5ab8c98ce","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"9867ee56-01e0-4ad1-a760-daf1b90bf421","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"3304f5b3-30ca-44da-af96-7b1881576d4c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"丰台区丰台东路11号","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":9,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-09 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-09 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-09 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":76,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"1,060,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"30.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"20d789c4-12ae-449c-a405-a0c80b654db8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"c6e91cc0-da1d-4ad0-bbd5-3089ca56e078","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"9c9bf867-a84f-44ec-9daa-b63edae49bef","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"闸北区共和新路3388号永鼎大厦8楼","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":12,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":33,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-33","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-12 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-12 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-12 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":77,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"120,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"211d1f3f-988c-401c-8607-d024e2e87e71","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"f6fabcfb-de3a-4cd0-91a8-0dec22b60a01","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"0c83557f-a6be-4e78-850c-18f86fad62c2","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-02-17","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第1季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"二月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":17,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":8,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-02","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-02-17 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-02-17 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-02-17 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":78,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"168,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"2131fb59-f407-4344-8e97-89cfd3f57a32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"9e44b1e1-d7c7-416a-bb8c-4511e86b4d6f","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"2073da80-94c1-4b90-81c9-b2f39069f642","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"服务协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":79,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"1,500,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"218263aa-10b4-4548-bdc9-6d0857856988","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"34bd10aa-66e9-454b-bfd6-7b0cf50fa216","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"10178415-a27c-4433-8716-8e1ac86cd2e6","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"北京市海淀区紫竹院路69号中国兵器大厦1001室","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-09-13","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"九月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":13,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":37,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-37","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-09-13 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-09-13 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-09-13 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":80,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"38,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"21ba1da6-b602-4a51-818e-671635242061","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"86f5502e-eec2-44e3-bfec-d08b3353da08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"863466e9-cce5-4571-bdb2-7bdb324c9705","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2010-12-26","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2010,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十二月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":26,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":53,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2010-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2010-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2010-53","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2010-12-26 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2010-12-26 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2010-12-26 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":81,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"570,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"21fea819-ba2f-4cbc-bd6f-09d20ea6e238","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"f82a2c40-58d5-4a18-8f86-2bbbb639361c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"cb1a3eed-349f-4777-af21-27d38d5ad660","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":82,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"100,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"2280e08c-7faa-4dd1-9b49-70d82951e46b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"8c17f8df-3a08-43bf-9bf8-1ac5bbfd651f","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"9128b269-5863-44f4-8169-e2f9d54e1958","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"服务协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":83,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"500,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"2296e390-f429-4eb1-a9b7-d30e6f0fbca7","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"1b3f11e7-b924-45ad-942b-5564afb99205","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"ba175a63-7e17-4993-b38c-6f694cd6feb9","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-24","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":24,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-24 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-24 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-24 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":84,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"600,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"23e6cf1b-f986-4dd9-96e1-a6ddb8c29ff7","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"c2a65365-fe34-4795-8e3c-43c0a3089743","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"a6e40368-125e-4fd4-8ed5-030b12db9392","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-08-26","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期一","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":26,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":35,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-35","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-08-26 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-08-26 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-08-26 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":85,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"900,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"23f5a9e0-638a-4442-a463-1ad41dac804d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"293a0613-01e6-4f5e-b8eb-5f7e8d41dccf","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"a0d0069c-7c54-4c17-b372-b08ed4633728","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-10-26","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":26,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":43,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-10","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-43","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-10-26 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-10-26 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-10-26 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":86,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"400,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"24bbf5ac-a4ca-43a4-a76d-f5419c077b3b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"3e306aad-2d15-45c8-87aa-03feed8a4623","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"595ef75e-6a61-4f80-b4fd-ddf248a6450a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-01-15","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第1季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"一月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期二","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":15,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":3,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-01","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-01-15 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-01-15 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-01-15 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":87,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"210,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"2562c122-5cc7-4cca-8601-173365a22ae8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"ce3e7403-19e4-4f3f-b922-06bb978f478c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"9062d3b8-dba1-47bc-89b7-c39beceddb54","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-12-17","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十二月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期一","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":17,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":51,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-51","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-12-17 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-12-17 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-12-17 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":88,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"140,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"4.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"258f751f-4c7e-4a25-b268-80bf3bd71645","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"89a52d8b-5f1e-4c04-92ba-7fe397ee2d1c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"24654ff0-f102-4ec1-9d25-805d22e8a682","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"成都芳草西二街19号","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-15","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期三","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":15,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":33,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-33","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-15 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-15 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-15 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":89,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"100,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"25ba498f-6e1a-4106-9aa4-56aac67804e0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"5a199fca-baee-4608-8a43-7fa2422cd86e","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"953213cb-2e2f-4014-abe9-29db1da0d144","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-01-19","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第1季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"一月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":19,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":3,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-1","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-01","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-01-19 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-01-19 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-01-19 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":90,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"940,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"25c5ccc7-59bc-411f-87a7-a75b21bd3135","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"0773abc0-4a3f-4b6d-9a94-c2a9086bb605","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"cef3ca3b-fb5b-4ce5-8d92-8087aeb725c4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-08-18","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期日","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":18,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-08-18 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-08-18 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-08-18 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":91,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"600,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"264b3016-923c-4b7d-b68f-008118482ec3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"da42f098-2d5b-44ce-91a1-0f0fa8787f4c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"19048342-71c9-46e8-b5e3-20d0bc6bc59b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"昆明市西山区益宁路18号西部客运站","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-03","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":3,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":31,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-31","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-03 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-03 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-03 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":92,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"16,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"26b1e9c7-f98b-4f1b-93de-546fbb48bc27","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"6e1d8f93-a6cc-44ac-9e64-b3929553f7d8","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"bfe7230b-f71d-48fb-a12e-fb91b6d9633b","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"6a0bf640-3efe-4907-a076-397e87093422","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":93,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"6.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"26cff374-7843-4177-b6af-12753e58e4ae","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"4e6bad45-4b4b-417f-bd9b-0edab15e1b65","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"ed4b0414-ff48-4adb-9598-1b85665d2d8c","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"分期付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-11","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期六","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":11,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-11 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-11 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-11 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":94,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"540,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"5.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"2721e0b6-fec6-47b5-80f1-1456dafede66","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"2ae22130-d4f7-4f2e-b116-3b3f505eaf45","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"8eb2fef1-3c6f-4a83-b1b5-0dcea8e9697d","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-09","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":9,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":32,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-32","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-09 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-09 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-09 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":95,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"390,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"277cb978-1a5c-49a5-aba9-006889a1e090","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"adf6ff0a-8660-46ef-a370-a4db318bed50","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"b793cade-a10e-49e6-9640-58875a589da0","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"否","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2013-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2013,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期五","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2013-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2013-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2013-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2013-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2013-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2013-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":96,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"0.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"7.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"279c9cfd-567e-4417-b166-18f9e5b63c1a","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"da1084c6-d075-4eca-8570-2aad94cf6b33","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"97d30561-5f51-43bc-b8b2-22fbfdfce6d4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":97,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"360,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"2.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":2,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"27d5eb5f-d867-489b-9455-197a0bc53235","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"b89a70b8-d037-4b09-a79a-44c61c2df6ca","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"6ae5c9ac-2397-48a4-8e8d-e1e2e463c111","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"购买合同","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":1,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-12-25","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第4季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"十二月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期二","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":25,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":52,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-4","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-12","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-52","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-12-25 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-12-25 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-12-25 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.2)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3304b1c2,endColorstr=#3304b1c2);"},"dimensionType":3,"rowIndex":98,"pageCount":1}],[{"type":"bi.detail_table_cell","dId":"4bee81d36b4c6874","text":"40,000.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"ce501b56c3bee73b","text":"1.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7fdfffca99e85f41","text":"3.00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":2,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c7e273fee68f9a84","text":"2805021c-f82e-4f31-a2bb-e24ec5751177","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"06c1244c0bb8c971","text":"c6e91cc0-da1d-4ad0-bbd5-3089ca56e078","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3b8788e5243f4253","text":"065f57de-d6b5-488e-be81-d6a11176edc5","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"977f03aa6b05f170","text":"长期协议订单","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"fb18445e25042fad","text":"一次性付款","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7b4214f2ee25348f","text":"","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"e9270d71f05f8af6","text":"是","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":1,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"0c20d70ab1c54e59","text":"2012-08-23","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"26df741899dbe311","text":2012,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c54cc86e2d6ec8e8","text":"第3季度","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"a8179fbe73f32b78","text":"八月","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4f3817018d5911d0","text":"星期四","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"3d27b2b4010a87ae","text":23,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b9122528a8ef99b1","text":34,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"4754cdc8d2b0ccc1","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c44e00e1bc20135d","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"b175741ff606ba3c","text":0,"color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24f4dfbda51fdd3b","text":"2012-3","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"c2cdf7336ecdfec0","text":"2012-08","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7c86b54224352de6","text":"2012-34","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"24cdfc858e5fec6f","text":"2012-08-23 00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"7f4631a5465d63e3","text":"2012-08-23 00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1},{"type":"bi.detail_table_cell","dId":"37025692264a3f08","text":"2012-08-23 00:00:00","color":"","iconCls":"","isHyperLink":false,"styles":{"background":"rgba(4,177,194,0.05)","filter":"progid:DXImageTransform.Microsoft.gradient(startColorstr=#0D04b1c2,endColorstr=#0D04b1c2);"},"dimensionType":3,"rowIndex":99,"pageCount":1}]]; -Demo.Center = BI.inherit(BI.Widget, { +/** + * guy + * 二级树 + * @class Demo.SortTree + * @extends BI.Widget + */ +Demo.SortTree = BI.inherit(BI.Widget, { + + render: function () { + var self = this, o = this.options; + var tree = new BI.Tree(); + tree.initTree(BI.Tree.transformToTreeFormat(Demo.CONSTANTS.TREEITEMS)); + this.tree = BI.createWidget({ + type: "bi.custom_tree", + element: this, + expander: {}, + + items: this._formatItems(0, tree.toJSON()), + + el: { + type: "bi.virtual_group", + layouts: [{ + type: "bi.vertical", + scrolly: false + }] + } + }); + + this.tree.element.sortable({ + items: ".sort-item", + placeholder: { + element: function ($currentItem) { + var holder = BI.createWidget({ + type: "bi.layout", + cls: "bi-sortable-holder", + height: $currentItem.outerHeight() + }); + holder.element.css({ + "margin-left": $currentItem.css("margin-left"), + "margin-right": $currentItem.css("margin-right"), + "margin-top": $currentItem.css("margin-top"), + "margin-bottom": $currentItem.css("margin-bottom"), + "margin": $currentItem.css("margin") + }); + return holder.element; + }, + update: function () { + + } + }, + update: function (event, ui) { + var node = ui.item.data("node"); + var findTheNode = tree.search(node.id); + //这里简单处理下找到它的父节点 + var currentIndex = 0, parentNode; + if (ui.item.next().length > 0) { + var n = ui.item.next().data("node"); + var nextId = n.id; + var nextNode = tree.search(nextId) + parentNode = nextNode.getParent(); + var nextIndex = parentNode.getChildIndex(nextId); + currentIndex = nextIndex > 0 && (nextIndex - 1); + + } else if (ui.item.prev().length > 0) { + var n = ui.item.prev().data("node"); + var prevId = n.id; + var prevNode = tree.search(prevId) + parentNode = prevNode.getParent(); + var prevIndex = parentNode.getChildIndex(prevId); + currentIndex = prevIndex + 1; + } + findTheNode.getParent().removeChild(node.id); + parentNode.addChild(findTheNode, currentIndex); + self.tree.populate(self._formatItems(0, tree.toJSON())); + }, + start: function (event, ui) { + + }, + stop: function (event, ui) { + }, + over: function (event, ui) { + + } + }); + }, + + _formatItems: function (layer, nodes) { + var self = this; + BI.each(nodes, function (i, node) { + if (node.isParent === true || BI.isNotEmptyArray(node.children)) { + BI.defaults(node, { + type: "bi.multilayer_icon_arrow_node", + height: 30, + layer: layer + }); + self._formatItems(layer + 1, node.children); + } else { + BI.defaults(node, { + type: "bi.multilayer_icon_tree_leaf_item", + cls: "sort-item", + height: 30, + key: node.id, + layer: layer, + data: { + node: node + } + }); + } + }); + return nodes; + }, +}); +BI.shortcut("demo.sort_tree", Demo.SortTree);Demo.Center = BI.inherit(BI.Widget, { props: { baseCls: "demo-center" }, @@ -4925,6 +5037,10 @@ BI.shortcut("demo.value_chooser_pane", Demo.ValueChooserPane);Demo.ADDONS_CONFIG pId: 100000, text: "大表格", value: "demo.large_table" +}, { + pId: 100000, + text: "可以排序的树", + value: "demo.sort_tree" }];/** * Created by User on 2017/3/22. */ @@ -7530,14 +7646,27 @@ Demo.Horizontal = BI.inherit(BI.Widget, { type: "bi.horizontal", items: [{ type: "bi.label", - text: "水平布局", + whiteSpace: "normal", + text: "因为大多数场景下都需要垂直居中,所以这个布局一般会被vertical_adapt布局设置scrollx=true取代", cls: "layout-bg3", + width: 500, + height: 50 + }, { + type: "bi.label", + text: "水平布局", + cls: "layout-bg4", width: 300, height: 30 }, { type: "bi.label", text: "水平布局", - cls: "layout-bg4", + cls: "layout-bg5", + width: 300, + height: 30 + }, { + type: "bi.label", + text: "水平布局", + cls: "layout-bg6", width: 300, height: 30 }] diff --git a/src/base/combination/group.virtual.js b/src/base/combination/group.virtual.js index 03a356efb..02d72aa4b 100644 --- a/src/base/combination/group.virtual.js +++ b/src/base/combination/group.virtual.js @@ -56,7 +56,7 @@ BI.VirtualGroup = BI.inherit(BI.Widget, { }, setValue: function (v) { - this.layouts.setValue(v); + // this.layouts.setValue(v); }, getValue: function () { diff --git a/src/core/utils/tree.js b/src/core/utils/tree.js index c5632f0a7..b46de8bba 100644 --- a/src/core/utils/tree.js +++ b/src/core/utils/tree.js @@ -365,7 +365,7 @@ } child.setParent(this); if (cur >= 0) { - this.getChild(cur).setRight(child); + this.getChild(cur) && this.getChild(cur).setRight(child); child.setLeft(this.getChild(cur)); } if (BI.isUndefined(index)) { diff --git a/src/core/wrapper/layout.js b/src/core/wrapper/layout.js index d87295051..4fd844107 100644 --- a/src/core/wrapper/layout.js +++ b/src/core/wrapper/layout.js @@ -432,7 +432,7 @@ BI.Layout = BI.inherit(BI.Widget, { function addNode(vnode, index) { var opt = self._getOptions(vnode); - var key = opt.key == null ? i : opt.key; + var key = opt.key == null ? index : opt.key; return children[key] = self._addElement(key, vnode); }