dbsd_kczx/src/views/site/tingKeZuJi/list.vue

192 lines
6.8 KiB
Vue
Raw Normal View History

<template>
<!-- <a-list item-layout="horizontal" :data-source="list" :grid="{ gutter: 16, xs: 1, sm: 2, md: 4, lg: 4, xl: 6, xxl: 3, xxxl: 2 }"> -->
2023-06-19 17:12:45 +08:00
<a-list item-layout="horizontal" :data-source="list" :loading="loadingList">
<template #renderItem="{ item }">
<a-list-item>
<a-list-item-meta>
<template #title>
2023-04-15 09:45:50 +08:00
<div class="wenZiJiaCu fs1d1r">
听了&nbsp;{{ item.kkdw }}&nbsp;{{item.skjs}}&nbsp;主讲的&nbsp;{{ item.kcmc }}
</div>
</template>
<template #description>
2023-04-09 21:54:59 +08:00
<!-- -{{ item }}- -->
2023-04-15 09:45:50 +08:00
<div class="wenZiJiaCu">
2023-05-27 17:54:16 +08:00
<span v-if="item.score" class="hand" style="color: #337ab7;" @click="viewModal.view(item)">已评分{{ item.score }}</span>
2023-06-09 22:12:23 +08:00
<span v-else class="hand" style="color: #b77633;" @click="txpjFun(item)"><FormOutlined/>填写评价</span>
2023-06-09 08:31:51 +08:00
<span v-if="item.source != null" class="hand" style="padding-left: .5rem;color: #337ab7;"></span>
<span v-if="item.source=='0'" class="hand" style="padding-left: .5rem;color: #337ab7;">课程中心</span>
<span v-else-if="item.source=='1'" class="hand" style="padding-left: .5rem;color: #337ab7;">老系统</span>
<span v-else-if="item.source=='2'" class="hand" style="padding-left: .5rem;color: #337ab7;">政务大厅</span>
<span v-else-if="item.source=='3'" class="hand" style="padding-left: .5rem;color: #337ab7;">纸质评价</span>
<span v-if="item.source != null" class="hand" style="padding-left: .5rem;color: #337ab7;">--</span>
<span v-if="item.evaluationver=='1'" class="hand" style="padding-left: .5rem;color: #337ab7;">原始数据</span>
<span v-else-if="item.evaluationver=='2'" class="hand" style="padding-left: .5rem;color: #337ab7;">线上听课</span>
<span v-else-if="item.evaluationver=='3'" class="hand" style="padding-left: .5rem;color: #337ab7;">听课记录</span>
<span v-else-if="item.evaluationver=='4'" class="hand" style="padding-left: .5rem;color: #337ab7;">同行专家</span>
<span v-if="item.source != null" class="hand" style="padding-left: .5rem;color: #337ab7;"></span>
2023-05-27 17:54:16 +08:00
<span v-if="item.suibiNotes" class="hand" style="padding-left: .5rem;color: #337ab7;">
2023-05-05 23:52:51 +08:00
<a-popover title="听课笔记">
2023-05-04 23:50:32 +08:00
<template #content>
{{ item.suibiNotes }}
</template>
2023-05-05 23:52:51 +08:00
查看听课笔记
2023-05-04 23:50:32 +08:00
</a-popover>
</span>
2023-06-07 00:02:49 +08:00
<span v-if="item.bh" style="color: #337ab7;margin-left: 30px;" @click="fwdtModal.view(item)"><FormOutlined/>服务大厅</span>
2023-04-15 09:45:50 +08:00
</div>
</template>
<template #avatar>
<div class="wenZiJuZhong dateAndTime">
2023-04-15 09:45:50 +08:00
<!-- <TeamOutlined/> -->
<i class="fas fa-users" />
<div>{{ item.shijian }}</div>
<div style="color: #1ab394;">{{ item.tkrq }}</div>
</div>
</template>
</a-list-item-meta>
</a-list-item>
</template>
</a-list>
2023-06-19 17:12:45 +08:00
<a-pagination v-model="current" :total="total" show-less-items @change="handlePageChange" v-if="props.flagPage" style="text-align: right;" :hideOnSinglePage="true"/>
2023-04-09 21:54:59 +08:00
<addModalPage ref="tingKeZuJiAddModal"/>
<viewModalPage ref="viewModal"/>
2023-05-05 19:23:53 +08:00
<fwdtModalPage ref="fwdtModal"/>
</template>
<script setup lang="ts">
2023-06-09 22:12:23 +08:00
import { ref, onMounted, watch, createVNode,h } from 'vue';
import { TeamOutlined, FormOutlined } from '@ant-design/icons-vue';
2023-04-10 23:14:07 +08:00
import { getUserId,getSysConfig } from '/@/views/site/utils/index';
2023-06-19 17:12:45 +08:00
import { Input, Popover, Pagination, Empty } from 'ant-design-vue';
2023-04-09 21:54:59 +08:00
import addModalPage from '/@/views/site/tingKeZuJi/components/addModal.vue';
import viewModalPage from '/@/views/site/tingKeZuJi/components/viewModal.vue';
2023-05-05 19:23:53 +08:00
import fwdtModalPage from '/@/views/site/tingKeZuJi/components/fwdtModal.vue';
import { defHttp } from '/@/utils/http/axios';
2023-06-09 22:12:23 +08:00
import { Modal } from 'ant-design-vue';
import { ExclamationCircleOutlined,CheckOutlined,CloseOutlined } from '@ant-design/icons-vue';
enum Api {
2023-06-19 17:12:45 +08:00
list = '/kcTingke/kcTingke/indexListPage',
2023-06-15 08:48:51 +08:00
listTkjl = '/kcTingke/kcTingke/findTingKeZuJiBytingketimeAndUserId'
}
2023-04-09 21:54:59 +08:00
const tingKeZuJiAddModal = ref();
const viewModal = ref();
2023-05-05 19:23:53 +08:00
const fwdtModal = ref();
2023-06-19 17:12:45 +08:00
const current = ref<number>(0);
const total = ref<number>(2);
const loadingList = ref<boolean>(false);
2023-06-20 22:54:10 +08:00
2023-06-19 17:12:45 +08:00
const APagination = Pagination;
2023-06-20 22:54:10 +08:00
const emit = defineEmits(['changeParam']);
2023-04-09 21:54:59 +08:00
2023-04-12 23:21:42 +08:00
const props = defineProps({
2023-05-04 23:50:32 +08:00
queryParam: { type: Object, default: () => ({}) },
2023-06-19 17:12:45 +08:00
flagPage: { type:Boolean,default:false}
2023-05-04 23:50:32 +08:00
});
2023-04-12 23:21:42 +08:00
/**
* 列表接口
* @param params
*/
const listApi = (params) => defHttp.get({ url: Api.list, params });
2023-06-09 22:12:23 +08:00
const listTkjlApi = (params) => defHttp.get({ url: Api.listTkjl, params });
const list = ref<any>([]);
onMounted(() => {
2023-04-12 23:21:42 +08:00
init();
});
2023-06-07 00:02:49 +08:00
watch(
() => props.queryParam,
2023-06-20 22:54:10 +08:00
(v) => init(),
{
deep:true,
immediate:true,
2023-06-07 00:02:49 +08:00
}
);
2023-06-09 22:12:23 +08:00
function txpjFun(item){
2023-06-15 08:48:51 +08:00
let ketangbiaoid = item.ketangbiaoid;
2023-06-09 22:12:23 +08:00
let userid = item.userid;
2023-06-15 08:48:51 +08:00
listTkjlApi({ userid: userid, ketangbiaoid:ketangbiaoid}).then(res => {
2023-06-09 22:12:23 +08:00
var list = res
console.log(`🚀 ~ file: list.vue:106 ~ listTkjlApi ~ list:`, list)
if(list.length>0){
2023-06-15 08:48:51 +08:00
var score = list[0].score
if(score){
Modal.error({
2023-06-09 22:12:23 +08:00
icon: createVNode({}),
content: h('div', {style:'height:200px;text-align:center;'}, [
h('icon', {style:'font-size:80px;font-weight:600;color:red;'}, createVNode(CloseOutlined)),
h('p',{style:'font-size:22px;font-weight:600;color:black;'}, '已经对此课程进行评价,不可重复评价,请点击刷新按钮!'),
]),
okText: 'OK',
width:'500px',
});
2023-06-15 08:48:51 +08:00
}else{
tingKeZuJiAddModal.value.view(item)
}
2023-06-09 22:12:23 +08:00
}else{
tingKeZuJiAddModal.value.view(item)
}
2023-06-20 22:54:10 +08:00
2023-06-09 22:12:23 +08:00
});
}
2023-04-12 23:21:42 +08:00
function init() {
2023-06-19 17:12:45 +08:00
loadData()
}
function loadData(){
loadingList.value = true
console.log(`🚀 ~ file: list.vue:139 ~ listApi ~ props.queryParam:`, props.queryParam)
listApi({ userid: getUserId(), ...props.queryParam }).then(res => {
total.value = res.total;
current.value = res.current;
list.value = res.records
2023-06-20 22:54:10 +08:00
loadingList.value = false
2023-06-19 17:12:45 +08:00
// props.queryParam.value = res.total;
});
2023-04-12 23:21:42 +08:00
}
2023-06-19 17:12:45 +08:00
function handlePageChange(record){
console.log(`🚀 ~ file: list.vue:150 ~ handlePageChange ~ record:`, record)
2023-06-20 22:54:10 +08:00
// props.queryParam.pageNo=record
emit('changeParam',record);
// loadData();
2023-06-19 17:12:45 +08:00
}
2023-04-12 23:21:42 +08:00
function onSearch() {
2023-06-19 17:12:45 +08:00
loadData();
2023-04-12 23:21:42 +08:00
}
defineExpose({
onSearch
});
</script>
<style lang="less" scoped>
.wenZiJuZhong {
text-align: center;
}
.wenZiJiaCu {
font-weight: 700;
}
2023-04-15 09:45:50 +08:00
.fs1d1r {
font-size: 1.1rem;
min-height: 55.281px;
2023-04-15 09:45:50 +08:00
}
2023-05-27 17:54:16 +08:00
.hand {
cursor:pointer;
}
.dateAndTime {
padding-top: 10px;
}
</style>