意见反馈问题修复
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
fa7b51060b
commit
de1ffc02a4
|
@ -306,7 +306,8 @@ export default {
|
||||||
if (res.IsSuccess) {
|
if (res.IsSuccess) {
|
||||||
this.$message.success(this.$t("feedBack:changeState:success"));
|
this.$message.success(this.$t("feedBack:changeState:success"));
|
||||||
this.$emit("success");
|
this.$emit("success");
|
||||||
this.cancel();
|
// this.cancel();
|
||||||
|
this.getInfo(this.Id, this.visitTaskId);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
|
|
|
@ -72,7 +72,7 @@ export default {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 50px;
|
bottom: 50px;
|
||||||
right: -25px;
|
right: -25px;
|
||||||
z-index: 1000;
|
z-index: 2000;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
background: rgba(64, 158, 255, 0.533);
|
background: rgba(64, 158, 255, 0.533);
|
||||||
|
|
|
@ -859,7 +859,7 @@ export default {
|
||||||
uploadCount: 0,
|
uploadCount: 0,
|
||||||
uploadedCount: 0,
|
uploadedCount: 0,
|
||||||
wsList: [],
|
wsList: [],
|
||||||
relationInfo: null,
|
relationInfo: {},
|
||||||
trialBodyPartTypes: [],
|
trialBodyPartTypes: [],
|
||||||
trialModalitys: [],
|
trialModalitys: [],
|
||||||
myInterval: [],
|
myInterval: [],
|
||||||
|
|
|
@ -414,6 +414,7 @@
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
<!-- 上传Dicom/非Dicom文件 -->
|
<!-- 上传Dicom/非Dicom文件 -->
|
||||||
|
<div class="upload-dialog-box" v-if="uploadVisible">
|
||||||
<el-dialog
|
<el-dialog
|
||||||
v-if="uploadVisible"
|
v-if="uploadVisible"
|
||||||
:visible.sync="uploadVisible"
|
:visible.sync="uploadVisible"
|
||||||
|
@ -421,6 +422,7 @@
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
custom-class="upload-dialog"
|
custom-class="upload-dialog"
|
||||||
:before-close="beforeCloseUploadDig"
|
:before-close="beforeCloseUploadDig"
|
||||||
|
:modal="false"
|
||||||
>
|
>
|
||||||
<span slot="title">
|
<span slot="title">
|
||||||
<el-breadcrumb separator-class="el-icon-arrow-right">
|
<el-breadcrumb separator-class="el-icon-arrow-right">
|
||||||
|
@ -517,6 +519,8 @@
|
||||||
</el-tabs>
|
</el-tabs>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- 检查列表 -->
|
<!-- 检查列表 -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
|
@ -524,7 +528,6 @@
|
||||||
:visible.sync="studyVisible"
|
:visible.sync="studyVisible"
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
:fullscreen="true"
|
:fullscreen="true"
|
||||||
custom-class="upload-dialog"
|
|
||||||
:before-close="beforeCloseStudyDig"
|
:before-close="beforeCloseStudyDig"
|
||||||
>
|
>
|
||||||
<span slot="title">
|
<span slot="title">
|
||||||
|
@ -1701,6 +1704,11 @@ export default {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
.upload-dialog-box{
|
||||||
|
.el-dialog__wrapper{
|
||||||
|
z-index: 1999 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
.visit-list{
|
.visit-list{
|
||||||
position: relative;
|
position: relative;
|
||||||
.status-primary-circle{
|
.status-primary-circle{
|
||||||
|
|
Loading…
Reference in New Issue