description.js 574 B

123456789101112131415161718
  1. const data = {
  2. description:
  3. '最近更新:1、重磅更新:主题配置功能背景配置。2、累计完成6种布局、7种主题。3、重构RBAC角色权限、菜单管理、角色管理。4、支持https环境下网站更新提醒。建党百年惊喜福利,买一得二,<a href="https://vue-admin-beautiful.com/authorization/" target="_blank">点我购买</a>',
  4. }
  5. module.exports = [
  6. {
  7. url: '/description/getList',
  8. type: 'get',
  9. response: () => {
  10. return {
  11. code: 200,
  12. msg: 'success',
  13. data,
  14. }
  15. },
  16. },
  17. ]