|
|
|
@ -104,10 +104,10 @@ export default {
|
|
|
|
|
word: "",
|
|
|
|
|
},
|
|
|
|
|
course_list: [
|
|
|
|
|
{ label: "进行中", value: "1" },
|
|
|
|
|
{ label: "审核通过", value: "2" },
|
|
|
|
|
{ label: "待审核", value: "1" },
|
|
|
|
|
{ label: "通过", value: "2" },
|
|
|
|
|
{ label: "驳回", value: "3" },
|
|
|
|
|
// { label: "处置中", value: "4" },
|
|
|
|
|
{ label: "处置中", value: "4" },
|
|
|
|
|
],
|
|
|
|
|
pickerOptions: {
|
|
|
|
|
shortcuts: [
|
|
|
|
@ -157,20 +157,28 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 查询
|
|
|
|
|
search_data() {
|
|
|
|
|
console.log("this.search.course_time", this.search.course_time);
|
|
|
|
|
let param = {
|
|
|
|
|
pageSize: this.pageSize,
|
|
|
|
|
page: this.pageNum,
|
|
|
|
|
// isAsc: "desc",
|
|
|
|
|
// orderByColumn: "id",
|
|
|
|
|
startTime: this.dateConversion(this.search.course_time[0]),
|
|
|
|
|
endTime: this.dateConversion(this.search.course_time[1]),
|
|
|
|
|
startTime:
|
|
|
|
|
this.search.course_time == null
|
|
|
|
|
? ""
|
|
|
|
|
: this.dateConversion(this.search.course_time[0]),
|
|
|
|
|
endTime:
|
|
|
|
|
this.search.course_time == null
|
|
|
|
|
? ""
|
|
|
|
|
: this.dateConversion(this.search.course_time[1]),
|
|
|
|
|
searchKey: this.search.word,
|
|
|
|
|
procStatus: this.search.procStatus,
|
|
|
|
|
};
|
|
|
|
|
get_my_course(param).then((res) => {
|
|
|
|
|
console.log("get_data", res);
|
|
|
|
|
this.table_data = res.rows;
|
|
|
|
|
this.total = res.total;
|
|
|
|
|
// this.total = res.total;
|
|
|
|
|
this.total = 100;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 重置查询
|
|
|
|
@ -184,7 +192,7 @@ export default {
|
|
|
|
|
// 详情点击跳转
|
|
|
|
|
check_details(val) {
|
|
|
|
|
console.log(val);
|
|
|
|
|
this.$emit("change_to_detail" ,val); // 通知跳转
|
|
|
|
|
this.$emit("change_to_detail", val); // 通知跳转
|
|
|
|
|
},
|
|
|
|
|
// 转换时间格式
|
|
|
|
|
dateConversion(value) {
|
|
|
|
@ -373,21 +381,21 @@ export default {
|
|
|
|
|
.btn {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
margin-right: 2px;
|
|
|
|
|
}
|
|
|
|
|
.el-button {
|
|
|
|
|
width: 70px;
|
|
|
|
|
height: 4.1vh;
|
|
|
|
|
border: 1px solid #4a6072;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 0px !important;
|
|
|
|
|
background: #323f43;
|
|
|
|
|
}
|
|
|
|
|
.el-button:focus,
|
|
|
|
|
.el-button:hover {
|
|
|
|
|
color: #34e1b3;
|
|
|
|
|
border: 2px solid #137868;
|
|
|
|
|
background: url("~@/assets/companyFile/2121.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
.el-button {
|
|
|
|
|
width: 70px;
|
|
|
|
|
height: 3.7vh !important;
|
|
|
|
|
border: 1px solid #4a6072;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 0px !important;
|
|
|
|
|
background: #323f43;
|
|
|
|
|
}
|
|
|
|
|
.el-button:focus,
|
|
|
|
|
.el-button:hover {
|
|
|
|
|
color: #34e1b3;
|
|
|
|
|
border: 2px solid #137868;
|
|
|
|
|
background: url("~@/assets/companyFile/2121.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.search_table {
|
|
|
|
@ -399,14 +407,16 @@ export default {
|
|
|
|
|
.table_pagination {
|
|
|
|
|
width: 96vw;
|
|
|
|
|
height: 5vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
|
/deep/.el-input--suffix .el-input__inner {
|
|
|
|
|
color: #fff;
|
|
|
|
|
border: 0.1px solid #277f79;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
background: rgba(0, 0, 0, 0);
|
|
|
|
|
width: 5vw;
|
|
|
|
|
// height: 2.6vh;
|
|
|
|
|
// line-height: 2.6vh;
|
|
|
|
|
height: 2.6vh;
|
|
|
|
|
line-height: 2.6vh;
|
|
|
|
|
}
|
|
|
|
|
/deep/.el-input__icon {
|
|
|
|
|
color: #fff;
|
|
|
|
@ -414,42 +424,44 @@ export default {
|
|
|
|
|
height: 2.6vh;
|
|
|
|
|
}
|
|
|
|
|
/deep/.el-pagination {
|
|
|
|
|
margin-left: 65%;
|
|
|
|
|
margin-top: 2vh;
|
|
|
|
|
margin-top: 1vh;
|
|
|
|
|
.el-pagination__total {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.el-input__inner {
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
border: 0.1px solid #277f79;
|
|
|
|
|
border: 0.1px solid #28847e;
|
|
|
|
|
background: #3c4b4a;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.btn-prev {
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
border: 0.1px solid #277f79;
|
|
|
|
|
border: 0.1px solid #28847e;
|
|
|
|
|
background: #3c4b4a;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
ul {
|
|
|
|
|
li {
|
|
|
|
|
border: 0.1px solid #277f79;
|
|
|
|
|
border: 0.1px solid #28847e;
|
|
|
|
|
background: #3c4b4a;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.btn-next {
|
|
|
|
|
border: 0.1px solid #277f79;
|
|
|
|
|
border: 0.1px solid #28847e;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
background: #3c4b4a;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.el-pager {
|
|
|
|
|
li {
|
|
|
|
|
border: 0.1px solid #34a6a6;
|
|
|
|
|
border: 0.1px solid #28847e;
|
|
|
|
|
background: #3c4b4a !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/deep/.el-pagination.is-background .el-pager li:not(.disabled).active {
|
|
|
|
|
border: 2px solid #76eae4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|