123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- module.exports = {
- title: '文档中心',
- description: '优巨引擎·文档中心',
- head: [
- [
- 'meta',
- {
- name: 'viewport',
- content:
- 'width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no',
- },
- ],
- ['meta', { name: 'keywords', content: '文档中心 猎豹 开放平台' }],
- ['link', { rel: 'icon', href: '/favicon.ico' }],
- ],
- themeConfig: {
- search: true,
- searchMaxSuggestions: 10,
- lastUpdated: 'Last Updated',
- // 启动页面丝滑滚动
- smoothScroll: true,
- nextLinks: true,
- prevLinks: true,
- sidebar: {
- '/': [
- {
- text: '文档说明',
- link: '../index'
- },
- {
- text: '接口规则',
- children: [
- { text: '签名', link: '../views/interfaceRules/sign' },
- ]
- },
- {
- text: 'API列表',
- children: [
- { text: 'token刷新', link: '../views/apiList/tokenRefresh' },
- {
- text: '门店相关', children: [
- {
- text: '创建门店',
- link: '../views/apiList/shopInterface/shopCreate'
- },
- {
- text: '更新门店',
- link: '../views/apiList/shopInterface/shopUpdate'
- },
- {
- text: '门店运力查询',
- link: '../views/apiList/shopInterface/shopDelivery'
- },
- {
- text: '门店运力禁用',
- link: '../views/apiList/shopInterface/deliveryStatus'
- },
- {
- text: '门店运力状态同步',
- link: '../views/apiList/shopInterface/statusSync'
- },
- ]
- },
- {
- text: '订单相关', children: [
- {
- text: '订单计费',
- link: '../views/apiList/orderInterface/orderValuation'
- },
- {
- text: '创建订单',
- link: '../views/apiList/orderInterface/orderCreate'
- },
- {
- text: '取消订单',
- link: '../views/apiList/orderInterface/orderCancel'
- },
- {
- text: '推送订单',
- link: '../views/apiList/orderInterface/orderPush'
- },
- {
- text: '骑手位置',
- link: '../views/apiList/orderInterface/riderLocation'
- },
- {
- text: '订单状态通知',
- link: '../views/apiList/orderInterface/orderStatusNotice'
- },
- ]
- }
- ]
- },
- {
- text: '附录',
- children: [
- { text: '经营品类', link: '../views/appendix/businessCategory' },
- { text: '运力平台', link: '../views/appendix/deliveryPlatform' },
- { text: '错误编码', link: '../views/appendix/errorCode' }
- ]
- }
- ],
- },
- author: 'Funny<15151556015@163.com>',
- nav: [
- { text: '首页', link: 'http://opentest.liebaoai.cn:88/' },
- // { text: '分类', link: '/tags' },
- ],
- },
- dest: './dist',
- plugins: [
- '@vuepress/back-to-top', // 返回顶部插件
- ],
- }
|