mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 04:46:46 +08:00
细节
This commit is contained in:
@@ -513,7 +513,7 @@ function handleOper(record, type, status = "") {
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'action'">
|
<template v-else-if="column.key === 'action'">
|
||||||
<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!=0" @click="editFee(record)">编辑</a>
|
||||||
|
|
||||||
<a style="margin-right: 7px;" @click='SkipManagement(record.id,record.description,record.name,record.isView)'>管理</a>
|
<a style="margin-right: 7px;" @click='SkipManagement(record.id,record.description,record.name,record.isView)'>管理</a>
|
||||||
|
|
||||||
@@ -535,7 +535,7 @@ function handleOper(record, type, status = "") {
|
|||||||
>管理权</CommonStudent
|
>管理权</CommonStudent
|
||||||
>
|
>
|
||||||
</DropDown>
|
</DropDown>
|
||||||
<a style="color: #de2139;margin-left: 7px" v-if="record.isView" @click="handleOper(record, 'del')">删除</a>
|
<a style="color: #de2139;margin-left: 7px" v-if="record.isView!=0" @click="handleOper(record, 'del')">删除</a>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -550,6 +550,7 @@ const getTeacher2 =async()=>{
|
|||||||
const total = ref(null)
|
const total = ref(null)
|
||||||
const data = ref([])
|
const data = ref([])
|
||||||
const current1 = ref(1);
|
const current1 = ref(1);
|
||||||
|
const pageSize1 = ref(15)
|
||||||
const onChangeTeacher = (pageNo, pageSize) => {
|
const onChangeTeacher = (pageNo, pageSize) => {
|
||||||
current1.value = pageNo
|
current1.value = pageNo
|
||||||
getTeacher()
|
getTeacher()
|
||||||
@@ -558,7 +559,7 @@ const onChangeTeacher = (pageNo, pageSize) => {
|
|||||||
const getTeacher =async()=>{
|
const getTeacher =async()=>{
|
||||||
const res = await getTeacherList({
|
const res = await getTeacherList({
|
||||||
pageNo: current1.value,
|
pageNo: current1.value,
|
||||||
pageSize: 15,
|
pageSize: pageSize1.value,
|
||||||
examineId: route.query.id.toString(),
|
examineId: route.query.id.toString(),
|
||||||
secondResult: "1"
|
secondResult: "1"
|
||||||
})
|
})
|
||||||
@@ -953,7 +954,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 v-if="route.query.isView" class="btns" style="margin-left: 15px;margin-bottom: 4.5px">
|
<div v-if="route.query.isView!=0" 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>
|
||||||
@@ -1027,7 +1028,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 v-if="route.query.isView" style="color: #de2139" @click="handleOper(record, 'del')">删除</a>
|
<a v-if="route.query.isView!=0" style="color: #de2139" @click="handleOper(record, 'del')">删除</a>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
@@ -1035,7 +1036,7 @@ const vwtext = ref(null)
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: center; margin-top: 18px;">
|
<div style="text-align: center; margin-top: 18px;">
|
||||||
<a-pagination :showSizeChanger="false" v-model:current="current1" show-quick-jumper :total="total" @change="onChangeTeacher" />
|
<a-pagination :showSizeChanger="false" v-model:pageSize="pageSize1" v-model:current="current1" show-quick-jumper :total="total" @change="onChangeTeacher" />
|
||||||
</div>
|
</div>
|
||||||
<div style="height: 1px; width: 100%; background-color: #eceff4; margin-top: 15px;margin-left: 14px;"></div>
|
<div style="height: 1px; width: 100%; background-color: #eceff4; margin-top: 15px;margin-left: 14px;"></div>
|
||||||
<div v-if="data2.length>0" style="margin-left: 14px; margin-top: 15px;margin-bottom: 12px;" >二次认证</div>
|
<div v-if="data2.length>0" style="margin-left: 14px; margin-top: 15px;margin-bottom: 12px;" >二次认证</div>
|
||||||
@@ -1089,7 +1090,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 v-if="route.query.isView" style="color: #de2139" @click="handleOper(record, 'del')">删除</a>
|
<a v-if="route.query.isView!=0" style="color: #de2139" @click="handleOper(record, 'del')">删除</a>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
@@ -1129,7 +1130,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 v-if="route.query.isView">
|
<div v-if="route.query.isView!=0">
|
||||||
<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>
|
||||||
|
|
||||||
@@ -1176,7 +1177,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&&route.query.isView" @click="editReviewSave(record.reviewName, record.reviewTime, record.id)"
|
<a v-if="record.examineResult === 0&&route.query.isView!=0" @click="editReviewSave(record.reviewName, record.reviewTime, record.id)"
|
||||||
style="margin-right: 7px;">
|
style="margin-right: 7px;">
|
||||||
编辑
|
编辑
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user