YZProjectCloud/yanzhu-ui-vue3/src/views/manage/busTrainingVideoUser/index.vue

329 lines
10 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="项目名称" prop="projectName" v-if="!userStore.currentPrjId">
<el-input
v-model="queryParams.projectName"
placeholder="请输入项目名称"
clearable
@keyup.enter="handleQuery"
/>
</el-form-item>
<el-form-item label="用户账号" prop="userName">
<el-input
v-model="queryParams.userName"
placeholder="请输入用户账号"
clearable
@keyup.enter="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row v-if="false" :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="Plus"
@click="handleAdd"
v-hasPermi="['manage:busTrainingVideoUser:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="Edit"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['manage:busTrainingVideoUser:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="Delete"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['manage:busTrainingVideoUser:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="Download"
@click="handleExport"
v-hasPermi="['manage:busTrainingVideoUser:export']"
>导出</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="busTrainingVideoUserList" @selection-change="handleSelectionChange">
<el-table-column label="所属公司" align="center" prop="comName" />
<el-table-column label="项目名称" align="center" prop="projectName" />
<el-table-column label="用户账号" align="center" prop="userName" />
<el-table-column label="培训名称" align="center" prop="trainTitle"/>
<el-table-column label="培训类型" align="center" prop="trainType" width="120">
<template #default="scope">
<dict-tag :options="edu_train_type" :value="scope.row.trainType" />
</template>
</el-table-column>
<el-table-column label="培训级别" align="center" prop="trainLevel" width="100">
<template #default="scope">
<dict-tag :options="edu_train_level" :value="scope.row.trainLevel" />
</template>
</el-table-column>
<el-table-column label="培训状态" align="center" prop="playStatus" />
<el-table-column label="培训顺序" align="center" prop="sortBy" />
<el-table-column label="培训时间" align="center" prop="createTime" width="120">
<template #default="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="播放" align="center" width="80">
<template #default="scope">
<el-button type="primary" link icon="VideoPlay" @click="handlePlayVideo(scope.row)">播放</el-button>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-button v-if="false" link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['manage:busTrainingVideoUser:edit']">修改</el-button>
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['manage:busTrainingVideoUser:remove']">删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
v-model:page="queryParams.pageNum"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改用户培训视频对话框 -->
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
<el-form ref="busTrainingVideoUserRef" :model="form" :rules="rules" label-width="80px">
<el-form-item label="部门主键" prop="deptId">
<el-input v-model="form.deptId" placeholder="请输入部门主键" />
</el-form-item>
<el-form-item label="项目主键" prop="projectId">
<el-input v-model="form.projectId" placeholder="请输入项目主键" />
</el-form-item>
<el-form-item label="用户主键" prop="userId">
<el-input v-model="form.userId" placeholder="请输入用户主键" />
</el-form-item>
<el-form-item label="视频主键" prop="videoId">
<el-input v-model="form.videoId" placeholder="请输入视频主键" />
</el-form-item>
<el-form-item label="排序" prop="sortBy">
<el-input v-model="form.sortBy" placeholder="请输入排序" />
</el-form-item>
<el-form-item label="删除标识" prop="isDel">
<el-input v-model="form.isDel" placeholder="请输入删除标识" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" placeholder="请输入备注" />
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
</template>
</el-dialog>
<!--培训视频播放对话框 -->
<el-dialog :title="videoTitle" v-model="videoOpen" width="680px" append-to-body modal-class="video-play-user-dlg">
<video
ref="videoRef"
:src="videoSrc"
controls="controls"
autoplay="autoplay"
:poster="videoPoster?videoPoster:poster"
style="width: 100%;max-height: 550px"
/>
</el-dialog>
</div>
</template>
<script setup name="BusTrainingVideoUser">
import poster from '@/assets/images/poster.gif'
import { listBusTrainingVideoUser, getBusTrainingVideoUser, delBusTrainingVideoUser, addBusTrainingVideoUser, updateBusTrainingVideoUser } from "@/api/manage/busTrainingVideoUser";
import useUserStore from '@/store/modules/user'
const { proxy } = getCurrentInstance();
const { edu_train_level, edu_train_type} = proxy.useDict('edu_train_level', 'edu_train_type');
const busTrainingVideoUserList = ref([]);
const open = ref(false);
const loading = ref(true);
const showSearch = ref(true);
const ids = ref([]);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
const title = ref("");
const videoSrc = ref("");
const videoPoster = ref("");
const videoOpen = ref(false);
const videoTitle = ref("");
const data = reactive({
form: {},
queryParams: {
pageNum: 1,
pageSize: 10,
deptId: null,
projectId: null,
userId: null,
videoId: null,
playStatus: null,
sortBy: null,
isDel: null,
},
rules: {
}
});
const { queryParams, form, rules } = toRefs(data);
const userStore = useUserStore()
/** 查询用户培训视频列表 */
function getList() {
loading.value = true;
listBusTrainingVideoUser(queryParams.value).then(response => {
busTrainingVideoUserList.value = response.rows;
total.value = response.total;
loading.value = false;
});
}
// 取消按钮
function cancel() {
open.value = false;
reset();
}
// 表单重置
function reset() {
form.value = {
id: null,
deptId: null,
projectId: null,
userId: null,
videoId: null,
playStatus: null,
sortBy: null,
isDel: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
remark: null
};
proxy.resetForm("busTrainingVideoUserRef");
}
/** 搜索按钮操作 */
function handleQuery() {
queryParams.value.pageNum = 1;
getList();
}
/** 重置按钮操作 */
function resetQuery() {
proxy.resetForm("queryRef");
handleQuery();
}
// 多选框选中数据
function handleSelectionChange(selection) {
ids.value = selection.map(item => item.id);
single.value = selection.length != 1;
multiple.value = !selection.length;
}
/** 新增按钮操作 */
function handleAdd() {
reset();
open.value = true;
title.value = "添加用户培训视频";
}
/** 修改按钮操作 */
function handleUpdate(row) {
reset();
const _id = row.id || ids.value
getBusTrainingVideoUser(_id).then(response => {
form.value = response.data;
open.value = true;
title.value = "修改用户培训视频";
});
}
/** 提交按钮 */
function submitForm() {
proxy.$refs["busTrainingVideoUserRef"].validate(valid => {
if (valid) {
if (form.value.id != null) {
updateBusTrainingVideoUser(form.value).then(response => {
proxy.$modal.msgSuccess("修改成功");
open.value = false;
getList();
});
} else {
addBusTrainingVideoUser(form.value).then(response => {
proxy.$modal.msgSuccess("新增成功");
open.value = false;
getList();
});
}
}
});
}
/** 删除按钮操作 */
function handleDelete(row) {
const _ids = row.id || ids.value;
proxy.$modal.confirm('是否确认删除用户培训视频编号为"' + _ids + '"的数据项?').then(function() {
return delBusTrainingVideoUser(_ids);
}).then(() => {
getList();
proxy.$modal.msgSuccess("删除成功");
}).catch(() => {});
}
/** 导出按钮操作 */
function handleExport() {
proxy.download('manage/busTrainingVideoUser/export', {
...queryParams.value
}, `busTrainingVideoUser_${new Date().getTime()}.xlsx`)
}
/** 播放视频操作 */
function handlePlayVideo(row) {
videoSrc.value = row.trainFilePath;
videoPoster.value = row.trainFileImage;
videoOpen.value = true;
videoTitle.value = "视频播放 #"+row.trainTitle;
}
getList();
</script>
<style lang="scss">
.video-play-user-dlg{
.el-dialog__body{
padding: 10px;
}
}
</style>