123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <template>
- <div class="statistics-call-telephone-container layout-padding">
- <div class="layout-padding-auto layout-padding-view pd20">
- <ProTable
- ref="proTableRef"
- :columns="columns"
- :data="state.tableData"
- @updateTable="queryList"
- :loading="state.loading"
- :total="state.total"
- v-model:page-index="state.queryParams.PageIndex"
- v-model:page-size="state.queryParams.PageSize"
- >
- <template #table-search>
- <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent label-width="100px">
- <el-row :gutter="10">
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
- <el-form-item label="时间段" prop="crTime">
- <el-date-picker
- v-model="state.queryParams.crTime"
- type="daterange"
- unlink-panels
- range-separator="至"
- start-placeholder="开始时间"
- end-placeholder="结束时间"
- :shortcuts="shortcuts"
- @change="handleQuery"
- value-format="YYYY-MM-DD"
- :clearable="false"
- />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
- <el-form-item label="坐席人员" prop="Keyword">
- <el-input v-model="state.queryParams.Keyword" placeholder="坐席人员" clearable @keyup.enter="handleQuery" />
- </el-form-item>
- </el-col>
- <transition name="el-zoom-in-top">
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8" v-show="!searchCol">
- <el-form-item label="工号" prop="Keyword">
- <el-input v-model="state.queryParams.Keyword" placeholder="工号" clearable @keyup.enter="handleQuery" />
- </el-form-item>
- </el-col>
- </transition>
- <transition name="el-zoom-in-top">
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8" v-show="!searchCol">
- <el-form-item label="工作组" prop="Keyword">
- <el-input v-model="state.queryParams.Keyword" placeholder="工作组" clearable @keyup.enter="handleQuery" />
- </el-form-item>
- </el-col>
- </transition>
- <transition name="el-zoom-in-top">
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8" v-show="!searchCol">
- <el-form-item label="动作类型" prop="DelayState">
- <el-select v-model="state.queryParams.DelayState" placeholder="动作类型" class="w100">
- <el-option v-for="item in delayStateOptions" :value="item.key" :key="item.key" :label="item.value" />
- </el-select>
- </el-form-item>
- </el-col>
- </transition>
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
- <el-form-item label=" ">
- <div class="flex-end w100">
- <el-button type="primary" @click="handleQuery" :loading="state.loading">
- <SvgIcon name="ele-Search" class="mr5" />查询
- </el-button>
- <el-button @click="resetQuery(ruleFormRef)" class="default-button" :loading="state.loading">
- <SvgIcon name="ele-Refresh" class="mr5" />重置
- </el-button>
- <el-button link type="primary" @click="closeSearch" :loading="state.loading">
- {{ searchCol ? '展开' : '收起' }}
- <SvgIcon :class="{ 'is-reverse': searchCol }" name="ele-ArrowUp" class="mr5 arrow" size="18px" />
- </el-button>
- </div>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </template>
- </ProTable>
- </div>
- </div>
- </template>
- <script setup lang="tsx" name="statisticsCallTel">
- import { onMounted, reactive, ref } from 'vue';
- import { FormInstance } from 'element-plus';
- import { knowledgeList } from '@/api/statistics/knowledge';
- import { defaultDate, shortcuts } from '@/utils/constants';
- import { formatDate } from '@/utils/formatTime';
- import Other from "@/utils/other";
- const proTableRef = ref<RefType>(); // 表格ref
- // 表格配置项
- const columns = ref<any[]>([
- { prop: 'orgName', label: '坐席人员', align: 'center' },
- { prop: 'addNum', label: '工号', align: 'center', sortable: 'custom' },
- { prop: 'addNum', label: '工作组', align: 'center', sortable: 'custom' },
- { prop: 'addNum', label: '工作类型', align: 'center', sortable: 'custom' },
- {
- prop: 'addNum',
- label: '开始时间',
- align: 'center',
- sortable: 'custom',
- render: (scope) => <span>{formatDate(scope.row.expiredTime, 'YYYY-mm-dd HH:MM:SS')}</span>,
- },
- {
- prop: 'deleteNum',
- label: '结束时间',
- align: 'center',
- sortable: 'custom',
- render: (scope) => <span>{formatDate(scope.row.expiredTime, 'YYYY-mm-dd HH:MM:SS')}</span>,
- },
- { prop: 'deleteNum', label: '使用时间(秒)', align: 'center', sortable: 'custom' },
- ]);
- // 定义变量内容
- const ruleFormRef = ref<RefType>(); // 表单ref
- const state = reactive<any>({
- queryParams: {
- // 查询条件
- PageIndex: 1,
- PageSize: 10,
- Keyword: null, // 关键词
- crTime: defaultDate, // 时间默认今天开始到今天结束
- DelayState:null
- },
- tableData: [], //表单
- loading: false, // 加载
- total: 0, // 总数
- });
- const delayStateOptions = ref<EmptyArrayType>([]); // 延期状态
- const searchCol = ref(true); // 展开/收起
- // 展开/收起
- const closeSearch = () => {
- searchCol.value = !searchCol.value;
- };
- /** 搜索按钮操作 */
- const handleQuery = () => {
- // state.queryParams.PageIndex = 1;
- queryList();
- };
- /** 获取列表 */
- const requestParams = ref<EmptyObjectType>({});
- const queryList = () => {
- state.loading = true;
- requestParams.value = Other.deepClone(state.queryParams);
- requestParams.value.StartTime = state.queryParams.crTime === null ? null : state.queryParams.crTime[0];
- requestParams.value.EndTime = state.queryParams.crTime === null ? null : state.queryParams.crTime[1];
- Reflect.deleteProperty(requestParams.value, 'crTime');
- knowledgeList(requestParams.value)
- .then((res: any) => {
- state.tableData = res.result?.items ?? [];
- state.total = res.result?.total ?? 0;
- state.loading = false;
- })
- .catch(() => {
- state.loading = false;
- });
- };
- /** 重置按钮操作 */
- const resetQuery = (formEl: FormInstance | undefined) => {
- if (!formEl) return;
- formEl.resetFields();
- queryList();
- };
- onMounted(() => {
- queryList();
- });
- </script>
- <style lang="scss" scoped>
- .statistics-call-telephone-container {
- .arrow {
- transition: transform var(--el-transition-duration);
- cursor: pointer;
- }
- .arrow.is-reverse {
- transform: rotateZ(-180deg);
- }
- }
- </style>
|