教学互动联调

alioss
yujialong 2 years ago
parent d543dbf308
commit 3dae9d9b85
  1. 7
      src/api/index.js
  2. BIN
      src/assets/img/like-up.png
  3. BIN
      src/assets/img/like.png
  4. BIN
      src/assets/img/love1.png
  5. BIN
      src/assets/img/love2.png
  6. 12
      src/pages/activity/list/index.vue
  7. 689
      src/pages/activity/manage/list/index.vue
  8. 347
      src/pages/activity/manage/manage/matchSignup.vue
  9. 154
      src/pages/station/preview/index.vue
  10. 2
      src/setting.js
  11. 336
      src/styles/page/station.scss

@ -40,6 +40,13 @@ export default {
deleteNotes: `nakadai/curriculumNotes/deleteNotes`, deleteNotes: `nakadai/curriculumNotes/deleteNotes`,
updateNote: `nakadai/curriculumNotes/updateNote`, updateNote: `nakadai/curriculumNotes/updateNote`,
// 教学互动
addComment: `nakadai/comment/addComment`,
commentTreeList: `nakadai/comment/commentTreeList`,
deleteAComment: `nakadai/comment/deleteAComment`,
commentAndLike: `nakadai/commentLike/commentAndLike`,
unlike: `nakadai/commentLike/unlike`,
// 能力测评 // 能力测评
canExperiment: `occupationlab/occupationlab/evaluationrecord/can_experiment`, // 查询是否能够开启实验 canExperiment: `occupationlab/occupationlab/evaluationrecord/can_experiment`, // 查询是否能够开启实验
experimentDetail: `occupationlab/occupationlab/evaluationrecord/detail`, // 成绩详情 experimentDetail: `occupationlab/occupationlab/evaluationrecord/detail`, // 成绩详情

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 408 B

After

Width:  |  Height:  |  Size: 463 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 436 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 411 B

@ -63,6 +63,14 @@
<span class="val">{{ item.initiator }}</span> <span class="val">{{ item.initiator }}</span>
</div> </div>
</template> </template>
<div class="m-t-20">
<!-- <img src="@/assets/img/love1.png"
alt=""> -->
<img class="m-r-5"
src="@/assets/img/love2.png"
alt="">
2人关注
</div>
</div> </div>
</div> </div>
</div> </div>
@ -145,6 +153,10 @@ export default {
{ {
id: 0, id: 0,
name: "已报名" name: "已报名"
},
{
id: 1,
name: "已关注项目"
} }
], ],
form: { form: {

@ -1,89 +1,148 @@
<template> <template>
<div class="wrap"> <div class="wrap">
<div class="page"> <div class="page">
<h6 class="p-title">筛选</h6> <h6 class="p-title">筛选</h6>
<div class="tool mul"> <div class="tool mul">
<ul class="filter"> <ul class="filter">
<li> <li>
<label>创建时间</label> <label>创建时间</label>
<el-radio-group size="small" v-model="form.month" @change="changeType"> <el-radio-group size="small"
<el-radio v-for="(item,index) in dateList" :key="index" :label="item.id" border>{{ item.name }}</el-radio> v-model="form.month"
</el-radio-group> @change="changeType">
</li> <el-radio v-for="(item,index) in dateList"
<li> :key="index"
<label>创建区间</label> :label="item.id"
<el-date-picker v-model="date" align="right" unlink-panels type="daterange" start-placeholder="开始日期" end-placeholder="结束日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" clearable></el-date-picker> border>{{ item.name }}</el-radio>
</li> </el-radio-group>
<li> </li>
<label>搜索</label> <li>
<el-input placeholder="请输入项目名称/创建人" suffix-icon="el-icon-search" v-model="keyword" clearable></el-input> <label>创建区间</label>
</li> <el-date-picker v-model="date"
</ul> align="right"
</div> unlink-panels
<div class="tool mul"> type="daterange"
<ul class="filter"> start-placeholder="开始日期"
<li> end-placeholder="结束日期"
<label>状态</label> format="yyyy-MM-dd"
<dl> value-format="yyyy-MM-dd"
<dd> clearable></el-date-picker>
<el-radio-group v-model="form.publishStatus" @change="changeType"> </li>
<el-radio v-for="(item,index) in statuses" :key="index" :label="item.id" border>{{ item.name }}</el-radio> <li>
</el-radio-group> <label>搜索</label>
</dd> <el-input placeholder="请输入项目名称/创建人"
</dl> suffix-icon="el-icon-search"
</li> v-model="keyword"
</ul> clearable></el-input>
<div> </li>
<el-button type="primary" round @click="add">创建项目</el-button> </ul>
<el-button type="primary" round @click="delAllSelection">批量删除</el-button> </div>
</div> <div class="tool mul">
<ul class="filter">
<li>
<label>状态</label>
<dl>
<dd>
<el-radio-group v-model="form.publishStatus"
@change="changeType">
<el-radio v-for="(item,index) in statuses"
:key="index"
:label="item.id"
border>{{ item.name }}</el-radio>
</el-radio-group>
</dd>
</dl>
</li>
</ul>
<div>
<el-button type="primary"
round
@click="add">创建项目</el-button>
<el-button type="primary"
round
@click="delAllSelection">批量删除</el-button>
</div> </div>
</div>
<el-table ref="table" :data="activityData" class="table" stripe header-align="center" @selection-change="handleSelectionChange" row-key="id"> <el-table ref="table"
<el-table-column type="selection" width="55" align="center" :reserve-selection="true"></el-table-column> :data="activityData"
<el-table-column type="index" width="60" label="序号" align="center"> class="table"
<template slot-scope="scope"> stripe
{{ scope.$index + (page - 1) * pageSize + 1 }} header-align="center"
</template> @selection-change="handleSelectionChange"
</el-table-column> row-key="id">
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column> <el-table-column type="selection"
<el-table-column prop="applicantNum" label="报名人数" align="center" width="150"></el-table-column> width="55"
<el-table-column prop="status" label="状态" align="center" width="90"> align="center"
<template slot-scope="scope"> :reserve-selection="true"></el-table-column>
{{ scope.row.publishStatus ? '已发布' : '未发布' }} <el-table-column type="index"
</template> width="60"
</el-table-column> label="序号"
<el-table-column prop="time" label="项目时间" align="center" width="300"> align="center">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.playStartTime }} ~ {{ scope.row.playEndTime }} {{ scope.$index + (page - 1) * pageSize + 1 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="createTime" label="创建时间" align="center" width="160"></el-table-column> <el-table-column prop="projectName"
<el-table-column prop="founderName" label="创建人" align="center" width="130"> label="项目名称"
<template slot-scope="scope"> align="center"></el-table-column>
{{ scope.row.founderName || '学校超管' }} <el-table-column prop="applicantNum"
</template> label="报名人数"
</el-table-column> align="center"
<el-table-column label="操作" align="center" width="170"> width="150"></el-table-column>
<template slot-scope="scope"> <el-table-column prop="status"
<el-button type="text" @click="manage(scope.row)">管理</el-button> label="状态"
<el-button type="text" @click="delData(scope.row)">删除</el-button> align="center"
<el-switch width="90">
v-if="scope.row.publishStatus" <template slot-scope="scope">
v-model="scope.row.isOpen" {{ scope.row.publishStatus ? '已发布' : '未发布' }}
:active-value="0" </template>
:inactive-value="1" </el-table-column>
style="margin: 0 10px 0 5px" <el-table-column prop="time"
:active-text="scope.row.isOpen ? '关' : '开'" label="项目时间"
@change="switchOff($event,scope.row,scope.$index)" align="center"
></el-switch> width="300">
</template> <template slot-scope="scope">
</el-table-column> {{ scope.row.playStartTime }} ~ {{ scope.row.playEndTime }}
</el-table> </template>
<div class="pagination"> </el-table-column>
<el-pagination background layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange" :current-page="page"> <el-table-column prop="createTime"
</el-pagination> label="创建时间"
</div> align="center"
width="160"></el-table-column>
<el-table-column prop="founderName"
label="创建人"
align="center"
width="130">
<template slot-scope="scope">
{{ scope.row.founderName || '学校超管' }}
</template>
</el-table-column>
<el-table-column label="操作"
align="center"
width="170">
<template slot-scope="scope">
<el-button type="text"
@click="manage(scope.row)">管理</el-button>
<el-button type="text"
@click="delData(scope.row)">删除</el-button>
<el-switch v-if="scope.row.publishStatus"
v-model="scope.row.isOpen"
:active-value="0"
:inactive-value="1"
style="margin: 0 10px 0 5px"
:active-text="scope.row.isOpen ? '关' : '开'"
@change="switchOff($event,scope.row,scope.$index)"></el-switch>
</template>
</el-table-column>
</el-table>
<div class="pagination">
<el-pagination background
layout="total, prev, pager, next"
:total="total"
@current-change="handleCurrentChange"
:current-page="page">
</el-pagination>
</div>
</div> </div>
</div> </div>
</template> </template>
@ -94,249 +153,251 @@ import Setting from "@/setting";
import { mapMutations } from "vuex"; import { mapMutations } from "vuex";
import { Loading } from 'element-ui' import { Loading } from 'element-ui'
export default { export default {
data() { data () {
return { return {
timer: null, timer: null,
keyword: "", keyword: "",
activityData: [], activityData: [],
statuses: [ statuses: [
{ {
id: '', id: '',
name: '不限' name: '不限'
}, },
{ {
id: 0, id: 0,
name: '待发布' name: '待发布'
},
{
id: 1,
name: '已发布'
}
],
form: {
month: "",
publishStatus: "",
startTime: "",
endTime: "",
},
multipleSelection: [],
dateList: [
{
id: "",
name: "不限"
},
{
id: 1,
name: "近一个月"
},
{
id: 3,
name: "近三个月"
},
{
id: 6,
name: "近六个月"
}
],
date: [],
page: +this.$route.query.page || 1,
pageSize: 10,
total: 0,
transferPublishStatus: [ "未发布", "已发布"],
modifyVisible: false,
curRow: {
playingStages: []
},
timer: null,
redisTimer: null,
pickerOptions: {
shortcuts: [{
text: '此刻',
onClick(picker) {
picker.$emit('pick', new Date(Date.now() + 5000))
}
}]
}
};
},
watch: {
"form.month": function(val) {
if (val) {
let unit = 24 * 60 * 60 * 1000;
this.date = [util.formatDate("yyyy-MM-dd", new Date(new Date().getTime() - unit * 30 * val)), util.formatDate("yyyy-MM-dd", new Date(new Date().getTime() + unit))];
} else {
this.date = [];
}
}, },
date: function(val) { {
if (val) { id: 1,
this.form.startTime = val[0]; name: '已发布'
this.form.endTime = val[1]; }
} else { ],
this.form.startTime = ""; form: {
this.form.endTime = ""; month: "",
} publishStatus: "",
this.initData(); startTime: "",
endTime: "",
},
multipleSelection: [],
dateList: [
{
id: "",
name: "不限"
},
{
id: 1,
name: "近一个月"
}, },
keyword: function(val) { {
clearTimeout(this.searchTimer); id: 3,
this.searchTimer = setTimeout(() => { name: "近三个月"
this.initData(); },
}, 500); {
id: 6,
name: "近六个月"
} }
],
date: [],
page: +this.$route.query.page || 1,
pageSize: 10,
total: 0,
transferPublishStatus: ["未发布", "已发布"],
modifyVisible: false,
curRow: {
playingStages: []
},
timer: null,
redisTimer: null,
pickerOptions: {
shortcuts: [{
text: '此刻',
onClick (picker) {
picker.$emit('pick', new Date(Date.now() + 5000))
}
}]
}
};
},
watch: {
"form.month": function (val) {
if (val) {
let unit = 24 * 60 * 60 * 1000;
this.date = [util.formatDate("yyyy-MM-dd", new Date(new Date().getTime() - unit * 30 * val)), util.formatDate("yyyy-MM-dd", new Date(new Date().getTime() + unit))];
} else {
this.date = [];
}
}, },
mounted() { date: function (val) {
this.getData() if (val) {
this.$once('hook:beforeDestroy', function() { this.form.startTime = val[0];
clearInterval(this.timer) this.form.endTime = val[1];
clearInterval(this.redisTimer) } else {
}) this.form.startTime = "";
this.form.endTime = "";
}
this.initData();
}, },
methods: { keyword: function (val) {
...mapMutations('activity', [ clearTimeout(this.searchTimer);
'setPage' this.searchTimer = setTimeout(() => {
]), this.initData();
getList() { }, 500);
// const load = Loading.service() }
const { form } = this },
this.$post(this.api.myActivities, { mounted () {
pageNum: this.page, this.getData()
pageSize: this.pageSize, this.$once('hook:beforeDestroy', function () {
endTime: form.endTime || null, clearInterval(this.timer)
keyWords: this.keyword || null, clearInterval(this.redisTimer)
platformSource: 2, // (0:1 2) })
startTime: form.startTime || null, },
publishStatus: form.publishStatus === '' ? null : form.publishStatus methods: {
}).then(({ data }) => { ...mapMutations('activity', [
// load.close() 'setPage'
if (data) { ]),
const list = data.records getList () {
// // const load = Loading.service()
this.timer = setInterval(() => { const { form } = this
const now = new Date() this.$post(this.api.myActivities, {
list.map(e => { pageNum: this.page,
if (!e.playingStages) { pageSize: this.pageSize,
this.$set(e, 'playingStages', []) endTime: form.endTime || null,
} else { keyWords: this.keyword || null,
e.playingStages = [] platformSource: 2, // (0:1 2)
} startTime: form.startTime || null,
// publishStatus: form.publishStatus === '' ? null : form.publishStatus
if (now >= new Date(e.playStartTime) && now <= new Date(e.playEndTime)) { }).then(({ data }) => {
// // load.close()
if (e.competitionStageList) { if (data) {
for (const n of e.competitionStageList) { const list = data.records
// //
if (now >= new Date(n.startTime) && now <= new Date(n.endTime)) { this.timer = setInterval(() => {
e.playingStages.push(n) const now = new Date()
} list.map(e => {
} if (!e.playingStages) {
this.$set(e, 'playingStages', [])
} else {
e.playingStages = []
}
//
if (now >= new Date(e.playStartTime) && now <= new Date(e.playEndTime)) {
//
if (e.competitionStageList) {
for (const n of e.competitionStageList) {
//
if (now >= new Date(n.startTime) && now <= new Date(n.endTime)) {
e.playingStages.push(n)
} }
} }
}) }
}, 1000)
list.map(e => {
if (e.schoolOpen) e.isOpen = 1
})
this.activityData = list
this.total = data.total
this.$refs.table.clearSelection()
if (!this.activityData.length && this.total) {
this.page--
this.getData()
} }
}
}).catch(res => {
// load.close()
})
},
getData() {
this.getList()
},
initData() {
this.page = 1;
this.getData();
},
// redis
getRedis() {
this.$post(this.api.getRedisCacheActivity).then(({ data }) => {
if (data) {
localStorage.getItem('activityTimestampClient') !== data && this.getList() // redis
localStorage.setItem('activityTimestampClient', data)
}
}).catch(res => {})
},
getData() {
this.getList()
// if (!Setting.isDev) {
clearInterval(this.redisTimer)
this.redisTimer = setInterval(this.getRedis, 1000)
// }
},
add() {
this.$router.push("add");
},
manage(row) {
this.$router.push(`manageDetail?id=${row.id}&name=${row.projectName}`)
},
changeType() {
this.$refs.table.clearSelection();
this.initData();
},
delData(row) {
this.$confirm("此删除操作不可逆,是否确认删除选中项?", "提示", {
type: "warning"
}) })
.then(() => { }, 1000)
this.$post(this.api.batchDeletionActivity, [row.id]).then(res => { list.map(e => {
util.successMsg("删除成功"); if (e.schoolOpen) e.isOpen = 1
this.getData(); })
}).catch(res => { this.activityData = list
}); this.total = data.total
}) this.$refs.table.clearSelection()
.catch(() => { if (!this.activityData.length && this.total) {
}); this.page--
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
//
delAllSelection() {
if (this.multipleSelection.length) {
this.$confirm("确定要删除吗?", "提示", {
type: "warning"
}).then(() => {
let ids = this.multipleSelection.map(e => e.id);
this.$post(this.api.batchDeletionActivity, this.multipleSelection.map(e => e.id)).then(res => {
this.getData();
this.$message.success("删除成功");
this.$refs.table.clearSelection()
}).catch(err => {
});
}).catch(() => {
});
} else {
this.$message.warning("请先选择项目 !");
}
},
handleCurrentChange(val) {
this.page = val;
this.$router.push(`list?page=${val}`)
this.getData() this.getData()
this.setPage(val) }
}, }
transferTime(date, type) { }).catch(res => {
if (date == "0000-00-00 00:00:00") return "---"; // load.close()
return date; })
}, },
switchOff(val, row) { getData () {
this.$post(this.api.disabledEventsActivity, { this.getList()
activityId: row.id, },
isOpen: val, initData () {
type: 2 // (01) this.page = 1;
}).then(res => {}).catch(err => {}) this.getData();
}, },
} // redis
getRedis () {
this.$post(this.api.getRedisCacheActivity).then(({ data }) => {
if (data) {
localStorage.getItem('activityTimestampClient') !== data && this.getList() // redis
localStorage.setItem('activityTimestampClient', data)
}
}).catch(res => { })
},
getData () {
this.getList()
// if (!Setting.isDev) {
clearInterval(this.redisTimer)
this.redisTimer = setInterval(this.getRedis, 1000)
// }
},
add () {
this.$router.push("add");
},
manage (row) {
this.$router.push(`manageDetail?id=${row.id}&name=${row.projectName}`)
},
changeType () {
this.$refs.table.clearSelection();
this.initData();
},
delData (row) {
this.$confirm("此删除操作不可逆,是否确认删除选中项?", "提示", {
type: "warning"
})
.then(() => {
this.$post(this.api.batchDeletionActivity, [row.id]).then(res => {
util.successMsg("删除成功");
this.getData();
}).catch(res => {
});
})
.catch(() => {
});
},
handleSelectionChange (val) {
this.multipleSelection = val;
},
//
delAllSelection () {
if (this.multipleSelection.length) {
this.$confirm("确定要删除吗?", "提示", {
type: "warning"
}).then(() => {
let ids = this.multipleSelection.map(e => e.id);
this.$post(this.api.batchDeletionActivity, this.multipleSelection.map(e => e.id)).then(res => {
this.getData();
this.$message.success("删除成功");
this.$refs.table.clearSelection()
}).catch(err => {
});
}).catch(() => {
});
} else {
this.$message.warning("请先选择项目 !");
}
},
handleCurrentChange (val) {
this.page = val;
this.$router.push(`list?page=${val}`)
this.getData()
this.setPage(val)
},
transferTime (date, type) {
if (date == "0000-00-00 00:00:00") return "---";
return date;
},
switchOff (val, row) {
this.$post(this.api.disabledEventsActivity, {
activityId: row.id,
isOpen: val,
type: 2
}).then(res => { }).catch(err => {
row.isOpen = val ? 0 : 1
})
},
}
}; };
</script> </script>

@ -1,57 +1,93 @@
<template> <template>
<!-- 报名人员 --> <!-- 报名人员 -->
<div class="page-content" style="padding: 24px"> <div class="page-content"
<div class="tool"> style="padding: 24px">
<ul class="filter"> <div class="tool">
<li> <ul class="filter">
<label>搜索</label> <li>
<el-input placeholder="请输入姓名/手机号/学号" prefix-icon="el-icon-search" v-model="keyword" clearable size="mini" style="width: 250px"></el-input> <label>搜索</label>
</li> <el-input placeholder="请输入姓名/手机号/学号"
<li> prefix-icon="el-icon-search"
<label>报名人员状态</label> v-model="keyword"
<el-select v-model="isDisable" @change="initData"> clearable
<el-option v-for="(item, i) in statusList" :key="i" :label="item.name" :value="item.id"></el-option> size="mini"
</el-select> style="width: 250px"></el-input>
</li> </li>
</ul> <li>
<div> <label>报名人员状态</label>
<el-button type="primary" round @click="exportAll">批量导出</el-button> <el-select v-model="isDisable"
</div> @change="initData">
</div> <el-option v-for="(item, i) in statusList"
:key="i"
:label="item.name"
:value="item.id"></el-option>
</el-select>
</li>
</ul>
<div>
<el-button type="primary"
round
@click="exportAll">批量导出</el-button>
</div>
</div>
<el-table ref="table" :data="listData" class="table" stripe header-align="center" @selection-change="handleSelectionChange" row-key="id"> <el-table ref="table"
<el-table-column type="selection" width="80" align="center" :reserve-selection="true"></el-table-column> :data="listData"
<el-table-column type="index" width="60" label="序号" align="center"> class="table"
<template slot-scope="scope"> stripe
{{ scope.$index + (page - 1) * pageSize + 1 }} header-align="center"
</template> @selection-change="handleSelectionChange"
</el-table-column> row-key="id"
<el-table-column prop="schoolName" label="学校" sortable="custom"> @sort-change="sortChange">
</el-table-column> <el-table-column type="selection"
<el-table-column prop="username" label="学生姓名"> width="80"
</el-table-column> align="center"
<el-table-column prop="workNumber" label="学号"> :reserve-selection="true"></el-table-column>
</el-table-column> <el-table-column type="index"
<el-table-column prop="phone" label="手机号"> width="60"
</el-table-column> label="序号"
<el-table-column label="操作" align="center" width="320"> align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-switch {{ scope.$index + (page - 1) * pageSize + 1 }}
v-model="scope.row.isDisable" </template>
:active-text="scope.row.isDisable ? '关' : '开'" </el-table-column>
:active-value="0" <el-table-column prop="schoolName"
:inactive-value="1" label="学校"
style="margin: 0 10px 0 5px" sortable="custom">
@change="switchOff($event,scope.row,scope.$index)" </el-table-column>
></el-switch> <el-table-column prop="username"
</template> label="学生姓名">
</el-table-column> </el-table-column>
</el-table> <el-table-column prop="workNumber"
<div class="pagination"> label="学号">
<el-pagination background layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange" :current-page="page"> </el-table-column>
</el-pagination> <el-table-column prop="phone"
</div> label="手机号">
</el-table-column>
<el-table-column label="操作"
align="center"
width="320">
<template slot-scope="scope">
<el-button type="text"
@click="delData(scope.row)">删除</el-button>
<el-switch v-model="scope.row.isDisable"
:active-text="scope.row.isDisable ? '关' : '开'"
:active-value="0"
:inactive-value="1"
style="margin-left: 5px"
@change="switchOff($event,scope.row,scope.$index)"></el-switch>
</template>
</el-table-column>
</el-table>
<div class="pagination">
<el-pagination background
layout="total, prev, pager, next"
:total="total"
@current-change="handleCurrentChange"
:current-page="page">
</el-pagination>
</div> </div>
</div>
</template> </template>
<script> <script>
@ -59,109 +95,130 @@ import util from "@/libs/util";
import axios from 'axios' import axios from 'axios'
import Setting from "@/setting"; import Setting from "@/setting";
export default { export default {
name: "matchSignup", name: "matchSignup",
data() { data () {
return { return {
token: util.local.get(Setting.tokenKey), token: util.local.get(Setting.tokenKey),
id: +this.$route.query.id, id: +this.$route.query.id,
isDisable: '', isDisable: '',
statusList: [ statusList: [
{ {
id: '', id: '',
name: '不限' name: '不限'
}, },
{ {
id: 1, id: 1,
name: '已禁用' name: '已禁用'
}, },
{ {
id: 0, id: 0,
name: '未禁用' name: '未禁用'
}
],
keyword: "",
listData: [],
multipleSelection: [],
page: 1,
pageSize: 10,
total: 0,
};
},
watch: {
keyword: function(val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.initData();
}, 500);
} }
],
keyword: "",
listData: [],
multipleSelection: [],
page: 1,
pageSize: 10,
total: 0,
};
},
watch: {
keyword: function (val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.initData();
}, 500);
}
},
mounted () {
this.initData()
},
methods: {
getData () {
this.$post(this.api.ApplicantsList, {
pageNum: this.page,
pageSize: this.pageSize,
activityId: this.id,
keyWords: this.keyword,
isDisable: this.isDisable,
}).then(({ data }) => {
this.listData = data.data.records;
this.total = data.data.total;
}).catch(res => {
});
}, },
mounted() { initData () {
this.initData() this.page = 1
this.getData()
}, },
methods: { handleSelectionChange (val) {
getData() { this.multipleSelection = val;
this.$post(this.api.ApplicantsList, { },
pageNum: this.page, handleCurrentChange (val) {
pageSize: this.pageSize, this.page = val;
activityId: this.id, this.getData();
keyWords: this.keyword, },
isDisable: this.isDisable, switchOff (val, row, index) {
}).then(({ data }) => { this.$put(`${this.api.disableActivityApplicant}?competitionRegistrationId=${row.id}&isDisable=${val}`).then(res => { }).catch(err => { });
this.listData = data.data.records; },
this.total = data.data.total; delData (row) {
}).catch(res => { this.$confirm("此删除操作不可逆,是否确认删除选中项?", "提示", {
}); type: "warning"
}, })
initData() { .then(() => {
this.page = 1 this.$post(`${this.api.delActivityApplicant}?id=${row.id}`).then(res => {
this.getData() util.successMsg("删除成功");
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
handleCurrentChange(val) {
this.page = val;
this.getData(); this.getData();
}, }).catch(res => {
switchOff(val, row, index) { });
this.$put(`${this.api.disableActivityApplicant}?competitionRegistrationId=${row.id}&isDisable=${val}`).then(res => {}).catch(err => {}); })
}, .catch(() => {
exportAll() { });
const data = this.multipleSelection },
if (data.length) { //
data.map((e, i) => e.id = i + 1) sortChange (column) {
axios.post(this.api.exportDataInBatchesApplicant, data, { // 12
headers: { if (column.prop === 'school') this.schoolOrder = column.order ? column.order === 'ascending' ? 2 : 1 : ''
token: this.token if (column.prop === 'teamName') this.teamOrder = column.order ? column.order === 'ascending' ? 2 : 1 : ''
}, this.getData()
responseType: 'blob' },
}).then((res) => { exportAll () {
util.downloadFileDirect(`报名人员.xls`, new Blob([res.data])) const data = this.multipleSelection
}).catch(res => {}) if (data.length) {
} else { data.map((e, i) => e.id = i + 1)
axios.get(`${this.api.excelExportApplicant}?activityId=${this.id}`, { axios.post(this.api.exportDataInBatchesApplicant, data, {
headers: { headers: {
token: this.token token: this.token
}, },
responseType: 'blob' responseType: 'blob'
}).then((res) => { }).then((res) => {
util.downloadFileDirect(`报名人员.xls`, new Blob([res.data])) util.downloadFileDirect(`报名人员.xls`, new Blob([res.data]))
}).catch(res => {}) }).catch(res => { })
} } else {
} axios.get(`${this.api.excelExportApplicant}?activityId=${this.id}`, {
headers: {
token: this.token
},
responseType: 'blob'
}).then((res) => {
util.downloadFileDirect(`报名人员.xls`, new Blob([res.data]))
}).catch(res => { })
}
} }
}
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
/deep/.dia-form { /deep/.dia-form {
.w-100 { .w-100 {
width: 100%; width: 100%;
} }
.tips { .tips {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
} }
} }
</style> </style>

@ -181,6 +181,7 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
<div class="text-right"> <div class="text-right">
<el-button @click="showNoteAdd = false">取消</el-button>
<el-button type="primary" <el-button type="primary"
@click="submitNote">保存</el-button> @click="submitNote">保存</el-button>
</div> </div>
@ -227,11 +228,16 @@
<div class="page"> <div class="page">
<quill ref="quill" <quill ref="quill"
:border="true" :border="true"
v-model="msg" v-model="comment"
:height="150" :height="150"
:toTop="false" /> :toTop="false" />
<div class="m-t-10 text-right">
<el-button type="primary"
size="mini"
@click="submitComment(0)">提交</el-button>
</div>
<ul class="msg"> <ul class="msg">
<li v-for="(item, i) in msgs" <li v-for="(item, i) in comments"
:key="i"> :key="i">
<div class="li-wrap"> <div class="li-wrap">
<img :src="item.avatar" <img :src="item.avatar"
@ -239,18 +245,27 @@
class="avatar"> class="avatar">
<div class="texts"> <div class="texts">
<h6> <h6>
<span class="name">{{ item.userName }}</span> <span class="name">{{ item.createUsername }}</span>
发表于 {{ item.createDate }} 发表于 {{ item.createTime }}
</h6> </h6>
<div class="des" <div class="des"
v-html="item.content"></div> v-html="item.content"></div>
</div> </div>
<div class="action"> <div class="action">
<i class="icon el-icon-chat-dot-square"></i> <i class="icon el-icon-chat-dot-square"
<i class="icon el-icon-delete"></i> @click="showReplay(item)"></i>
<img class="icon" <i class="icon el-icon-delete"
@click="delComment(item)"></i>
<img v-if="item.isLike"
class="icon"
src="@/assets/img/like-up.png"
alt=""
@click="like(item)">
<img v-else
class="icon"
src="@/assets/img/like.png" src="@/assets/img/like.png"
alt=""> alt=""
@click="like(item)">
</div> </div>
</div> </div>
<div class="reply" <div class="reply"
@ -261,7 +276,8 @@
:height="150" /> :height="150" />
<div class="m-t-10 text-right"> <div class="m-t-10 text-right">
<el-button type="primary" <el-button type="primary"
size="mini">提交</el-button> size="mini"
@click="submitComment(item)">提交</el-button>
</div> </div>
</div> </div>
<ul class="msg children" <ul class="msg children"
@ -273,17 +289,26 @@
:src="reply.avatar" :src="reply.avatar"
alt=""> alt="">
<div class="texts"> <div class="texts">
<div class="name">{{reply.userName}}</div> <div class="name">{{reply.createUsername}}</div>
<div class="des" <div class="des"
v-html="reply.content"></div> v-html="reply.content"></div>
<div class="date">{{reply.createDate}}</div> <div class="date">{{reply.createTime}}</div>
</div> </div>
<div class="action"> <div class="action">
<i class="icon el-icon-chat-dot-square"></i> <i class="icon el-icon-chat-dot-square"
<i class="icon el-icon-delete"></i> @click="showReplay(reply)"></i>
<img class="icon" <i class="icon el-icon-delete"
@click="delComment(reply)"></i>
<img v-if="reply.isLike"
class="icon"
src="@/assets/img/like-up.png"
alt=""
@click="like(reply)">
<img v-else
class="icon"
src="@/assets/img/like.png" src="@/assets/img/like.png"
alt=""> alt=""
@click="like(reply)">
</div> </div>
</div> </div>
<div class="reply" <div class="reply"
@ -294,7 +319,8 @@
:height="150" /> :height="150" />
<div class="m-t-10 text-right"> <div class="m-t-10 text-right">
<el-button type="primary" <el-button type="primary"
size="mini">提交</el-button> size="mini"
@click="submitComment(item, reply)">提交</el-button>
</div> </div>
</div> </div>
</li> </li>
@ -437,27 +463,8 @@ export default {
noteContent: '', noteContent: '',
noteName: '', noteName: '',
}, },
msg: '', comments: [],
msgs: [ comment: '',
{
avatar: 'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
createDate: '2023-04-28 12:41:10',
userName: '刘恒',
content: '基础、个人、增值',
showReply: false,
getCommentReplyNum: 1,
showChildren: false,
children: [
{
avatar: 'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png',
createDate: '2023-04-29 09:22:13',
userName: '公瑾',
content: '基础、个人、增值',
showReply: false,
}
]
}
]
}; };
}, },
computed: { computed: {
@ -478,6 +485,20 @@ export default {
this.getData(); this.getData();
this.addRecord() this.addRecord()
this.getNote() this.getNote()
this.getComment()
var arr6 = [1, 2, [3, 4, [5, 6]]];
function flatten (arr) {
var result = [];
for (var i = 0; i < arr.length; i++) {
if (Array.isArray(arr[i])) {
result = result.concat(flatten(arr[i]))
} else {
result.push(arr[i]);
}
}
return result;
}
console.log(11, flatten(arr6))
}, },
destroyed () { destroyed () {
// //
@ -561,7 +582,6 @@ export default {
// //
submitNote () { submitNote () {
const form = this.noteForm const form = this.noteForm
console.log(33, form, this.noteContent)
if (!form.noteName) return util.errorMsg('请输入笔记标题') if (!form.noteName) return util.errorMsg('请输入笔记标题')
if (!form.noteContent) return util.errorMsg('请输入笔记内容') if (!form.noteContent) return util.errorMsg('请输入笔记内容')
this.$post(this.api[form.noteId ? 'updateNote' : 'addNote'], form).then(res => { this.$post(this.api[form.noteId ? 'updateNote' : 'addNote'], form).then(res => {
@ -586,6 +606,64 @@ export default {
this.noteForm = JSON.parse(JSON.stringify(row)) this.noteForm = JSON.parse(JSON.stringify(row))
this.showNoteAdd = true this.showNoteAdd = true
}, },
//
getComment () {
this.$get(this.api.commentTreeList, {
cid: this.courseId,
}).then(res => {
const list = res.rootComments
this.handleComments(list)
// console.log("🚀 ~ file: index.vue:590 ~ getComment ~ list:", list, l)
this.comments = list
}).catch(res => { })
},
//
handleComments (list) {
list.forEach(e => {
if (!e.avatar) e.avatar = 'https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png'
e.getCommentReplyNum = e.children && e.children.length
e.showChildren = false
e.showReply = false
e.replyContent = ''
e.children && this.handleComments(e.children)
})
},
//
showReplay (row) {
row.showReply = !row.showReply
},
//
delComment (row) {
this.$confirm("此删除操作不可逆,是否确认删除选中项?", "提示", {
type: "warning"
}).then(() => {
this.$post(`${this.api.deleteAComment}?commentId=${row.commentId}`).then(res => {
util.successMsg("删除成功");
this.getComment();
}).catch(res => { })
}).catch(() => { })
},
//
submitComment (row, reply) {
const content = reply ? reply.replyContent : row ? row.replyContent : this.comment
if (!content) return util.errorMsg('请输入内容!')
this.$post(this.api.addComment, {
cid: this.courseId,
content,
pid: row ? row.commentId : 0
}).then(res => {
this.comment = ''
this.getComment()
}).catch(res => { })
},
//
like (row) {
this.$post(`${this.api[row.isLike ? 'unlike' : 'commentAndLike']}?commentId=${row.commentId}`).then(res => {
row.isLike = row.isLike ? 0 : 1
}).catch(res => { })
},
// //
insertScript () { insertScript () {
const linkTag = document.createElement("link"); const linkTag = document.createElement("link");

@ -29,7 +29,7 @@ if (isPro) {
host = "http://121.37.12.51/"; // 测试服 host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服 // host = 'https://www.occupationlab.com/' // 正式服
// host = "http://192.168.31.151:9000/"; // 榕 // host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.116:9000/"; // 赓 host = "http://192.168.31.53:9000/"; // 赓
} }
const Setting = { const Setting = {

@ -1,173 +1,175 @@
.msg{ .msg {
li{ li {
margin-bottom: 10px; margin-bottom: 10px;
border-top: 1px solid #f1f1f1; border-top: 1px solid #f1f1f1;
&:first-child{ &:first-child {
border-top: 0; border-top: 0;
} }
.li-wrap{ .li-wrap {
position: relative; position: relative;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 16px 0; padding: 16px 0;
.avatar{ .avatar {
width: 48px; width: 48px;
height: 48px; height: 48px;
border-radius: 50%; border-radius: 50%;
} }
.texts{ .texts {
flex: 1; flex: 1;
margin-left: 24px; margin-left: 24px;
.name{ .name {
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
font-size: 16px; font-size: 16px;
} }
.des{ .des {
margin: 8px 0; margin: 8px 0;
} }
.date{ .date {
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.45);
font-size: 14px; font-size: 14px;
} }
} }
.action{ .action {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
margin-top: 15px; margin-top: 15px;
.icon{ .icon {
margin: 0 5px; margin: 0 5px;
color: $main-color; color: $main-color;
font-size: 18px; font-size: 18px;
cursor: pointer; cursor: pointer;
&:hover{ &:hover {
opacity: .8; opacity: 0.8;
} }
&:first-child{ &:first-child {
margin-right: 5px; margin-right: 5px;
} }
&.del{ &.del {
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
border: 1px solid rgba(0, 0, 0, 0.15); border: 1px solid rgba(0, 0, 0, 0.15);
} }
} }
} }
} }
.reply{ .reply {
margin-top: 20px; padding-bottom: 10px;
} margin-top: 20px;
} }
&.children{ }
margin-left: 72px; &.children {
padding-left: 24px; margin-left: 72px;
background-color: rgba(0, 0, 0, 0.02); padding-left: 24px;
border-radius: 8px; background-color: rgba(0, 0, 0, 0.02);
li{ border-radius: 8px;
border-top-color: rgba(0, 0, 0, 0.06); li {
} border-top-color: rgba(0, 0, 0, 0.06);
} }
}
} }
.toggle{ .toggle {
margin: 16px 0; margin: 16px 0;
text-align: center; text-align: center;
color: $main-color; color: $main-color;
font-size: 14px; font-size: 14px;
span{ span {
cursor: pointer; cursor: pointer;
} }
} }
/deep/.quill{ /deep/.quill {
background-color: #fff; background-color: #fff;
} }
/deep/.timeline { /deep/.timeline {
padding-left: 10%; padding-left: 10%;
overflow: hidden; overflow: hidden;
.el-timeline-item { .el-timeline-item {
padding-bottom: 40px; padding-bottom: 40px;
} }
.el-timeline-item__node--normal { .el-timeline-item__node--normal {
top: 30px; top: 30px;
} }
.el-timeline-item__wrapper { .el-timeline-item__wrapper {
top: 15px; top: 15px;
padding-left: 40px; padding-left: 40px;
} }
.el-timeline-item__tail { .el-timeline-item__tail {
height: 250%; height: 250%;
border-left-width: 1px; border-left-width: 1px;
} }
.sign { .sign {
position: relative; position: relative;
display: inline-block; display: inline-block;
margin-left: -14%; margin-left: -14%;
font-size: 14px; font-size: 14px;
color: #9076FF; color: #007eff;
} }
.draft { .draft {
.ver, .sign { .ver,
color: #b1b1b1; .sign {
} color: #b1b1b1;
} }
.ver { }
display: flex; .ver {
justify-content: space-between; display: flex;
align-items: center; justify-content: space-between;
padding-bottom: 10px; align-items: center;
margin: -22px 0 20px; padding-bottom: 10px;
font-size: 18px; margin: -22px 0 20px;
color: #9076FF; font-size: 18px;
border-bottom: 1px dashed #bfbfbf; color: #007eff;
} border-bottom: 1px dashed #bfbfbf;
.withdraw { }
margin-right: 10px; .withdraw {
font-size: 13px; margin-right: 10px;
color: #979797; font-size: 13px;
} color: #979797;
.action { }
margin-left: 15px; .action {
i { margin-left: 15px;
margin-left: 8px; i {
font-size: 14px; margin-left: 8px;
color: #9076FF; font-size: 14px;
cursor: pointer; color: #007eff;
&:hover { cursor: pointer;
opacity: .9; &:hover {
} opacity: 0.9;
} }
} }
.detail { }
li { .detail {
margin-bottom: 20px; li {
} margin-bottom: 20px;
.name { }
display: flex; .name {
align-items: center; display: flex;
margin-bottom: 5px; align-items: center;
font-size: 15px; margin-bottom: 5px;
font-weight: 600; font-size: 15px;
img { font-weight: 600;
width: 20px; img {
margin-right: 5px; 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;
} }
} }
} .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;
}
}
}
}
}

Loading…
Cancel
Save