123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- <template>
- <doc-alert title="公众号图文" url="https://doc.iocoder.cn/mp/article/" />
- <!-- 搜索工作栏 -->
- <ContentWrap>
- <WxAccountSelect @change="(accountId) => accountChanged(accountId)" />
- </ContentWrap>
- <!-- 列表 -->
- <ContentWrap>
- <div class="waterfall" v-loading="loading">
- <div
- class="waterfall-item"
- v-show="item.content && item.content.newsItem"
- v-for="item in list"
- :key="item.articleId"
- >
- <wx-news :articles="item.content.newsItem" />
- <el-row justify="center" class="ope-row">
- <el-button
- type="danger"
- circle
- @click="handleDelete(item)"
- v-hasPermi="['mp:free-publish:delete']"
- >
- <Icon icon="ep:delete" />
- </el-button>
- </el-row>
- </div>
- </div>
- <!-- 分页 -->
- <Pagination
- :total="total"
- v-model:page="queryParams.pageNo"
- v-model:limit="queryParams.pageSize"
- @pagination="getList"
- />
- </ContentWrap>
- </template>
- <script setup name="MpFreePublish">
- import * as FreePublishApi from '@/api/mp/freePublish'
- import WxNews from '@/views/mp/components/wx-news/main.vue'
- import WxAccountSelect from '@/views/mp/components/wx-account-select/main.vue'
- const message = useMessage() // 消息弹窗
- const { t } = useI18n() // 国际化
- const loading = ref(true) // 列表的加载中
- const total = ref(0) // 列表的总页数
- const list = ref([]) // 列表的数据
- const queryParams = reactive({
- pageNo: 1,
- pageSize: 10,
- accountId: undefined
- })
- /** 侦听公众号变化 **/
- const accountChanged = (accountId) => {
- queryParams.accountId = accountId
- getList()
- }
- /** 查询列表 */
- const getList = async () => {
- try {
- loading.value = true
- const data = await FreePublishApi.getFreePublishPage(queryParams)
- list.value = data.list
- total.value = data.total
- } finally {
- loading.value = false
- }
- }
- /** 删除按钮操作 */
- const handleDelete = async (item) => {
- try {
- // 删除的二次确认
- await message.delConfirm('删除后用户将无法访问此页面,确定删除?')
- // 发起删除
- await FreePublishApi.deleteFreePublish(queryParams.accountId, item.articleId)
- message.success(t('common.delSuccess'))
- // 刷新列表
- await getList()
- } catch {}
- }
- </script>
- <style lang="scss" scoped>
- .ope-row {
- margin-top: 5px;
- text-align: center;
- border-top: 1px solid #eaeaea;
- padding-top: 5px;
- }
- .item-name {
- font-size: 12px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- text-align: center;
- }
- .el-upload__tip {
- margin-left: 5px;
- }
- /* 新增图文 */
- .left {
- display: inline-block;
- width: 35%;
- vertical-align: top;
- margin-top: 200px;
- }
- .right {
- display: inline-block;
- width: 60%;
- margin-top: -40px;
- }
- .avatar-uploader {
- width: 20%;
- display: inline-block;
- }
- .avatar-uploader .el-upload {
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- text-align: unset !important;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #165dff;
- }
- .avatar-uploader-icon {
- border: 1px solid #d9d9d9;
- font-size: 28px;
- color: #8c939d;
- width: 120px;
- height: 120px;
- line-height: 120px;
- text-align: center;
- }
- .avatar {
- width: 230px;
- height: 120px;
- }
- .avatar1 {
- width: 120px;
- height: 120px;
- }
- .digest {
- width: 60%;
- display: inline-block;
- vertical-align: top;
- }
- /*新增图文*/
- /*瀑布流样式*/
- .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;
- }
- p {
- line-height: 30px;
- }
- @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;
- }
- }
- /*瀑布流样式*/
- .news-main {
- background-color: #ffffff;
- width: 100%;
- margin: auto;
- height: 120px;
- }
- .news-content {
- background-color: #acadae;
- width: 100%;
- height: 120px;
- position: relative;
- }
- .news-content-title {
- display: inline-block;
- font-size: 15px;
- color: #ffffff;
- position: absolute;
- left: 0px;
- bottom: 0px;
- background-color: black;
- width: 98%;
- padding: 1%;
- opacity: 0.65;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- height: 25px;
- }
- .news-main-item {
- background-color: #ffffff;
- padding: 5px 0px;
- border-top: 1px solid #eaeaea;
- width: 100%;
- margin: auto;
- }
- .news-content-item {
- position: relative;
- margin-left: -3px;
- }
- .news-content-item-title {
- display: inline-block;
- font-size: 12px;
- width: 70%;
- }
- .news-content-item-img {
- display: inline-block;
- width: 25%;
- background-color: #acadae;
- }
- .input-tt {
- padding: 5px;
- }
- .activeAddNews {
- border: 5px solid #2bb673;
- }
- .news-main-plus {
- width: 280px;
- text-align: center;
- margin: auto;
- height: 50px;
- }
- .icon-plus {
- margin: 10px;
- font-size: 25px;
- }
- .select-item {
- width: 60%;
- padding: 10px;
- margin: 0 auto 10px auto;
- border: 1px solid #eaeaea;
- }
- .father .child {
- display: none;
- text-align: center;
- position: relative;
- bottom: 25px;
- }
- .father:hover .child {
- display: block;
- }
- .thumb-div {
- display: inline-block;
- width: 30%;
- text-align: center;
- }
- .thumb-but {
- margin: 5px;
- }
- .material-img {
- width: 100%;
- height: 100%;
- }
- </style>
|