no message
This commit is contained in:
parent
57a5a251b9
commit
e5f374bbb1
@ -340,8 +340,29 @@
|
||||
.content .details-box .application-schedule {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.content .details-box .application-schedule .list .time {
|
||||
.content .details-box .application-schedule .list {
|
||||
padding-top: 19px;
|
||||
}
|
||||
.content .details-box .application-schedule .list .index {
|
||||
height: 30px;
|
||||
background-color: #f6f6f6;
|
||||
border-radius: 72px;
|
||||
margin: 0 22.5px 0;
|
||||
font-size: 15px;
|
||||
color: #555555;
|
||||
padding-left: 10px;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
.content .details-box .application-schedule .list .index .sum {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
background-color: #f95d5d;
|
||||
border-radius: 33px;
|
||||
color: #ffffff;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.content .details-box .application-schedule .list .time {
|
||||
padding-bottom: 22px;
|
||||
text-align: center;
|
||||
}
|
||||
@ -897,6 +918,7 @@
|
||||
height: 20px;
|
||||
margin-right: 5px;
|
||||
vertical-align: bottom;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.base {
|
||||
background-color: transparent;
|
||||
|
@ -381,8 +381,29 @@
|
||||
.application-schedule {
|
||||
margin-bottom: 40px;
|
||||
.list {
|
||||
.time {
|
||||
padding-top: 19px;
|
||||
|
||||
.index {
|
||||
height: 30px;
|
||||
background-color: #f6f6f6;
|
||||
border-radius: 72px;
|
||||
margin: 0 22.5px 0;
|
||||
font-size: 15px;
|
||||
color: #555555;
|
||||
padding-left: 10px;
|
||||
margin-bottom: 19px;
|
||||
|
||||
.sum {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
background-color: #f95d5d;
|
||||
border-radius: 33px;
|
||||
color: #ffffff;
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
.time {
|
||||
padding-bottom: 22px;
|
||||
text-align: center;
|
||||
|
||||
@ -1023,6 +1044,7 @@
|
||||
height: 20px;
|
||||
margin-right: 5px;
|
||||
vertical-align: bottom;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -109,6 +109,26 @@
|
||||
<div class="item-header flexacenter">还没 申请日程</div>
|
||||
<div class="application-schedule block">
|
||||
<div class="list">
|
||||
<div class="index flexacenter">
|
||||
<div class="sum flexcenter">1</div>
|
||||
第一轮
|
||||
</div>
|
||||
<div class="time flexflex">
|
||||
<div class="item flex1">
|
||||
<div class="name">2024-01-05</div>
|
||||
<div class="value">开始申请日期</div>
|
||||
</div>
|
||||
<div class="item flex1">
|
||||
<div class="name">2024-01-05</div>
|
||||
<div class="value">截止申请日期</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list">
|
||||
<div class="index flexacenter">
|
||||
<div class="sum flexcenter">1</div>
|
||||
第一轮
|
||||
</div>
|
||||
<div class="time flexflex">
|
||||
<div class="item flex1">
|
||||
<div class="name">2024-01-05</div>
|
||||
@ -541,7 +561,7 @@
|
||||
let course = ref({})
|
||||
|
||||
const getData = () => {
|
||||
$ajaxget("/api/project.detail", {
|
||||
$ajaxget("/api/detail", {
|
||||
uniqid,
|
||||
}).then(res => {
|
||||
const data = res.data
|
||||
@ -686,7 +706,7 @@
|
||||
}
|
||||
|
||||
const bindblur = () => {
|
||||
$ajax("/api/project.user/remarks", {
|
||||
$ajax("/api/user/remarks", {
|
||||
token: contras.value.token,
|
||||
remarks: remark.value,
|
||||
}).then(res => {})
|
||||
@ -694,7 +714,7 @@
|
||||
|
||||
// 点击加入对比单
|
||||
const addComparison = () => {
|
||||
$ajax("/api/project.contrast/add", {
|
||||
$ajax("/api/contrast/add", {
|
||||
projectid: info.value.id,
|
||||
}).then(res => {
|
||||
if (res.code != 200) return
|
||||
@ -722,7 +742,7 @@
|
||||
|
||||
// 修改 项目 状态
|
||||
const changeType = typeid => {
|
||||
$ajax("/api/project.user/changeType", {
|
||||
$ajax("/api/user/changeType", {
|
||||
token: contras.value.token || "",
|
||||
typeid,
|
||||
}).then(res => {
|
||||
@ -734,7 +754,7 @@
|
||||
|
||||
const deletee = () => {
|
||||
const contras = this.data.contras
|
||||
$ajax("/api/project.user/delete", {
|
||||
$ajax("/api/user/delete", {
|
||||
token: contras.value.token,
|
||||
}).then(res => {
|
||||
if (res.code != 200) return
|
||||
|
Loading…
Reference in New Issue
Block a user