index.js 289 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import { api } from '../../common/api'; export default { getContent(content_code) { return api.get({ url: '/operations/api/v5/resource/get', data: { content_code, platform: 'platform' // 需要 APP 格式的网址 }, code: 200 }); } };