This commit is contained in:
yuping
2022-12-01 02:23:32 +08:00
parent 99ea3719f0
commit 07be52e211
2 changed files with 49 additions and 17 deletions

View File

@@ -57,7 +57,8 @@
</div>
<div class="btnbox">
<a-checkbox v-model:checked="checkedC1" @change="checkRadio"
>允许评论</a-checkbox
>允许评论
</a-checkbox
>
</div>
</div>
@@ -71,12 +72,13 @@
</a-drawer>
</template>
<script>
import { reactive, toRefs } from "vue";
import {reactive, toRefs} from "vue";
import * as api from "../../api/indexDiscuss";
import * as apiTask from "../../api/indexTaskadd";
import { RouterEditTask } from "@/api/indexTask";
import { message } from "ant-design-vue";
import { addTempTask } from "../../api/indexTaskadd";
import {RouterEditTask} from "@/api/indexTask";
import {message} from "ant-design-vue";
import {addTempTask} from "../../api/indexTaskadd";
export default {
name: "AddDiscuss",
props: {
@@ -170,7 +172,7 @@ export default {
if (props.edit) {
//编辑讨
api
.getDiscussDetail({ discussId: props.EditDiscussId })
.getDiscussDetail({discussId: props.EditDiscussId})
.then((res) => {
//更新讨论信息
state.inputV1 = res.data.data.discussName;
@@ -178,7 +180,8 @@ export default {
state.checkedC1 =
res.data.data.discussSettings == "true" ? true : false;
})
.catch(() => {});
.catch(() => {
});
}
};
const afterVisibleChange = (bool) => {
@@ -186,9 +189,9 @@ export default {
queryDiscuss();
}
};
const updateTask = (res) => {
const updateTask = async (res) => {
if (props.isLevel == 1) {
RouterEditTask({
await RouterEditTask({
chapterId: props.isactive,
courseId: res.data.data.discussId,
name: res.data.data.discussName,
@@ -203,7 +206,7 @@ export default {
//message.error(`${props.edit ? "编辑" : "新增"}关卡任务失败`);
});
} else if (props.isLevel == 2) {
apiTask
await apiTask
.addTask({
courseId: res.data.data.discussId,
name: res.data.data.discussName,
@@ -220,7 +223,7 @@ export default {
});
} else if (props.isLevel == 3) {
console.log("");
addTempTask({
await addTempTask({
courseId: res.data.data.discussId,
name: res.data.data.discussName,
projectTemplateId: props.projectTemplateId,
@@ -251,8 +254,8 @@ export default {
if (props.edit) {
api
.updateDiscuss(obj)
.then((res) => {
updateTask(res);
.then(async (res) => {
await updateTask(res);
closeDrawer();
ctx.emit("changeData", false);
message.destroy();
@@ -265,8 +268,8 @@ export default {
} else {
api
.createDiscuss(obj)
.then((res) => {
updateTask(res);
.then(async (res) => {
await updateTask(res);
closeDrawer();
ctx.emit("changeData", false);
message.destroy();
@@ -293,6 +296,7 @@ export default {
.ant-table-striped :deep(.table-striped) td {
background-color: #fafafa !important;
}
.addrefDrawer {
.drawerMain {
.header {
@@ -302,6 +306,7 @@ export default {
justify-content: space-between;
align-items: center;
flex-shrink: 0;
.headerTitle {
font-size: 18px;
font-weight: 600;
@@ -310,35 +315,43 @@ export default {
margin-left: 24px;
}
}
.contentMain {
display: flex;
justify-content: space-between;
.main_left {
margin-top: 32px;
padding-right: 30px;
flex: 1;
border-right: 1px solid #e8e8e8;
.main_item {
display: flex;
align-items: center;
margin-top: 32px;
margin-bottom: 32px;
.signbox {
width: 120px;
display: flex;
justify-content: end;
align-items: center;
.sign {
margin-right: 5px;
}
}
.btnbox {
display: flex;
flex: 1;
align-items: center;
.ant-input {
height: 100%;
}
.xkbtn {
cursor: pointer;
width: 130px;
@@ -351,32 +364,40 @@ export default {
}
}
}
.main_item2 {
display: flex;
align-items: flex-start;
margin-bottom: 32px;
.signbox {
width: 120px;
display: flex;
justify-content: end;
align-items: center;
.sign {
margin-right: 5px;
}
}
.textarea {
width: 423px;
.ant-input {
width: 100%;
}
.ant-input-textarea-show-count {
position: relative;
}
.ant-input-textarea-show-count::after {
position: absolute;
right: 10px;
bottom: 0px;
}
.ant-input {
border-radius: 8px;
}
@@ -384,6 +405,7 @@ export default {
}
}
}
.main_btns {
height: 72px;
width: 100%;
@@ -393,6 +415,7 @@ export default {
align-items: center;
justify-content: center;
box-shadow: 0px 1px 35px 0px rgba(118, 136, 166, 0.16);
.btn1 {
width: 100px;
height: 40px;
@@ -402,6 +425,7 @@ export default {
background-color: #fff;
cursor: pointer;
}
.btn2 {
cursor: pointer;
width: 100px;

View File

@@ -114,11 +114,12 @@
</template>
<script>
import { toRefs, reactive } from "vue";
import {toRefs, reactive, onMounted} from "vue";
import { getTask } from "../../api/indexTaskadd";
import { toDate } from "../../api/method";
import { auditView } from "../../api/indexAudit";
import { message } from "ant-design-vue";
import * as api1 from "@/api/index1";
export default {
name: "ProjectAudit",
@@ -284,7 +285,14 @@ export default {
message.warning("提交失败");
});
};
const getDictList = async (param) => api1.getDict({
pageNo: 1,
pageSize: 20,
setCode: param
}).then((res) => res.data.data.rows)
onMounted(async () => {
state.calssifyList = (await getDictList("faceclassClass")).map(e => ({ label: e.dictName, value: e.dictCode }))
});
return {
...toRefs(state),
closeDrawer,