parent
0c93095d1e
commit
90ed1f142d
6 changed files with 937 additions and 507 deletions
@ -1,256 +1,278 @@ |
||||
<template> |
||||
<div> |
||||
<el-card shadow="hover" class="m-b-20"> |
||||
<div> |
||||
<p class="m-b-20">比赛名称</p> |
||||
{{ form.stageName }} |
||||
</div> |
||||
</el-card> |
||||
<el-card shadow="hover" class="m-b-20"> |
||||
<div> |
||||
<p class="m-b-20">比赛时间</p> |
||||
<div class="date-inputs"> |
||||
起止时间: |
||||
<div style="display: inline-flex;align-items: center;"> |
||||
<el-date-picker |
||||
v-model="form.time" |
||||
type="datetimerange" |
||||
range-separator="~" |
||||
start-placeholder="开始日期" |
||||
end-placeholder="结束日期" |
||||
format="yyyy-MM-dd HH:mm:ss" |
||||
value-format="yyyy-MM-dd HH:mm:ss" |
||||
@change="timeChange"> |
||||
</el-date-picker> |
||||
<el-alert |
||||
style="width: auto;padding: 4px 16px;margin-left: 10px;" |
||||
:title="'(请设置在 ' + step1.playStartTime + ' ~ ' + step1.playEndTime + '间)'" |
||||
type="error" |
||||
:closable="false" |
||||
effect="dark"> |
||||
</el-alert> |
||||
</div> |
||||
</div> |
||||
<div> |
||||
<el-card shadow="hover" |
||||
class="m-b-20"> |
||||
<div> |
||||
<p class="m-b-20">比赛名称</p> |
||||
{{ form.stageName }} |
||||
</div> |
||||
</el-card> |
||||
<el-card shadow="hover" |
||||
class="m-b-20"> |
||||
<div> |
||||
<p class="m-b-20">比赛时间</p> |
||||
<div class="date-inputs"> |
||||
起止时间: |
||||
<div style="display: inline-flex;align-items: center;"> |
||||
<el-date-picker v-model="form.time" |
||||
type="datetimerange" |
||||
range-separator="~" |
||||
start-placeholder="开始日期" |
||||
end-placeholder="结束日期" |
||||
format="yyyy-MM-dd HH:mm:ss" |
||||
value-format="yyyy-MM-dd HH:mm:ss" |
||||
@change="timeChange"> |
||||
</el-date-picker> |
||||
<el-alert style="width: auto;padding: 4px 16px;margin-left: 10px;" |
||||
:title="'(请设置在 ' + step1.playStartTime + ' ~ ' + step1.playEndTime + '间)'" |
||||
type="error" |
||||
:closable="false" |
||||
effect="dark"> |
||||
</el-alert> |
||||
</div> |
||||
</el-card> |
||||
<el-card shadow="hover" class="mgr20 m-b-20"> |
||||
</div> |
||||
</div> |
||||
</el-card> |
||||
<el-card shadow="hover" |
||||
class="mgr20 m-b-20"> |
||||
<div> |
||||
<p class="m-b-20">课程</p> |
||||
<div class="inline-input"> |
||||
<el-select v-model="form.mallId" |
||||
@change="courseChange"> |
||||
<el-option v-for="(item, i) in curriculumList" |
||||
:key="i" |
||||
:label="item.productName" |
||||
:value="item.mallId"> |
||||
</el-option> |
||||
</el-select> |
||||
</div> |
||||
</div> |
||||
</el-card> |
||||
<el-card shadow="hover" |
||||
class="m-b-20"> |
||||
<div class="flex-between m-b-20"> |
||||
<span>实训项目</span> |
||||
<div style="display: inline-flex;"> |
||||
<div> |
||||
<p class="m-b-20">课程</p> |
||||
<div class="inline-input"> |
||||
<el-select v-model="form.cid" @change="courseChange"> |
||||
<el-option |
||||
v-for="item in curriculumList" |
||||
:key="item.cid" |
||||
:label="item.curriculumName" |
||||
:value="item.cid"> |
||||
</el-option> |
||||
</el-select> |
||||
</div> |
||||
</div> |
||||
</el-card> |
||||
<el-card shadow="hover" class="m-b-20"> |
||||
<div class="flex-between m-b-20"> |
||||
<span>实训项目</span> |
||||
<div style="display: inline-flex;"> |
||||
<div> |
||||
<el-input placeholder="请输入项目名称" prefix-icon="el-icon-search" v-model.trim="keyword" clearable></el-input> |
||||
</div> |
||||
<el-button style="margin-left: 5px" type="primary" round @click="toProject">自定义实验项目</el-button> |
||||
</div> |
||||
<el-input placeholder="请输入项目名称" |
||||
prefix-icon="el-icon-search" |
||||
v-model.trim="keyword" |
||||
clearable></el-input> |
||||
</div> |
||||
<!-- 实训项目表格 --> |
||||
<el-table :data="projects" class="table" stripe header-align="center"> |
||||
<el-table-column width="60" label="选择" align="center"> |
||||
<template slot-scope="scope"> |
||||
<el-radio v-model="form.projectId" :label="scope.row.projectId"> </el-radio> |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column> |
||||
<el-table-column prop="auth" label="项目权限" align="center"> |
||||
<template slot-scope="scope"> |
||||
{{ permissionsKeys[scope.row.permissions] }} |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column prop="founder" label="创建人" align="center"> |
||||
<template slot-scope="scope"> |
||||
{{ scope.row.founder ? '老师创建' : '系统内置' }} |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column prop="createTime" label="创建时间" align="center"></el-table-column> |
||||
<!-- <el-table-column label="操作" align="center"> |
||||
<el-button style="margin-left: 5px" |
||||
type="primary" |
||||
round |
||||
@click="toProject">自定义实验项目</el-button> |
||||
</div> |
||||
</div> |
||||
<!-- 实训项目表格 --> |
||||
<el-table :data="projects" |
||||
class="table" |
||||
stripe |
||||
header-align="center"> |
||||
<el-table-column width="60" |
||||
label="选择" |
||||
align="center"> |
||||
<template slot-scope="scope"> |
||||
<el-radio v-model="form.projectId" |
||||
:label="scope.row.projectId"> </el-radio> |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column prop="projectName" |
||||
label="项目名称" |
||||
align="center"></el-table-column> |
||||
<el-table-column prop="auth" |
||||
label="项目权限" |
||||
align="center"> |
||||
<template slot-scope="scope"> |
||||
{{ permissionsKeys[scope.row.permissions] }} |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column prop="founder" |
||||
label="创建人" |
||||
align="center"> |
||||
<template slot-scope="scope"> |
||||
{{ scope.row.founder ? '老师创建' : '系统内置' }} |
||||
</template> |
||||
</el-table-column> |
||||
<el-table-column prop="createTime" |
||||
label="创建时间" |
||||
align="center"></el-table-column> |
||||
<!-- <el-table-column label="操作" align="center"> |
||||
<template slot-scope="scope"> |
||||
<el-button type="text" @click="showProject(scope.row)">查看</el-button> |
||||
</template> |
||||
</el-table-column> --> |
||||
</el-table> |
||||
<div class="pagination"> |
||||
<el-pagination |
||||
background |
||||
:page-size="pageSize" |
||||
@current-change="handleCurrentChange" |
||||
layout="total,prev, pager, next" |
||||
:total="total" |
||||
></el-pagination> |
||||
</div> |
||||
</el-card> |
||||
|
||||
<div style="text-align: center"> |
||||
<el-button @click="back">返回</el-button> |
||||
<el-button type="primary" @click="save">保存</el-button> |
||||
</el-table> |
||||
<div class="pagination"> |
||||
<el-pagination background |
||||
:page-size="pageSize" |
||||
@current-change="handleCurrentChange" |
||||
layout="total,prev, pager, next" |
||||
:total="total"></el-pagination> |
||||
</div> |
||||
</el-card> |
||||
|
||||
<div style="text-align: center"> |
||||
<el-button @click="back">返回</el-button> |
||||
<el-button type="primary" |
||||
@click="save">保存</el-button> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import util from "@/libs/util"; |
||||
import { Loading } from 'element-ui' |
||||
export default { |
||||
props: ['form', 'step1'], |
||||
data() { |
||||
return { |
||||
loadIns: null, |
||||
curriculumList: [], |
||||
keyword: '', |
||||
projects: [], |
||||
page: 1, |
||||
pageSize: 5, |
||||
total: 0, |
||||
sysId: '', |
||||
permissionsKeys: ['练习', '考核', '竞赛'], |
||||
timeInvalid: false |
||||
}; |
||||
props: ['form', 'step1'], |
||||
data () { |
||||
return { |
||||
loadIns: null, |
||||
curriculumList: [], |
||||
keyword: '', |
||||
projects: [], |
||||
page: 1, |
||||
pageSize: 5, |
||||
total: 0, |
||||
sysId: '', |
||||
permissionsKeys: ['练习', '考核', '竞赛'], |
||||
timeInvalid: false |
||||
}; |
||||
}, |
||||
watch: { |
||||
// 监听信息是否有更改,有的话页面离开的时候要询问是否要保存 |
||||
form: { |
||||
handler () { |
||||
this.updateTime++ |
||||
}, |
||||
deep: true |
||||
}, |
||||
watch: { |
||||
// 监听信息是否有更改,有的话页面离开的时候要询问是否要保存 |
||||
form: { |
||||
handler(){ |
||||
this.updateTime++ |
||||
}, |
||||
deep:true |
||||
}, |
||||
keyword: function(val) { |
||||
clearTimeout(this.searchTimer); |
||||
this.searchTimer = setTimeout(() => { |
||||
this.initData(); |
||||
}, 500); |
||||
} |
||||
keyword: function (val) { |
||||
clearTimeout(this.searchTimer); |
||||
this.searchTimer = setTimeout(() => { |
||||
this.initData(); |
||||
}, 500); |
||||
} |
||||
}, |
||||
mounted () { |
||||
this.getCourse() |
||||
}, |
||||
methods: { |
||||
// 获取课程 |
||||
getCourse () { |
||||
this.loadIns = Loading.service() |
||||
this.$post(this.api.listOfGoods, { |
||||
pageNum: 1, |
||||
pageSize: 10000, |
||||
hotTag: 1, |
||||
sort: 0, |
||||
isAssociatedProduct: 1, |
||||
}).then(({ page }) => { |
||||
const list = page.records |
||||
this.curriculumList = page.records |
||||
if (!this.form.mallId && list.length) this.form.mallId = list[0].mallId |
||||
|
||||
this.courseChange() |
||||
}).catch(err => { |
||||
this.loadIns.close() |
||||
}); |
||||
}, |
||||
mounted() { |
||||
this.getCourse() |
||||
// 课程选择回调 |
||||
courseChange (val) { |
||||
const { systemId, associatedProduct } = this.curriculumList.find(e => e.mallId == this.form.mallId) |
||||
this.sysId = systemId |
||||
this.form.cid = associatedProduct |
||||
if (val) this.loadIns = Loading.service() |
||||
this.getProject() |
||||
}, |
||||
methods: { |
||||
// 获取课程 |
||||
getCourse() { |
||||
this.loadIns = Loading.service() |
||||
const sid = this.$store.state.dataPer.find(e => e.permissionName === '课程管理') |
||||
this.$post(this.api.curriculumList, { |
||||
isShelves: 1, |
||||
pageNum: 1, |
||||
pageSize: 10000, |
||||
supplierId: sid ? sid.supplierId : '' |
||||
}).then(({ page }) => { |
||||
const list = page.records |
||||
this.curriculumList = page.records |
||||
if (!this.form.cid && list.length) this.form.cid = list[0].cid |
||||
this.courseChange() |
||||
}).catch(err => { |
||||
this.loadIns.close() |
||||
}); |
||||
}, |
||||
// 课程选择回调 |
||||
courseChange(val) { |
||||
const { systemId } = this.curriculumList.find(e => e.cid == this.form.cid) |
||||
this.sysId = systemId |
||||
if (val) this.loadIns = Loading.service() |
||||
this.getProject() |
||||
}, |
||||
// 查询项目 |
||||
getProject() { |
||||
this.$post(this.api.getProjectAssessmentByCompetition, { |
||||
pageNum: this.page, |
||||
pageSize: this.pageSize, |
||||
cid: this.form.cid, |
||||
projectName: this.keyword, |
||||
systemId: this.sysId, |
||||
permissions: 2 |
||||
}).then(({ data }) => { |
||||
this.projects = data.records |
||||
this.total = data.total |
||||
this.loadIns.close() |
||||
}).catch(err => { |
||||
this.loadIns.close() |
||||
}); |
||||
}, |
||||
initData() { |
||||
this.page = 1; |
||||
this.getProject(); |
||||
}, |
||||
handleCurrentChange(val) { |
||||
this.page = val; |
||||
this.getProject(); |
||||
}, |
||||
// 自定义项目 |
||||
toProject() { |
||||
// 查询项目 |
||||
getProject () { |
||||
this.$post(this.api.getProjectAssessmentByCompetition, { |
||||
pageNum: this.page, |
||||
pageSize: this.pageSize, |
||||
cid: this.form.cid, |
||||
projectName: this.keyword, |
||||
systemId: this.sysId, |
||||
permissions: 2 |
||||
}).then(({ data }) => { |
||||
this.projects = data.records |
||||
this.total = data.total |
||||
this.loadIns.close() |
||||
}).catch(err => { |
||||
this.loadIns.close() |
||||
}); |
||||
}, |
||||
initData () { |
||||
this.page = 1; |
||||
this.getProject(); |
||||
}, |
||||
handleCurrentChange (val) { |
||||
this.page = val; |
||||
this.getProject(); |
||||
}, |
||||
// 自定义项目 |
||||
toProject () { |
||||
const { form, curStep } = this.$parent |
||||
form[curStep] = this.form |
||||
this.$store.commit('setCompetitionCache', { |
||||
form, |
||||
curStep |
||||
}) |
||||
const item = this.curriculumList.find(e => e.cid == this.form.cid) || {} // 获取选中课程中的系统id |
||||
let systemId = item.sysId || '1' |
||||
systemId = systemId.split(',')[0] // 系统id可能是多个,逗号分割的,所以处理成数组 |
||||
this.$router.push(`/projectList?systemId=${systemId}&show=1&name=${item.sysName.split(',')[0]}`) |
||||
}, |
||||
// 时间选择回调 |
||||
timeChange (val) { |
||||
if (val.length) { |
||||
const startTime = new Date(val[0]) |
||||
const endTime = new Date(val[1]) |
||||
const { playStartTime, playEndTime } = this.step1 |
||||
if (startTime < new Date(playStartTime) || endTime > new Date(playEndTime)) { |
||||
this.timeInvalid = true |
||||
return util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
||||
} |
||||
this.timeInvalid = false |
||||
const { form, curStep } = this.$parent |
||||
form[curStep] = this.form |
||||
this.$store.commit('setCompetitionCache', { |
||||
form, |
||||
curStep |
||||
}) |
||||
const item = this.curriculumList.find(e => e.cid == this.form.cid) || {} // 获取选中课程中的系统id |
||||
let systemId = item.sysId || '1' |
||||
systemId = systemId.split(',')[0] // 系统id可能是多个,逗号分割的,所以处理成数组 |
||||
this.$router.push(`/projectList?systemId=${systemId}&show=1&name=${item.sysName.split(',')[0]}`) |
||||
}, |
||||
// 时间选择回调 |
||||
timeChange(val) { |
||||
if (val.length) { |
||||
const startTime = new Date(val[0]) |
||||
const endTime = new Date(val[1]) |
||||
const { playStartTime, playEndTime } = this.step1 |
||||
if (startTime < new Date(playStartTime) || endTime > new Date(playEndTime)) { |
||||
this.timeInvalid = true |
||||
return util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
||||
} |
||||
this.timeInvalid = false |
||||
const { form, curStep } = this.$parent |
||||
for (const i in form) { |
||||
// 判断其他阶段的时间跟当前选的时间是否重叠 |
||||
if (i !== curStep) { |
||||
const time1 = new Date(form[i].startTime) |
||||
const time2 = new Date(form[i].endTime) |
||||
if ((startTime >= time1 && startTime <= time2) || (endTime >= time1 && endTime <= time2)) { |
||||
util.warningMsg('请注意,所设置的时间与已设置的阶段时间重合。') |
||||
break |
||||
} |
||||
for (const i in form) { |
||||
// 判断其他阶段的时间跟当前选的时间是否重叠 |
||||
if (i !== curStep) { |
||||
const time1 = new Date(form[i].startTime) |
||||
const time2 = new Date(form[i].endTime) |
||||
if ((startTime >= time1 && startTime <= time2) || (endTime >= time1 && endTime <= time2)) { |
||||
util.warningMsg('请注意,所设置的时间与已设置的阶段时间重合。') |
||||
break |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
// 提交 |
||||
save() { |
||||
const { form } = this |
||||
if (!form.time.length) return util.warningMsg('请选择比赛时间') |
||||
const { playStartTime, playEndTime } = this.step1 |
||||
if (new Date(form.time[0]) < new Date(playStartTime) || new Date(form.time[1]) > new Date(playEndTime)) return util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
||||
if (!form.cid) return util.warningMsg('请选择课程') |
||||
if (!form.projectId) return util.warningMsg('请选择项目') |
||||
const { systemId, systemName, projectName } = this.projects.find(e => e.projectId == form.projectId) |
||||
if (systemId) form.systemId = systemId |
||||
if (projectName) form.projectName = projectName |
||||
if (systemName) form.systemName = systemName |
||||
form.startTime = form.time[0] |
||||
form.endTime = form.time[1] |
||||
this.$emit('hideSet', this.form) |
||||
}, |
||||
// 返回 |
||||
back() { |
||||
this.$emit('hideSet') |
||||
} |
||||
}, |
||||
// 提交 |
||||
save () { |
||||
const { form } = this |
||||
if (!form.time.length) return util.warningMsg('请选择比赛时间') |
||||
const { playStartTime, playEndTime } = this.step1 |
||||
if (new Date(form.time[0]) < new Date(playStartTime) || new Date(form.time[1]) > new Date(playEndTime)) return util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
||||
if (!form.cid) return util.warningMsg('请选择课程') |
||||
if (!form.projectId) return util.warningMsg('请选择项目') |
||||
const { systemId, systemName, projectName } = this.projects.find(e => e.projectId == form.projectId) |
||||
if (systemId) form.systemId = systemId |
||||
if (projectName) form.projectName = projectName |
||||
if (systemName) form.systemName = systemName |
||||
form.startTime = form.time[0] |
||||
form.endTime = form.time[1] |
||||
this.$emit('hideSet', this.form) |
||||
}, |
||||
// 返回 |
||||
back () { |
||||
this.$emit('hideSet') |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
|
||||
</style> |
@ -1,319 +1,355 @@ |
||||
<template> |
||||
<div> |
||||
<div v-show="!setVisible" class="page"> |
||||
<div class="page-content"> |
||||
<div class="p-title">比赛内容设置</div> |
||||
<el-form label-width="170px" label-suffix=":" size="small" :disabled="!editing && id"> |
||||
<div v-for="(item, i) in form" :key="i" class="step"> |
||||
<div class="title"> |
||||
<span>{{ item.stageName }}(第{{ nums[i] }}阶段) | {{ methods.find(e => e.id === item.method).name }} </span> |
||||
<el-button v-if="item.method !== 2" type="primary" @click="toSet(i)">设置</el-button> |
||||
</div> |
||||
<el-form-item class="req" prop="time" label="比赛时间"> |
||||
<span v-if="item.method !== 2 && item.startTime">{{ item.startTime + ' 至 ' + item.endTime }}</span> |
||||
<div style="display: flex;align-items: center;" v-if="item.method === 2"> |
||||
<el-date-picker |
||||
v-model="item.time" |
||||
type="datetimerange" |
||||
range-separator="~" |
||||
start-placeholder="开始日期" |
||||
end-placeholder="结束日期" |
||||
format="yyyy-MM-dd HH:mm:ss" |
||||
value-format="yyyy-MM-dd HH:mm:ss" |
||||
@change="timeChange"> |
||||
</el-date-picker> |
||||
<el-alert |
||||
style="width: auto;padding: 0px 16px;margin-left: 10px;" |
||||
:title="'(请设置在 ' + step1.playStartTime + ' ~ ' + step1.playEndTime + '间)'" |
||||
type="error" |
||||
:closable="false" |
||||
effect="dark"> |
||||
</el-alert> |
||||
</div> |
||||
</el-form-item> |
||||
<template v-if="item.method === 2"> |
||||
<el-form-item class="req" label="比赛地点"> |
||||
<el-input v-model="item.offlineAddress" style="width: 80%"></el-input> |
||||
</el-form-item> |
||||
<el-form-item class="req" label="比赛内容"> |
||||
<el-input v-model="item.contentDescription" type="textarea" style="width: 80%"></el-input> |
||||
</el-form-item> |
||||
<el-form-item class="req" label="评分规则"> |
||||
<el-input v-model="item.scoreRule" type="textarea" style="width: 80%"></el-input> |
||||
</el-form-item> |
||||
</template> |
||||
<template v-else> |
||||
<el-form-item class="req" prop="cid" label="课程系统"> |
||||
{{ item.systemName }} |
||||
</el-form-item> |
||||
<el-form-item class="req" prop="assessmentId" label="已选择考核"> |
||||
{{ item.projectName }} |
||||
</el-form-item> |
||||
<el-form-item class="req" prop="resultAnnouncementTime" label="比赛地点"> |
||||
<div class="line"> |
||||
<el-checkbox v-model="item.onlineButton">线上</el-checkbox> |
||||
<el-input v-model="item.onlineAddress" clearable placeholder="请输入比赛网址" :disabled="!item.onlineButton" style="width: 400px;margin-left: 10px"></el-input> |
||||
</div> |
||||
<div class="line"> |
||||
<el-checkbox v-model="item.offlineButton">线下</el-checkbox> |
||||
<el-input v-model="item.offlineAddress" clearable placeholder="请输入地址" :disabled="!item.offlineButton" style="width: 400px;margin-left: 10px"></el-input> |
||||
</div> |
||||
</el-form-item> |
||||
</template> |
||||
<div> |
||||
<div v-show="!setVisible" |
||||
class="page"> |
||||
<div class="page-content"> |
||||
<div class="p-title">比赛内容设置</div> |
||||
<el-form label-width="170px" |
||||
label-suffix=":" |
||||
size="small" |
||||
:disabled="!editing && id"> |
||||
<div v-for="(item, i) in form" |
||||
:key="i" |
||||
class="step"> |
||||
<div class="title"> |
||||
<span>{{ item.stageName }}(第{{ nums[i] }}阶段) | {{ methods.find(e => e.id === item.method).name }} </span> |
||||
<el-button v-if="item.method !== 2" |
||||
type="primary" |
||||
@click="toSet(i)">设置</el-button> |
||||
</div> |
||||
<el-form-item class="req" |
||||
prop="time" |
||||
label="比赛时间"> |
||||
<span v-if="item.method !== 2 && item.startTime">{{ item.startTime + ' 至 ' + item.endTime }}</span> |
||||
<div style="display: flex;align-items: center;" |
||||
v-if="item.method === 2"> |
||||
<el-date-picker v-model="item.time" |
||||
type="datetimerange" |
||||
range-separator="~" |
||||
start-placeholder="开始日期" |
||||
end-placeholder="结束日期" |
||||
format="yyyy-MM-dd HH:mm:ss" |
||||
value-format="yyyy-MM-dd HH:mm:ss" |
||||
@change="timeChange"> |
||||
</el-date-picker> |
||||
<el-alert style="width: auto;padding: 0px 16px;margin-left: 10px;" |
||||
:title="'(请设置在 ' + step1.playStartTime + ' ~ ' + step1.playEndTime + '间)'" |
||||
type="error" |
||||
:closable="false" |
||||
effect="dark"> |
||||
</el-alert> |
||||
</div> |
||||
</el-form> |
||||
</el-form-item> |
||||
<template v-if="item.method === 2"> |
||||
<el-form-item class="req" |
||||
label="比赛地点"> |
||||
<el-input v-model="item.offlineAddress" |
||||
style="width: 80%"></el-input> |
||||
</el-form-item> |
||||
<el-form-item class="req" |
||||
label="比赛内容"> |
||||
<el-input v-model="item.contentDescription" |
||||
type="textarea" |
||||
style="width: 80%"></el-input> |
||||
</el-form-item> |
||||
<el-form-item class="req" |
||||
label="评分规则"> |
||||
<el-input v-model="item.scoreRule" |
||||
type="textarea" |
||||
style="width: 80%"></el-input> |
||||
</el-form-item> |
||||
</template> |
||||
<template v-else> |
||||
<el-form-item class="req" |
||||
prop="cid" |
||||
label="课程系统"> |
||||
{{ item.systemName }} |
||||
</el-form-item> |
||||
<el-form-item class="req" |
||||
prop="assessmentId" |
||||
label="已选择考核"> |
||||
{{ item.projectName }} |
||||
</el-form-item> |
||||
<el-form-item class="req" |
||||
prop="resultAnnouncementTime" |
||||
label="比赛地点"> |
||||
<div class="line"> |
||||
<el-checkbox v-model="item.onlineButton">线上</el-checkbox> |
||||
<el-input v-model="item.onlineAddress" |
||||
clearable |
||||
placeholder="请输入比赛网址" |
||||
:disabled="!item.onlineButton" |
||||
style="width: 400px;margin-left: 10px"></el-input> |
||||
</div> |
||||
<div class="line"> |
||||
<el-checkbox v-model="item.offlineButton">线下</el-checkbox> |
||||
<el-input v-model="item.offlineAddress" |
||||
clearable |
||||
placeholder="请输入地址" |
||||
:disabled="!item.offlineButton" |
||||
style="width: 400px;margin-left: 10px"></el-input> |
||||
</div> |
||||
</el-form-item> |
||||
</template> |
||||
</div> |
||||
</div> |
||||
|
||||
<set v-if="setVisible" :form.sync="form[curStep]" :step1.sync="step1" @hideSet="hideSet" /> |
||||
</el-form> |
||||
</div> |
||||
</div> |
||||
|
||||
<set v-if="setVisible" |
||||
:form.sync="form[curStep]" |
||||
:step1.sync="step1" |
||||
@hideSet="hideSet" /> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import util from "@/libs/util"; |
||||
import set from './set' |
||||
export default { |
||||
props: ['setupId', 'competitionId', 'editing'], |
||||
data() { |
||||
return { |
||||
id: this.$route.query.id, |
||||
updateTime: 0, |
||||
step1: this.$parent.$refs.step1.form, |
||||
cache: this.$store.state.competitionCache, |
||||
nums: ['一', '二', '三'], |
||||
methods: [ |
||||
{ |
||||
id: 0, |
||||
name: '实操' |
||||
}, |
||||
{ |
||||
id: 1, |
||||
name: '理论' |
||||
}, |
||||
{ |
||||
id: 2, |
||||
name: '线下' |
||||
} |
||||
], |
||||
originForm: { |
||||
cid: '', |
||||
contentDescription: '', |
||||
endTime: '', |
||||
scoreRule: '', |
||||
stageId: '', |
||||
startTime: '', |
||||
systemId: '', |
||||
offlineAddress: '', |
||||
offlineButton: 0, |
||||
onlineAddress: '', |
||||
onlineButton: 0, |
||||
time: [] |
||||
}, |
||||
form: [], |
||||
setVisible: false, |
||||
curStep: 0, |
||||
}; |
||||
}, |
||||
components: { |
||||
set |
||||
}, |
||||
watch: { |
||||
// 监听信息是否有更改,有的话页面离开的时候要询问是否要保存 |
||||
form: { |
||||
handler(){ |
||||
this.updateTime++ |
||||
props: ['setupId', 'competitionId', 'editing'], |
||||
data () { |
||||
return { |
||||
id: this.$route.query.id, |
||||
updateTime: 0, |
||||
step1: this.$parent.$refs.step1.form, |
||||
cache: this.$store.state.competitionCache, |
||||
nums: ['一', '二', '三'], |
||||
methods: [ |
||||
{ |
||||
id: 0, |
||||
name: '实操' |
||||
}, |
||||
deep:true |
||||
}, |
||||
}, |
||||
mounted() { |
||||
this.handleForm() |
||||
}, |
||||
methods: { |
||||
// 如果是从自定义项目入口进去后返回的,要恢复上次的阶段和数据 |
||||
resumeData() { |
||||
if (this.cache) { |
||||
this.curStep = this.cache.curStep |
||||
if (this.cache.form) this.form = this.cache.form |
||||
this.setVisible = true |
||||
this.$store.commit('setCompetitionCache', null) |
||||
{ |
||||
id: 1, |
||||
name: '理论' |
||||
}, |
||||
{ |
||||
id: 2, |
||||
name: '线下' |
||||
} |
||||
], |
||||
originForm: { |
||||
cid: '', |
||||
mallId: '', |
||||
contentDescription: '', |
||||
endTime: '', |
||||
scoreRule: '', |
||||
stageId: '', |
||||
startTime: '', |
||||
systemId: '', |
||||
offlineAddress: '', |
||||
offlineButton: 0, |
||||
onlineAddress: '', |
||||
onlineButton: 0, |
||||
time: [] |
||||
}, |
||||
// 处理form |
||||
handleForm() { |
||||
// 根据赛事id查询赛事规则 |
||||
this.$post(`${this.api.queryCompetitionStageBySetupId}?setupId=${this.setupId}`).then(res => { |
||||
res.competitionStages.map(e => { |
||||
const form = e.competitionContent || JSON.parse(JSON.stringify(this.originForm)) |
||||
if (form.startTime) { |
||||
form.time = [form.startTime, form.endTime] |
||||
} else { |
||||
form.time = [] |
||||
} |
||||
form.offlineButton = !!form.offlineButton |
||||
form.onlineButton = !!form.onlineButton |
||||
form.method = e.method |
||||
form.stageId = e.stageId |
||||
form.stageName = e.stageName |
||||
this.form.push(form) |
||||
}) |
||||
this.resumeData() |
||||
this.$nextTick(() => { |
||||
this.updateTime = 0 |
||||
}) |
||||
}).catch(res => {}) |
||||
form: [], |
||||
setVisible: false, |
||||
curStep: 0, |
||||
}; |
||||
}, |
||||
components: { |
||||
set |
||||
}, |
||||
watch: { |
||||
// 监听信息是否有更改,有的话页面离开的时候要询问是否要保存 |
||||
form: { |
||||
handler () { |
||||
this.updateTime++ |
||||
}, |
||||
// 显示设置页面 |
||||
toSet(i) { |
||||
this.curStep = i |
||||
this.$parent.showBtns = false |
||||
deep: true |
||||
}, |
||||
}, |
||||
mounted () { |
||||
this.handleForm() |
||||
}, |
||||
methods: { |
||||
// 如果是从自定义项目入口进去后返回的,要恢复上次的阶段和数据 |
||||
resumeData () { |
||||
if (this.cache) { |
||||
this.curStep = this.cache.curStep |
||||
if (this.cache.form) this.form = this.cache.form |
||||
this.setVisible = true |
||||
}, |
||||
// 隐藏设置 |
||||
hideSet(form) { |
||||
if (form) this.form[this.curStep] = form |
||||
this.setVisible = false |
||||
this.$parent.showBtns = true |
||||
}, |
||||
// 时间选择回调 |
||||
timeChange(val) { |
||||
if (val.length) { |
||||
const startTime = new Date(val[0]) |
||||
const endTime = new Date(val[1]) |
||||
const { playStartTime, playEndTime } = this.step1 |
||||
if (startTime < new Date(playStartTime) || endTime > new Date(playEndTime)) return util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
||||
const { form, curStep } = this |
||||
for (const i in form) { |
||||
// 判断其他阶段的时间跟当前选的时间是否重叠 |
||||
if (i !== curStep) { |
||||
const time1 = new Date(form[i].startTime) |
||||
const time2 = new Date(form[i].endTime) |
||||
if ((startTime >= time1 && startTime <= time2) || (endTime >= time1 && endTime <= time2)) { |
||||
util.warningMsg('请注意,所设置的时间与已设置的阶段时间重合。') |
||||
break |
||||
} |
||||
this.$store.commit('setCompetitionCache', null) |
||||
} |
||||
}, |
||||
// 处理form |
||||
handleForm () { |
||||
// 根据赛事id查询赛事规则 |
||||
this.$post(`${this.api.queryCompetitionStageBySetupId}?setupId=${this.setupId}`).then(res => { |
||||
res.competitionStages.map(e => { |
||||
const form = e.competitionContent || JSON.parse(JSON.stringify(this.originForm)) |
||||
if (form.startTime) { |
||||
form.time = [form.startTime, form.endTime] |
||||
} else { |
||||
form.time = [] |
||||
} |
||||
if (!form.mallId) form.mallId = '' |
||||
form.offlineButton = !!form.offlineButton |
||||
form.onlineButton = !!form.onlineButton |
||||
form.method = e.method |
||||
form.stageId = e.stageId |
||||
form.stageName = e.stageName |
||||
this.form.push(form) |
||||
}) |
||||
this.resumeData() |
||||
this.$nextTick(() => { |
||||
this.updateTime = 0 |
||||
}) |
||||
}).catch(res => { }) |
||||
}, |
||||
// 显示设置页面 |
||||
toSet (i) { |
||||
this.curStep = i |
||||
this.$parent.showBtns = false |
||||
this.setVisible = true |
||||
}, |
||||
// 隐藏设置 |
||||
hideSet (form) { |
||||
if (form) this.form[this.curStep] = form |
||||
this.setVisible = false |
||||
this.$parent.showBtns = true |
||||
}, |
||||
// 时间选择回调 |
||||
timeChange (val) { |
||||
if (val.length) { |
||||
const startTime = new Date(val[0]) |
||||
const endTime = new Date(val[1]) |
||||
const { playStartTime, playEndTime } = this.step1 |
||||
if (startTime < new Date(playStartTime) || endTime > new Date(playEndTime)) return util.warningMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
||||
const { form, curStep } = this |
||||
for (const i in form) { |
||||
// 判断其他阶段的时间跟当前选的时间是否重叠 |
||||
if (i !== curStep) { |
||||
const time1 = new Date(form[i].startTime) |
||||
const time2 = new Date(form[i].endTime) |
||||
if ((startTime >= time1 && startTime <= time2) || (endTime >= time1 && endTime <= time2)) { |
||||
util.warningMsg('请注意,所设置的时间与已设置的阶段时间重合。') |
||||
break |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
// 发布赛事 |
||||
publish() { |
||||
this.competitionId && this.$post(`${this.api.publishCompetition}?competitionId=${this.competitionId}&publishStatus=1`).then(res => {}).catch(err => {}) |
||||
}, |
||||
// 提交 |
||||
save(status, next = 0) { |
||||
const { form } = this |
||||
if (!form.length) { |
||||
this.$parent.hideLoad() |
||||
util.successMsg('保存成功') |
||||
this.$emit('next', next) |
||||
return |
||||
} |
||||
// 发布才需要判断必填 |
||||
if (status) { |
||||
let invalid = 0 |
||||
const { playStartTime, playEndTime } = this.step1 |
||||
for (const e of form) { |
||||
if (!e.time.length) { |
||||
} |
||||
}, |
||||
// 发布赛事 |
||||
publish () { |
||||
this.competitionId && this.$post(`${this.api.publishCompetition}?competitionId=${this.competitionId}&publishStatus=1`).then(res => { }).catch(err => { }) |
||||
}, |
||||
// 提交 |
||||
save (status, next = 0) { |
||||
const { form } = this |
||||
if (!form.length) { |
||||
this.$parent.hideLoad() |
||||
util.successMsg('保存成功') |
||||
this.$emit('next', next) |
||||
return |
||||
} |
||||
// 发布才需要判断必填 |
||||
if (status) { |
||||
let invalid = 0 |
||||
const { playStartTime, playEndTime } = this.step1 |
||||
for (const e of form) { |
||||
if (!e.time.length) { |
||||
invalid = 1 |
||||
util.errorMsg('请选择比赛时间') |
||||
break |
||||
} |
||||
if (new Date(e.time[0]) < new Date(playStartTime) || new Date(e.time[1]) > new Date(playEndTime)) { |
||||
invalid = 1 |
||||
util.errorMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
||||
break |
||||
} |
||||
e.startTime = e.time[0] |
||||
e.endTime = e.time[1] |
||||
if (e.method !== 2 && !e.cid) { |
||||
invalid = 1 |
||||
util.errorMsg('请选择课程') |
||||
break |
||||
} |
||||
if (e.method === 2) { // 线下 |
||||
if (!e.offlineAddress) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入比赛地点') |
||||
break |
||||
} |
||||
if (!e.contentDescription) { |
||||
invalid = 1 |
||||
util.errorMsg('请选择比赛时间') |
||||
util.errorMsg('请输入比赛内容') |
||||
break |
||||
} |
||||
if (new Date(e.time[0]) < new Date(playStartTime) || new Date(e.time[1]) > new Date(playEndTime)) { |
||||
if (!e.scoreRule) { |
||||
invalid = 1 |
||||
util.errorMsg('设置的阶段比赛时间必须要在第一步设置的竞赛时间范围内,请重新设置。') |
||||
util.errorMsg('请输入评分规则') |
||||
break |
||||
} |
||||
e.startTime = e.time[0] |
||||
e.endTime = e.time[1] |
||||
if (e.method !== 2 && !e.cid) { |
||||
} else { |
||||
if (e.onlineButton && !e.onlineAddress) { |
||||
invalid = 1 |
||||
util.errorMsg('请选择课程') |
||||
util.errorMsg('请输入线上地点') |
||||
break |
||||
} |
||||
if (e.method === 2) { // 线下 |
||||
if (!e.offlineAddress) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入比赛地点') |
||||
break |
||||
} |
||||
if (!e.contentDescription) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入比赛内容') |
||||
break |
||||
} |
||||
if (!e.scoreRule) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入评分规则') |
||||
break |
||||
} |
||||
} else { |
||||
if (e.onlineButton && !e.onlineAddress) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入线上地点') |
||||
break |
||||
} |
||||
if (e.offlineButton && !e.offlineAddress) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入线下地点') |
||||
break |
||||
} |
||||
if (!e.onlineAddress && !e.offlineAddress) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入比赛地点') |
||||
break |
||||
} |
||||
if (e.offlineButton && !e.offlineAddress) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入线下地点') |
||||
break |
||||
} |
||||
if (!e.onlineAddress && !e.offlineAddress) { |
||||
invalid = 1 |
||||
util.errorMsg('请输入比赛地点') |
||||
break |
||||
} |
||||
} |
||||
if (invalid) return |
||||
} |
||||
// 处理单选框 |
||||
for (const e of form) { |
||||
e.offlineButton = e.offlineButton ? 1 : 0 |
||||
e.onlineButton = e.onlineButton ? 1 : 0 |
||||
} |
||||
this.$parent.showLoad() |
||||
this.$post(this.api[form[0].contentId ? 'editCompetitionContent' : 'addCompetitionContent'], { |
||||
competitionContents: form |
||||
}).then(res => { |
||||
this.$parent.hideLoad() |
||||
// 新增赛事,并且点的是发布按钮,则发布该赛事 |
||||
status && this.publish(status) |
||||
util.successMsg((status ? '发布' : '保存') + '成功') |
||||
this.$emit('next', next) |
||||
}).catch(err => { |
||||
this.$parent.hideLoad() |
||||
}) |
||||
}, |
||||
} |
||||
if (invalid) return |
||||
} |
||||
// 处理单选框 |
||||
for (const e of form) { |
||||
e.offlineButton = e.offlineButton ? 1 : 0 |
||||
e.onlineButton = e.onlineButton ? 1 : 0 |
||||
} |
||||
this.$parent.showLoad() |
||||
this.$post(this.api[form[0].contentId ? 'editCompetitionContent' : 'addCompetitionContent'], { |
||||
competitionContents: form |
||||
}).then(res => { |
||||
this.$parent.hideLoad() |
||||
// 新增赛事,并且点的是发布按钮,则发布该赛事 |
||||
status && this.publish(status) |
||||
util.successMsg((status ? '发布' : '保存') + '成功') |
||||
this.$emit('next', next) |
||||
}).catch(err => { |
||||
this.$parent.hideLoad() |
||||
}) |
||||
}, |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.step { |
||||
padding-bottom: 10px; |
||||
background-color: #f9f9f9; |
||||
.title { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
padding: 10px 15px; |
||||
margin-bottom: 10px; |
||||
background-color: #ededed; |
||||
} |
||||
padding-bottom: 10px; |
||||
background-color: #f9f9f9; |
||||
.title { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
padding: 10px 15px; |
||||
margin-bottom: 10px; |
||||
background-color: #ededed; |
||||
} |
||||
} |
||||
.line { |
||||
margin-bottom: 10px; |
||||
margin-bottom: 10px; |
||||
} |
||||
/deep/.req { |
||||
.el-form-item__label { |
||||
&:before { |
||||
content: '*'; |
||||
margin-right: 5px; |
||||
font-size: 18px; |
||||
vertical-align: middle; |
||||
color: #f00; |
||||
.el-form-item__label { |
||||
&:before { |
||||
content: '*'; |
||||
margin-right: 5px; |
||||
font-size: 18px; |
||||
vertical-align: middle; |
||||
color: #f00; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
</style> |
@ -0,0 +1,336 @@ |
||||
<template> |
||||
<div> |
||||
<el-card shadow="hover" |
||||
class="mgb20"> |
||||
<div class="flex-between"> |
||||
<div class="per_title" |
||||
v-preventReClick |
||||
@click="$router.back()"> |
||||
<i class="el-icon-arrow-left"></i> |
||||
<span class="per_back">返回</span> |
||||
<span class="per_school">{{ platformName }}日志管理</span> |
||||
</div> |
||||
</div> |
||||
</el-card> |
||||
<div class="page"> |
||||
<div class="inner"> |
||||
<div class="tool"> |
||||
<div class="filters"> |
||||
<h6>日志更新</h6> |
||||
<div class="filter"> |
||||
<label>版本查询</label> |
||||
<el-select v-model="versionName" |
||||
size="small" |
||||
placeholder="请选择版本" |
||||
filterable |
||||
@change="verChange"> |
||||
<el-option v-for="item in vers" |
||||
:key="item.id" |
||||
:label="item.name" |
||||
:value="item.id"> |
||||
</el-option> |
||||
</el-select> |
||||
</div> |
||||
</div> |
||||
<div> |
||||
<el-button type="primary" |
||||
@click="add" |
||||
v-auth="'/system:日志更新:管理:新增日志'">新增日志</el-button> |
||||
</div> |
||||
</div> |
||||
<el-timeline class="timeline"> |
||||
<el-timeline-item placement="top" |
||||
v-for="(item, i) in listData" |
||||
:key="i" |
||||
:class="['item' + i, {draft: item.draft}]"> |
||||
<p class="sign">{{ item.draft ? '未发布' : item.draftTime }}</p> |
||||
<div class="ver"> |
||||
<div> |
||||
{{ item.versionName + (item.draft ? '(草稿)' : '') }} |
||||
<span class="action"> |
||||
<i class="el-icon-edit-outline" |
||||
@click="edit(item)" |
||||
v-auth="'/system:日志更新:管理:编辑日志'"></i> |
||||
<i class="el-icon-delete" |
||||
@click="del(item)" |
||||
v-auth="'/system:日志更新:管理:删除日志'"></i> |
||||
</span> |
||||
</div> |
||||
<div> |
||||
<template v-if="!i && item.withdrawNum !== 1 && item.draft !== 1"> |
||||
<span class="withdraw" |
||||
v-if="item.withdraw && item.open">已撤回</span> |
||||
<el-button v-else |
||||
style="margin-right: 10px" |
||||
type="primary" |
||||
size="small" |
||||
@click="revoke(item)">撤销</el-button> |
||||
</template> |
||||
<el-switch v-model="item.open" |
||||
:active-value="0" |
||||
:inactive-value="1" |
||||
@change="switchOff($event, item)" |
||||
v-auth="'/system:日志更新:管理:开启日志'"></el-switch> |
||||
</div> |
||||
</div> |
||||
<ul class="detail"> |
||||
<li v-for="(item, i) in item.logContents" |
||||
:key="i"> |
||||
<p v-if="!isNaN(item.type)" |
||||
class="name"><img :src="require('@/assets/img/' + funcList.find(e => e.id === item.type).icon + '.png')" |
||||
alt=""> {{ funcList.find(e => e.id === item.type).name }}</p> |
||||
<div class="val"> |
||||
<p class="" |
||||
v-for="(item, i) in item.content" |
||||
:key="i">{{ item }}</p> |
||||
</div> |
||||
</li> |
||||
</ul> |
||||
</el-timeline-item> |
||||
</el-timeline> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import Setting from '@/setting' |
||||
export default { |
||||
data () { |
||||
return { |
||||
platformId: this.$route.query.platformId, |
||||
platformName: '', |
||||
versionName: '', |
||||
vers: [], |
||||
listData: [], |
||||
funcList: [ |
||||
{ |
||||
id: 0, |
||||
name: '新功能', |
||||
icon: 'func' |
||||
}, |
||||
{ |
||||
id: 1, |
||||
name: '修复', |
||||
icon: 'bug' |
||||
}, |
||||
{ |
||||
id: 2, |
||||
name: '优化', |
||||
icon: 'optimize' |
||||
} |
||||
] |
||||
}; |
||||
}, |
||||
mounted () { |
||||
this.getData() |
||||
}, |
||||
methods: { |
||||
// 获取列表 |
||||
getData () { |
||||
this.$get(`${this.api.platformLogList}?platformId=${this.platformId}&versionName=${this.versionName}`).then(res => { |
||||
const { logList } = res |
||||
this.listData = logList |
||||
if (logList.length) { |
||||
const vers = [] |
||||
const platformName = Setting.platformList.find(e => e.id === logList[0].platformId).name |
||||
this.platformName = platformName |
||||
logList.map((e, i) => { |
||||
e.logContents.map(n => { |
||||
n.content = n.content.split('\n') |
||||
}) |
||||
vers.push({ |
||||
id: i, |
||||
name: e.versionName |
||||
}) |
||||
}) |
||||
this.vers = vers |
||||
} |
||||
}).catch(res => { }) |
||||
}, |
||||
// 新增日志 |
||||
add () { |
||||
if (this.listData.find(e => e.draft)) { |
||||
this.$confirm("当前有未发布的版本,是否要新增版本?", "提示", { |
||||
type: "warning" |
||||
}).then(() => { |
||||
this.$router.push(`/addLog?platformId=${this.platformId}`) |
||||
}).catch(() => { }) |
||||
} else { |
||||
this.$router.push(`/addLog?platformId=${this.platformId}`) |
||||
} |
||||
}, |
||||
// 编辑 |
||||
edit (item) { |
||||
this.$router.push(`/addLog?platformId=${this.platformId}&id=${item.logId}&draft=${item.draft}`) |
||||
}, |
||||
// 删除日志 |
||||
del (item) { |
||||
this.$confirm("确定要删除吗?", "提示", { |
||||
type: "warning" |
||||
}).then(() => { |
||||
this.$post(`${this.api.logDel}?logId=${item.logId}`).then(res => { |
||||
this.$message.success("删除成功") |
||||
this.getData() |
||||
}).catch(res => { }) |
||||
}).catch(() => { }) |
||||
}, |
||||
// 撤销 |
||||
revoke (item) { |
||||
this.$confirm("确定要撤销吗?", "提示", { |
||||
type: "warning" |
||||
}).then(() => { |
||||
this.$get(`${this.api.logWithdrawal}?platformId=${this.platformId}&logId=${item.logId}`).then(res => { |
||||
this.$message.success('撤销成功') |
||||
this.getData() |
||||
}).catch(res => { }) |
||||
}).catch(() => { }) |
||||
}, |
||||
changeStatus (logId, open, draft) { |
||||
this.$post(this.api.listUpdate, { |
||||
logId, |
||||
open, |
||||
draft |
||||
}).then(res => { |
||||
this.$message.success(open ? '禁用成功' : '启用成功') |
||||
this.getData() |
||||
}).catch(res => { }) |
||||
}, |
||||
// 禁用启用 |
||||
switchOff (val, row) { |
||||
const logId = row.logId |
||||
if (row.draft && !val) { |
||||
this.$confirm('是否要发布该日志?', '提示', { |
||||
type: 'success' |
||||
}).then(() => { |
||||
this.changeStatus(logId, val, 0) |
||||
}).catch(() => { |
||||
this.changeStatus(logId, val, 1) |
||||
}) |
||||
} else { |
||||
this.changeStatus(logId, val, row.draft) |
||||
} |
||||
}, |
||||
// 版本切换 |
||||
verChange (i) { |
||||
window.scrollTo({ |
||||
top: document.querySelector(`.item${i}`).offsetTop, |
||||
behavior: 'smooth' |
||||
}) |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
<style lang="scss" scoped> |
||||
.page { |
||||
min-height: calc(100vh - 300px); |
||||
padding: 24px 0; |
||||
.inner { |
||||
width: 900px; |
||||
margin: 0 auto; |
||||
} |
||||
} |
||||
.tool { |
||||
padding-bottom: 20px; |
||||
margin-bottom: 0; |
||||
border-bottom: 1px solid #f0f0f0; |
||||
} |
||||
.filters { |
||||
display: inline-flex; |
||||
align-items: center; |
||||
h6 { |
||||
margin-right: 100px; |
||||
font-size: 18px; |
||||
} |
||||
} |
||||
/deep/.timeline { |
||||
padding-left: 20%; |
||||
overflow: hidden; |
||||
.el-timeline-item__node--normal { |
||||
top: 30px; |
||||
} |
||||
.el-timeline-item__wrapper { |
||||
top: 15px; |
||||
padding-left: 40px; |
||||
} |
||||
.el-timeline-item__tail { |
||||
height: 250%; |
||||
border-left-width: 1px; |
||||
} |
||||
.sign { |
||||
position: relative; |
||||
display: inline-block; |
||||
margin-left: -22%; |
||||
font-size: 14px; |
||||
color: #9076ff; |
||||
} |
||||
.draft { |
||||
.ver, |
||||
.sign { |
||||
color: #b1b1b1; |
||||
} |
||||
} |
||||
.ver { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
padding-bottom: 10px; |
||||
margin: -19px 0 20px; |
||||
font-size: 18px; |
||||
color: #9076ff; |
||||
border-bottom: 1px dashed #bfbfbf; |
||||
} |
||||
.withdraw { |
||||
margin-right: 10px; |
||||
font-size: 13px; |
||||
color: #979797; |
||||
} |
||||
.action { |
||||
margin-left: 15px; |
||||
i { |
||||
margin-left: 8px; |
||||
font-size: 14px; |
||||
color: #9076ff; |
||||
cursor: pointer; |
||||
&:hover { |
||||
opacity: 0.9; |
||||
} |
||||
} |
||||
} |
||||
.detail { |
||||
li { |
||||
margin-bottom: 20px; |
||||
} |
||||
.name { |
||||
display: flex; |
||||
align-items: center; |
||||
margin-bottom: 5px; |
||||
font-size: 15px; |
||||
font-weight: 600; |
||||
img { |
||||
width: 20px; |
||||
margin-right: 5px; |
||||
} |
||||
} |
||||
.val { |
||||
font-size: 14px; |
||||
line-height: 1.8; |
||||
white-space: pre-wrap; |
||||
p { |
||||
position: relative; |
||||
color: #6a6a6a; |
||||
&:before { |
||||
content: ''; |
||||
display: inline-block; |
||||
width: 5px; |
||||
height: 5px; |
||||
margin: 0 10px 0 5px; |
||||
vertical-align: middle; |
||||
border-radius: 20px; |
||||
background-color: #c5b8ff; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
</style> |
Loading…
Reference in new issue