From c65c0b31e6dfd01db744a450dda3816f65eebbc1 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期四, 05 十二月 2024 11:41:10 +0800 Subject: [PATCH] 1、修改使用当前用户的类型查询用户接口,可以传入用户类型。 2、增加根据用户主键获取关联的部门接口。 3、增加查询授权结果接口。 4、增加查询业务对象接口。 --- Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue b/Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue index 6b73c7c..6a10a70 100644 --- a/Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue +++ b/Source/plt-web/plt-web-ui/src/components/actions/base/uploadFile.vue @@ -2,7 +2,6 @@ <el-dialog v-dialogDrag :close-on-click-modal="false" - :destroy-on-close="true" :visible.sync="visible" :width="width" append-to-body @@ -11,10 +10,11 @@ style="margin-top: -20vh !important;" > <Divider left="30px" text="瀵煎叆鎻愮ず"></Divider> - <ul> - <li> + <ul style="color: #e73a3a"> + <li v-if="!paramVOS.tipList"> 璇风偣鍑绘祻瑙堟枃浠惰繘琛屼笂浼� </li> + <li v-if="paramVOS.tipList && paramVOS.tipList.length >=1 " v-for="(item,index) in paramVOS.tipList" :key="index"> {{index+1}} : {{item}}銆�</li> </ul> <Divider left="30px" text="閫夋嫨鏂囦欢鍚庝細鑷姩涓婁紶"></Divider> <el-upload @@ -87,9 +87,9 @@ return { ownbizOid: this.sourceData.oid, ownBtmName: this.sourceData.btmname, - secretGrade: -1, - fileDocClassify: '', - updateFileFlag: true, + secretGrade: this.paramVOS.secretGrade || -1, + fileDocClassify: this.paramVOS.fileDocClassify || "", + updateFileFlag: this.paramVOS.updateFileFlag || true, } }, width() { @@ -140,7 +140,7 @@ onSuccess(resbonse) { if (resbonse.code === 200) { this.$message.success("涓婁紶鎴愬姛锛�"); - this.dialogVisible = false; + this.visible = false; }else { this.$message.error(resbonse.msg); } @@ -155,7 +155,7 @@ if (file.status === "success" || file.status === "error") { this.pageLoading.close(); } - } + }, } } </script> -- Gitblit v1.9.3