12345678910111213141516171819202122232425262728293031323334353637 |
- import request from '@/utils/request'
- // 置顶 取消置顶
- export function articletop(data) {
- return request({
- url: '/api/circle/articletop',
- method: 'post',
- data
- });
- }
- // 删除贴子
- export function articledel(data) {
- return request({
- url: '/api/circle/articledel',
- method: 'post',
- data
- });
- }
- // 文章详情
- export function details(data) {
- return request({
- url: '/api/article/view',
- method: 'get',
- data
- });
- }
- //处理文章详情页
- export function deconstructArticle(data) {
- if (data) {
- data = data.replace(/<img/g, '<img style="width: 100% !important;height:auto"').replace(
- /<p>\S*<img/g, '<p style="line-height: 0;"><img');
- }
- return data;
- }
|