|
@@ -30,6 +30,33 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item label="筛选昵称" prop="qwUserName">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.qwUserName"
|
|
|
|
|
+ placeholder="请输入企微昵称"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ @input="searchQwUser"
|
|
|
|
|
+ @focus="showQwUserDropdown = true"
|
|
|
|
|
+ @blur="hideDropdownWithDelay"
|
|
|
|
|
+ @clear="onQwUserNameClear"
|
|
|
|
|
+ />
|
|
|
|
|
+ <!-- 下拉建议 -->
|
|
|
|
|
+ <div v-if="showQwUserDropdown && qwUserSuggestions.length > 0" class="suggestion-box" @scroll="handleScroll">
|
|
|
|
|
+ <div
|
|
|
|
|
+ v-for="item in qwUserSuggestions"
|
|
|
|
|
+ :key="item.dictValue"
|
|
|
|
|
+ class="suggestion-item"
|
|
|
|
|
+ @click="selectQwUser(item.dictValue,item.dictLabel)"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ item.dictLabel }}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
|
<el-date-picker v-model="createTime" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" @change="change"></el-date-picker>
|
|
<el-date-picker v-model="createTime" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" @change="change"></el-date-picker>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -83,10 +110,20 @@
|
|
|
import { listCourseWatchLog, getCourseWatchLog, delCourseWatchLog, addCourseWatchLog, updateCourseWatchLog, exportCourseWatchLog,statisticsList,statisticsExport } from "@/api/course/qw/courseWatchLog";
|
|
import { listCourseWatchLog, getCourseWatchLog, delCourseWatchLog, addCourseWatchLog, updateCourseWatchLog, exportCourseWatchLog,statisticsList,statisticsExport } from "@/api/course/qw/courseWatchLog";
|
|
|
import { courseList,videoList } from '@/api/course/courseRedPacketLog'
|
|
import { courseList,videoList } from '@/api/course/courseRedPacketLog'
|
|
|
import { getDateRange } from '@/utils/common'
|
|
import { getDateRange } from '@/utils/common'
|
|
|
|
|
+import {getMyQwUserList, getMyQwCompanyList, updateUser,getQwUserListLikeName} from "@/api/qw/user";
|
|
|
export default {
|
|
export default {
|
|
|
name: "CourseWatchLog",
|
|
name: "CourseWatchLog",
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
|
|
+
|
|
|
|
|
+ qwUserSuggestions: [], // 已展示的数据
|
|
|
|
|
+ showQwUserDropdown: false, // 控制下拉框显示
|
|
|
|
|
+ qwUserLoading: false, // 加载状态
|
|
|
|
|
+ qwUserNoMore: false, // 是否还有更多数据
|
|
|
|
|
+ qwUserPageNum: 1, // 当前页码
|
|
|
|
|
+ qwUserPageSize: 10, // 每页数量
|
|
|
|
|
+ qwUserTotal: 0, // 总数
|
|
|
|
|
+
|
|
|
activeName:"00",
|
|
activeName:"00",
|
|
|
createTime:null,
|
|
createTime:null,
|
|
|
courseLists:[],
|
|
courseLists:[],
|
|
@@ -155,6 +192,84 @@ export default {
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+
|
|
|
|
|
+ onQwUserNameClear() {
|
|
|
|
|
+ this.queryParams.qwUserId = null; // 同时清空 qwUserId
|
|
|
|
|
+ },
|
|
|
|
|
+ // 搜索企微用户
|
|
|
|
|
+ searchQwUser(query) {
|
|
|
|
|
+ if (!query.trim()) {
|
|
|
|
|
+ this.qwUserSuggestions = [];
|
|
|
|
|
+ this.showQwUserDropdown = false;
|
|
|
|
|
+ this.qwUserNoMore = false;
|
|
|
|
|
+ this.qwUserPageNum = 1;
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ this.queryParams.qwUserName = query;
|
|
|
|
|
+ this.qwUserPageNum = 1;
|
|
|
|
|
+ this.qwUserNoMore = false;
|
|
|
|
|
+ this.qwUserSuggestions = [];
|
|
|
|
|
+ this.fetchQwUsers(query);
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ fetchQwUsers(query) {
|
|
|
|
|
+ const params = {
|
|
|
|
|
+ qwUserName: query,
|
|
|
|
|
+ pageNum: this.qwUserPageNum,
|
|
|
|
|
+ pageSize: this.qwUserPageSize
|
|
|
|
|
+ };
|
|
|
|
|
+
|
|
|
|
|
+ this.qwUserLoading = true;
|
|
|
|
|
+
|
|
|
|
|
+ getQwUserListLikeName(params).then(res => {
|
|
|
|
|
+ const list = res.data.list || [];
|
|
|
|
|
+ const total = res.data.total || 0;
|
|
|
|
|
+
|
|
|
|
|
+ this.qwUserSuggestions = [...this.qwUserSuggestions, ...list];
|
|
|
|
|
+ this.qwUserTotal = total;
|
|
|
|
|
+
|
|
|
|
|
+ // 判断是否还有更多数据
|
|
|
|
|
+ if (this.qwUserSuggestions.length >= total) {
|
|
|
|
|
+ this.qwUserNoMore = true;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ this.showQwUserDropdown = true;
|
|
|
|
|
+ }).finally(() => {
|
|
|
|
|
+ this.qwUserLoading = false;
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ // 选择企微用户
|
|
|
|
|
+ selectQwUser(key,value) {
|
|
|
|
|
+
|
|
|
|
|
+ this.queryParams.qwUserName = value;
|
|
|
|
|
+ this.queryParams.qwUserId = key;
|
|
|
|
|
+ this.showQwUserDropdown = false;
|
|
|
|
|
+ this.handleQuery(); // 可选:自动触发查询
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ // 延迟隐藏下拉框,防止点击失效
|
|
|
|
|
+ hideDropdownWithDelay() {
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
|
+ this.showQwUserDropdown = false;
|
|
|
|
|
+ }, 200);
|
|
|
|
|
+ },
|
|
|
|
|
+ handleScroll(e) {
|
|
|
|
|
+ const container = e.target;
|
|
|
|
|
+ const scrollTop = container.scrollTop;
|
|
|
|
|
+ const scrollHeight = container.scrollHeight;
|
|
|
|
|
+ const clientHeight = container.clientHeight;
|
|
|
|
|
+
|
|
|
|
|
+ // 距离底部小于 20px 触发加载
|
|
|
|
|
+ if (scrollHeight - scrollTop - clientHeight < 20 && !this.qwUserLoading && !this.qwUserNoMore) {
|
|
|
|
|
+ this.qwUserPageNum += 1;
|
|
|
|
|
+ this.fetchQwUsers(this.queryParams.qwUserName);
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
courseChange(row){
|
|
courseChange(row){
|
|
|
this.queryParams.videoId=null;
|
|
this.queryParams.videoId=null;
|
|
|
if(row === ''){
|
|
if(row === ''){
|
|
@@ -186,7 +301,8 @@ export default {
|
|
|
/** 查询短链课程看课记录列表 */
|
|
/** 查询短链课程看课记录列表 */
|
|
|
getList() {
|
|
getList() {
|
|
|
this.loading = true;
|
|
this.loading = true;
|
|
|
- statisticsList(this.queryParams).then(response => {
|
|
|
|
|
|
|
+ const { qwUserName, ...queryParams } = this.queryParams;
|
|
|
|
|
+ statisticsList(queryParams).then(response => {
|
|
|
this.courseWatchLogList = response.rows;
|
|
this.courseWatchLogList = response.rows;
|
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
|
this.loading = false;
|
|
this.loading = false;
|
|
@@ -323,3 +439,39 @@ export default {
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+<style scoped>
|
|
|
|
|
+ .suggestion-box {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ z-index: 999;
|
|
|
|
|
+ background: #fff;
|
|
|
|
|
+ border: 1px solid #ddd;
|
|
|
|
|
+ max-height: 200px;
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.suggestion-item {
|
|
|
|
|
+ padding: 10px;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+.suggestion-item:hover {
|
|
|
|
|
+ background-color: #f5f7fa;
|
|
|
|
|
+}
|
|
|
|
|
+/* 新增的滚动容器样式(不影响原有样式) */
|
|
|
|
|
+.scroll-wrapper {
|
|
|
|
|
+ max-height: 130px; /* 大约三行的高度 */
|
|
|
|
|
+ overflow-y: auto; /* 垂直滚动 */
|
|
|
|
|
+ padding-right: 5px; /* 为滚动条留出空间 */
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* 美化滚动条(可选) */
|
|
|
|
|
+.scroll-wrapper::-webkit-scrollbar {
|
|
|
|
|
+ width: 6px;
|
|
|
|
|
+}
|
|
|
|
|
+.scroll-wrapper::-webkit-scrollbar-thumb {
|
|
|
|
|
+ background: rgba(0, 0, 0, 0.2);
|
|
|
|
|
+ border-radius: 3px;
|
|
|
|
|
+}
|
|
|
|
|
+</style>
|