From 52e123212f37e214ee4599649adbd743e0d86c2b Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期一, 15 四月 2024 10:32:55 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
Source/ProjectWeb/src/actions/base/BaseAction.js | 44
Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue | 70
Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue | 2
Source/ProjectWeb/src/components/dynamic-components/dynamic-table.vue | 7
Source/ProjectWeb/src/components/dynamic-components/dynamic-tree.vue | 3678 ++++++++++++++++++++++++++--------------------------
Source/ProjectWeb/src/actions/base/DeleteAction.js | 68
Source/ProjectWeb/src/actions/base/AddAction.js | 25
Source/ProjectWeb/src/components/dynamic-components/dynamic-button.vue | 100 +
Source/ProjectWeb/src/components/dynamic-components/dynamic-custom.vue | 6
Source/ProjectWeb/src/api/base/region.js | 3
Source/ProjectWeb/src/components/dynamic-components/dynamic-TreeTable.vue | 7
Source/ProjectWeb/src/views/base/UIContentViewer.vue | 16
Source/ProjectWeb/src/actions/base/EditAction.js | 73 +
13 files changed, 2,177 insertions(+), 1,922 deletions(-)
diff --git a/Source/ProjectWeb/src/actions/base/AddAction.js b/Source/ProjectWeb/src/actions/base/AddAction.js
index fc16632..f3e45b6 100644
--- a/Source/ProjectWeb/src/actions/base/AddAction.js
+++ b/Source/ProjectWeb/src/actions/base/AddAction.js
@@ -1,20 +1,24 @@
/**
* 鎸夐挳澶勭悊 涓氬姟绫诲瀷鏂板
*/
-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);
});
});
};
@@ -25,7 +29,12 @@
* @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);
}
@@ -36,7 +45,7 @@
* @param callback 鍥炶皟
*/
export const doBefore = (options,callback)=> {
- this.$message.success('鎵ц鍓嶇疆浜嬩欢');
+ Vue.prototype.$message.success('鎵ц澧炲姞鍓嶇疆浜嬩欢');
if(callback){
callback(options);
}
@@ -47,7 +56,7 @@
* @param callback 鍥炶皟
*/
export const doAfter = (options,callback)=> {
- this.$message.success('鎵ц鍚庣疆浜嬩欢');
+ Vue.prototype.$message.success('鎵ц澧炲姞鍚庣疆浜嬩欢');
if(callback){
callback(options);
}
diff --git a/Source/ProjectWeb/src/actions/base/BaseAction.js b/Source/ProjectWeb/src/actions/base/BaseAction.js
index e2583fe..0e9b377 100644
--- a/Source/ProjectWeb/src/actions/base/BaseAction.js
+++ b/Source/ProjectWeb/src/actions/base/BaseAction.js
@@ -1,4 +1,5 @@
import {validatenull} from "@/util/validate";
+import Vue from 'vue';
/**
* 鎸夐挳鐨勫熀纭�鏈嶅姟
@@ -8,24 +9,39 @@
* action閫氱敤鍏ュ彛
*/
export const doAction = (button,options) => {
- debugger;
+ options.paramVOS['title']=replaceFreeMarker(options.paramVOS.title,options.dataStore,options.sourceData);
+
if(button.url && button.url!='null'){
+ //鏈夐厤缃產ction璺緞锛屼娇鐢ㄨ矾寰勫搴旂殑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(handlers[button.actionVO.id]){
- handlers[button.actionVO.id]()
+ if(validatenull(options.paramVOS.context)) {
+ options.paramVOS.context = options.paramVOS.content;
+ }
+ if(handlers[button.actionVO.id.toLowerCase()]){
+ handlers[button.actionVO.id.toLowerCase()]()
}else{
- this.$message.error('鏈壘鍒板搴攁ction锛岃閲嶆柊閰嶇疆鎸夐挳锛�');
+ Vue.prototype.$message.error('鏈壘鍒板搴攁ction锛岃閲嶆柊閰嶇疆鎸夐挳锛�');
}
}
@@ -102,9 +118,7 @@
* @param preEventName 鍓嶇疆浜嬩欢鍚嶇О锛岄粯璁eforeevent
*/
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)){
@@ -115,7 +129,7 @@
module[buttonParse.methodName](options,callback);
})
} catch (error) {
- this.$message.error('鏈壘鍒板墠缃簨浠舵墽琛宩s');
+ Vue.prototype.$message.error('鏈壘鍒板墠缃簨浠舵墽琛宩s');
}
}
}else{
@@ -132,9 +146,7 @@
* @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)){
@@ -145,7 +157,7 @@
module[buttonParse.methodName](options,callback);
})
} catch (error) {
- this.$message.error('鏈壘鍒板悗缃簨浠舵墽琛宩s');
+ Vue.prototype.$message.error('鏈壘鍒板悗缃簨浠舵墽琛宩s');
}
}
}else{
@@ -182,7 +194,7 @@
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];
diff --git a/Source/ProjectWeb/src/actions/base/DeleteAction.js b/Source/ProjectWeb/src/actions/base/DeleteAction.js
new file mode 100644
index 0000000..5b13a26
--- /dev/null
+++ b/Source/ProjectWeb/src/actions/base/DeleteAction.js
@@ -0,0 +1,68 @@
+/**
+ * 鎸夐挳澶勭悊 涓氬姟绫诲瀷鍒犻櫎
+ */
+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);
+ }
+}
diff --git a/Source/ProjectWeb/src/actions/base/EditAction.js b/Source/ProjectWeb/src/actions/base/EditAction.js
new file mode 100644
index 0000000..032d045
--- /dev/null
+++ b/Source/ProjectWeb/src/actions/base/EditAction.js
@@ -0,0 +1,73 @@
+/**
+ * 鎸夐挳澶勭悊 涓氬姟绫诲瀷淇敼
+ */
+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);
+ }
+}
diff --git a/Source/ProjectWeb/src/api/base/region.js b/Source/ProjectWeb/src/api/base/region.js
index 9651b04..8df5a81 100644
--- a/Source/ProjectWeb/src/api/base/region.js
+++ b/Source/ProjectWeb/src/api/base/region.js
@@ -51,7 +51,8 @@
})
}
-export const getUIContent = (query) => {
+//鑾峰彇UI涓婁笅鏂囧畾涔夊唴瀹�
+export const getUIContext = (query) => {
return request({
url: '/api/webUIController/getUIContentByBtmTypeAndId',
method: 'get',
diff --git a/Source/ProjectWeb/src/components/dynamic-components/dynamic-TreeTable.vue b/Source/ProjectWeb/src/components/dynamic-components/dynamic-TreeTable.vue
index 72354eb..6f6efc4 100644
--- a/Source/ProjectWeb/src/components/dynamic-components/dynamic-TreeTable.vue
+++ b/Source/ProjectWeb/src/components/dynamic-components/dynamic-TreeTable.vue
@@ -13,13 +13,13 @@
</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>
@@ -400,6 +400,9 @@
dataStore:row
});
},
+ handleRefresh(){
+ this.$refs.treeTable.refreshTable();
+ }
}
}
</script>
diff --git a/Source/ProjectWeb/src/components/dynamic-components/dynamic-button.vue b/Source/ProjectWeb/src/components/dynamic-components/dynamic-button.vue
index 7b8dee8..afeee51 100644
--- a/Source/ProjectWeb/src/components/dynamic-components/dynamic-button.vue
+++ b/Source/ProjectWeb/src/components/dynamic-components/dynamic-button.vue
@@ -57,10 +57,15 @@
import func from "@/util/func";
import {validatenull} from "@/util/validate";
import {doAction} from '@/actions/base/BaseAction';
+import Vue from "vue";
export default {
name: "dynamic-button",
props: {
+ componentVO: {
+ type: Object,
+ default: {}
+ },
type: {
type: String
},
@@ -73,13 +78,19 @@
butttonList: {
type: Array
},
- selectList: {
+ default:{
+ type:String,
+ },
+ sourceData: {
+ //鎸夐挳鎵�灞炲尯鍩熺殑涓婁竴鍖哄煙閫変腑鏁版嵁
+ type: Object,
+ default: {}
+ },
+ dataStore: {
+ //鎸夐挳鎵�灞炲尯鍩熼�変腑鏁版嵁
type: Array,
default: []
},
- default:{
- type:String,
- }
},
data() {
return {
@@ -273,18 +284,87 @@
},
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;
+ }
+ for(let item in paramVOS) {
+ if (item.includes('.${') && item.includes('}')) {
+ //鏇挎崲鎴愭簮鏁版嵁涓殑鍊�
+ if (Object.keys(this.sourceData).length === 0) {
+ this.$message.error("璇峰厛閫夋嫨涓�鏉℃潵婧愭暟鎹�");
+ return false;
+ }
+ item=item.replace(/:/g,'=');
+ let values = item.split(';');
+ let initValues = []
+ } else if (item.includes('${') && item.includes('}')) {
+ //鏇挎崲鎴愰�変腑鏁版嵁鐨勫��
+ if (this.dataStore.length < 1) {
+ this.$message.error("璇峰厛閫夋嫨涓�鏉℃暟鎹�");
+ return false;
+ }
+ item=item.replace(/:/g,'=');
+ }
+ }
+ /*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()
+ }
}
});
}
diff --git a/Source/ProjectWeb/src/components/dynamic-components/dynamic-custom.vue b/Source/ProjectWeb/src/components/dynamic-components/dynamic-custom.vue
index 9a1a0cf..522c005 100644
--- a/Source/ProjectWeb/src/components/dynamic-components/dynamic-custom.vue
+++ b/Source/ProjectWeb/src/components/dynamic-components/dynamic-custom.vue
@@ -11,7 +11,7 @@
</el-alert>
<component v-else :is="currentComponent"
:btmType="btmType"
- :content="content"
+ :context="context"
:inDialog="true"
:key="areasName+'customCom-'+componentVO.oid"
:componentVO="componentVO"
@@ -68,7 +68,7 @@
data() {
return {
btmType: '',
- content: '',
+ context: '',
urlParams: {},
height: '300px',
customClass: '', //?type=xxx&context=yyy¶m=zzz 鎴栬�� 缁勪欢name?type=xxx&context=yyy¶m=zzz
@@ -114,7 +114,7 @@
}
this.btmType = urlParams.type;
- this.content = urlParams.context;
+ this.context = urlParams.context;
this.urlParams = Object.assign(this.paramVOS, urlParams)
//this.getHeight(this.$parent);
diff --git a/Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue b/Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue
index be1d099..79ed7d8 100644
--- a/Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue
+++ b/Source/ProjectWeb/src/components/dynamic-components/dynamic-form.vue
@@ -16,7 +16,7 @@
</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 + ''">
diff --git a/Source/ProjectWeb/src/components/dynamic-components/dynamic-table.vue b/Source/ProjectWeb/src/components/dynamic-components/dynamic-table.vue
index f4495f6..70ee0f9 100644
--- a/Source/ProjectWeb/src/components/dynamic-components/dynamic-table.vue
+++ b/Source/ProjectWeb/src/components/dynamic-components/dynamic-table.vue
@@ -11,13 +11,13 @@
@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>
@@ -563,6 +563,9 @@
},
searchChange(form,done){
done();
+ },
+ handleRefresh(){
+ this.$refs.dataTable.refreshTable();
}
}
}
diff --git a/Source/ProjectWeb/src/components/dynamic-components/dynamic-tree.vue b/Source/ProjectWeb/src/components/dynamic-components/dynamic-tree.vue
index 4cc211c..6c9738d 100644
--- a/Source/ProjectWeb/src/components/dynamic-components/dynamic-tree.vue
+++ b/Source/ProjectWeb/src/components/dynamic-components/dynamic-tree.vue
@@ -1,6 +1,8 @@
<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">
@@ -115,1889 +117,1890 @@
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) {
//閫愮骇鍔犺浇
@@ -2018,6 +2021,9 @@
this.checkDatas=[data];
}
},
+ handleRefresh(){
+ this.initData();
+ }
},
}
</script>
diff --git a/Source/ProjectWeb/src/views/base/UIContentViewer.vue b/Source/ProjectWeb/src/views/base/UIContentViewer.vue
index c987860..330b849 100644
--- a/Source/ProjectWeb/src/views/base/UIContentViewer.vue
+++ b/Source/ProjectWeb/src/views/base/UIContentViewer.vue
@@ -54,7 +54,7 @@
<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",
@@ -62,7 +62,7 @@
data() {
return {
btmType: '',//涓氬姟绫诲瀷锛堟垨閾炬帴绫诲瀷锛�
- content: '',//UI涓婁笅鏂囩殑鍚嶇О
+ context: '',//UI涓婁笅鏂囩殑鍚嶇О
checkedData: {
//鍚勫尯鍩熼�変腑鏁版嵁
northArea: [{}],
@@ -84,8 +84,8 @@
}
},
computed: {
- typeAContent(){
- return this.btmType+this.content;
+ typeAndContext(){
+ return this.btmType+this.context;
}
},
created() {
@@ -99,16 +99,16 @@
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 {
diff --git a/Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue b/Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue
index cfb67d8..6528465 100644
--- a/Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue
+++ b/Source/ProjectWeb/src/views/base/UIContentViewerInDialog.vue
@@ -1,48 +1,48 @@
<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>
@@ -54,7 +54,7 @@
<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",
@@ -63,7 +63,7 @@
btmType:{
type: String,
},
- content:{
+ context:{
type: String,
},
inDialog: {
@@ -99,7 +99,7 @@
}
},
watch: {
- typeAContent:{
+ typeAndContext:{
handler(newV,oldV){
if(oldV!=newV && !verifyNull(newV)){
this.initUI();
@@ -109,24 +109,24 @@
}
},
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鈥滆繖绉嶅舰寮忋�傚叾涓璽ype鏄笟鍔$被鍨嬶紙鎴栭摼鎺ョ被鍨嬶級锛宑ontext鏄疷I涓婁笅鏂囩殑鍚嶇О");
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 {
--
Gitblit v1.9.3