移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
758 B

import request from '@/utils/request'
// 处理富文本内容截取
export const formatPolicyContext = (context, maxLength = 100) => {
if (!context) return ''
// 移除HTML标签
const plainText = context.replace(/<[^>]+>/g, '')
return plainText.length > maxLength
? plainText.substring(0, maxLength) + '...'
: plainText
}
// 政策法规 API
export const PolicyApi = {
/**
* 查询政策法规分页
* @param {Object} params
*/
getPolicyPage: (params) => {
return request({
url: `/system/policy/page`,
method: 'GET',
params
})
},
// 查询政策法规详情
getPolicy: (id) => {
return request({ url: `/system/policy/get?id=` + id,method: 'GET' })
},
}