diff --git a/com.actionsoft.apps.coe.pal.processlist/AWSDevParams.js b/com.actionsoft.apps.coe.pal.processlist/AWSDevParams.js index 9415963..dae538b 100644 --- a/com.actionsoft.apps.coe.pal.processlist/AWSDevParams.js +++ b/com.actionsoft.apps.coe.pal.processlist/AWSDevParams.js @@ -1,6 +1,6 @@ module.exports = { AWSPortalUrl: "http://localhost:8088/portal/",//aws平台启动地址,用于开发时获取平台静态资源,请求数据等(注意最后的/,不要删) - AWSReleasePath: "/Users/sunlh/idea_workspace_aws6/release/", /*C:/work/workspace/release/*/ //aws的平台路径,暂时写绝对路径,用于build生成的主文件位置(注意最后的/,不要删) + AWSReleasePath: "/Users/sunlh/Documents/ideaData/actionsoft/aws6.4.1.1008.yili6/release/", /*C:/work/workspace/release/*/ //aws的平台路径,暂时写绝对路径,用于build生成的主文件位置(注意最后的/,不要删) moduleTemplateInAWS: "apps/install/com.actionsoft.apps.coe.pal.processlist/template/page/main.htm", /*apps/install/_bpm.platform/template/page/console.m.dw.design.vue.htm*/ //build后生成到平台的模板位置及名称 outputDir: "apps/install/com.actionsoft.apps.coe.pal.processlist/web/com.actionsoft.apps.coe.pal.processlist/main", /*webserver/webapps/portal/apps/_bpm.platform/dw/designer/main*/ //build后js或css生成到平台的位置 publicPath: "../apps/com.actionsoft.apps.coe.pal.processlist/main", /*../apps/_bpm.platform/dw/designer/main*/ //build到平台后生成到模板中,引入js文件的相对平台的位置 diff --git a/com.actionsoft.apps.coe.pal.processlist/src/components/common/PALRepositoryTree/component.vue b/com.actionsoft.apps.coe.pal.processlist/src/components/common/PALRepositoryTree/component.vue index fc46cb4..f8d2775 100644 --- a/com.actionsoft.apps.coe.pal.processlist/src/components/common/PALRepositoryTree/component.vue +++ b/com.actionsoft.apps.coe.pal.processlist/src/components/common/PALRepositoryTree/component.vue @@ -42,6 +42,7 @@ @node-expand="expandNode" @node-collapse="closeNode" :show-checkbox=multiple + :check-strictly="checkStrictly" node-key="id" lazy :load="loadNode"> @@ -93,6 +94,10 @@ type: Boolean, default: false }, + checkStrictly: {// 在显示复选框的情况下,是否严格的遵循父子不互相关联的做法 + type: Boolean, + default: false + }, title: {// 标题 type: String, default: '请选择' diff --git a/com.actionsoft.apps.coe.pal.processlist/src/views/ProcesslistHome.vue b/com.actionsoft.apps.coe.pal.processlist/src/views/ProcesslistHome.vue index 05e3c0d..41a983c 100644 --- a/com.actionsoft.apps.coe.pal.processlist/src/views/ProcesslistHome.vue +++ b/com.actionsoft.apps.coe.pal.processlist/src/views/ProcesslistHome.vue @@ -1,7 +1,7 @@