| | |
| | | /** |
| | | * æé®å¤ç ä¸å¡ç±»åæ°å¢ |
| | | */ |
| | | import {callPreEvent,callPostEvent} from './BaseAction'; |
| | | import {paramLow,callPreEvent, callPostEvent} from './BaseAction'; |
| | | import {validatenull} from "@/util/validate"; |
| | | import Vue from "vue"; |
| | | |
| | | export const doAction = (options) => { |
| | | let paramVOS = Object.assign({ |
| | | options.paramVOS = paramLow(options.paramVOS) |
| | | const paramVOS = Object.assign({ |
| | | url: 'uiDataController/addSave', |
| | | method: 'post', |
| | | uploadFileUrl: 'vciFileUploadController/uploadFile' |
| | | uploadfileurl: 'vciFileUploadController/uploadFile' |
| | | }, options.paramVOS) |
| | | options.paramVOS = paramVOS; |
| | | |
| | | callPreEvent(options, doBefore,function (options) { |
| | | options.sourceData = options.sourceData || {}; |
| | | |
| | | callPreEvent(options, doBefore, function (options) { |
| | | doAdd(options, function () { |
| | | callPostEvent(options,doAfter, options.callback); |
| | | callPostEvent(options, doAfter, options.callback); |
| | | }); |
| | | }); |
| | | }; |
| | |
| | | * @param callback åè° |
| | | */ |
| | | export const doAdd = (options,callback)=> { |
| | | this.$message.success('æ§è¡å¢å '); |
| | | const paramVOS = options.paramVOS; |
| | | if (!paramVOS['form'] && !paramVOS['context']) { |
| | | Vue.prototype.$message.error("æé®é
ç½®ä¸æ£ç¡®"); |
| | | return false; |
| | | } |
| | | Vue.prototype.$message.success('æ§è¡'+paramVOS.title); |
| | | if(callback){ |
| | | callback(options); |
| | | } |
| | |
| | | * @param callback åè° |
| | | */ |
| | | export const doBefore = (options,callback)=> { |
| | | this.$message.success('æ§è¡åç½®äºä»¶'); |
| | | Vue.prototype.$message.success('æ§è¡å¢å åç½®äºä»¶'); |
| | | if(callback){ |
| | | callback(options); |
| | | } |
| | |
| | | * @param callback åè° |
| | | */ |
| | | export const doAfter = (options,callback)=> { |
| | | this.$message.success('æ§è¡åç½®äºä»¶'); |
| | | Vue.prototype.$message.success('æ§è¡å¢å åç½®äºä»¶'); |
| | | if(callback){ |
| | | callback(options); |
| | | } |
| | |
| | | import {validatenull} from "@/util/validate"; |
| | | import Vue from 'vue'; |
| | | |
| | | /** |
| | | * æé®çåºç¡æå¡ |
| | |
| | | * actionéç¨å
¥å£ |
| | | */ |
| | | export const doAction = (button,options) => { |
| | | debugger; |
| | | options.paramVOS['title']=replaceFreeMarker(options.paramVOS.title,options.dataStore,options.sourceData); |
| | | |
| | | if(button.url && button.url!='null'){ |
| | | //æé
ç½®actionè·¯å¾ï¼ä½¿ç¨è·¯å¾å¯¹åºçjs |
| | | let buttonParse = parseEventByUrl(button.url,options,false); |
| | | import("../"+buttonParse.jsPath).then(module => { |
| | | import("../"+buttonParse.jsPath+".js").then(module => { |
| | | module.doAction(options); |
| | | }) |
| | | }else { |
| | | //éç¨action |
| | | const handlers = { |
| | | //æ¥ç |
| | | view: () => {}, |
| | | //å建 |
| | | add: () => {import("@/actions/base/AddAction").then(module => { |
| | | module.doAction(options); |
| | | })}, |
| | | edit: () => {}, |
| | | delete: () => {}, |
| | | //ä¿®æ¹ |
| | | edit: () => {import("@/actions/base/EditAction").then(module => { |
| | | module.doAction(options); |
| | | })}, |
| | | //å é¤ |
| | | delete: () => {import("@/actions/base/DeleteAction").then(module => { |
| | | module.doAction(options); |
| | | })}, |
| | | }; |
| | | if(validatenull(options.paramVOS.context)) { |
| | | options.paramVOS.context = options.paramVOS.content; |
| | | } |
| | | if(handlers[button.actionVO.id]){ |
| | | handlers[button.actionVO.id]() |
| | | }else{ |
| | | this.$message.error('æªæ¾å°å¯¹åºactionï¼è¯·éæ°é
ç½®æé®ï¼'); |
| | | Vue.prototype.$message.error('æªæ¾å°å¯¹åºactionï¼è¯·éæ°é
ç½®æé®ï¼'); |
| | | } |
| | | } |
| | | |
| | |
| | | * @param preEventName åç½®äºä»¶åç§°ï¼é»è®¤beforeevent |
| | | */ |
| | | export const callPreEvent = (options,fnTarget,callback,preEventName) => { |
| | | const params = paramLow(options.paramVOS); |
| | | options.paramVOS = params; |
| | | let beforeEvent = params[preEventName || 'beforeevent']; |
| | | let beforeEvent = options.paramVOS[preEventName || 'beforeevent']; |
| | | if(beforeEvent) { |
| | | let buttonParse = parseEventByUrl(beforeEvent,options,true); |
| | | if(validatenull(buttonParse.jsPath)){ |
| | |
| | | module[buttonParse.methodName](options,callback); |
| | | }) |
| | | } catch (error) { |
| | | this.$message.error('æªæ¾å°åç½®äºä»¶æ§è¡js'); |
| | | Vue.prototype.$message.error('æªæ¾å°åç½®äºä»¶æ§è¡js'); |
| | | } |
| | | } |
| | | }else{ |
| | |
| | | * @param preEventName åç½®äºä»¶åç§°ï¼é»è®¤ afterevent |
| | | */ |
| | | export const callPostEvent = (options,fnTarget,callback,postEventName)=>{ |
| | | const params = paramLow(options.paramVOS); |
| | | options.paramVOS = params; |
| | | let afterEvent = params[postEventName || 'afterevent']; |
| | | let afterEvent = options.paramVOS[postEventName || 'afterevent']; |
| | | if(afterEvent) { |
| | | let buttonParse = parseEventByUrl(afterEvent,options,false); |
| | | if(validatenull(buttonParse.jsPath)){ |
| | |
| | | module[buttonParse.methodName](options,callback); |
| | | }) |
| | | } catch (error) { |
| | | this.$message.error('æªæ¾å°åç½®äºä»¶æ§è¡js'); |
| | | Vue.prototype.$message.error('æªæ¾å°åç½®äºä»¶æ§è¡js'); |
| | | } |
| | | } |
| | | }else{ |
| | |
| | | let paramArray = url.substring(url.indexOf("?") + 1).split("&"); |
| | | paramArray.forEach(_item=>{ |
| | | if (_item.indexOf("=") < 0) { |
| | | this.$message.error(isBefore?"åç½®äºä»¶":"åç½®äºä»¶" + "çåæ°é
ç½®é误ï¼éè¦è¦xxx=yyy&zzz=açæ¹å¼"); |
| | | Vue.prototype.$message.error(isBefore?"åç½®äºä»¶":"åç½®äºä»¶" + "çåæ°é
ç½®é误ï¼éè¦è¦xxx=yyy&zzz=açæ¹å¼"); |
| | | return true; |
| | | } |
| | | params[_item.split("=")[0]] = _item.split("=")[1]; |
¶Ô±ÈÐÂÎļþ |
| | |
| | | /** |
| | | * æé®å¤ç ä¸å¡ç±»åå é¤ |
| | | */ |
| | | import {paramLow,callPreEvent,callPostEvent} from './BaseAction'; |
| | | import {validatenull} from "@/util/validate"; |
| | | import Vue from "vue"; |
| | | |
| | | export const doAction = (options) => { |
| | | options.paramVOS = paramLow(options.paramVOS) |
| | | const paramVOS = Object.assign({ |
| | | url: 'uiDataController/addSave', |
| | | method: 'post', |
| | | uploadfileurl: 'vciFileUploadController/uploadFile' |
| | | }, options.paramVOS) |
| | | options.paramVOS = paramVOS; |
| | | |
| | | options.sourceData = options.sourceData || {}; |
| | | options.dataStore = options.dataStore || []; |
| | | if (!options.dataStore || options.dataStore.length < 1) { |
| | | Vue.prototype.$message.error("è¯·éæ©éè¦å é¤çæ°æ®"); |
| | | return false; |
| | | } |
| | | if (!paramVOS.multi && options.dataStore.length > 1) { |
| | | Vue.prototype.$message.error("ä»
è½éæ©ä¸æ¡æ°æ®æ¥æä½"); |
| | | return false; |
| | | } |
| | | |
| | | callPreEvent(options, doBefore,function (options) { |
| | | doAdd(options, function () { |
| | | callPostEvent(options,doAfter, options.callback); |
| | | }); |
| | | }); |
| | | }; |
| | | |
| | | /** |
| | | * æ§è¡ |
| | | * @param options æé®çé
ç½®ä¿¡æ¯ |
| | | * @param callback åè° |
| | | */ |
| | | export const doAdd = (options,callback)=> { |
| | | const paramVOS = options.paramVOS; |
| | | Vue.prototype.$message.success('æ§è¡'+paramVOS.title); |
| | | if(callback){ |
| | | callback(options); |
| | | } |
| | | } |
| | | /** |
| | | * åç½®äºä»¶ |
| | | * @param options æé®çé
ç½®ä¿¡æ¯ |
| | | * @param callback åè° |
| | | */ |
| | | export const doBefore = (options,callback)=> { |
| | | Vue.prototype.$message.success('æ§è¡å é¤åç½®äºä»¶'); |
| | | if(callback){ |
| | | callback(options); |
| | | } |
| | | } |
| | | /** |
| | | * åç½®äºä»¶ |
| | | * @param options æé®çé
ç½®ä¿¡æ¯ |
| | | * @param callback åè° |
| | | */ |
| | | export const doAfter = (options,callback)=> { |
| | | Vue.prototype.$message.success('æ§è¡å é¤åç½®äºä»¶'); |
| | | if(callback){ |
| | | callback(options); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | /** |
| | | * æé®å¤ç ä¸å¡ç±»åä¿®æ¹ |
| | | */ |
| | | import {paramLow,callPreEvent,callPostEvent} from './BaseAction'; |
| | | import {validatenull} from "@/util/validate"; |
| | | import Vue from "vue"; |
| | | |
| | | export const doAction = (options) => { |
| | | options.paramVOS = paramLow(options.paramVOS) |
| | | const paramVOS = Object.assign({ |
| | | getdataurl: 'uiDataController/dataFormQuery', |
| | | getdatamethod: 'post', |
| | | url: 'uiDataController/editSave', |
| | | method: 'put', |
| | | uploadfileurl: 'vciFileUploadController/uploadFile' |
| | | }, options.paramVOS) |
| | | options.paramVOS = paramVOS; |
| | | |
| | | options.sourceData = options.sourceData || {}; |
| | | options.dataStore = options.dataStore || []; |
| | | if (!options.dataStore || options.dataStore.length < 1) { |
| | | Vue.prototype.$message.error("è¯·éæ©éè¦ä¿®æ¹çæ°æ®"); |
| | | return false; |
| | | } |
| | | if (!paramVOS.multi && options.dataStore.length > 1) { |
| | | Vue.prototype.$message.error("ä»
è½éæ©ä¸æ¡æ°æ®æ¥æä½"); |
| | | return false; |
| | | } |
| | | callPreEvent(options, doBefore, function (options) { |
| | | doAdd(options, function () { |
| | | callPostEvent(options, doAfter, options.callback); |
| | | }); |
| | | }); |
| | | }; |
| | | |
| | | /** |
| | | * æ§è¡ |
| | | * @param options æé®çé
ç½®ä¿¡æ¯ |
| | | * @param callback åè° |
| | | */ |
| | | export const doAdd = (options,callback)=> { |
| | | const paramVOS = options.paramVOS; |
| | | if (!paramVOS['form'] && !paramVOS['context']) { |
| | | Vue.prototype.$message.error("æé®é
ç½®ä¸æ£ç¡®"); |
| | | return false; |
| | | } |
| | | Vue.prototype.$message.success('æ§è¡'+paramVOS.title); |
| | | if (callback) { |
| | | callback(options); |
| | | } |
| | | } |
| | | /** |
| | | * åç½®äºä»¶ |
| | | * @param options æé®çé
ç½®ä¿¡æ¯ |
| | | * @param callback åè° |
| | | */ |
| | | export const doBefore = (options,callback)=> { |
| | | Vue.prototype.$message.success('æ§è¡ä¿®æ¹åç½®äºä»¶'); |
| | | if(callback){ |
| | | callback(options); |
| | | } |
| | | } |
| | | /** |
| | | * åç½®äºä»¶ |
| | | * @param options æé®çé
ç½®ä¿¡æ¯ |
| | | * @param callback åè° |
| | | */ |
| | | export const doAfter = (options,callback)=> { |
| | | Vue.prototype.$message.success('æ§è¡ä¿®æ¹åç½®äºä»¶'); |
| | | if(callback){ |
| | | callback(options); |
| | | } |
| | | } |
| | |
| | | }) |
| | | } |
| | | |
| | | export const getUIContent = (query) => { |
| | | //è·åUIä¸ä¸æå®ä¹å
容 |
| | | export const getUIContext = (query) => { |
| | | return request({ |
| | | url: '/api/webUIController/getUIContentByBtmTypeAndId', |
| | | method: 'get', |
| | |
| | | </template> |
| | | <!--topåºåæé®--> |
| | | <template slot="menuLeft" slot-scope="scope"> |
| | | <dynamic-button :butttonList="componentVO.buttons" :selectList="TreeSelectList" LocationType="top" |
| | | <dynamic-button :componentVO="componentVO" :butttonList="componentVO.buttons" :dataStore="TreeSelectList" :sourceData="sourceData" LocationType="top" |
| | | type="TreeTable"></dynamic-button> |
| | | </template> |
| | | |
| | | <!--menuåºåæé®--> |
| | | <template slot="menu" slot-scope="scope"> |
| | | <dynamic-button :butttonList="componentVO.buttons" :scope="scope" :selectList="TreeSelectList" LocationType="menu" default="default" |
| | | <dynamic-button :componentVO="componentVO" :butttonList="componentVO.buttons" :scope="scope" :dataStore="TreeSelectList" :sourceData="sourceData" LocationType="menu" default="default" |
| | | type="TreeTable"></dynamic-button> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | dataStore:row |
| | | }); |
| | | }, |
| | | handleRefresh(){ |
| | | this.$refs.treeTable.refreshTable(); |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | |
| | | export default { |
| | | name: "dynamic-button", |
| | | props: { |
| | | componentVO: { |
| | | type: Object, |
| | | default: {} |
| | | }, |
| | | type: { |
| | | type: String |
| | | }, |
| | |
| | | butttonList: { |
| | | type: Array |
| | | }, |
| | | selectList: { |
| | | default:{ |
| | | type:String, |
| | | }, |
| | | sourceData: { |
| | | //æé®æå±åºåçä¸ä¸åºåé䏿°æ® |
| | | type: Object, |
| | | default: {} |
| | | }, |
| | | dataStore: { |
| | | //æé®æå±åºåé䏿°æ® |
| | | type: Array, |
| | | default: [] |
| | | }, |
| | | default:{ |
| | | type:String, |
| | | } |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | }, |
| | | methods: { |
| | | //è¡¨æ ¼æ é»è®¤æ°å¢å项 |
| | | handleDefaultAddChildren(row){ |
| | | handleDefaultAddChildren(row) { |
| | | this.visible = true; |
| | | this.formName = 'æ°å¢å级' |
| | | this.$refs.dynamicForm.form = row; |
| | | }, |
| | | buttonClick(item) { |
| | | doAction(item,{ |
| | | paramVOS: item.paramVOS, |
| | | dataStore: [], |
| | | sourceData: {}, |
| | | callback: function (){ |
| | | const paramVOS=item.paramVOS; |
| | | const DefineVO = this.componentVO.treeDefineVO || this.componentVO.tableDefineVO || this.componentVO.treeTableDefineVO || this.componentVO.formDefineVO; |
| | | if (!paramVOS['title']) { |
| | | paramVOS['title'] = item.name + (DefineVO.title || DefineVO.componentTitle || ''); |
| | | } |
| | | |
| | | if (!paramVOS['type']) { |
| | | paramVOS['type'] = DefineVO.btmType; |
| | | } |
| | | /*if (paramVOS['initvalue']) { |
| | | var values = paramVOS['initvalue'].split(';'); |
| | | var initValues = [] |
| | | layui.each(values, function (i, item) { |
| | | item=item.replace(':','='); |
| | | if (item.indexOf('${') > -1) { |
| | | if (item.split('=')[1].indexOf('.') > -1) { |
| | | if (sourceData.length<1 || !sourceData[0].oid) { |
| | | isShow = false; |
| | | $webUtil.showErrorMsg("请å
鿩䏿¡æ¥æºæ°æ®"); |
| | | return false; |
| | | } |
| | | var name = item.split('=')[1].split('.')[1].replace('${', '').replace('}', ''); |
| | | if (name == 'oid') { |
| | | item = item.split('=')[0] + '=' + sourceData[0]['oid'] |
| | | } else { |
| | | item = item.split('=')[0] + '=' + sourceData[0][name] |
| | | } |
| | | } else { |
| | | if (dataStore.length < 1) { |
| | | isShow = false; |
| | | $webUtil.showErrorMsg("请å
鿩䏿¡æ°æ®"); |
| | | return false; |
| | | } |
| | | var name = item.split('=')[1].replace('${', '').replace('}', ''); |
| | | item = item.split('=')[0] + '=' + dataStore[0][name]; |
| | | |
| | | } |
| | | } |
| | | initValues.push(item) |
| | | }) |
| | | paramVOS['initvalue'] = initValues.join(';') |
| | | }*/ |
| | | if(paramVOS['BSContent'] || paramVOS['BSContext']){ |
| | | paramVOS['context']=paramVOS['BSContext'] || paramVOS['BSContent'] |
| | | paramVOS['content']=paramVOS['BSContext'] || paramVOS['BSContent']; |
| | | } |
| | | |
| | | const that=this; |
| | | doAction(item, { |
| | | paramVOS: paramVOS, |
| | | dataStore: this.dataStore || [], |
| | | sourceData: this.sourceData || {}, |
| | | callback: function () { |
| | | if (that.$parent.handleRefresh) { |
| | | that.$parent.handleRefresh() |
| | | } |
| | | } |
| | | }); |
| | | } |
| | |
| | | </el-alert> |
| | | <component v-else :is="currentComponent" |
| | | :btmType="btmType" |
| | | :content="content" |
| | | :context="context" |
| | | :inDialog="true" |
| | | :key="areasName+'customCom-'+componentVO.oid" |
| | | :componentVO="componentVO" |
| | |
| | | data() { |
| | | return { |
| | | btmType: '', |
| | | content: '', |
| | | context: '', |
| | | urlParams: {}, |
| | | height: '300px', |
| | | customClass: '', //?type=xxx&context=yyy¶m=zzz æè
ç»ä»¶name?type=xxx&context=yyy¶m=zzz |
| | |
| | | } |
| | | |
| | | this.btmType = urlParams.type; |
| | | this.content = urlParams.context; |
| | | this.context = urlParams.context; |
| | | this.urlParams = Object.assign(this.paramVOS, urlParams) |
| | | |
| | | //this.getHeight(this.$parent); |
| | |
| | | </span> |
| | | </template> |
| | | <template slot="menuForm"> |
| | | <dynamic-button :butttonList="componentVO.buttons" type="form" @buttonClick="buttonClick"></dynamic-button> |
| | | <dynamic-button :componentVO="componentVO" :butttonList="componentVO.buttons" :dataStore="[form]" :sourceData="sourceData" type="form" @buttonClick="buttonClick"></dynamic-button> |
| | | </template> |
| | | |
| | | <template v-for="item in slotData" :slot="item.prop + ''"> |
| | |
| | | @selection-change="selectChange"> |
| | | <!--topåºåæé®--> |
| | | <template slot="menuLeft" slot-scope="scope"> |
| | | <dynamic-button :butttonList="componentVO.buttons" :selectList="selectList" LocationType="top" |
| | | <dynamic-button :componentVO="componentVO" :butttonList="componentVO.buttons" :dataStore="selectList" LocationType="top" :sourceData="sourceData" |
| | | type="table"></dynamic-button> |
| | | </template> |
| | | |
| | | <!--menuåºåæé®--> |
| | | <template slot="menu" slot-scope="scope"> |
| | | <dynamic-button :butttonList="componentVO.buttons" :scope="scope" :selectList="selectList" LocationType="menu" |
| | | <dynamic-button :componentVO="componentVO" :butttonList="componentVO.buttons" :scope="scope" :dataStore="selectList" :sourceData="sourceData" LocationType="menu" |
| | | type="table"></dynamic-button> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | }, |
| | | searchChange(form,done){ |
| | | done(); |
| | | }, |
| | | handleRefresh(){ |
| | | this.$refs.dataTable.refreshTable(); |
| | | } |
| | | } |
| | | } |
| | |
| | | <template> |
| | | <div class="UI-dynamic" :id="'UI-dynamic-'+areasName+componentVO.oid"> |
| | | <dynamic-button v-if="componentVO.buttons && componentVO.buttons.length>0" :butttonList="componentVO.buttons" :selectList="checkDatas" type="tree" style="margin-bottom: 10px;"></dynamic-button> |
| | | <dynamic-button v-if="componentVO.buttons && componentVO.buttons.length>0" :componentVO="componentVO" |
| | | :butttonList="componentVO.buttons" :dataStore="checkDatas" |
| | | :sourceData="sourceData" type="tree" style="margin-bottom: 10px;"></dynamic-button> |
| | | <el-input |
| | | placeholder="è¾å
¥å
³é®åè¿è¡è¿æ»¤" |
| | | v-model="filterText"> |
| | |
| | | return data[this.defaultProps.label].indexOf(value) !== -1; |
| | | }, |
| | | initData() { |
| | | //弿¥è·åæ°æ® |
| | | this.data = [ |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "0C6A3624-4A90-45E1-BEB2-75384E542613", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 20:41:14.747", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "6053D009-934D-4528-A51D-69B63FC27BFF", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥èºææ¡£åº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 20:41:14.747", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "9D1B7934-3502-4DAF-9A1A-BE1B019DE8BC", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "documentlib", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 20:41:14.747" |
| | | }, |
| | | "checked": false, |
| | | "children": [ |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "8D2E9F26-06C9-454D-8F5E-D95FD9DEA867", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:16:58.87", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "D1A22FC3-039E-49D6-B391-465BE17B3D46", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å¸¸ç¨æ¯è¯", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 14:29:56.841", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "335A13B8-59F8-461D-A549-82543EF2B867", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "å¸¸ç¨æ¯è¯", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 14:29:56.841" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "2", |
| | | "leaf": true, |
| | | "oid": "8D2E9F26-06C9-454D-8F5E-D95FD9DEA867", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å¸¸ç¨æ¯è¯[å¸¸ç¨æ¯è¯]" |
| | | }], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "0", |
| | | "leaf": true, |
| | | "oid": "0C6A3624-4A90-45E1-BEB2-75384E542613", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥èºææ¡£åº[documentlib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:16:32.272", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "6A03D6E4-7028-4D38-8584-0424FC6C7D7F", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥èºç¥è¯åº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:16:32.272", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "957C8F17-D0C3-424E-B520-C9533E969440", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "knowledgelib", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:16:32.272" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "1", |
| | | "leaf": true, |
| | | "oid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥èºç¥è¯åº[knowledgelib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "1111222", |
| | | "oid": "C8072146-781B-41F1-81AF-48C493492D9B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:19:43.066", |
| | | "isfirstv": "1", |
| | | "folderoid": "0C6A3624-4A90-45E1-BEB2-75384E542613", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "E9B07546-E2B1-487F-AF5C-BA36E7D562D0", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥èºè¯´æä¹¦", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:19:43.066", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "8466E055-685A-4E50-979F-8BE474FDEDBB", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "å·¥èºè¯´æä¹¦", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:19:43.066" |
| | | }, |
| | | "checked": false, |
| | | "children": [ |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "222", |
| | | "oid": "59F14C83-1345-4A7D-8225-0B09DE61400B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:42:24.901", |
| | | "isfirstv": "1", |
| | | "folderoid": "0C6A3624-4A90-45E1-BEB2-75384E542613", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "AF87EA19-5651-4920-8D73-4015962C082C", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ææ¯æ»ç»", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:42:24.901", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "95AFAAD8-B9B5-44A2-BAE2-12FAB2643193", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "ææ¯æ»ç»", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:42:24.901" |
| | | }, |
| | | "checked": false, |
| | | "children": [ |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-09 13:53:26.939", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "69E38F00-01AE-4E2C-97DC-7C412C521959", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "èµæºåº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-09 13:53:26.939", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "60AD4F1B-D2E6-4C68-BC16-0F4052737D92", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "resourcelib", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-09 13:53:26.939" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "7", |
| | | "leaf": true, |
| | | "oid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "èµæºåº[resourcelib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "42B3DADB-5B19-478F-AE8F-C808151A9247", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-09 13:53:50.744", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "CA316DAC-65D0-4D37-ACCE-CD61ABB9C267", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥ä½åå
", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-09 13:53:50.744", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "8FFF9F4E-9567-4830-9C4B-D3E882DBFCE1", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "workunit", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-09 13:53:50.744" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "8", |
| | | "leaf": true, |
| | | "oid": "42B3DADB-5B19-478F-AE8F-C808151A9247", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥ä½åå
[workunit]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "411E568F-AE64-4C64-9BC2-8E6E566DE06B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-30 14:06:43.618", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "459996CD-C952-47C8-A2CC-8E8A42179364", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "设å¤", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-30 14:06:43.618", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "E7FA6D19-62BE-4ED4-9D37-4312F34C1B48", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "machine", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-30 14:06:43.618" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "9", |
| | | "leaf": true, |
| | | "oid": "411E568F-AE64-4C64-9BC2-8E6E566DE06B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "设å¤[machine]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "3B582AE0-9A60-4E52-9806-F8729ED5A4F0", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-30 14:07:20.736", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "877DBFF6-A63A-435A-99FC-DF54540387BA", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥è£
", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-30 14:07:20.736", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "0E53FBDB-01DB-4B18-9A2D-30C30AC2E6BF", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "equipment", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-30 14:07:20.736" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "10", |
| | | "leaf": true, |
| | | "oid": "3B582AE0-9A60-4E52-9806-F8729ED5A4F0", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥è£
[equipment]" |
| | | },], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "4", |
| | | "leaf": true, |
| | | "oid": "59F14C83-1345-4A7D-8225-0B09DE61400B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ææ¯æ»ç»[ææ¯æ»ç»]" |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "0C6A3624-4A90-45E1-BEB2-75384E542613", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 20:41:14.747", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "6053D009-934D-4528-A51D-69B63FC27BFF", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥èºææ¡£åº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 20:41:14.747", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "9D1B7934-3502-4DAF-9A1A-BE1B019DE8BC", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "documentlib", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 20:41:14.747" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "1ADD9030-2F3E-4363-84B9-31F08C5C12AB", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "5611E481-157B-4799-914F-5938A5BC1FA9", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:48:45.055", |
| | | "isfirstv": "1", |
| | | "folderoid": "712FF8AC-48CC-45DB-A79C-7F783B4AD8B1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "F5862E44-372B-4C46-96F6-AEFFE1B63B6D", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ææ¯æä»¶", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:48:45.055", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "34A45F92-2DC3-481C-82F2-B2F916CEDE2C", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "ææ¯æä»¶", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:48:45.055" |
| | | "checked": false, |
| | | "children": [ |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "8D2E9F26-06C9-454D-8F5E-D95FD9DEA867", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:16:58.87", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "D1A22FC3-039E-49D6-B391-465BE17B3D46", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å¸¸ç¨æ¯è¯", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 14:29:56.841", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "335A13B8-59F8-461D-A549-82543EF2B867", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "å¸¸ç¨æ¯è¯", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 14:29:56.841" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "2", |
| | | "leaf": true, |
| | | "oid": "8D2E9F26-06C9-454D-8F5E-D95FD9DEA867", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å¸¸ç¨æ¯è¯[å¸¸ç¨æ¯è¯]" |
| | | }], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "0", |
| | | "leaf": true, |
| | | "oid": "0C6A3624-4A90-45E1-BEB2-75384E542613", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥èºææ¡£åº[documentlib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:16:32.272", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "6A03D6E4-7028-4D38-8584-0424FC6C7D7F", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥èºç¥è¯åº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:16:32.272", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "957C8F17-D0C3-424E-B520-C9533E969440", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "knowledgelib", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:16:32.272" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "1", |
| | | "leaf": true, |
| | | "oid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥èºç¥è¯åº[knowledgelib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "1111222", |
| | | "oid": "C8072146-781B-41F1-81AF-48C493492D9B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:19:43.066", |
| | | "isfirstv": "1", |
| | | "folderoid": "0C6A3624-4A90-45E1-BEB2-75384E542613", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "E9B07546-E2B1-487F-AF5C-BA36E7D562D0", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥èºè¯´æä¹¦", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:19:43.066", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "8466E055-685A-4E50-979F-8BE474FDEDBB", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "å·¥èºè¯´æä¹¦", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:19:43.066" |
| | | }, |
| | | "checked": false, |
| | | "children": [ |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "222", |
| | | "oid": "59F14C83-1345-4A7D-8225-0B09DE61400B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:42:24.901", |
| | | "isfirstv": "1", |
| | | "folderoid": "0C6A3624-4A90-45E1-BEB2-75384E542613", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "AF87EA19-5651-4920-8D73-4015962C082C", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ææ¯æ»ç»", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:42:24.901", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "95AFAAD8-B9B5-44A2-BAE2-12FAB2643193", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "ææ¯æ»ç»", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:42:24.901" |
| | | }, |
| | | "checked": false, |
| | | "children": [ |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-09 13:53:26.939", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "69E38F00-01AE-4E2C-97DC-7C412C521959", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "èµæºåº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-09 13:53:26.939", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "60AD4F1B-D2E6-4C68-BC16-0F4052737D92", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "resourcelib", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-09 13:53:26.939" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "7", |
| | | "leaf": true, |
| | | "oid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "èµæºåº[resourcelib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "42B3DADB-5B19-478F-AE8F-C808151A9247", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-09 13:53:50.744", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "CA316DAC-65D0-4D37-ACCE-CD61ABB9C267", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥ä½åå
", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-09 13:53:50.744", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "8FFF9F4E-9567-4830-9C4B-D3E882DBFCE1", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "workunit", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-09 13:53:50.744" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "8", |
| | | "leaf": true, |
| | | "oid": "42B3DADB-5B19-478F-AE8F-C808151A9247", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥ä½åå
[workunit]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "411E568F-AE64-4C64-9BC2-8E6E566DE06B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-30 14:06:43.618", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "459996CD-C952-47C8-A2CC-8E8A42179364", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "设å¤", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-30 14:06:43.618", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "E7FA6D19-62BE-4ED4-9D37-4312F34C1B48", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "machine", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-30 14:06:43.618" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "9", |
| | | "leaf": true, |
| | | "oid": "411E568F-AE64-4C64-9BC2-8E6E566DE06B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "设å¤[machine]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "3B582AE0-9A60-4E52-9806-F8729ED5A4F0", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-30 14:07:20.736", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "877DBFF6-A63A-435A-99FC-DF54540387BA", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥è£
", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-30 14:07:20.736", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "0E53FBDB-01DB-4B18-9A2D-30C30AC2E6BF", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "equipment", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-30 14:07:20.736" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "10", |
| | | "leaf": true, |
| | | "oid": "3B582AE0-9A60-4E52-9806-F8729ED5A4F0", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥è£
[equipment]" |
| | | },], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "4", |
| | | "leaf": true, |
| | | "oid": "59F14C83-1345-4A7D-8225-0B09DE61400B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ææ¯æ»ç»[ææ¯æ»ç»]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "6", |
| | | "leaf": true, |
| | | "oid": "1ADD9030-2F3E-4363-84B9-31F08C5C12AB", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ææ¯æä»¶[ææ¯æä»¶]" |
| | | },], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "3", |
| | | "leaf": true, |
| | | "oid": "C8072146-781B-41F1-81AF-48C493492D9B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥èºè¯´æä¹¦[å·¥èºè¯´æä¹¦]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "1ADD9030-2F3E-4363-84B9-31F08C5C12AB", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "5611E481-157B-4799-914F-5938A5BC1FA9", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:48:45.055", |
| | | "isfirstv": "1", |
| | | "folderoid": "712FF8AC-48CC-45DB-A79C-7F783B4AD8B1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "F5862E44-372B-4C46-96F6-AEFFE1B63B6D", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ææ¯æä»¶", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:48:45.055", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "34A45F92-2DC3-481C-82F2-B2F916CEDE2C", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "ææ¯æä»¶", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:48:45.055" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "6", |
| | | "leaf": true, |
| | | "oid": "1ADD9030-2F3E-4363-84B9-31F08C5C12AB", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ææ¯æä»¶[ææ¯æä»¶]" |
| | | },], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "3", |
| | | "leaf": true, |
| | | "oid": "C8072146-781B-41F1-81AF-48C493492D9B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥èºè¯´æä¹¦[å·¥èºè¯´æä¹¦]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "712FF8AC-48CC-45DB-A79C-7F783B4AD8B1", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:48:25.242", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "61F5E6E8-3062-4FD8-9B35-0885E6A7ED21", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "HJSJ1155", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:48:25.242", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "CC3E9E86-FE2F-474F-94D3-DFB2ABF233DD", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "ææ¯æä»¶", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:48:25.242" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "5", |
| | | "leaf": true, |
| | | "oid": "712FF8AC-48CC-45DB-A79C-7F783B4AD8B1", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-13 22:48:25.242", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "61F5E6E8-3062-4FD8-9B35-0885E6A7ED21", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "HJSJ1155", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-13 22:48:25.242", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "CC3E9E86-FE2F-474F-94D3-DFB2ABF233DD", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "ææ¯æä»¶", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-13 22:48:25.242" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "HJSJ1155[ææ¯æä»¶]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "5", |
| | | "leaf": true, |
| | | "oid": "712FF8AC-48CC-45DB-A79C-7F783B4AD8B1", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "HJSJ1155[ææ¯æä»¶]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "CCE97F36-05A0-4419-BA6C-E766C8FB08EF", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-02 13:36:19.627", |
| | | "isfirstv": "1", |
| | | "folderoid": "CCCC5958-5BAA-49E3-AB76-AF728157C19C", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "4584960B-1EF3-44AA-BDE4-37628DB340CF", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "è¾
æ", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-02 13:36:19.627", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "B3716837-ADCC-4B58-88DF-20D19E8B0C99", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "AssMaterial", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-02 13:36:19.627" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "11", |
| | | "leaf": true, |
| | | "oid": "CCE97F36-05A0-4419-BA6C-E766C8FB08EF", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-02 13:36:19.627", |
| | | "isfirstv": "1", |
| | | "folderoid": "CCCC5958-5BAA-49E3-AB76-AF728157C19C", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "4584960B-1EF3-44AA-BDE4-37628DB340CF", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "è¾
æ", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-02 13:36:19.627", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "B3716837-ADCC-4B58-88DF-20D19E8B0C99", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "AssMaterial", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-02 13:36:19.627" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "è¾
æ[AssMaterial]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "11", |
| | | "leaf": true, |
| | | "oid": "CCE97F36-05A0-4419-BA6C-E766C8FB08EF", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "è¾
æ[AssMaterial]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "7C886BC5-79F9-489D-9CB6-31522D877CEA", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-02 13:36:27.366", |
| | | "isfirstv": "1", |
| | | "folderoid": "CCCC5958-5BAA-49E3-AB76-AF728157C19C", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "FA544E83-29C9-4456-9ECD-3658BB5D675F", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "主æ", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-02 13:36:27.366", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "3333EA57-5F17-40DA-9790-E1FD59ED8EB1", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "material", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-02 13:36:27.366" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "12", |
| | | "leaf": true, |
| | | "oid": "7C886BC5-79F9-489D-9CB6-31522D877CEA", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-02 13:36:27.366", |
| | | "isfirstv": "1", |
| | | "folderoid": "CCCC5958-5BAA-49E3-AB76-AF728157C19C", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "FA544E83-29C9-4456-9ECD-3658BB5D675F", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "主æ", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-02 13:36:27.366", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "3333EA57-5F17-40DA-9790-E1FD59ED8EB1", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "material", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-02 13:36:27.366" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "主æ[material]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "12", |
| | | "leaf": true, |
| | | "oid": "7C886BC5-79F9-489D-9CB6-31522D877CEA", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "主æ[material]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-02 13:45:44.686", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "C4122548-1612-47BE-B5A8-7C858DB2AA97", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "CAXAå·¥èºåº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-02 13:45:44.686", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "CFB4AD69-A78C-49F2-8BE8-32B2A8E62ADC", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "caxaprocesslib", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-02 13:45:44.686" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "13", |
| | | "leaf": true, |
| | | "oid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-02 13:45:44.686", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "C4122548-1612-47BE-B5A8-7C858DB2AA97", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "CAXAå·¥èºåº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-02 13:45:44.686", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "CFB4AD69-A78C-49F2-8BE8-32B2A8E62ADC", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "caxaprocesslib", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-02 13:45:44.686" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "CAXAå·¥èºåº[caxaprocesslib]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "13", |
| | | "leaf": true, |
| | | "oid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "CAXAå·¥èºåº[caxaprocesslib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "A2872581-8E91-4BB2-A8B5-6D421655377D", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-06-23 11:01:31.408", |
| | | "isfirstv": "1", |
| | | "folderoid": "DAA0F5E3-9F02-4A92-8551-8C97C6EBEAA0", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "2598EB13-B27C-4B8B-9C8A-301EAA2D3BF1", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "2022", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-06-23 11:01:31.408", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "2BDF5977-83A3-455B-A132-16694A6C5902", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "year", |
| | | "isfirstr": "1", |
| | | "ts": "2022-06-23 11:01:31.408" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "14", |
| | | "leaf": true, |
| | | "oid": "A2872581-8E91-4BB2-A8B5-6D421655377D", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-06-23 11:01:31.408", |
| | | "isfirstv": "1", |
| | | "folderoid": "DAA0F5E3-9F02-4A92-8551-8C97C6EBEAA0", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "2598EB13-B27C-4B8B-9C8A-301EAA2D3BF1", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "2022", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-06-23 11:01:31.408", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "2BDF5977-83A3-455B-A132-16694A6C5902", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "year", |
| | | "isfirstr": "1", |
| | | "ts": "2022-06-23 11:01:31.408" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "2022[year]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "14", |
| | | "leaf": true, |
| | | "oid": "A2872581-8E91-4BB2-A8B5-6D421655377D", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "2022[year]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "61E0061F-FFCE-4A33-B373-1A4B334FBF76", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-30 17:09:44.651", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "A9BC94BD-525D-42EF-9AEE-CB028BF01A8B", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å¡ç模æ¿", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-30 17:09:44.651", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "F9A89BE9-44E9-42AD-B682-46C7BE220024", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "cardtemplate", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-30 17:09:44.651" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "15", |
| | | "leaf": true, |
| | | "oid": "61E0061F-FFCE-4A33-B373-1A4B334FBF76", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2021-12-30 17:09:44.651", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "A9BC94BD-525D-42EF-9AEE-CB028BF01A8B", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å¡ç模æ¿", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2021-12-30 17:09:44.651", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "F9A89BE9-44E9-42AD-B682-46C7BE220024", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "cardtemplate", |
| | | "isfirstr": "1", |
| | | "ts": "2021-12-30 17:09:44.651" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å¡ç模æ¿[cardtemplate]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "15", |
| | | "leaf": true, |
| | | "oid": "61E0061F-FFCE-4A33-B373-1A4B334FBF76", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å¡ç模æ¿[cardtemplate]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "BC88822E-6A5A-402F-BFFF-9B7749D9B786", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "favorite", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-03-08 10:33:31.143", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "F4D86664-7F3B-4F89-B2B7-3A0D048C4CA2", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "æ¶è夹", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-03-08 10:33:31.143", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "BAFBAC43-E098-4E8A-8541-832AA1399A04", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "favorite", |
| | | "isfirstr": "1", |
| | | "ts": "2022-03-08 10:33:31.143" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "16", |
| | | "leaf": true, |
| | | "oid": "BC88822E-6A5A-402F-BFFF-9B7749D9B786", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "favorite", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-03-08 10:33:31.143", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "F4D86664-7F3B-4F89-B2B7-3A0D048C4CA2", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "æ¶è夹", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-03-08 10:33:31.143", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "BAFBAC43-E098-4E8A-8541-832AA1399A04", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "favorite", |
| | | "isfirstr": "1", |
| | | "ts": "2022-03-08 10:33:31.143" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "æ¶è夹[favorite]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "16", |
| | | "leaf": true, |
| | | "oid": "BC88822E-6A5A-402F-BFFF-9B7749D9B786", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "æ¶è夹[favorite]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "35E19F40-ADD7-4C80-8391-05ED0CB43C5E", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "favoriteimage", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-03-08 10:33:31.204", |
| | | "isfirstv": "1", |
| | | "folderoid": "BC88822E-6A5A-402F-BFFF-9B7749D9B786", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "10BBD523-4A84-4074-A76B-20E9DA38B1E6", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å¾", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-03-08 10:33:31.204", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "69D3C8CC-9105-4EDF-8840-62A13E8D7A0B", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "favorite", |
| | | "isfirstr": "1", |
| | | "ts": "2022-03-08 10:33:31.204" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "17", |
| | | "leaf": true, |
| | | "oid": "35E19F40-ADD7-4C80-8391-05ED0CB43C5E", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "favoriteimage", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-03-08 10:33:31.204", |
| | | "isfirstv": "1", |
| | | "folderoid": "BC88822E-6A5A-402F-BFFF-9B7749D9B786", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "10BBD523-4A84-4074-A76B-20E9DA38B1E6", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å¾", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-03-08 10:33:31.204", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "69D3C8CC-9105-4EDF-8840-62A13E8D7A0B", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "favorite", |
| | | "isfirstr": "1", |
| | | "ts": "2022-03-08 10:33:31.204" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å¾[favorite]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "17", |
| | | "leaf": true, |
| | | "oid": "35E19F40-ADD7-4C80-8391-05ED0CB43C5E", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å¾[favorite]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "E5A8F0AD-5B7B-4F95-80CE-9F9B7FFE0138", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-06-21 11:08:58.156", |
| | | "isfirstv": "1", |
| | | "folderoid": "A0162414-1D57-43CD-995E-D497638ABB37", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "B2940B6C-1806-47D8-9C72-B87508CD71D1", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "2022", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-06-21 11:08:58.156", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "D77C7397-E9CF-49E0-B944-594C5BFAFA16", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "year", |
| | | "isfirstr": "1", |
| | | "ts": "2022-06-21 11:08:58.156" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "18", |
| | | "leaf": true, |
| | | "oid": "E5A8F0AD-5B7B-4F95-80CE-9F9B7FFE0138", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-06-21 11:08:58.156", |
| | | "isfirstv": "1", |
| | | "folderoid": "A0162414-1D57-43CD-995E-D497638ABB37", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "B2940B6C-1806-47D8-9C72-B87508CD71D1", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "2022", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-06-21 11:08:58.156", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "D77C7397-E9CF-49E0-B944-594C5BFAFA16", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "year", |
| | | "isfirstr": "1", |
| | | "ts": "2022-06-21 11:08:58.156" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "2022[year]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "18", |
| | | "leaf": true, |
| | | "oid": "E5A8F0AD-5B7B-4F95-80CE-9F9B7FFE0138", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "2022[year]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "9A474856-C775-4819-9DDE-B54DCE496945", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-05 17:32:03.423", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "9A49A0C6-8B63-45DB-8CD2-DD963C9C6DC4", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥å
·", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-05 17:32:03.423", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "F791C662-0D37-4EC1-A0EE-E783BCB293CA", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "tool", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-05 17:32:03.423" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "19", |
| | | "leaf": true, |
| | | "oid": "9A474856-C775-4819-9DDE-B54DCE496945", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-05 17:32:03.423", |
| | | "isfirstv": "1", |
| | | "folderoid": "87A6D912-FDCA-496B-AA4E-FBDE9858853B", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "9A49A0C6-8B63-45DB-8CD2-DD963C9C6DC4", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "å·¥å
·", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-05 17:32:03.423", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "F791C662-0D37-4EC1-A0EE-E783BCB293CA", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "tool", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-05 17:32:03.423" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥å
·[tool]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "19", |
| | | "leaf": true, |
| | | "oid": "9A474856-C775-4819-9DDE-B54DCE496945", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "å·¥å
·[tool]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "4B47C04E-229F-4C7F-A4B3-CC9214231EF5", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-06 12:06:29.828", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "F6AC2A03-504D-4C78-8F48-21B151F8C074", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "常ç¨ç¼©ç¥è¯", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 14:29:09.804", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "3E1202E9-17C7-4968-BE75-BB4C20414F9F", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "常ç¨ç¼©ç¥è¯", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 14:29:09.804" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "20", |
| | | "leaf": true, |
| | | "oid": "4B47C04E-229F-4C7F-A4B3-CC9214231EF5", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-06 12:06:29.828", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "F6AC2A03-504D-4C78-8F48-21B151F8C074", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "常ç¨ç¼©ç¥è¯", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 14:29:09.804", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "3E1202E9-17C7-4968-BE75-BB4C20414F9F", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "常ç¨ç¼©ç¥è¯", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 14:29:09.804" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "常ç¨ç¼©ç¥è¯[常ç¨ç¼©ç¥è¯]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "20", |
| | | "leaf": true, |
| | | "oid": "4B47C04E-229F-4C7F-A4B3-CC9214231EF5", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "常ç¨ç¼©ç¥è¯[常ç¨ç¼©ç¥è¯]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "64DDC985-FD7D-44A0-A564-4CA52797218B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-06 12:06:39.949", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "A66CC240-3BA6-4774-B10D-EB186A95CA07", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "常ç¨å·¥èºæ å", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 15:27:59.253", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "5E947EDA-1922-42F2-97D8-CA536A4043FE", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "常ç¨å·¥èºæ å", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 15:27:59.253" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "21", |
| | | "leaf": true, |
| | | "oid": "64DDC985-FD7D-44A0-A564-4CA52797218B", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-06 12:06:39.949", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "A66CC240-3BA6-4774-B10D-EB186A95CA07", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "常ç¨å·¥èºæ å", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 15:27:59.253", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "5E947EDA-1922-42F2-97D8-CA536A4043FE", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "常ç¨å·¥èºæ å", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 15:27:59.253" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "常ç¨å·¥èºæ å[常ç¨å·¥èºæ å]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "21", |
| | | "leaf": true, |
| | | "oid": "64DDC985-FD7D-44A0-A564-4CA52797218B", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "常ç¨å·¥èºæ å[常ç¨å·¥èºæ å]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "44B91E7B-E8B5-4790-B4E5-2897C75B7E6E", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-06 14:29:39.124", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "04A16265-5504-4D7C-B947-6A12079E23F2", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "常ç¨å·¥åº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 14:29:39.124", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "D6FAEABF-E842-43AE-B12F-9FC4CE8B863D", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "å·¥åºåç§°", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 14:29:39.124" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "22", |
| | | "leaf": true, |
| | | "oid": "44B91E7B-E8B5-4790-B4E5-2897C75B7E6E", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-06 14:29:39.124", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "04A16265-5504-4D7C-B947-6A12079E23F2", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "常ç¨å·¥åº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 14:29:39.124", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "D6FAEABF-E842-43AE-B12F-9FC4CE8B863D", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "å·¥åºåç§°", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 14:29:39.124" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "常ç¨å·¥åº[å·¥åºåç§°]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "22", |
| | | "leaf": true, |
| | | "oid": "44B91E7B-E8B5-4790-B4E5-2897C75B7E6E", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "常ç¨å·¥åº[å·¥åºåç§°]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "08143E46-E7F3-4F6C-950C-989749FEBCE5", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-06 14:32:48.245", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "661ADE9B-D453-403B-B858-937DF8401038", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "常ç¨ç¬¦å·", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 14:32:48.245", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "8E055006-B25A-48D8-9CE8-C7A3FE41EC83", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "常ç¨ç¬¦å·", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 14:32:48.245" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "23", |
| | | "leaf": true, |
| | | "oid": "08143E46-E7F3-4F6C-950C-989749FEBCE5", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-06 14:32:48.245", |
| | | "isfirstv": "1", |
| | | "folderoid": "CFA35842-29E6-45D0-99B2-C7F19561E2F1", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "661ADE9B-D453-403B-B858-937DF8401038", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "常ç¨ç¬¦å·", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-06 14:32:48.245", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "8E055006-B25A-48D8-9CE8-C7A3FE41EC83", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "常ç¨ç¬¦å·", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-06 14:32:48.245" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "常ç¨ç¬¦å·[常ç¨ç¬¦å·]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "23", |
| | | "leaf": true, |
| | | "oid": "08143E46-E7F3-4F6C-950C-989749FEBCE5", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "常ç¨ç¬¦å·[常ç¨ç¬¦å·]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "8042DD6F-2CB9-41E7-AD9F-E5106B55DFEE", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-02-08 15:13:31.721", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "B777905C-97D4-4C74-9EF9-1CDD488C897B", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "é¨é¨åç±»", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-02-08 15:13:31.721", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "E6202A1A-82C2-4D88-8B70-D05D0DF799C6", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "departmentlib", |
| | | "isfirstr": "1", |
| | | "ts": "2022-02-08 15:13:31.721" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "24", |
| | | "leaf": true, |
| | | "oid": "8042DD6F-2CB9-41E7-AD9F-E5106B55DFEE", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-02-08 15:13:31.721", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "B777905C-97D4-4C74-9EF9-1CDD488C897B", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "é¨é¨åç±»", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-02-08 15:13:31.721", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "E6202A1A-82C2-4D88-8B70-D05D0DF799C6", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "departmentlib", |
| | | "isfirstr": "1", |
| | | "ts": "2022-02-08 15:13:31.721" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "é¨é¨åç±»[departmentlib]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "24", |
| | | "leaf": true, |
| | | "oid": "8042DD6F-2CB9-41E7-AD9F-E5106B55DFEE", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "é¨é¨åç±»[departmentlib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "F2833B29-EF5D-4D20-9CFB-7E6B6CDCB673", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-02-08 15:14:23.888", |
| | | "isfirstv": "1", |
| | | "folderoid": "7170DFF8-C1DE-04A8-46F0-BC4379980BC7", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "DB17F69D-11C4-48EA-8417-95602EE3EFA0", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ä¸è½¦é´", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-02-08 15:14:23.888", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "3512BA1D-F688-443E-B55E-AF6699618B63", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "é¨é¨åç±»", |
| | | "isfirstr": "1", |
| | | "ts": "2022-02-08 15:14:23.888" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "25", |
| | | "leaf": true, |
| | | "oid": "F2833B29-EF5D-4D20-9CFB-7E6B6CDCB673", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-02-08 15:14:23.888", |
| | | "isfirstv": "1", |
| | | "folderoid": "7170DFF8-C1DE-04A8-46F0-BC4379980BC7", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "DB17F69D-11C4-48EA-8417-95602EE3EFA0", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ä¸è½¦é´", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-02-08 15:14:23.888", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "3512BA1D-F688-443E-B55E-AF6699618B63", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "é¨é¨åç±»", |
| | | "isfirstr": "1", |
| | | "ts": "2022-02-08 15:14:23.888" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ä¸è½¦é´[é¨é¨åç±»]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "25", |
| | | "leaf": true, |
| | | "oid": "F2833B29-EF5D-4D20-9CFB-7E6B6CDCB673", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ä¸è½¦é´[é¨é¨åç±»]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "6515E8BF-B47B-47CA-8826-E2DD770D90B7", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-02-08 15:16:11.632", |
| | | "isfirstv": "1", |
| | | "folderoid": "7170DFF8-C1DE-04A8-46F0-BC4379980BC7", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "A0C294B4-42BF-4498-B172-345377F78D15", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "2022", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-02-08 15:16:11.632", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "D086B051-8F7E-40D9-925C-37DE39C2B9E0", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "é¨é¨åç±»", |
| | | "isfirstr": "1", |
| | | "ts": "2022-02-08 15:16:11.632" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "26", |
| | | "leaf": true, |
| | | "oid": "6515E8BF-B47B-47CA-8826-E2DD770D90B7", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-02-08 15:16:11.632", |
| | | "isfirstv": "1", |
| | | "folderoid": "7170DFF8-C1DE-04A8-46F0-BC4379980BC7", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "A0C294B4-42BF-4498-B172-345377F78D15", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "2022", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-02-08 15:16:11.632", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "D086B051-8F7E-40D9-925C-37DE39C2B9E0", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "é¨é¨åç±»", |
| | | "isfirstr": "1", |
| | | "ts": "2022-02-08 15:16:11.632" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "2022[é¨é¨åç±»]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "26", |
| | | "leaf": true, |
| | | "oid": "6515E8BF-B47B-47CA-8826-E2DD770D90B7", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "2022[é¨é¨åç±»]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "CCCC5958-5BAA-49E3-AB76-AF728157C19C", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-05 10:11:51.622", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "BE298E2C-DE36-40B8-8DA9-8523C3858745", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ææåº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-05 10:11:51.622", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "2DE9AADC-BACF-4ABE-B2D5-BBE6D85D2246", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "materiallib", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-05 10:11:51.622" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "27", |
| | | "leaf": true, |
| | | "oid": "CCCC5958-5BAA-49E3-AB76-AF728157C19C", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-01-05 10:11:51.622", |
| | | "isfirstv": "1", |
| | | "folderoid": "", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "BE298E2C-DE36-40B8-8DA9-8523C3858745", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ææåº", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-01-05 10:11:51.622", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "2DE9AADC-BACF-4ABE-B2D5-BBE6D85D2246", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "materiallib", |
| | | "isfirstr": "1", |
| | | "ts": "2022-01-05 10:11:51.622" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ææåº[materiallib]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "27", |
| | | "leaf": true, |
| | | "oid": "CCCC5958-5BAA-49E3-AB76-AF728157C19C", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ææåº[materiallib]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "658EA343-AC20-4AE3-B845-2A2610D3C267", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-12 10:19:29.043", |
| | | "isfirstv": "1", |
| | | "folderoid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "586316B0-E80F-456C-BA9A-B90379898F44", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "æºå ", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-12 10:19:29.043", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "96CC24F4-6F24-4F1C-A690-F50425942020", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "specialty", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-12 10:19:29.043" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "28", |
| | | "leaf": true, |
| | | "oid": "658EA343-AC20-4AE3-B845-2A2610D3C267", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-12 10:19:29.043", |
| | | "isfirstv": "1", |
| | | "folderoid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "586316B0-E80F-456C-BA9A-B90379898F44", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "æºå ", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-12 10:19:29.043", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "96CC24F4-6F24-4F1C-A690-F50425942020", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "specialty", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-12 10:19:29.043" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "æºå [specialty]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "28", |
| | | "leaf": true, |
| | | "oid": "658EA343-AC20-4AE3-B845-2A2610D3C267", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "æºå [specialty]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "DAA0F5E3-9F02-4A92-8551-8C97C6EBEAA0", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-12 10:19:57.716", |
| | | "isfirstv": "1", |
| | | "folderoid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "FDD1952A-8D0F-4653-BD4D-D62224ED35C7", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "çµè£
", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-12 10:19:57.716", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "AAC2E304-1342-4308-BCF8-CA51D6D5ED44", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "specialty", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-12 10:19:57.716" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "29", |
| | | "leaf": true, |
| | | "oid": "DAA0F5E3-9F02-4A92-8551-8C97C6EBEAA0", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-12 10:19:57.716", |
| | | "isfirstv": "1", |
| | | "folderoid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "FDD1952A-8D0F-4653-BD4D-D62224ED35C7", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "çµè£
", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-12 10:19:57.716", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "AAC2E304-1342-4308-BCF8-CA51D6D5ED44", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "specialty", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-12 10:19:57.716" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "çµè£
[specialty]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "29", |
| | | "leaf": true, |
| | | "oid": "DAA0F5E3-9F02-4A92-8551-8C97C6EBEAA0", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "çµè£
[specialty]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "A0162414-1D57-43CD-995E-D497638ABB37", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-12 10:19:47.716", |
| | | "isfirstv": "1", |
| | | "folderoid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "EDD708C6-29CC-4187-8988-A7DF33ABBB06", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ä¸è½¦é´ï¼æºè£
ï¼", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-12 10:19:47.716", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "66654D96-EF40-4D27-92D6-B4AE5BA5ED02", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "specialty", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-12 10:19:47.716" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "30", |
| | | "leaf": true, |
| | | "oid": "A0162414-1D57-43CD-995E-D497638ABB37", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-12 10:19:47.716", |
| | | "isfirstv": "1", |
| | | "folderoid": "A10C10B6-9C85-4B03-AE65-EFBE4D3433A0", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "EDD708C6-29CC-4187-8988-A7DF33ABBB06", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "ä¸è½¦é´ï¼æºè£
ï¼", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-12 10:19:47.716", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "66654D96-EF40-4D27-92D6-B4AE5BA5ED02", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "specialty", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-12 10:19:47.716" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ä¸è½¦é´ï¼æºè£
ï¼[specialty]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "30", |
| | | "leaf": true, |
| | | "oid": "A0162414-1D57-43CD-995E-D497638ABB37", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "ä¸è½¦é´ï¼æºè£
ï¼[specialty]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "C96EFAED-BC72-4248-B336-8D7B65132A3E", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-12 10:20:20.274", |
| | | "isfirstv": "1", |
| | | "folderoid": "658EA343-AC20-4AE3-B845-2A2610D3C267", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "6C808AB8-609D-4B73-94D2-C73D8B680333", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "2022", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-12 10:20:20.274", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "5D01F523-7EE1-4876-AFB0-167FC9CE6265", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "year", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-12 10:20:20.274" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "31", |
| | | "leaf": true, |
| | | "oid": "C96EFAED-BC72-4248-B336-8D7B65132A3E", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-04-12 10:20:20.274", |
| | | "isfirstv": "1", |
| | | "folderoid": "658EA343-AC20-4AE3-B845-2A2610D3C267", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "6C808AB8-609D-4B73-94D2-C73D8B680333", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "1", |
| | | "versionrule": "0", |
| | | "name": "2022", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-04-12 10:20:20.274", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "5D01F523-7EE1-4876-AFB0-167FC9CE6265", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "year", |
| | | "isfirstr": "1", |
| | | "ts": "2022-04-12 10:20:20.274" |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "2022[year]" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "31", |
| | | "leaf": true, |
| | | "oid": "C96EFAED-BC72-4248-B336-8D7B65132A3E", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "2022[year]" |
| | | }, |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | { |
| | | "attributes": { |
| | | "lastmodifier": "1", |
| | | "revisionseq": "1", |
| | | "versionvalue": "", |
| | | "querycondition": "", |
| | | "description": "", |
| | | "oid": "F0B31119-0DC3-460A-9A47-A518993959BE", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "favoritetable", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-05-12 09:58:34.075", |
| | | "isfirstv": "1", |
| | | "folderoid": "BC88822E-6A5A-402F-BFFF-9B7749D9B786", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "4C155EDE-9C04-468A-B7E1-E140B0DCD89E", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "2", |
| | | "versionrule": "0", |
| | | "name": "表", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-05-12 09:58:34.075", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "736A53AA-9F32-4A2F-896B-FD35F094EF52", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "favorite", |
| | | "isfirstr": "1", |
| | | "ts": "2022-05-12 09:58:34.075" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "32", |
| | | "leaf": true, |
| | | "oid": "F0B31119-0DC3-460A-9A47-A518993959BE", |
| | | "versionseq": "1", |
| | | "checkinby": "", |
| | | "revisionrule": "", |
| | | "lctid": "ObjectLC", |
| | | "lcstatus_text": "ç¼è¾ä¸", |
| | | "id": "favoritetable", |
| | | "owner": "1", |
| | | "checkoutby": "", |
| | | "workcontextoid": "", |
| | | "creator": "1", |
| | | "createtime": "2022-05-12 09:58:34.075", |
| | | "isfirstv": "1", |
| | | "folderoid": "BC88822E-6A5A-402F-BFFF-9B7749D9B786", |
| | | "lastmodifier_name": "æµè¯", |
| | | "revisionoid": "4C155EDE-9C04-468A-B7E1-E140B0DCD89E", |
| | | "btmname": "folder", |
| | | "checkouttime": "", |
| | | "revisionvalue": "-", |
| | | "sequence": "2", |
| | | "versionrule": "0", |
| | | "name": "表", |
| | | "islastr": "1", |
| | | "lastmodifytime": "2022-05-12 09:58:34.075", |
| | | "copyfromversion": "", |
| | | "creator_name": "æµè¯", |
| | | "nameoid": "736A53AA-9F32-4A2F-896B-FD35F094EF52", |
| | | "lcstatus": "Editing", |
| | | "secretgrade": "2", |
| | | "islastv": "1", |
| | | "checkintime": "", |
| | | "folderbusinesstype": "favorite", |
| | | "isfirstr": "1", |
| | | "ts": "2022-05-12 09:58:34.075" |
| | | }, |
| | | "checked": false, |
| | | "children": [], |
| | | "expanded": false, |
| | | "href": null, |
| | | "icon": null, |
| | | "iconCls": null, |
| | | "index": "32", |
| | | "leaf": true, |
| | | "oid": "F0B31119-0DC3-460A-9A47-A518993959BE", |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "表[favorite]" |
| | | } |
| | | ]; |
| | | "parentBtmName": null, |
| | | "parentId": "", |
| | | "parentName": null, |
| | | "showCheckbox": false, |
| | | "text": "表[favorite]" |
| | | } |
| | | ]; |
| | | }, |
| | | loadNode(node, resolve) { |
| | | //é级å è½½ |
| | |
| | | this.checkDatas=[data]; |
| | | } |
| | | }, |
| | | handleRefresh(){ |
| | | this.initData(); |
| | | } |
| | | }, |
| | | } |
| | | </script> |
| | |
| | | <script> |
| | | import {verifyNull} from "@/util/validate"; |
| | | import UIContentArea from "@/views/base/UIContentArea" |
| | | import {getUIContent} from '@/api/base/region' |
| | | import {getUIContext} from '@/api/base/region' |
| | | |
| | | export default { |
| | | name: "UIContentViewer", |
| | |
| | | data() { |
| | | return { |
| | | btmType: '',//ä¸å¡ç±»åï¼æé¾æ¥ç±»åï¼ |
| | | content: '',//UIä¸ä¸æçåç§° |
| | | context: '',//UIä¸ä¸æçåç§° |
| | | checkedData: { |
| | | //ååºåé䏿°æ® |
| | | northArea: [{}], |
| | |
| | | } |
| | | }, |
| | | computed: { |
| | | typeAContent(){ |
| | | return this.btmType+this.content; |
| | | typeAndContext(){ |
| | | return this.btmType+this.context; |
| | | } |
| | | }, |
| | | created() { |
| | |
| | | methods: { |
| | | getTheParameters(){ |
| | | this.btmType = this.$route.query.type; |
| | | this.content = this.$route.query.context || this.$route.query.content; |
| | | this.context = this.$route.query.context || this.$route.query.content; |
| | | this.sourceData = this.$route.query; |
| | | }, |
| | | initUI() { |
| | | getUIContent({btmType: this.btmType, id: this.content}).then(res => { |
| | | getUIContext({btmType: this.btmType, id: this.context}).then(res => { |
| | | this.uiDefineVO = res.data.obj; |
| | | this.initContent(); |
| | | this.initContext(); |
| | | }) |
| | | }, |
| | | initContent() { |
| | | initContext() { |
| | | if (this.uiDefineVO.southAreas && this.uiDefineVO.southAreas.length > 0) { |
| | | this.centerHeight = '65%'; |
| | | } else { |
| | |
| | | <template> |
| | | <!--UIä¸ä¸æçå±ç¤ºå¨--> |
| | | <div style="height:calc(100% - 4px);min-width:1200px"> |
| | | <div style="height:calc(100% - 4px);min-width:1200px" > |
| | | <el-header v-if="uiDefineVO.northAreas && uiDefineVO.northAreas.length>0"> |
| | | <UIContentArea :key="'northArea-'+uiDefineVO.oid" areas-name="northAreaInDialog" |
| | | :areasData="uiDefineVO.northAreas" |
| | | <UIContentArea :key="'northArea-'+uiDefineVO.oid" :areasData="uiDefineVO.northAreas" |
| | | :dataStore="checkedData.northArea" |
| | | :inDialog="inDialog" |
| | | :sourceData="sourceData" |
| | | :dataStore="checkedData.northAreaInDialog" |
| | | :paramVOS="paramVOS" |
| | | areas-name="northArea" |
| | | @setDataStore="setDataStore"> |
| | | </UIContentArea> |
| | | </el-header> |
| | | <el-container :style="'height: '+(uiDefineVO.northAreas && uiDefineVO.northAreas.length>0?'calc(100% - 70px)':'100%')"> |
| | | <el-aside v-if="uiDefineVO.westAreas && uiDefineVO.westAreas.length>0" :width="uiDefineVO.westAreas[0].componentVOs[0].uiComponentType=='table' || uiDefineVO.westAreas[0].componentVOs[0].uiComponentType=='TreeTable'?'420px':'320px'" height="100%"> |
| | | <UIContentArea :key="'westArea-'+uiDefineVO.oid" areas-name="westAreaInDialog" |
| | | cradStyle="" |
| | | :areasData="uiDefineVO.westAreas" |
| | | <el-container |
| | | :style="'height: '+(uiDefineVO.northAreas && uiDefineVO.northAreas.length>0?'calc(100% - 70px)':'100%')"> |
| | | <el-aside v-if="uiDefineVO.westAreas && uiDefineVO.westAreas.length>0" |
| | | :width="uiDefineVO.westAreas[0].componentVOs[0].uiComponentType=='table' || uiDefineVO.westAreas[0].componentVOs[0].uiComponentType=='TreeTable'?'420px':'320px'" |
| | | height="100%"> |
| | | <UIContentArea :key="'westArea-'+uiDefineVO.oid" :areasData="uiDefineVO.westAreas" |
| | | :dataStore="checkedData.westArea" |
| | | :inDialog="inDialog" |
| | | :sourceData="sourceData" |
| | | :dataStore="checkedData.westAreaInDialog" |
| | | :paramVOS="paramVOS" |
| | | areas-name="westArea" |
| | | cradStyle="" |
| | | @setDataStore="setDataStore"> |
| | | </UIContentArea> |
| | | </el-aside> |
| | | <el-container style="height: 100%;display: block"> |
| | | <el-main v-if="uiDefineVO.centerAreas && uiDefineVO.centerAreas.length>0" :style="'min-height: 260px;height: '+centerHeight"> |
| | | <UIContentArea :key="'centerArea-'+uiDefineVO.oid" areas-name="centerAreaInDialog" |
| | | cradStyle="" |
| | | :areasData="uiDefineVO.centerAreas" |
| | | <el-main v-if="uiDefineVO.centerAreas && uiDefineVO.centerAreas.length>0" :style="'min-height: 300px;height: '+centerHeight"> |
| | | <UIContentArea :key="'centerArea-'+uiDefineVO.oid" :areasData="uiDefineVO.centerAreas" |
| | | :dataStore="checkedData.centerArea" |
| | | :inDialog="inDialog" |
| | | :sourceData="checkedData.westAreaInDialog[checkedData.westAreaInDialog.length-1]" |
| | | :dataStore="checkedData.centerAreaInDialog" |
| | | :paramVOS="paramVOS" |
| | | :sourceData="checkedData.westArea[checkedData.westArea.length-1]" |
| | | areas-name="centerArea" |
| | | cradStyle="" |
| | | @setDataStore="setDataStore"> |
| | | </UIContentArea> |
| | | </el-main> |
| | | <el-footer v-if="uiDefineVO.southAreas && uiDefineVO.southAreas.length>0" height="35%" style="min-height: 150px;"> |
| | | <UIContentArea :key="'southArea-'+uiDefineVO.oid" areas-name="southAreaInDialog" |
| | | cradStyle="" |
| | | :areasData="uiDefineVO.southAreas" |
| | | <el-footer v-if="uiDefineVO.southAreas && uiDefineVO.southAreas.length>0" height="35%" |
| | | style="min-height: 150px;"> |
| | | <UIContentArea :key="'southArea-'+uiDefineVO.oid" :areasData="uiDefineVO.southAreas" |
| | | :dataStore="checkedData.southArea" |
| | | :inDialog="inDialog" |
| | | :sourceData="checkedData.centerAreaInDialog[checkedData.centerAreaInDialog.length-1]" |
| | | :dataStore="checkedData.southAreaInDialog" |
| | | :paramVOS="paramVOS" |
| | | :sourceData="checkedData.centerArea[checkedData.centerArea.length-1]" |
| | | areas-name="southArea" |
| | | cradStyle="" |
| | | @setDataStore="setDataStore"> |
| | | </UIContentArea> |
| | | </el-footer> |
| | |
| | | <script> |
| | | import UIContentArea from "@/views/base/UIContentArea" |
| | | import {verifyNull} from "@/util/validate"; |
| | | import {getUIContent} from '@/api/base/region' |
| | | import {getUIContext} from '@/api/base/region' |
| | | |
| | | export default { |
| | | name: "UIContentViewerInDialog", |
| | |
| | | btmType:{ |
| | | type: String, |
| | | }, |
| | | content:{ |
| | | context:{ |
| | | type: String, |
| | | }, |
| | | inDialog: { |
| | |
| | | } |
| | | }, |
| | | watch: { |
| | | typeAContent:{ |
| | | typeAndContext:{ |
| | | handler(newV,oldV){ |
| | | if(oldV!=newV && !verifyNull(newV)){ |
| | | this.initUI(); |
| | |
| | | } |
| | | }, |
| | | computed: { |
| | | typeAContent(){ |
| | | return this.btmType+this.content; |
| | | typeAndContext(){ |
| | | return this.btmType+this.context; |
| | | } |
| | | }, |
| | | created() { |
| | | if (verifyNull(this.btmType) || verifyNull(this.content) ) { |
| | | if (verifyNull(this.btmType) || verifyNull(this.context) ) { |
| | | this.$message.error("èªå®ä¹ç»ä»¶é
ç½®çä¿¡æ¯é误ï¼è¯·åèâ?type=xxx&context=yyy¶m=zzzâè¿ç§å½¢å¼ãå
¶ä¸typeæ¯ä¸å¡ç±»åï¼æé¾æ¥ç±»åï¼ï¼contextæ¯UIä¸ä¸æçåç§°"); |
| | | return false; |
| | | } |
| | | }, |
| | | methods: { |
| | | initUI() { |
| | | getUIContent({btmType: this.btmType, id: this.content}).then(res => { |
| | | getUIContext({btmType: this.btmType, id: this.context}).then(res => { |
| | | this.uiDefineVO = res.data.obj; |
| | | this.initContent(); |
| | | this.initContext(); |
| | | }) |
| | | }, |
| | | initContent() { |
| | | initContext() { |
| | | if (this.uiDefineVO.southAreas && this.uiDefineVO.southAreas.length > 0) { |
| | | this.centerHeight = '65%'; |
| | | } else { |