mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 02:46:45 +08:00
细节
This commit is contained in:
@@ -270,7 +270,7 @@ export default {
|
|||||||
const sizeBig = info.file.size < 50000000
|
const sizeBig = info.file.size < 50000000
|
||||||
if(!sizeBig){
|
if(!sizeBig){
|
||||||
message.destroy();
|
message.destroy();
|
||||||
message.error("文件大小不能超过50M")
|
message.error("文件大小超出50M,请重新上传")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -318,13 +318,14 @@ const onChange = (pageNo,pageSize) => {
|
|||||||
const ViewReviewShow =ref(null)
|
const ViewReviewShow =ref(null)
|
||||||
|
|
||||||
const centerDialogVisible = ref(false)
|
const centerDialogVisible = ref(false)
|
||||||
const SkipManagement = (id,description,time)=>{
|
const SkipManagement = (id,description,time,isView)=>{
|
||||||
|
|
||||||
router.push({
|
router.push({
|
||||||
path: '/LecturerManagement',
|
path: '/LecturerManagement',
|
||||||
query: {id,
|
query: {id,
|
||||||
description:description,
|
description:description,
|
||||||
time:time
|
time:time,
|
||||||
|
isView
|
||||||
},
|
},
|
||||||
// name:'LecturerManagement',
|
// name:'LecturerManagement',
|
||||||
// params:{
|
// params:{
|
||||||
@@ -333,13 +334,14 @@ const SkipManagement = (id,description,time)=>{
|
|||||||
// }
|
// }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
const toLecture = (id,description,time) =>{
|
const toLecture = (id,description,time,isView) =>{
|
||||||
router.push({
|
router.push({
|
||||||
path: '/LecturerManagement',
|
path: '/LecturerManagement',
|
||||||
query: {id,
|
query: {id,
|
||||||
description:description,
|
description:description,
|
||||||
time:time,
|
time:time,
|
||||||
lecture:true,
|
lecture:true,
|
||||||
|
isView
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -513,9 +515,9 @@ function handleOper(record, type, status = "") {
|
|||||||
<span style="text-align: center;">
|
<span style="text-align: center;">
|
||||||
<a style="margin-right: 7px;" v-if="record.isView" @click="editFee(record)">编辑</a>
|
<a style="margin-right: 7px;" v-if="record.isView" @click="editFee(record)">编辑</a>
|
||||||
|
|
||||||
<a style="margin-right: 7px;" @click='SkipManagement(record.id,record.description,record.name)'>管理</a>
|
<a style="margin-right: 7px;" @click='SkipManagement(record.id,record.description,record.name,record.isView)'>管理</a>
|
||||||
|
|
||||||
<a style="margin-right: 7px;" @click="toLecture(record.id,record.description,record.name)">
|
<a style="margin-right: 7px;" @click="toLecture(record.id,record.description,record.name,record.isView)">
|
||||||
评审
|
评审
|
||||||
</a>
|
</a>
|
||||||
<DropDown v-if="uploadAdmin('examine-admin')" value="授权">
|
<DropDown v-if="uploadAdmin('examine-admin')" value="授权">
|
||||||
|
|||||||
@@ -510,6 +510,7 @@ const SearchTeachers =async()=>{
|
|||||||
pageSize: 15,
|
pageSize: 15,
|
||||||
examineId: route.query.id,
|
examineId: route.query.id,
|
||||||
second: value2.value==null?'0':value2.value,
|
second: value2.value==null?'0':value2.value,
|
||||||
|
secondResult:'1',
|
||||||
reviewResult:value.value,
|
reviewResult:value.value,
|
||||||
keyWord:value3.value
|
keyWord:value3.value
|
||||||
})
|
})
|
||||||
@@ -905,8 +906,8 @@ const vwtext = ref(null)
|
|||||||
<div style="width: 100%;">
|
<div style="width: 100%;">
|
||||||
<div class="page-top">
|
<div class="page-top">
|
||||||
<div style="margin-top: -16px">
|
<div style="margin-top: -16px">
|
||||||
<p class="title" :title="route.query.time">认证项目名称:{{ route.query.time }}</p>
|
<p class="title" :style="{marginTop:route.query.description?'16px':'36px'}" :title="route.query.time">认证项目名称:{{ route.query.time }}</p>
|
||||||
<p class="item" :title="route.query.description" style="width:80%;line-height: 35px;height: 40px;" v-if="route.query.description">具体说明:{{ route.query.description }}</p>
|
<p class="item" :title="route.query.description" style="line-height: 35px;height: 40px;" v-if="route.query.description">具体说明:{{ route.query.description }}</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div @click="$router.push({ path: '/instructorcertification' })" style="cursor: pointer;">
|
<div @click="$router.push({ path: '/instructorcertification' })" style="cursor: pointer;">
|
||||||
@@ -958,7 +959,7 @@ const vwtext = ref(null)
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="display: flex; align-items: center; margin-top: 15px;margin-bottom: 15px;">
|
<div style="display: flex; align-items: center; margin-top: 15px;margin-bottom: 15px;">
|
||||||
<div class="btns" style="margin-left: 15px;margin-bottom: 4.5px">
|
<div v-if="route.query.isView" class="btns" style="margin-left: 15px;margin-bottom: 4.5px">
|
||||||
<proj-check-ship :type="13" :id="route.query.id" @finash="translate">
|
<proj-check-ship :type="13" :id="route.query.id" @finash="translate">
|
||||||
<div class="btn btn3" >
|
<div class="btn btn3" >
|
||||||
<div class="search"></div>
|
<div class="search"></div>
|
||||||
@@ -1032,7 +1033,7 @@ const vwtext = ref(null)
|
|||||||
<a v-if="record.draftStatus == 0&&uploadAdmin('examine-admin')" style="margin-right: 7px;" @click="returnPage(record)">
|
<a v-if="record.draftStatus == 0&&uploadAdmin('examine-admin')" style="margin-right: 7px;" @click="returnPage(record)">
|
||||||
退回初稿
|
退回初稿
|
||||||
</a>
|
</a>
|
||||||
<a style="color: #de2139" @click="handleOper(record, 'del')">删除</a>
|
<a v-if="route.query.isView" style="color: #de2139" @click="handleOper(record, 'del')">删除</a>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
@@ -1094,7 +1095,7 @@ const vwtext = ref(null)
|
|||||||
<a v-if="record.endStatus == 0&&uploadAdmin('examine-admin')" style="margin-right: 7px;" @click="returnPageTwo(record)">
|
<a v-if="record.endStatus == 0&&uploadAdmin('examine-admin')" style="margin-right: 7px;" @click="returnPageTwo(record)">
|
||||||
退回终稿
|
退回终稿
|
||||||
</a>
|
</a>
|
||||||
<a style="color: #de2139" @click="handleOper(record, 'del')">删除</a>
|
<a v-if="route.query.isView" style="color: #de2139" @click="handleOper(record, 'del')">删除</a>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
@@ -1134,7 +1135,7 @@ const vwtext = ref(null)
|
|||||||
style="color: #fff ;background-color: #4ea6ff; width: 100px; height: 40px; border-radius: 8px;margin-left: 12px;"
|
style="color: #fff ;background-color: #4ea6ff; width: 100px; height: 40px; border-radius: 8px;margin-left: 12px;"
|
||||||
>重置</a-button>
|
>重置</a-button>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div v-if="route.query.isView">
|
||||||
<a-button @click="InitReview()" type="primary" style="color: #fff ;background-color: #4ea6ff;width: 100px; height: 40px;
|
<a-button @click="InitReview()" type="primary" style="color: #fff ;background-color: #4ea6ff;width: 100px; height: 40px;
|
||||||
border-radius: 8px;margin-left: 15px; padding-left: 10px;">发起评审</a-button>
|
border-radius: 8px;margin-left: 15px; padding-left: 10px;">发起评审</a-button>
|
||||||
|
|
||||||
@@ -1181,7 +1182,7 @@ const vwtext = ref(null)
|
|||||||
<a style="margin-right: 7px;"
|
<a style="margin-right: 7px;"
|
||||||
@click='getreviewdetail({ reviewId: record.id, examineId: route.query.id},record.examineResult), vwtext = record.id'>查看</a>
|
@click='getreviewdetail({ reviewId: record.id, examineId: route.query.id},record.examineResult), vwtext = record.id'>查看</a>
|
||||||
|
|
||||||
<a v-if="record.examineResult === 0" @click="editReviewSave(record.reviewName, record.reviewTime, record.id)"
|
<a v-if="record.examineResult === 0&&route.query.isView" @click="editReviewSave(record.reviewName, record.reviewTime, record.id)"
|
||||||
style="margin-right: 7px;">
|
style="margin-right: 7px;">
|
||||||
编辑
|
编辑
|
||||||
</a>
|
</a>
|
||||||
@@ -1473,18 +1474,23 @@ const vwtext = ref(null)
|
|||||||
// flex-direction: row;
|
// flex-direction: row;
|
||||||
.title{
|
.title{
|
||||||
width: 600px;
|
width: 600px;
|
||||||
|
margin-top: 16px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
.item{
|
.item{
|
||||||
display: -webkit-box;
|
width: 800px !important;
|
||||||
-webkit-line-clamp: 2;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
box-sizing: border-box;
|
white-space: nowrap;
|
||||||
word-break: break-word;
|
// display: -webkit-box;
|
||||||
|
// -webkit-line-clamp: 2;
|
||||||
|
// -webkit-box-orient: vertical;
|
||||||
|
// overflow: hidden;
|
||||||
|
// text-overflow: ellipsis;
|
||||||
|
// box-sizing: border-box;
|
||||||
|
// word-break: break-word;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user