pages.json 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. // #ifdef H5
  7. "navigationStyle": "custom",
  8. // #endif
  9. "enablePullDownRefresh": true,
  10. "navigationBarTitleText": "店铺概况"
  11. }
  12. },
  13. {
  14. "path": "pages/login/login",
  15. "style": {
  16. // #ifdef H5
  17. "navigationStyle": "custom",
  18. // #endif
  19. "navigationBarTitleText": "登录"
  20. }
  21. },
  22. //****************** 公告 ******************
  23. {
  24. "path": "pages/notice/list",
  25. "style": {
  26. // #ifdef H5
  27. "navigationStyle": "custom",
  28. // #endif
  29. "navigationBarTitleText": "公告列表"
  30. }
  31. },
  32. {
  33. "path": "pages/notice/detail",
  34. "style": {
  35. // #ifdef H5
  36. "navigationStyle": "custom",
  37. // #endif
  38. "navigationBarTitleText": "公告详情"
  39. }
  40. },
  41. //****************** 商品管理 ******************
  42. {
  43. "path": "pages/goods/list",
  44. "style": {
  45. // #ifdef H5
  46. "navigationStyle": "custom",
  47. // #endif
  48. "navigationBarTitleText": "商品管理"
  49. }
  50. },
  51. {
  52. "path": "pages/goods/edit/index",
  53. "style": {
  54. // #ifdef H5
  55. "navigationStyle": "custom",
  56. // #endif
  57. "navigationBarTitleText": "编辑商品"
  58. }
  59. },
  60. {
  61. "path": "pages/goods/edit/category",
  62. "style": {
  63. // #ifdef H5
  64. "navigationStyle": "custom",
  65. // #endif
  66. "navigationBarTitleText": "选择商品分类"
  67. }
  68. },
  69. {
  70. "path": "pages/goods/edit/spec",
  71. "style": {
  72. // #ifdef H5
  73. "navigationStyle": "custom",
  74. // #endif
  75. "navigationBarTitleText": "规格类型"
  76. }
  77. },
  78. {
  79. "path": "pages/goods/edit/spec_edit",
  80. "style": {
  81. // #ifdef H5
  82. "navigationStyle": "custom",
  83. // #endif
  84. "navigationBarTitleText": "编辑多规格"
  85. }
  86. },
  87. {
  88. "path": "pages/goods/edit/carmichael_edit",
  89. "style": {
  90. // #ifdef H5
  91. "navigationStyle": "custom",
  92. // #endif
  93. "navigationBarTitleText": "编辑卡密"
  94. }
  95. },
  96. {
  97. "path": "pages/goods/edit/express_freight",
  98. "style": {
  99. // #ifdef H5
  100. "navigationStyle": "custom",
  101. // #endif
  102. "navigationBarTitleText": "快递运费"
  103. }
  104. },
  105. {
  106. "path": "pages/goods/edit/state",
  107. "style": {
  108. // #ifdef H5
  109. "navigationStyle": "custom",
  110. // #endif
  111. "navigationBarTitleText": "商品状态"
  112. }
  113. },
  114. {
  115. "path": "pages/goods/edit/content",
  116. "style": {
  117. // #ifdef H5
  118. "navigationStyle": "custom",
  119. // #endif
  120. "navigationBarTitleText": "商品详情"
  121. }
  122. },
  123. {
  124. "path": "pages/goods/edit/attr",
  125. "style": {
  126. // #ifdef H5
  127. "navigationStyle": "custom",
  128. // #endif
  129. "navigationBarTitleText": "商品参数"
  130. }
  131. },
  132. {
  133. "path": "pages/goods/output",
  134. "style": {
  135. // #ifdef H5
  136. "navigationStyle": "custom",
  137. // #endif
  138. "navigationBarTitleText": "库存管理"
  139. }
  140. },
  141. {
  142. "path": "pages/goods/album",
  143. "style": {
  144. // #ifdef H5
  145. "navigationStyle": "custom",
  146. // #endif
  147. "navigationBarTitleText": "选择相册图片"
  148. }
  149. },
  150. {
  151. "path": "pages/goods/config",
  152. "style": {
  153. // #ifdef H5
  154. "navigationStyle": "custom",
  155. // #endif
  156. "navigationBarTitleText": "商品设置"
  157. }
  158. },
  159. //****************** 订单管理 ******************
  160. {
  161. "path": "pages/order/list",
  162. "style": {
  163. // #ifdef H5
  164. "navigationStyle": "custom",
  165. // #endif
  166. "navigationBarTitleText": "订单管理"
  167. }
  168. },
  169. {
  170. "path": "pages/order/adjust_price",
  171. "style": {
  172. // #ifdef H5
  173. "navigationStyle": "custom",
  174. // #endif
  175. "navigationBarTitleText": "调整价格"
  176. }
  177. },
  178. {
  179. "path": "pages/order/address_update",
  180. "style": {
  181. // #ifdef H5
  182. "navigationStyle": "custom",
  183. // #endif
  184. "navigationBarTitleText": "修改地址"
  185. }
  186. },
  187. {
  188. "path": "pages/order/delivery",
  189. "style": {
  190. // #ifdef H5
  191. "navigationStyle": "custom",
  192. // #endif
  193. "navigationBarTitleText": "订单发货"
  194. }
  195. },
  196. {
  197. "path": "pages/order/local_delivery",
  198. "style": {
  199. // #ifdef H5
  200. "navigationStyle": "custom",
  201. // #endif
  202. "navigationBarTitleText": "订单发货"
  203. }
  204. },
  205. {
  206. "path": "pages/order/detail/basis",
  207. "style": {
  208. // #ifdef H5
  209. "navigationStyle": "custom",
  210. // #endif
  211. "navigationBarTitleText": "订单详情"
  212. }
  213. },
  214. {
  215. "path": "pages/order/detail/store",
  216. "style": {
  217. // #ifdef H5
  218. "navigationStyle": "custom",
  219. // #endif
  220. "navigationBarTitleText": "订单详情"
  221. }
  222. },
  223. {
  224. "path": "pages/order/detail/local",
  225. "style": {
  226. // #ifdef H5
  227. "navigationStyle": "custom",
  228. // #endif
  229. "navigationBarTitleText": "订单详情"
  230. }
  231. },
  232. {
  233. "path": "pages/order/detail/virtual",
  234. "style": {
  235. // #ifdef H5
  236. "navigationStyle": "custom",
  237. // #endif
  238. "navigationBarTitleText": "订单详情"
  239. }
  240. },
  241. {
  242. "path": "pages/order/logistics",
  243. "style": {
  244. // #ifdef H5
  245. "navigationStyle": "custom",
  246. // #endif
  247. "navigationBarTitleText": "物流信息"
  248. }
  249. },
  250. {
  251. "path": "pages/order/edit_logistics",
  252. "style": {
  253. // #ifdef H5
  254. "navigationStyle": "custom",
  255. // #endif
  256. "navigationBarTitleText": "修改物流"
  257. }
  258. },
  259. {
  260. "path": "pages/order/refund/list",
  261. "style": {
  262. // #ifdef H5
  263. "navigationStyle": "custom",
  264. // #endif
  265. "navigationBarTitleText": "退款维权"
  266. }
  267. },
  268. {
  269. "path": "pages/order/refund/detail",
  270. "style": {
  271. // #ifdef H5
  272. "navigationStyle": "custom",
  273. // #endif
  274. "navigationBarTitleText": "退款维权详情"
  275. }
  276. },
  277. {
  278. "path": "pages/order/refund/refuse",
  279. "style": {
  280. // #ifdef H5
  281. "navigationStyle": "custom",
  282. // #endif
  283. "navigationBarTitleText": "退款维权拒绝"
  284. }
  285. },
  286. {
  287. "path": "pages/order/refund/agree",
  288. "style": {
  289. // #ifdef H5
  290. "navigationStyle": "custom",
  291. // #endif
  292. "navigationBarTitleText": "退款维权同意"
  293. }
  294. },
  295. {
  296. "path": "pages/order/refund/take_delivery",
  297. "style": {
  298. // #ifdef H5
  299. "navigationStyle": "custom",
  300. // #endif
  301. "navigationBarTitleText": "退款维权收货"
  302. }
  303. },
  304. {
  305. "path": "pages/order/refund/transfer",
  306. "style": {
  307. // #ifdef H5
  308. "navigationStyle": "custom",
  309. // #endif
  310. "navigationBarTitleText": "退款维权转账"
  311. }
  312. },
  313. //****************** 会员管理 ******************
  314. {
  315. "path": "pages/member/list",
  316. "style": {
  317. // #ifdef H5
  318. "navigationStyle": "custom",
  319. // #endif
  320. "navigationBarTitleText": "会员管理"
  321. }
  322. },
  323. {
  324. "path": "pages/member/detail",
  325. "style": {
  326. // #ifdef H5
  327. "navigationStyle": "custom",
  328. // #endif
  329. "navigationBarTitleText": "会员详情"
  330. }
  331. },
  332. {
  333. "path": "pages/member/coupon",
  334. "style": {
  335. // #ifdef H5
  336. "navigationStyle": "custom",
  337. // #endif
  338. "navigationBarTitleText": "发放优惠券"
  339. }
  340. },
  341. {
  342. "path": "pages/member/adjustaccount",
  343. "style": {
  344. // #ifdef H5
  345. "navigationStyle": "custom",
  346. // #endif
  347. "navigationBarTitleText": "账户调整"
  348. }
  349. },
  350. //****************** 我的 ******************
  351. {
  352. "path": "pages/my/index",
  353. "style": {
  354. // #ifdef H5
  355. "navigationStyle": "custom",
  356. // #endif
  357. "navigationBarTitleText": "个人中心"
  358. }
  359. },
  360. {
  361. "path": "pages/index/all_menu",
  362. "style": {
  363. // #ifdef H5
  364. "navigationStyle": "custom",
  365. // #endif
  366. "navigationBarTitleText": "全部功能"
  367. }
  368. },
  369. //****************** 资产 ******************
  370. {
  371. "path": "pages/property/dashboard/index",
  372. "style": {
  373. // #ifdef H5
  374. "navigationStyle": "custom",
  375. // #endif
  376. "navigationBarTitleText": "资产概况"
  377. }
  378. }, {
  379. "path": "pages/property/dashboard/orderlist",
  380. "style": {
  381. // #ifdef H5
  382. "navigationStyle": "custom",
  383. // #endif
  384. "navigationBarTitleText": "交易记录"
  385. }
  386. }, {
  387. "path": "pages/property/withdraw/index",
  388. "style": {
  389. // #ifdef H5
  390. "navigationStyle": "custom",
  391. // #endif
  392. "navigationBarTitleText": "提现"
  393. }
  394. }, {
  395. "path": "pages/property/withdraw/list",
  396. "style": {
  397. // #ifdef H5
  398. "navigationStyle": "custom",
  399. // #endif
  400. "navigationBarTitleText": "提现记录"
  401. }
  402. }, {
  403. "path": "pages/property/withdraw/detail",
  404. "style": {
  405. // #ifdef H5
  406. "navigationStyle": "custom",
  407. // #endif
  408. "navigationBarTitleText": "提现详情"
  409. }
  410. },
  411. // {
  412. // "path": "pages/property/fee",
  413. // "style": {
  414. // // #ifdef H5
  415. // "navigationStyle": "custom",
  416. // // #endif
  417. // "navigationBarTitleText": "入驻费用"
  418. // }
  419. // },
  420. {
  421. "path": "pages/property/settlement/list_store",
  422. "style": {
  423. // #ifdef H5
  424. "navigationStyle": "custom",
  425. // #endif
  426. "navigationBarTitleText": "门店结算"
  427. }
  428. },
  429. {
  430. "path": "pages/property/settlement/detail_store",
  431. "style": {
  432. // #ifdef H5
  433. "navigationStyle": "custom",
  434. // #endif
  435. "navigationBarTitleText": "门店结算详情"
  436. }
  437. },
  438. {
  439. "path": "pages/statistics/transaction",
  440. "style": {
  441. // #ifdef H5
  442. "navigationStyle": "custom",
  443. // #endif
  444. "navigationBarTitleText": "交易分析"
  445. }
  446. }, {
  447. "path": "pages/my/statistics",
  448. "style": {
  449. // #ifdef H5
  450. "navigationStyle": "custom",
  451. // #endif
  452. "navigationBarTitleText": "交易设置"
  453. }
  454. }, {
  455. "path": "pages/my/nvoice/nvoice",
  456. "style": {
  457. // #ifdef H5
  458. "navigationStyle": "custom",
  459. // #endif
  460. "navigationBarTitleText": "交易设置"
  461. }
  462. }, {
  463. "path": "pages/statistics/shop",
  464. "style": {
  465. // #ifdef H5
  466. "navigationStyle": "custom",
  467. // #endif
  468. "navigationBarTitleText": "店铺统计"
  469. }
  470. }, {
  471. "path": "pages/statistics/goods",
  472. "style": {
  473. // #ifdef H5
  474. "navigationStyle": "custom",
  475. // #endif
  476. "navigationBarTitleText": "商品统计"
  477. }
  478. }, {
  479. "path": "pages/statistics/visit",
  480. "style": {
  481. // #ifdef H5
  482. "navigationStyle": "custom",
  483. // #endif
  484. "navigationBarTitleText": "访问统计"
  485. }
  486. }, {
  487. "path": "pages/verify/index",
  488. "style": {
  489. // #ifdef H5
  490. "navigationStyle": "custom",
  491. // #endif
  492. "navigationBarTitleText": "核销台"
  493. }
  494. }, {
  495. "path": "pages/verify/records",
  496. "style": {
  497. // #ifdef H5
  498. "navigationStyle": "custom",
  499. // #endif
  500. "navigationBarTitleText": "核销记录"
  501. }
  502. }, {
  503. "path": "pages/verify/user",
  504. "style": {
  505. // #ifdef H5
  506. "navigationStyle": "custom",
  507. // #endif
  508. "navigationBarTitleText": "核销人员"
  509. }
  510. }, {
  511. "path": "pages/verify/user_edit",
  512. "style": {
  513. // #ifdef H5
  514. "navigationStyle": "custom",
  515. // #endif
  516. "navigationBarTitleText": "编辑核销人员"
  517. }
  518. }
  519. //****************** 我的-账户权限 ******************
  520. , {
  521. "path": "pages/my/user/user",
  522. "style": {
  523. // #ifdef H5
  524. "navigationStyle": "custom",
  525. // #endif
  526. "navigationBarTitleText": "用户管理"
  527. }
  528. }, {
  529. "path": "pages/my/user/user_edit",
  530. "style": {
  531. // #ifdef H5
  532. "navigationStyle": "custom",
  533. // #endif
  534. "navigationBarTitleText": "用户编辑"
  535. }
  536. }, {
  537. "path": "pages/my/shop/config",
  538. "style": {
  539. // #ifdef H5
  540. "navigationStyle": "custom",
  541. // #endif
  542. "navigationBarTitleText": "店铺信息"
  543. }
  544. }, {
  545. "path": "pages/my/shop/contact",
  546. "style": {
  547. // #ifdef H5
  548. "navigationStyle": "custom",
  549. // #endif
  550. "navigationBarTitleText": "联系地址"
  551. }
  552. }, {
  553. "path": "pages/login/modify_pwd",
  554. "style": {
  555. // #ifdef H5
  556. "navigationStyle": "custom",
  557. // #endif
  558. "navigationBarTitleText": "修改密码"
  559. }
  560. }
  561. ,{
  562. "path" : "pages/invoices/invoices",
  563. "style" :
  564. {
  565. "navigationBarTitleText": "发票管理",
  566. "enablePullDownRefresh": false
  567. }
  568. }
  569. ,{
  570. "path" : "pages/storemanage/storemanage",
  571. "style" :
  572. {
  573. "navigationBarTitleText": "门店管理",
  574. "enablePullDownRefresh": false
  575. }
  576. }
  577. ,{
  578. "path" : "pages/invoices/detail/detail",
  579. "style" :
  580. {
  581. "navigationBarTitleText": "发票详情",
  582. "enablePullDownRefresh": false
  583. }
  584. }
  585. ,{
  586. "path" : "pages/invoices/edit/edit",
  587. "style" :
  588. {
  589. "navigationBarTitleText": "发票编辑",
  590. "enablePullDownRefresh": false
  591. }
  592. }
  593. ,{
  594. "path" : "pages/storemanage/edit/edit",
  595. "style" :
  596. {
  597. "navigationBarTitleText": "门店管理",
  598. "enablePullDownRefresh": false
  599. }
  600. },
  601. {
  602. "path": "pages/storeclose/storeclose/storeclose",
  603. "style": {
  604. // #ifdef H5
  605. "navigationStyle": "custom"
  606. // #endif
  607. }
  608. }
  609. ],
  610. "globalStyle": {
  611. "navigationBarTextStyle": "black",
  612. "navigationBarTitleText": "",
  613. "navigationBarBackgroundColor": "#ffffff",
  614. "backgroundColor": "#F7f7f7",
  615. "backgroundColorTop": "#f7f7f7",
  616. "backgroundColorBottom": "#f7f7f7"
  617. },
  618. "tabBar": {
  619. // #ifdef H5
  620. "custom": true,
  621. // #endif
  622. "color": "#333",
  623. "selectedColor": "#FF6A00",
  624. "backgroundColor": "#fff",
  625. "borderStyle": "white",
  626. "iconWidth":"20px",
  627. "list": [{
  628. "pagePath": "pages/order/list",
  629. "text": "订单",
  630. "iconPath": "static/images/tabbar/order.png",
  631. "selectedIconPath": "static/images/tabbar/order_selected.png"
  632. },
  633. {
  634. "pagePath": "pages/goods/list",
  635. "text": "商品",
  636. "iconPath": "static/images/tabbar/goods.png",
  637. "selectedIconPath": "static/images/tabbar/goods_selected.png"
  638. }, {
  639. "pagePath": "pages/index/index",
  640. "text": "店铺",
  641. "iconPath": "static/images/tabbar/shop.png",
  642. "selectedIconPath": "static/images/tabbar/shop_selected.png"
  643. },
  644. {
  645. "pagePath": "pages/member/list",
  646. "text": "会员",
  647. "iconPath": "static/images/tabbar/member.png",
  648. "selectedIconPath": "static/images/tabbar/member_selected.png"
  649. },
  650. {
  651. "pagePath": "pages/my/index",
  652. "text": "我的",
  653. "iconPath": "static/images/tabbar/my.png",
  654. "selectedIconPath": "static/images/tabbar/my_selected.png"
  655. }
  656. ]
  657. }
  658. }