mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-17 23:06:47 +08:00
Merge branch 'develop' of http://gitlab.dongwu-inc.com:10080/BOE/fe-manage into develop
This commit is contained in:
@@ -25,7 +25,7 @@
|
|||||||
<a-input
|
<a-input
|
||||||
v-model:value="name"
|
v-model:value="name"
|
||||||
style="width: 240px; height: 40px; border-radius: 8px"
|
style="width: 240px; height: 40px; border-radius: 8px"
|
||||||
placeholder="请输入项目名称"
|
placeholder="请输入课程名称"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -231,7 +231,7 @@ export default {
|
|||||||
offcourse: null,
|
offcourse: null,
|
||||||
auditStatus: null,
|
auditStatus: null,
|
||||||
name: null,
|
name: null,
|
||||||
courseInfo:[]
|
courseInfo: []
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -281,7 +281,8 @@ export default {
|
|||||||
//获取面授课列表
|
//获取面授课列表
|
||||||
const getClassList = (obj) => {
|
const getClassList = (obj) => {
|
||||||
let objn = obj || {
|
let objn = obj || {
|
||||||
auditStatus:2,
|
auditStatus: 2,
|
||||||
|
status: 1,
|
||||||
name: state.name,
|
name: state.name,
|
||||||
pageNo: state.currentPage,
|
pageNo: state.currentPage,
|
||||||
pageSize: state.pageSize
|
pageSize: state.pageSize
|
||||||
@@ -316,7 +317,7 @@ export default {
|
|||||||
});
|
});
|
||||||
state.classTableData = array;
|
state.classTableData = array;
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
const options1 = ref([
|
const options1 = ref([
|
||||||
{
|
{
|
||||||
value: 0,
|
value: 0,
|
||||||
|
|||||||
@@ -3521,7 +3521,7 @@ const columns7 = [
|
|||||||
key: "7",
|
key: "7",
|
||||||
align: "center",
|
align: "center",
|
||||||
customRender: ({ record }) => {
|
customRender: ({ record }) => {
|
||||||
switch (String(record.source)) {
|
switch (String(record.signStatus)) {
|
||||||
case "0":
|
case "0":
|
||||||
return "未签到";
|
return "未签到";
|
||||||
case "1":
|
case "1":
|
||||||
@@ -3538,7 +3538,7 @@ const columns7 = [
|
|||||||
key: "8",
|
key: "8",
|
||||||
align: "center",
|
align: "center",
|
||||||
customRender: ({ record }) => {
|
customRender: ({ record }) => {
|
||||||
switch (String(record.source)) {
|
switch (String(record.evalStatus)) {
|
||||||
case "0":
|
case "0":
|
||||||
return "未评估";
|
return "未评估";
|
||||||
case "1":
|
case "1":
|
||||||
|
|||||||
Reference in New Issue
Block a user