pages.json 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/common/launch",
  8. "style": {
  9. "navigationBarBackgroundColor":"#ffffff",
  10. "navigationBarTitleText": ""
  11. }
  12. },
  13. {
  14. "path": "pages/auth/login",
  15. "style": {
  16. "navigationBarBackgroundColor": "#ffffff",
  17. "navigationBarTitleText": "",
  18. "app-plus":{
  19. "titleNView":{
  20. "autoBackButton":false
  21. }
  22. }
  23. }
  24. },
  25. {
  26. "path": "pages/index/index",
  27. "style": {
  28. "navigationBarTextStyle": "white",
  29. "enablePullDownRefresh": false,
  30. "navigationStyle": "custom",
  31. "app-plus": {
  32. "bounce": "none"
  33. }
  34. }
  35. },
  36. {
  37. "path": "pages/index/h5",
  38. "style": {
  39. "navigationBarTextStyle": "white",
  40. "enablePullDownRefresh": false,
  41. "navigationStyle": "custom",
  42. "app-plus": {
  43. "bounce": "none"
  44. }
  45. }
  46. }
  47. ,{
  48. "path" : "pages/user/index",
  49. "style" :
  50. {
  51. "navigationBarTextStyle": "white",
  52. "enablePullDownRefresh": false,
  53. "navigationStyle": "custom",
  54. "app-plus": {
  55. "bounce": "none"
  56. }
  57. }
  58. }
  59. ,{
  60. "path" : "pages/customer/index",
  61. "style" :
  62. {
  63. "navigationBarBackgroundColor": "#ffffff",
  64. "navigationBarTextStyle": "black",
  65. "navigationBarTitleText": "会员数据",
  66. "enablePullDownRefresh": false,
  67. // "navigationStyle": "custom",
  68. "app-plus": {
  69. "bounce": "none"
  70. }
  71. }
  72. }
  73. ,{
  74. "path" : "pages/msg/index",
  75. "style" :
  76. {
  77. "navigationBarBackgroundColor": "#ffffff",
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "消息",
  80. "enablePullDownRefresh": false
  81. }
  82. }
  83. ,{
  84. "path" : "pages/user/about",
  85. "style" :
  86. {
  87. "navigationBarBackgroundColor": "#ffffff",
  88. "navigationBarTextStyle": "black",
  89. "navigationBarTitleText": "关于我们",
  90. "enablePullDownRefresh": false,
  91. // #ifdef H5
  92. "navigationStyle": "custom",
  93. // #endif
  94. // #ifndef H5
  95. "navigationStyle": "default",
  96. // #endif
  97. "app-plus": {
  98. "bounce": "none"
  99. }
  100. }
  101. }
  102. ,{
  103. "path" : "pages/user/editPwd",
  104. "style" :
  105. {
  106. "navigationBarBackgroundColor": "#ffffff",
  107. "navigationBarTextStyle": "black",
  108. "navigationBarTitleText": "修改密码",
  109. "enablePullDownRefresh": false
  110. }
  111. }
  112. ,{
  113. "path" : "pages/user/editUser",
  114. "style" :
  115. {
  116. "navigationBarBackgroundColor": "#ffffff",
  117. "navigationBarTextStyle": "black",
  118. "navigationBarTitleText": "设置",
  119. "enablePullDownRefresh": false,
  120. // #ifdef H5
  121. "navigationStyle": "custom",
  122. // #endif
  123. // #ifndef H5
  124. "navigationStyle": "default",
  125. // #endif
  126. "app-plus": {
  127. "bounce": "none"
  128. }
  129. }
  130. }
  131. ,{
  132. "path" : "pages/user/userInfo",
  133. "style" :
  134. {
  135. "navigationBarBackgroundColor": "#ffffff",
  136. "navigationBarTextStyle": "black",
  137. "navigationBarTitleText": "用户信息",
  138. "enablePullDownRefresh": false,
  139. // #ifdef H5
  140. "navigationStyle": "custom",
  141. // #endif
  142. // #ifndef H5
  143. "navigationStyle": "default",
  144. // #endif
  145. "app-plus": {
  146. "bounce": "none"
  147. }
  148. }
  149. }
  150. ,{
  151. "path" : "pages/user/users/users",
  152. "style" :
  153. {
  154. "navigationBarTitleText": "销售审核",
  155. "navigationBarBackgroundColor": "#ffffff",
  156. "navigationBarTextStyle": "black",
  157. "enablePullDownRefresh": false,
  158. // #ifdef H5
  159. "navigationStyle": "custom",
  160. // #endif
  161. // #ifndef H5
  162. "navigationStyle": "default",
  163. // #endif
  164. "app-plus": {
  165. "bounce": "none"
  166. }
  167. }
  168. }
  169. ,{
  170. "path" : "pages/user/users/userInfo",
  171. "style" :
  172. {
  173. "navigationBarBackgroundColor": "#ffffff",
  174. "navigationBarTextStyle": "black",
  175. "navigationBarTitleText": "员工详情",
  176. "enablePullDownRefresh": false,
  177. // #ifdef H5
  178. "navigationStyle": "custom",
  179. // #endif
  180. // #ifndef H5
  181. "navigationStyle": "default",
  182. // #endif
  183. "app-plus": {
  184. "bounce": "none"
  185. }
  186. }
  187. },{
  188. "path" : "pages/courseManage/statistics",
  189. "style" :
  190. {
  191. "navigationBarBackgroundColor": "#ffffff",
  192. "navigationBarTextStyle": "black",
  193. "navigationBarTitleText": "",
  194. "enablePullDownRefresh": false,
  195. // #ifdef H5
  196. "navigationStyle": "custom",
  197. // #endif
  198. // #ifndef H5
  199. "navigationStyle": "default",
  200. // #endif
  201. "app-plus": {
  202. "bounce": "none"
  203. }
  204. }
  205. },
  206. {
  207. "path" : "pages/courseManage/operation/index",
  208. "style" :
  209. {
  210. "navigationBarBackgroundColor": "#ffffff",
  211. "navigationBarTextStyle": "black",
  212. "navigationBarTitleText": "课程数据详情",
  213. "enablePullDownRefresh": false,
  214. // #ifdef H5
  215. "navigationStyle": "custom",
  216. // #endif
  217. // #ifndef H5
  218. "navigationStyle": "default",
  219. // #endif
  220. "app-plus": {
  221. "bounce": "none"
  222. }
  223. }
  224. },
  225. {
  226. "path" : "pages/courseManage/vip/ManageDetail",
  227. "style" :
  228. {
  229. "navigationBarTitleText" : "会员详情",
  230. "navigationBarBackgroundColor": "#ffffff",
  231. "navigationBarTextStyle": "black",
  232. "enablePullDownRefresh": false,
  233. // #ifdef H5
  234. "navigationStyle": "custom",
  235. // #endif
  236. // #ifndef H5
  237. "navigationStyle": "default",
  238. // #endif
  239. "app-plus": {
  240. "bounce": "none"
  241. }
  242. }
  243. },
  244. {
  245. "path" : "pages/courseManage/manage/exprotList",
  246. "style" :
  247. {
  248. "navigationBarTitleText" : "审核列表",
  249. "navigationBarBackgroundColor": "#ffffff",
  250. "navigationBarTextStyle": "black",
  251. "enablePullDownRefresh": false,
  252. // #ifdef H5
  253. "navigationStyle": "custom",
  254. // #endif
  255. // #ifndef H5
  256. "navigationStyle": "default",
  257. // #endif
  258. "app-plus": {
  259. "bounce": "none"
  260. }
  261. }
  262. },
  263. {
  264. "path" : "pages/courseManage/manage/lableSetup",
  265. "style" :
  266. {
  267. "navigationBarTitleText" : "标签设置",
  268. "navigationBarBackgroundColor": "#ffffff",
  269. "navigationBarTextStyle": "black",
  270. "enablePullDownRefresh": false,
  271. // #ifdef H5
  272. "navigationStyle": "custom",
  273. // #endif
  274. // #ifndef H5
  275. "navigationStyle": "default",
  276. // #endif
  277. "app-plus": {
  278. "bounce": "none"
  279. }
  280. }
  281. },
  282. {
  283. "path" : "pages/courseManage/manage/userDataDetail",
  284. "style" :
  285. {
  286. "navigationBarTitleText" : "账户数据明细",
  287. "navigationBarBackgroundColor": "#ffffff",
  288. "navigationBarTextStyle": "black",
  289. "enablePullDownRefresh": false,
  290. "navigationStyle": "custom",
  291. "app-plus": {
  292. "bounce": "none"
  293. }
  294. }
  295. },
  296. {
  297. "path" : "pages/courseManage/manage/changeVip",
  298. "style" :
  299. {
  300. "navigationBarTitleText" : "更换会员归属",
  301. "navigationBarBackgroundColor": "#ffffff",
  302. "navigationBarTextStyle": "black",
  303. "enablePullDownRefresh": false,
  304. // #ifdef H5
  305. "navigationStyle": "custom",
  306. // #endif
  307. // #ifndef H5
  308. "navigationStyle": "default",
  309. // #endif
  310. "app-plus": {
  311. "bounce": "none"
  312. }
  313. }
  314. },
  315. {
  316. "path" : "pages/courseManage/manage/setup",
  317. "style" :
  318. {
  319. "navigationBarTitleText" : "经销商设置",
  320. "navigationBarTextStyle": "black",
  321. "enablePullDownRefresh": false,
  322. "navigationStyle": "custom",
  323. "app-plus": {
  324. "bounce": "none"
  325. }
  326. }
  327. },
  328. {
  329. "path" : "pages/course/course",
  330. "style" :
  331. {
  332. "navigationBarTitleText" : "课程库",
  333. "navigationBarTextStyle": "black",
  334. "enablePullDownRefresh": false,
  335. // "navigationStyle": "custom",
  336. "app-plus": {
  337. "bounce": "none"
  338. }
  339. }
  340. },
  341. {
  342. "path" : "pages/urgeCourse/urgeCourse",
  343. "style" :
  344. {
  345. "navigationBarTitleText" : "催课面板",
  346. "navigationBarTextStyle": "black",
  347. "enablePullDownRefresh": false,
  348. "app-plus": {
  349. "bounce": "none"
  350. }
  351. }
  352. },
  353. {
  354. "path" : "pages/user/users/becomeVIP",
  355. "style" :
  356. {
  357. "navigationBarTitleText" : "注册会员",
  358. "navigationBarTextStyle": "black",
  359. "enablePullDownRefresh": false,
  360. "navigationStyle": "custom",
  361. "app-plus": {
  362. "bounce": "none"
  363. }
  364. }
  365. },
  366. {
  367. "path" : "pages/auth/wxlogin",
  368. "style" :
  369. {
  370. "navigationBarTitleText" : "登录",
  371. "navigationStyle": "custom"
  372. }
  373. },
  374. {
  375. "path" : "pages/enterprise/enterprise",
  376. "style" :
  377. {
  378. "navigationBarTitleText" : "",
  379. "navigationStyle": "custom"
  380. }
  381. }
  382. ],
  383. "subPackages": [
  384. {
  385. "root": "pages_manage",
  386. "pages": [
  387. {
  388. "path" : "manageDetail",
  389. "style" :
  390. {
  391. "navigationBarTitleText" : "群管详情页",
  392. "navigationBarBackgroundColor": "#ffffff",
  393. "navigationBarTextStyle": "black",
  394. "enablePullDownRefresh": false,
  395. // #ifdef H5
  396. "navigationStyle": "custom",
  397. // #endif
  398. // 小程序保留默认
  399. // #ifndef H5
  400. "navigationStyle":"default",
  401. // #endif
  402. "app-plus": {
  403. "bounce": "none"
  404. }
  405. }
  406. },
  407. {
  408. "path" : "manageIndex",
  409. "style" :
  410. {
  411. "navigationBarTitleText" : "管理",
  412. "navigationBarBackgroundColor": "#ffffff",
  413. "navigationBarTextStyle": "black",
  414. "enablePullDownRefresh": false,
  415. // #ifdef H5
  416. "navigationStyle": "custom",
  417. // #endif
  418. // #ifndef H5
  419. "navigationStyle": "default",
  420. // #endif
  421. "app-plus": {
  422. "bounce": "none"
  423. }
  424. }
  425. },
  426. {
  427. "path" : "actDetail",
  428. "style" :
  429. {
  430. "navigationBarTitleText" : "用户行动轨迹",
  431. "navigationBarBackgroundColor": "#ffffff",
  432. "navigationBarTextStyle": "black",
  433. "enablePullDownRefresh": false,
  434. // #ifdef H5
  435. "navigationStyle": "custom",
  436. // #endif
  437. // #ifndef H5
  438. "navigationStyle": "default",
  439. // #endif
  440. "app-plus": {
  441. "bounce": "none"
  442. }
  443. }
  444. }
  445. ]
  446. },
  447. {
  448. "root": "pages_course",
  449. "pages": [
  450. {
  451. "path": "videovip",//会员看课
  452. "style": {
  453. "navigationBarTitleText": "看课",
  454. "navigationStyle": "custom",
  455. "app-plus": {
  456. "titleNView": false
  457. }
  458. }
  459. },
  460. {
  461. "path" : "course/becomeSale",
  462. "style" :
  463. {
  464. "navigationBarTitleText" : "注册"
  465. }
  466. },
  467. {
  468. "path" : "course/courseVideo",
  469. "style" :
  470. {
  471. "navigationBarTitleText" : "课程详情",
  472. "navigationBarBackgroundColor": "#ffffff",
  473. "navigationBarTextStyle": "black",
  474. "enablePullDownRefresh": false,
  475. // #ifdef H5
  476. "navigationStyle": "custom",
  477. // #endif
  478. // #ifndef H5
  479. "navigationStyle": "default",
  480. // #endif
  481. "app-plus": {
  482. "bounce": "none"
  483. }
  484. }
  485. },
  486. {
  487. "path": "video",//企微看课
  488. "style": {
  489. "navigationBarTitleText": "看课",
  490. "navigationStyle": "custom",
  491. "app-plus": {
  492. "titleNView": false
  493. }
  494. }
  495. },
  496. {
  497. "path": "videoNew",//企微自动发课看课
  498. "style": {
  499. "navigationBarTitleText": "看课",
  500. "navigationStyle": "custom",
  501. "app-plus": {
  502. "titleNView": false
  503. }
  504. }
  505. },
  506. {
  507. "path": "reward",
  508. "style": {
  509. "navigationBarTitleText": "奖励",
  510. "navigationStyle": "custom",
  511. "app-plus": {
  512. "titleNView": false
  513. }
  514. }
  515. },
  516. {
  517. "path" : "webview",
  518. "style" :
  519. {
  520. "navigationBarTitleText" : "授权登录",
  521. "navigationBarTextStyle": "black",
  522. "enablePullDownRefresh": false,
  523. "navigationStyle": "custom",
  524. "app-plus": {
  525. "bounce": "none"
  526. }
  527. }
  528. },
  529. {
  530. "path" : "exportlist/exportlist",
  531. "style" :
  532. {
  533. "navigationBarTitleText" : "导出列表",
  534. "navigationBarBackgroundColor": "#ffffff",
  535. "navigationBarTextStyle": "black",
  536. "enablePullDownRefresh": false,
  537. // #ifdef H5
  538. "navigationStyle": "custom",
  539. // #endif
  540. // #ifndef H5
  541. "navigationStyle":"default",
  542. // #endif
  543. "app-plus": {
  544. "bounce": "none"
  545. }
  546. }
  547. }
  548. ]
  549. }
  550. ],
  551. "globalStyle": {
  552. "navigationBarTextStyle": "black",
  553. "navigationBarTitleText": "看课管理",
  554. "navigationBarBackgroundColor": "#FFFFFF",
  555. "backgroundColor": "#FFFFFF"
  556. },
  557. "tabBar": {
  558. "color": "#7e7e7e",
  559. "selectedColor": "#1773ff",
  560. "borderStyle": "white",
  561. "backgroundColor": "#ffffff",
  562. "height": "70px",
  563. "fontSize":"12px",
  564. "iconWidth":"20px",
  565. "spacing": "8px",
  566. "list": [
  567. {
  568. "pagePath": "pages/index/index",
  569. "iconPath": "/static/manageTabIcon/data.png",
  570. "selectedIconPath": "/static/manageTabIcon/data_on.png",
  571. "text": "数据"
  572. },
  573. {
  574. "pagePath": "pages/course/course",
  575. "iconPath": "/static/manageTabIcon/liveclasses.png",
  576. "selectedIconPath": "/static/manageTabIcon/liveclasses_on.png",
  577. "text": "课程库"
  578. },
  579. {
  580. "pagePath": "pages/customer/index",
  581. "iconPath": "/static/manageTabIcon/vip.png",
  582. "selectedIconPath": "/static/manageTabIcon/vip_on.png",
  583. "text": "会员"
  584. },
  585. {
  586. "pagePath": "pages/urgeCourse/urgeCourse",
  587. "iconPath": "/static/manageTabIcon/training.png",
  588. "selectedIconPath": "/static/manageTabIcon/training_on.png",
  589. "text": "催课"
  590. },
  591. {
  592. "pagePath": "pages/user/index",
  593. "iconPath": "/static/manageTabIcon/manage.png",
  594. "selectedIconPath": "/static/manageTabIcon/manage_on.png",
  595. "text": "管理"
  596. }
  597. ]
  598. }
  599. }