163 lines
5.4 KiB
Vue
163 lines
5.4 KiB
Vue
<template>
|
|
<!-- 商品分类 -->
|
|
<div class="container">
|
|
<div class="flex-row jc-e gap-20 mb-20">
|
|
<el-select v-model="category_ids" class="search-w" placeholder="请选择问答类型" filterable clearable @change="handle_search">
|
|
<el-option v-for="item in article_category_list" :key="item.id" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
<el-input v-model="search_value" placeholder="请输入搜索内容" class="search-w" @change="handle_search">
|
|
<template #suffix>
|
|
<icon name="search" size="16" color="9" class="c-pointer" @click="handle_search"></icon>
|
|
</template>
|
|
</el-input>
|
|
</div>
|
|
<div class="content">
|
|
<el-table v-loading="loading" :data="tableData" class="w" :header-cell-style="{ background: '#f7f7f7' }" row-key="id" height="438" fixed @row-click="row_click" @select="handle_select" @select-all="handle_select">
|
|
<el-table-column v-if="multiple" type="selection" width="60" />
|
|
<el-table-column v-else label="#" width="60" type="">
|
|
<template #default="scope">
|
|
<el-radio v-model="template_selection" :label="scope.$index + ''"> </el-radio>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="id" label="ID" width="80" type="" />
|
|
<el-table-column prop="title" label="标题"></el-table-column>
|
|
<el-table-column prop="category_name" label="分类"></el-table-column>
|
|
<template #empty>
|
|
<no-data></no-data>
|
|
</template>
|
|
</el-table>
|
|
<div class="mt-10 flex-row jc-e">
|
|
<el-pagination :current-page="page" background :page-size="page_size" :pager-count="5" layout="prev, pager, next" :total="data_total" @current-change="get_list" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import UrlValueAPI from '@/api/url-value';
|
|
import { commonStore } from '@/store';
|
|
import { get_data_list } from '@/utils';
|
|
const common_store = commonStore();
|
|
const props = defineProps({
|
|
// 重置
|
|
reset: {
|
|
type: Boolean,
|
|
default: () => false,
|
|
},
|
|
multiple: {
|
|
type: Boolean,
|
|
default: () => false,
|
|
},
|
|
// 判断是否返回链接地址
|
|
selectIsUrl: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
});
|
|
watch(
|
|
() => props.reset,
|
|
(val) => {
|
|
if (val) {
|
|
init();
|
|
}
|
|
}
|
|
);
|
|
onMounted(() => {
|
|
init();
|
|
});
|
|
const modelValue = defineModel({ type: Object, default: {} });
|
|
const tableData = ref<pageLinkList[]>([]);
|
|
const search_value = ref('');
|
|
const loading = ref(false);
|
|
const init = () => {
|
|
template_selection.value = '';
|
|
category_ids.value = '';
|
|
search_value.value = '';
|
|
article_category_list.value = get_data_list(common_store.common.plugins, 'ask.category_list');
|
|
get_list(1);
|
|
};
|
|
const handle_search = () => {
|
|
get_list(1);
|
|
};
|
|
const category_ids = ref('');
|
|
interface articleCategory {
|
|
name: string;
|
|
id: number;
|
|
}
|
|
const article_category_list = ref<articleCategory[]>([]);
|
|
const template_selection = ref('');
|
|
//#region 分页 -----------------------------------------------start
|
|
// 当前页
|
|
const page = ref(1);
|
|
// 每页数量
|
|
const page_size = ref(30);
|
|
// 总数量
|
|
const data_total = ref(0);
|
|
// 查询文件
|
|
const get_list = (new_page: number) => {
|
|
let new_data = {
|
|
page: new_page,
|
|
keywords: search_value.value,
|
|
category_ids: category_ids.value,
|
|
page_size: page_size.value,
|
|
};
|
|
loading.value = true;
|
|
UrlValueAPI.getAskList(new_data).then((res: any) => {
|
|
tableData.value = res.data?.data_list || [];
|
|
data_total.value = res.data?.data_total || 1;
|
|
page.value = res.data?.page || new_page;
|
|
setTimeout(() => {
|
|
loading.value = false;
|
|
}, 500);
|
|
});
|
|
};
|
|
//#region 分页 -----------------------------------------------end
|
|
const row_click = (row: any) => {
|
|
if (!props.multiple) {
|
|
const new_table_data = JSON.parse(JSON.stringify(tableData.value));
|
|
template_selection.value = new_table_data.findIndex((item: pageLinkList) => item.id == row.id).toString();
|
|
if (props.selectIsUrl) {
|
|
const page = '/pages/plugins/ask/detail/detail?id=' + row.id;
|
|
const new_row = {
|
|
id: row.id,
|
|
name: row.name || row.title || page,
|
|
page: page,
|
|
};
|
|
modelValue.value = [new_row];
|
|
} else {
|
|
modelValue.value = [row];
|
|
}
|
|
}
|
|
};
|
|
const handle_select = (selection: any) => {
|
|
if (props.selectIsUrl) {
|
|
// 遍历数组selection
|
|
const new_selection = selection.map((item: any) => {
|
|
const page = '/pages/plugins/ask/detail/detail?id=' + item.id;
|
|
return {
|
|
id: item.id,
|
|
name: item.name || item.title || page,
|
|
page: page,
|
|
};
|
|
});
|
|
modelValue.value = new_selection;
|
|
} else {
|
|
modelValue.value = selection;
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
.search-w {
|
|
width: 22.5rem;
|
|
}
|
|
.content {
|
|
:deep(.el-table__inner-wrapper:before) {
|
|
background-color: transparent;
|
|
}
|
|
.img {
|
|
width: 3.6rem;
|
|
}
|
|
}
|
|
}
|
|
</style>
|