no message

This commit is contained in:
kuaifan 2021-06-11 00:17:19 +08:00
parent d7ce383c36
commit d94dc5ebea
9 changed files with 47 additions and 13 deletions

View File

@ -289,10 +289,7 @@
this.isLoading = true;
$A.apiAjax({
url: 'system/imgview',
data: { path: path?path:'' },
beforeSend: true,
complete: true,
error: true,
data: {path: path ? path : ''},
success: (res) => {
this.isLoading = false;
if (res.ret === 1) {

View File

@ -104,17 +104,19 @@
<!--任务详情-->
<Modal
v-model="projectTask._show"
:title="$L('任务详情')"
:mask-closable="false">
:mask-closable="false"
footer-hide>
<TaskDetail/>
</Modal>
</div>
</template>
<script>
import { mapState } from 'vuex'
import TaskDetail from "./manage/components/TaskDetail";
export default {
components: {TaskDetail},
data() {
return {
loadIng: 0,

View File

@ -0,0 +1,22 @@
<template>
<div class="task-detail">
{{projectTask}}
</div>
</template>
<script>
import {mapState} from "vuex";
export default {
name: "TaskDetail",
data() {
return {
}
},
computed: {
...mapState(['userId', 'projectTask']),
},
}
</script>

View File

@ -60,11 +60,15 @@
font-size: 28px;
}
.ivu-progress-outer {
background-color: rgba(0, 0, 0, 0.68);
.ivu-progress-inner {
width: 88%;
.ivu-progress {
height: 100%;
.ivu-progress-outer {
background-color: rgba(0, 0, 0, 0.68);
height: 100%;
.ivu-progress-inner {
width: 88%;
margin: 0 auto;
}
}
}
}

View File

@ -229,6 +229,10 @@ body {
.ivu-progress {
display: flex;
align-items: center;
.ivu-progress-outer {
display: flex;
align-items: center;
}
&.ivu-progress-show-info {
.ivu-progress-outer {
margin: 0;

View File

@ -3,4 +3,5 @@
@import "project-list";
@import "task-add";
@import "task-add-simple";
@import "task-detail";
@import "task-priority";

View File

@ -400,6 +400,7 @@
color: #777777;
background-color: #EAEDF2;
padding: 1px 4px;
margin-left: 18px;
font-size: 12px;
font-weight: 500;
border-radius: 3px;

View File

@ -0,0 +1,3 @@
.task-detail {
padding-bottom: 22px;
}

View File

@ -172,7 +172,7 @@
padding-right: 6px;
}
.ivu-progress {
margin-right: -26px;
margin-right: -18px;
.ivu-progress-inner {
background-color: #e4e4e4;
}