123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- <!--
- - Copyright (C) 2018-2019
- - All rights reserved, Designed By www.joolun.com
- 芋道源码:
- ① 移除 avue 组件,使用 ElementUI 原生组件
- -->
- <template>
- <div class="pb-30px">
- <!-- 类型:image -->
- <div v-if="props.type === 'image'">
- <div class="waterfall" v-loading="loading">
- <div class="waterfall-item" v-for="item in list" :key="item.mediaId">
- <img class="material-img" :src="item.url" />
- <p class="item-name">{{ item.name }}</p>
- <el-row class="ope-row">
- <el-button type="success" @click="selectMaterialFun(item)">
- 选择
- <Icon icon="ep:circle-check" />
- </el-button>
- </el-row>
- </div>
- </div>
- <!-- 分页组件 -->
- <Pagination
- :total="total"
- v-model:page="queryParams.pageNo"
- v-model:limit="queryParams.pageSize"
- @pagination="getMaterialPageFun"
- />
- </div>
- <!-- 类型:voice -->
- <div v-else-if="props.type === 'voice'">
- <!-- 列表 -->
- <el-table v-loading="loading" :data="list">
- <el-table-column label="编号" align="center" prop="mediaId" />
- <el-table-column label="文件名" align="center" prop="name" />
- <el-table-column label="语音" align="center">
- <template #default="scope">
- <WxVoicePlayer :url="scope.row.url" />
- </template>
- </el-table-column>
- <el-table-column
- label="上传时间"
- align="center"
- prop="createTime"
- width="180"
- :formatter="dateFormatter"
- />
- <el-table-column label="操作" align="center" fixed="right">
- <template #default="scope">
- <el-button type="primary" link @click="selectMaterialFun(scope.row)"
- >选择
- <Icon icon="ep:plus" />
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页组件 -->
- <Pagination
- :total="total"
- v-model:page="queryParams.pageNo"
- v-model:limit="queryParams.pageSize"
- @pagination="getPage"
- />
- </div>
- <!-- 类型:video -->
- <div v-else-if="props.type === 'video'">
- <!-- 列表 -->
- <el-table v-loading="loading" :data="list">
- <el-table-column label="编号" align="center" prop="mediaId" />
- <el-table-column label="文件名" align="center" prop="name" />
- <el-table-column label="标题" align="center" prop="title" />
- <el-table-column label="介绍" align="center" prop="introduction" />
- <el-table-column label="视频" align="center">
- <template #default="scope">
- <WxVideoPlayer :url="scope.row.url" />
- </template>
- </el-table-column>
- <el-table-column
- label="上传时间"
- align="center"
- prop="createTime"
- width="180"
- :formatter="dateFormatter"
- />
- <el-table-column
- label="操作"
- align="center"
- fixed="right"
- class-name="small-padding fixed-width"
- >
- <template #default="scope">
- <el-button type="primary" link @click="selectMaterialFun(scope.row)"
- >选择
- <Icon icon="akar-icons:circle-plus" />
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页组件 -->
- <Pagination
- :total="total"
- v-model:page="queryParams.pageNo"
- v-model:limit="queryParams.pageSize"
- @pagination="getMaterialPageFun"
- />
- </div>
- <!-- 类型:news -->
- <div v-else-if="props.type === 'news'">
- <div class="waterfall" v-loading="loading">
- <div class="waterfall-item" v-for="item in list" :key="item.mediaId">
- <div v-if="item.content && item.content.newsItem">
- <WxNews :articles="item.content.newsItem" />
- <el-row class="ope-row">
- <el-button type="success" @click="selectMaterialFun(item)">
- 选择
- <Icon icon="ep:circle-check" />
- </el-button>
- </el-row>
- </div>
- </div>
- </div>
- <!-- 分页组件 -->
- <Pagination
- :total="total"
- v-model:page="queryParams.pageNo"
- v-model:limit="queryParams.pageSize"
- @pagination="getMaterialPageFun"
- />
- </div>
- </div>
- </template>
- <script lang="ts" setup name="WxMaterialSelect">
- import WxNews from '@/views/mp/components/wx-news'
- import WxVoicePlayer from '@/views/mp/components/wx-voice-play'
- import WxVideoPlayer from '@/views/mp/components/wx-video-play'
- import { NewsType } from './types'
- import * as MpMaterialApi from '@/api/mp/material'
- import * as MpFreePublishApi from '@/api/mp/freePublish'
- import * as MpDraftApi from '@/api/mp/draft'
- import { dateFormatter } from '@/utils/formatTime'
- const props = withDefaults(
- defineProps<{
- type: string
- accountId: number
- newsType?: NewsType
- }>(),
- {
- newsType: NewsType.Published
- }
- )
- const emit = defineEmits(['select-material'])
- // 遮罩层
- const loading = ref(false)
- // 总条数
- const total = ref(0)
- // 数据列表
- const list = ref<any[]>([])
- // 查询参数
- const queryParams = reactive({
- pageNo: 1,
- pageSize: 10,
- accountId: props.accountId
- })
- const selectMaterialFun = (item) => {
- emit('select-material', item)
- }
- const getPage = async () => {
- loading.value = true
- try {
- if (props.type === 'news' && props.newsType === NewsType.Published) {
- // 【图文】+ 【已发布】
- await getFreePublishPageFun()
- } else if (props.type === 'news' && props.newsType === NewsType.Draft) {
- // 【图文】+ 【草稿】
- await getDraftPageFun()
- } else {
- // 【素材】
- await getMaterialPageFun()
- }
- } finally {
- loading.value = false
- }
- }
- const getMaterialPageFun = async () => {
- const data = await MpMaterialApi.getMaterialPage({
- ...queryParams,
- type: props.type
- })
- list.value = data.list
- total.value = data.total
- }
- const getFreePublishPageFun = async () => {
- const data = await MpFreePublishApi.getFreePublishPage(queryParams)
- data.list.forEach((item: any) => {
- const articles = item.content.newsItem
- articles.forEach((article: any) => {
- article.picUrl = article.thumbUrl
- })
- })
- list.value = data.list
- total.value = data.total
- }
- const getDraftPageFun = async () => {
- const data = await MpDraftApi.getDraftPage(queryParams)
- data.list.forEach((draft: any) => {
- const articles = draft.content.newsItem
- articles.forEach((article: any) => {
- article.picUrl = article.thumbUrl
- })
- })
- list.value = data.list
- total.value = data.total
- }
- onMounted(async () => {
- getPage()
- })
- </script>
- <style lang="scss" scoped>
- @media (min-width: 992px) and (max-width: 1300px) {
- .waterfall {
- column-count: 3;
- }
- p {
- color: red;
- }
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .waterfall {
- column-count: 2;
- }
- p {
- color: orange;
- }
- }
- @media (max-width: 767px) {
- .waterfall {
- column-count: 1;
- }
- }
- .waterfall {
- width: 100%;
- column-gap: 10px;
- column-count: 5;
- margin: 0 auto;
- }
- .waterfall-item {
- padding: 10px;
- margin-bottom: 10px;
- break-inside: avoid;
- border: 1px solid #eaeaea;
- }
- .material-img {
- width: 100%;
- }
- p {
- line-height: 30px;
- }
- </style>
|