# dingdong-admin **Repository Path**: tan_jian_chi/dingdong-admin ## Basic Information - **Project Name**: dingdong-admin - **Description**: 叮咚买菜 后台管理 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 1 - **Created**: 2020-03-23 - **Last Updated**: 2022-02-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 商家管理系统 预览地址: http://dingdong-admin.nodebook.top/ 公共接口配置: 请访问 src/models/UserRedux.js 配置公共接口 # 前台展示(移动端) 预览地址: http://dingdong.nodebook.top/ 接口源码: https://github.com/cgq001/dingdong-node 接口文档: http://www.docway.net/project/1RegDIiCClF/1RegN4RuBJA ## 初始化 ``` cnpm install ``` ### 运行 ``` yarn strat ``` ### 打包 ``` yarn run build ``` ### CSS隐藏滚动条但还可以滚动 ```css .MenusBoxList{ width: 100%; height: calc(100% - 64px); overflow-x: hidden; overflow-y: auto; -ms-overflow-style: none; overflow: '-moz-scrollbars-none'; scrollbar-width: none; /* 火狐 */ } .MenusBoxList::-webkit-scrollbar { display: none; /* Chrome */ width: 0 !important ; /* Chrome */ } ```