pages.json 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/tabBar/home/index",
  5. "style": {
  6. "navigationBarTitleText": "采美采购商城",
  7. "enablePullDownRefresh": true,
  8. "backgroundColor": "#F28F31",
  9. "backgroundTextStyle": "light",
  10. "navigationStyle": "custom"
  11. }
  12. }, {
  13. "path": "pages/tabBar/notice/index",
  14. "style": {
  15. "navigationBarTitleText": "消息通知",
  16. "navigationStyle": "custom"
  17. }
  18. }, {
  19. "path": "pages/tabBar/category/index",
  20. "style": {
  21. "navigationBarTitleText": "分类",
  22. "navigationStyle": "custom"
  23. }
  24. }, {
  25. "path": "pages/tabBar/cart/index",
  26. "style": {
  27. "navigationBarTitleText": "购物车",
  28. "enablePullDownRefresh": true
  29. }
  30. }, {
  31. "path": "pages/tabBar/user/user",
  32. "style": {
  33. "navigationBarTitleText": "我的",
  34. "enablePullDownRefresh": true,
  35. "navigationStyle": "custom"
  36. }
  37. }
  38. ],
  39. "subPackages": [{
  40. "root": "pages/service/", //信息服务模块
  41. "pages": [{
  42. "path": "aftersale",
  43. "style": {
  44. "navigationBarTitleText": "售后无忧"
  45. }
  46. },
  47. {
  48. "path": "service",
  49. "style": {
  50. "navigationBarTitleText": "采美365网"
  51. }
  52. },
  53. {
  54. "path": "shoppingnotice",
  55. "style": {
  56. "navigationBarTitleText": "购物须知"
  57. }
  58. },
  59. {
  60. "path": "sellconten",
  61. "style": {
  62. "navigationBarTitleText": "条款内容"
  63. }
  64. },
  65. {
  66. "path": "news-list",
  67. "style": {
  68. "navigationBarTitleText": "公告",
  69. "enablePullDownRefresh": true
  70. }
  71. },
  72. {
  73. "path": "news-detailes",
  74. "style": {
  75. "navigationBarTitleText": "公告内容"
  76. }
  77. },
  78. {
  79. "path": "certificate",
  80. "style": {
  81. "navigationBarTitleText": "资质证书"
  82. }
  83. }
  84. ]
  85. },
  86. {
  87. "root": "pages/goods/", //商品模块
  88. "pages": [
  89. /*美体节临时页面*/
  90. {
  91. "path": "good-floor-temp",
  92. "style": {
  93. "navigationBarTitleText": "美体节",
  94. "enablePullDownRefresh": true,
  95. "navigationStyle": "custom"
  96. }
  97. },
  98. {
  99. "path": "goods-instrument",
  100. "style": {
  101. "navigationBarTitleText": "项目仪器",
  102. "enablePullDownRefresh": true
  103. }
  104. },
  105. {
  106. "path": "goods-classify",
  107. "style": {
  108. "navigationBarTitleText": "商品列表",
  109. "enablePullDownRefresh": true,
  110. "navigationStyle": "custom"
  111. }
  112. },
  113. {
  114. "path": "good-floorMore",
  115. "style": {
  116. "navigationBarTitleText": "更多楼层",
  117. "enablePullDownRefresh": true
  118. }
  119. },
  120. {
  121. "path": "good-floor",
  122. "style": {
  123. "navigationBarTitleText": "",
  124. "enablePullDownRefresh": true,
  125. "navigationStyle": "custom"
  126. }
  127. },
  128. {
  129. "path": "goods-active",
  130. "style": {
  131. "navigationBarTitleText": "凑单商品",
  132. "enablePullDownRefresh": true
  133. }
  134. },
  135. {
  136. "path": "product",
  137. "style": {
  138. "navigationBarTitleText": "商品详情",
  139. "navigationStyle": "custom"
  140. }
  141. },
  142. {
  143. "path": "instrument-details",
  144. "style": {
  145. "navigationBarTitleText": "项目仪器详情",
  146. "navigationStyle": "custom"
  147. }
  148. },
  149. {
  150. "path": "cart",
  151. "style": {
  152. "navigationBarTitleText": "购物车",
  153. "enablePullDownRefresh": true,
  154. "navigationStyle": "custom"
  155. }
  156. },
  157. {
  158. "path": "goods-doc-list",
  159. "style": {
  160. "navigationBarTitleText": "美业资料",
  161. "enablePullDownRefresh": false
  162. }
  163. },
  164. {
  165. "path": "goods-doc-detail",
  166. "style": {
  167. "navigationBarTitleText": "美业资料详情",
  168. "enablePullDownRefresh": false
  169. }
  170. },
  171. {
  172. "path": "goods-supporting",
  173. "style": {
  174. "navigationBarTitleText": "配套商品",
  175. "enablePullDownRefresh": false
  176. }
  177. },
  178. {
  179. "path": "good-hot",
  180. "style": {
  181. "navigationBarTitleText": "新品橱窗",
  182. "enablePullDownRefresh": false,
  183. "navigationStyle": "custom"
  184. }
  185. },
  186. {
  187. "path": "goods-file-preview",
  188. "style": {
  189. "navigationBarTitleText": "文件预览",
  190. "enablePullDownRefresh": false
  191. }
  192. }
  193. ]
  194. },
  195. {
  196. "root": "pages/login/", //注册登录模块
  197. "pages": [{
  198. "path": "register",
  199. "style": {
  200. "navigationBarTitleText": "机构注册",
  201. "navigationStyle": "custom"
  202. }
  203. },
  204. {
  205. "path": "register-supplier",
  206. "style": {
  207. "navigationBarTitleText": "供应商注册",
  208. "navigationStyle": "custom"
  209. }
  210. },
  211. {
  212. "path": "register-select",
  213. "style": {
  214. "navigationBarTitleText": "选择身份"
  215. }
  216. },
  217. {
  218. "path": "apply",
  219. "style": {
  220. "navigationBarTitleText": "升级资质机构",
  221. "navigationStyle": "custom"
  222. }
  223. },
  224. {
  225. "path": "apply-supplier",
  226. "style": {
  227. "navigationBarTitleText": "修改申请资料",
  228. "navigationStyle": "custom"
  229. }
  230. },
  231. {
  232. "path": "logincode",
  233. "style": {
  234. "navigationBarTitleText": "邀请码登录"
  235. }
  236. },
  237. {
  238. "path": "login",
  239. "style": {
  240. "navigationBarTitleText": "登录"
  241. }
  242. },
  243. {
  244. "path": "binding",
  245. "style": {
  246. "navigationBarTitleText": "注册信息"
  247. }
  248. },
  249. {
  250. "path": "bindwechat",
  251. "style": {
  252. "navigationBarTitleText": "绑定微信"
  253. }
  254. },
  255. {
  256. "path": "bindOperator",
  257. "style": {
  258. "navigationBarTitleText": "绑定运营人员"
  259. }
  260. },
  261. {
  262. "path": "information",
  263. "style": {
  264. "navigationBarTitleText": "修改资料",
  265. "navigationStyle": "custom"
  266. }
  267. },
  268. {
  269. "path": "password",
  270. "style": {
  271. "navigationBarTitleText": "修改密码"
  272. }
  273. },
  274. {
  275. "path": "supplier_login",
  276. "style": {
  277. "navigationBarTitleText": "美业参谋"
  278. }
  279. }, {
  280. "path": "supplier_information",
  281. "style": {
  282. "navigationBarTitleText": "美业参谋"
  283. }
  284. }
  285. ]
  286. },
  287. {
  288. "root": "pages/user/", //机构个人中心模块
  289. "pages": [{
  290. "path": "account/account",
  291. "style": {
  292. "navigationBarTitleText": "账户余额明细",
  293. "enablePullDownRefresh": true,
  294. "navigationStyle": "custom"
  295. }
  296. },
  297. {
  298. "path": "account/account-bean",
  299. "style": {
  300. "navigationBarTitleText": "采美豆明细",
  301. "enablePullDownRefresh": true,
  302. "navigationStyle": "custom"
  303. }
  304. },
  305. {
  306. "path": "address/addressManage",
  307. "style": {
  308. "navigationBarTitleText": "添加新地址"
  309. }
  310. },
  311. {
  312. "path": "address/address",
  313. "style": {
  314. "navigationBarTitleText": "地址列表"
  315. }
  316. },
  317. {
  318. "path": "about/about",
  319. "style": {
  320. "navigationBarTitleText": "关于我们"
  321. }
  322. },
  323. {
  324. "path": "regularPurchase/regularPurchase",
  325. "style": {
  326. "navigationBarTitleText": "再次购买"
  327. }
  328. },
  329. {
  330. "path": "order/create-order",
  331. "style": {
  332. "navigationBarTitleText": "确认订单"
  333. }
  334. },
  335. {
  336. "path": "order/success",
  337. "style": {
  338. "navigationBarTitleText": "支付结果",
  339. "navigationStyle": "custom"
  340. }
  341. },
  342. {
  343. "path": "order/order-success",
  344. "style": {
  345. "navigationBarTitleText": "支付结果",
  346. "navigationStyle": "custom"
  347. }
  348. },
  349. {
  350. "path": "order/order-success-tips",
  351. "style": {
  352. "navigationBarTitleText": "支付结果",
  353. "navigationStyle": "custom"
  354. }
  355. },
  356. {
  357. "path": "order/order-payunder",
  358. "style": {
  359. "navigationBarTitleText": "线下转账"
  360. }
  361. },
  362. {
  363. "path": "order/order-pay-list",
  364. "style": {
  365. "navigationBarTitleText": "支付订单"
  366. }
  367. },
  368. {
  369. "path": "order/order-pay",
  370. "style": {
  371. "navigationBarTitleText": "收银台",
  372. "navigationStyle": "custom"
  373. }
  374. },
  375. {
  376. "path": "order/orderShareLogin",
  377. "style": {
  378. "navigationBarTitleText": "输入分享码"
  379. }
  380. },
  381. {
  382. "path": "order/order-sharelogin",
  383. "style": {
  384. "navigationBarTitleText": "查看订单"
  385. }
  386. },
  387. {
  388. "path": "order/order-list",
  389. "style": {
  390. "navigationBarTitleText": "我的订单",
  391. "navigationStyle": "custom"
  392. }
  393. },
  394. {
  395. "path": "order/search-order",
  396. "style": {
  397. "navigationBarTitleText": "订单搜索"
  398. }
  399. },
  400. {
  401. "path": "order/order-details",
  402. "style": {
  403. "navigationBarTitleText": "订单详情",
  404. "navigationStyle": "custom"
  405. }
  406. },
  407. {
  408. "path": "order/order-sharedetails",
  409. "style": {
  410. "navigationBarTitleText": "订单详情"
  411. }
  412. },
  413. {
  414. "path": "order/order-addpay",
  415. "style": {
  416. "navigationBarTitleText": "上传支付凭证"
  417. }
  418. },
  419. {
  420. "path": "order/order-logistics",
  421. "style": {
  422. "navigationBarTitleText": "物流信息"
  423. }
  424. },
  425. {
  426. "path": "operator/list",
  427. "style": {
  428. "navigationBarTitleText": "运营人员管理"
  429. }
  430. },
  431. {
  432. "path": "operator/addoperator",
  433. "style": {
  434. "navigationBarTitleText": "添加运营人员"
  435. }
  436. },
  437. {
  438. "path": "setting/setting",
  439. "style": {
  440. "navigationBarTitleText": "账户设置"
  441. }
  442. },
  443. {
  444. "path": "setting/phone",
  445. "style": {
  446. "navigationBarTitleText": "更换手机号"
  447. }
  448. },
  449. {
  450. "path": "coupon/coupon",
  451. "style": {
  452. "navigationBarTitleText": "优惠券",
  453. "enablePullDownRefresh": true
  454. }
  455. },
  456. {
  457. "path": "coupon/coupon-collection",
  458. "style": {
  459. "navigationBarTitleText": "领券中心",
  460. "enablePullDownRefresh": true
  461. }
  462. },
  463. {
  464. "path": "coupon/coupon-exchange",
  465. "style": {
  466. "navigationBarTitleText": "兑换优惠券"
  467. }
  468. },
  469. {
  470. "path": "coupon/coupon-product",
  471. "style": {
  472. "navigationBarTitleText": "活动商品",
  473. "enablePullDownRefresh": true
  474. }
  475. },
  476. {
  477. "path": "coupon/coupon-activity",
  478. "style": {
  479. "navigationBarTitleText": "采美云上美博会",
  480. "enablePullDownRefresh": true
  481. }
  482. },
  483. {
  484. "path": "collection/collection",
  485. "style": {
  486. "navigationBarTitleText": "收藏商品",
  487. "enablePullDownRefresh": true
  488. }
  489. },
  490. {
  491. "path": "member/member",
  492. "style": {
  493. "navigationBarTitleText": "采美超级会员",
  494. "enablePullDownRefresh": true
  495. }
  496. },
  497. {
  498. "path": "member/member-copy",
  499. "style": {
  500. "navigationBarTitleText": "采美超级会员",
  501. "enablePullDownRefresh": true
  502. }
  503. },
  504. {
  505. "path": "member/member-renew",
  506. "style": {
  507. "navigationBarTitleText": "购买超级会员"
  508. }
  509. },
  510. {
  511. "path": "member/member-record",
  512. "style": {
  513. "navigationBarTitleText": "购买记录",
  514. "enablePullDownRefresh": true
  515. }
  516. },
  517. {
  518. "path": "member/member-pay",
  519. "style": {
  520. "navigationBarTitleText": "支付超级会员"
  521. }
  522. },
  523. {
  524. "path": "member/member-product",
  525. "style": {
  526. "navigationBarTitleText": "专享价商品",
  527. "enablePullDownRefresh": true
  528. }
  529. },
  530. {
  531. "path": "pay/card-list",
  532. "style": {
  533. "navigationBarTitleText": "银行卡"
  534. }
  535. },
  536. {
  537. "path": "pay/card-sus-list",
  538. "style": {
  539. "navigationBarTitleText": "支持银行"
  540. }
  541. },
  542. {
  543. "path": "pay/card-add",
  544. "style": {
  545. "navigationBarTitleText": "添加银行卡"
  546. }
  547. },
  548. {
  549. "path": "pay/card-comfirm",
  550. "style": {
  551. "navigationBarTitleText": "确认信息"
  552. }
  553. },
  554. {
  555. "path": "pay/card-comfirm-sub",
  556. "style": {
  557. "navigationBarTitleText": "输入短信验证码"
  558. }
  559. },
  560. {
  561. "path": "pay/card-order",
  562. "style": {
  563. "navigationBarTitleText": "收银台",
  564. "navigationStyle": "custom"
  565. }
  566. },
  567. {
  568. "path": "pay/card-under",
  569. "style": {
  570. "navigationBarTitleText": "线下转账"
  571. }
  572. }
  573. ]
  574. },
  575. {
  576. "root": "pages/notice/", //搜索分包模块
  577. "pages": [
  578. {
  579. "path": "club/notice-order",
  580. "style": {
  581. "navigationBarTitleText": "交易物流",
  582. "enablePullDownRefresh": true
  583. }
  584. },
  585. {
  586. "path": "club/notice-users",
  587. "style": {
  588. "navigationBarTitleText": "账户通知",
  589. "enablePullDownRefresh": true
  590. }
  591. },
  592. {
  593. "path": "club/notice-serve",
  594. "style": {
  595. "navigationBarTitleText": "服务通知",
  596. "enablePullDownRefresh": true
  597. }
  598. },
  599. {
  600. "path": "club/notice-coupon",
  601. "style": {
  602. "navigationBarTitleText": "优惠促销",
  603. "enablePullDownRefresh": true
  604. }
  605. },
  606. {
  607. "path": "shop/notice-users",
  608. "style": {
  609. "navigationBarTitleText": "账户通知",
  610. "enablePullDownRefresh": true
  611. }
  612. },
  613. {
  614. "path": "shop/notice-serve",
  615. "style": {
  616. "navigationBarTitleText": "服务通知",
  617. "enablePullDownRefresh": true
  618. }
  619. }
  620. ]
  621. },
  622. {
  623. "root": "pages/seller/",
  624. "pages": [
  625. {
  626. "path": "index/index",
  627. "style": {
  628. "navigationBarTitleText": "采美采购商城",
  629. "enablePullDownRefresh": true,
  630. "navigationStyle": "custom"
  631. }
  632. },
  633. {
  634. "path": "login/login",
  635. "style": {
  636. "navigationBarTitleText": "登录",
  637. "navigationStyle": "custom"
  638. }
  639. },
  640. {
  641. "path": "cart/cart",
  642. "style": {
  643. "navigationBarTitleText": "购物车"
  644. }
  645. },
  646. {
  647. "path": "cart/buyagain",
  648. "style": {
  649. "navigationBarTitleText": "再次购买"
  650. }
  651. },
  652. {
  653. "path": "cart/immediately",
  654. "style": {
  655. "navigationBarTitleText": "立即下单"
  656. }
  657. },
  658. {
  659. "path": "cart/second",
  660. "style": {
  661. "navigationBarTitleText": "二手下单"
  662. }
  663. },
  664. {
  665. "path": "cart/coupon",
  666. "style": {
  667. "navigationBarTitleText": "优惠券列表",
  668. "enablePullDownRefresh": true
  669. }
  670. },
  671. {
  672. "path": "cart/coupon-share",
  673. "style": {
  674. "navigationBarTitleText": "购买优惠券"
  675. }
  676. },
  677. {
  678. "path": "order/create-order",
  679. "style": {
  680. "navigationBarTitleText": "确认订单"
  681. }
  682. },
  683. {
  684. "path": "order/create-recharge-order",
  685. "style": {
  686. "navigationBarTitleText": "确认订单"
  687. }
  688. },
  689. {
  690. "path": "order/order-details",
  691. "style": {
  692. "navigationBarTitleText": "订单详情",
  693. "navigationStyle": "custom"
  694. }
  695. },
  696. {
  697. "path": "order/order-club-details",
  698. "style": {
  699. "navigationBarTitleText": "订单详情",
  700. "navigationStyle": "custom"
  701. }
  702. },
  703. {
  704. "path": "order/order-list",
  705. "style": {
  706. "navigationBarTitleText": "订单列表",
  707. "navigationStyle": "custom"
  708. }
  709. },
  710. {
  711. "path": "club/list",
  712. "style": {
  713. "navigationBarTitleText": "机构列表",
  714. "navigationStyle": "custom"
  715. }
  716. },
  717. {
  718. "path": "club/stayClub-list",
  719. "style": {
  720. "navigationBarTitleText": "待注册机构"
  721. }
  722. },
  723. {
  724. "path": "club/club-list",
  725. "style": {
  726. "navigationBarTitleText": "我的机构"
  727. }
  728. },
  729. {
  730. "path": "club/club-portrait",
  731. "style": {
  732. "navigationBarTitleText": "机构画像"
  733. }
  734. },
  735. {
  736. "path": "club/club-visit",
  737. "style": {
  738. "navigationBarTitleText": "访问记录",
  739. "navigationStyle": "custom"
  740. }
  741. },
  742. {
  743. "path": "club/club-visit-detail",
  744. "style": {
  745. "navigationBarTitleText": "访问详情"
  746. }
  747. },
  748. {
  749. "path": "club/allClub-list",
  750. "style": {
  751. "navigationBarTitleText": "所有机构"
  752. }
  753. },
  754. {
  755. "path": "club/addoperator",
  756. "style": {
  757. "navigationBarTitleText": "邀请运营人员"
  758. }
  759. },
  760. {
  761. "path": "club/club-info",
  762. "style": {
  763. "navigationBarTitleText": "商城访问记录"
  764. }
  765. },
  766. {
  767. "path": "club/club-detail",
  768. "style": {
  769. "navigationBarTitleText": "资料详情"
  770. }
  771. },
  772. {
  773. "path": "login/register",
  774. "style": {
  775. "navigationBarTitleText": "拉机构上线",
  776. "navigationStyle": "custom"
  777. }
  778. },
  779. {
  780. "path": "login/register-select",
  781. "style": {
  782. "navigationBarTitleText": "拉机构上线"
  783. }
  784. },
  785. {
  786. "path": "login/register-general",
  787. "style": {
  788. "navigationBarTitleText": "个人机构"
  789. }
  790. },
  791. {
  792. "path": "login/register-member",
  793. "style": {
  794. "navigationBarTitleText": "资质机构"
  795. }
  796. },
  797. {
  798. "path": "login/information",
  799. "style": {
  800. "navigationBarTitleText": "修改资料",
  801. "navigationStyle": "custom"
  802. }
  803. },
  804. {
  805. "path": "login/apply",
  806. "style": {
  807. "navigationBarTitleText": "修改申请信息",
  808. "navigationStyle": "custom"
  809. }
  810. },
  811. {
  812. "path": "order/order-historylist",
  813. "style": {
  814. "navigationBarTitleText": "订单列表"
  815. }
  816. }, {
  817. "path": "order/search-order",
  818. "style": {
  819. "navigationBarTitleText": "订单搜索"
  820. }
  821. },
  822. {
  823. "path": "address/address",
  824. "style": {
  825. "navigationBarTitleText": "选择地址"
  826. }
  827. },
  828. {
  829. "path": "address/addressManage",
  830. "style": {
  831. "navigationBarTitleText": "添加地址"
  832. }
  833. },
  834. {
  835. "path": "remarks/list",
  836. "style": {
  837. "navigationBarTitleText": "注册客户咨询记录"
  838. }
  839. },
  840. {
  841. "path": "remarks/add",
  842. "style": {
  843. "navigationBarTitleText": "添加记录"
  844. }
  845. },
  846. {
  847. "path": "remarks/details",
  848. "style": {
  849. "navigationBarTitleText": "记录详情"
  850. }
  851. },
  852. {
  853. "path": "remarks/customer-list",
  854. "style": {
  855. "navigationBarTitleText": "选择咨询人"
  856. }
  857. },
  858. {
  859. "path": "remarks/record-list",
  860. "style": {
  861. "navigationBarTitleText": "未注册客户咨询记录"
  862. }
  863. },
  864. {
  865. "path": "remarks/add-record",
  866. "style": {
  867. "navigationBarTitleText": "添加记录"
  868. }
  869. },
  870. {
  871. "path": "remarks/record-details",
  872. "style": {
  873. "navigationBarTitleText": "记录详情"
  874. }
  875. },
  876. {
  877. "path": "remarks/report-add",
  878. "style": {
  879. "navigationBarTitleText": "新建报备"
  880. }
  881. },
  882. {
  883. "path": "remarks/report-details",
  884. "style": {
  885. "navigationBarTitleText": "报备详情"
  886. }
  887. },
  888. {
  889. "path": "remarks/report-list",
  890. "style": {
  891. "navigationBarTitleText": "注册客户报备记录"
  892. }
  893. },
  894. {
  895. "path": "remarks/report-visitor-list",
  896. "style": {
  897. "navigationBarTitleText": "报备记录"
  898. }
  899. },
  900. {
  901. "path": "remarks/relation-consult-list",
  902. "style": {
  903. "navigationBarTitleText": "关联咨询记录"
  904. }
  905. },
  906. {
  907. "path": "remarks/relation-visitor-list",
  908. "style": {
  909. "navigationBarTitleText": "关联咨询记录"
  910. }
  911. },
  912. {
  913. "path": "remarks/business-card",
  914. "style": {
  915. "navigationBarTitleText": "我的名片"
  916. }
  917. },
  918. {
  919. "path": "remarks/mine-qrcode",
  920. "style": {
  921. "navigationBarTitleText": "二维码"
  922. }
  923. },
  924. {
  925. "path": "remarks/mine-card",
  926. "style": {
  927. "navigationBarTitleText": "我的名片"
  928. }
  929. },
  930. {
  931. "path": "remarks/institutional-activity-analysis",
  932. "style": {
  933. "navigationBarTitleText": "机构活跃分析",
  934. "enablePullDownRefresh": true,
  935. "navigationStyle": "custom"
  936. }
  937. },
  938. {
  939. "path" : "notice/service/service",
  940. "style" : {
  941. "navigationBarTitleText": "服务通知",
  942. "enablePullDownRefresh": true
  943. }
  944. },
  945. {
  946. "path" : "notice/service/Institutional_visits",
  947. "style" : {
  948. "navigationBarTitleText": "机构访问通知",
  949. "enablePullDownRefresh": true
  950. }
  951. },
  952. {
  953. "path" : "notice/service/visits_details",
  954. "style" : {
  955. "navigationBarTitleText": "访问详情",
  956. "enablePullDownRefresh": true
  957. }
  958. }
  959. ]
  960. },
  961. {
  962. "root": "pages/h5/", //活动分包模块
  963. "pages": [{
  964. "path": "activity/activity",
  965. "style": {
  966. "navigationBarTitleText": ""
  967. }
  968. },
  969. {
  970. "path": "activity/activity_mid",
  971. "style": {
  972. "navigationBarTitleText": "年中大促",
  973. "enablePullDownRefresh": true
  974. }
  975. },
  976. {
  977. "path": "activity/couponExp",
  978. "style": {
  979. "navigationBarTitleText": "优惠券介绍",
  980. "enablePullDownRefresh": true
  981. }
  982. },
  983. {
  984. "path": "activity/activity-topic",
  985. "style": {
  986. "navigationBarTitleText": "活动专题",
  987. "enablePullDownRefresh": true
  988. }
  989. },
  990. {
  991. "path": "activity/quick-operation",
  992. "style": {
  993. "navigationBarTitleText": "",
  994. "enablePullDownRefresh": true
  995. }
  996. },
  997. {
  998. "path": "activity/activity-detail",
  999. "style": {
  1000. "navigationBarTitleText": "活动专题",
  1001. "enablePullDownRefresh": true
  1002. }
  1003. },
  1004. {
  1005. "path": "activity/activity-floorMore",
  1006. "style": {
  1007. "navigationBarTitleText": "更多",
  1008. "enablePullDownRefresh": true
  1009. }
  1010. },
  1011. {
  1012. "path": "article/page",
  1013. "style": {
  1014. "navigationBarTitleText": "采美采购平台",
  1015. "enablePullDownRefresh": true
  1016. }
  1017. },
  1018. {
  1019. "path": "article/path",
  1020. "style": {
  1021. "navigationBarTitleText": "采美采购平台",
  1022. "enablePullDownRefresh": true
  1023. }
  1024. },
  1025. {
  1026. "path": "article/page-image",
  1027. "style": {
  1028. "navigationBarTitleText": "采美采购平台"
  1029. }
  1030. },
  1031. {
  1032. "path": "article/path-live",
  1033. "style": {
  1034. "navigationBarTitleText": "采美采购平台",
  1035. "enablePullDownRefresh": true
  1036. }
  1037. },
  1038. {
  1039. "path": "activity/activity-list",
  1040. "style": {
  1041. "navigationBarTitleText": "商品专题",
  1042. "enablePullDownRefresh": true
  1043. }
  1044. },
  1045. {
  1046. "path": "other/repair",
  1047. "style": {
  1048. "navigationBarTitleText": "维修"
  1049. }
  1050. },
  1051. {
  1052. "path": "other/brand",
  1053. "style": {
  1054. "navigationBarTitleText": "品牌招商"
  1055. }
  1056. },
  1057. {
  1058. "path": "other/brands",
  1059. "style": {
  1060. "navigationBarTitleText": "品牌招商"
  1061. }
  1062. },
  1063. {
  1064. "path": "other/attestation",
  1065. "style": {
  1066. "navigationBarTitleText": "采美认证通"
  1067. }
  1068. }
  1069. ]
  1070. }, {
  1071. "root": "pages/search/", //搜索分包模块
  1072. "pages": [{
  1073. "path": "search",
  1074. "style": {
  1075. "navigationBarTitleText": "搜索"
  1076. }
  1077. }, {
  1078. "path": "search-supplier",
  1079. "style": {
  1080. "navigationBarTitleText": "搜索供应商"
  1081. }
  1082. }, {
  1083. "path": "search-instrument",
  1084. "style": {
  1085. "navigationBarTitleText": "搜索仪器"
  1086. }
  1087. }, {
  1088. "path": "search-second",
  1089. "style": {
  1090. "navigationBarTitleText": "二手搜索"
  1091. }
  1092. }, {
  1093. "path": "search-library",
  1094. "style": {
  1095. "navigationBarTitleText": "搜索",
  1096. "enablePullDownRefresh": false
  1097. }
  1098. }]
  1099. }, {
  1100. "root": "pages/second/",
  1101. "pages": [{
  1102. "path": "form/introduce",
  1103. "style": {
  1104. "navigationBarTitleText": "二手市场介绍",
  1105. "enablePullDownRefresh": true
  1106. }
  1107. },
  1108. {
  1109. "path": "form/form",
  1110. "style": {
  1111. "navigationBarTitleText": "发布二手估价商品"
  1112. }
  1113. },
  1114. {
  1115. "path": "form/form-seller",
  1116. "style": {
  1117. "navigationBarTitleText": "发布二手预成交商品"
  1118. }
  1119. },
  1120. {
  1121. "path": "form/form-presale",
  1122. "style": {
  1123. "navigationBarTitleText": "发布二手估价商品"
  1124. }
  1125. },
  1126. {
  1127. "path": "form/form-select",
  1128. "style": {
  1129. "navigationBarTitleText": "选择发布类型"
  1130. }
  1131. },
  1132. {
  1133. "path": "product/product-list",
  1134. "style": {
  1135. "navigationBarTitleText": "二手商品",
  1136. "enablePullDownRefresh": true
  1137. }
  1138. },
  1139. {
  1140. "path": "product/product-details",
  1141. "style": {
  1142. "navigationBarTitleText": "商品详情",
  1143. "enablePullDownRefresh": true,
  1144. "navigationStyle": "custom"
  1145. }
  1146. }
  1147. ]
  1148. },
  1149. {
  1150. "root": "pages/supplier/",
  1151. "pages": [{
  1152. "path": "index/index",
  1153. "style": {
  1154. "navigationBarTitleText": "采美采购商城",
  1155. "enablePullDownRefresh": true,
  1156. "navigationStyle": "custom"
  1157. }
  1158. }, {
  1159. "path": "login/bind-operator",
  1160. "style": {
  1161. "navigationBarTitleText": "绑定微信"
  1162. }
  1163. },
  1164. {
  1165. "path": "user/my-product",
  1166. "style": {
  1167. "navigationBarTitleText": "我的商品",
  1168. "enablePullDownRefresh": true
  1169. }
  1170. },
  1171. {
  1172. "path": "user/my-shop",
  1173. "style": {
  1174. "navigationBarTitleText": "店铺主页",
  1175. "navigationStyle": "custom"
  1176. }
  1177. }, {
  1178. "path": "login/share-login",
  1179. "style": {
  1180. "navigationBarTitleText": "查看订单"
  1181. }
  1182. }, {
  1183. "path": "login/share-info",
  1184. "style": {
  1185. "navigationBarTitleText": "订单详情",
  1186. "navigationStyle": "custom"
  1187. }
  1188. }, {
  1189. "path": "order/order-details",
  1190. "style": {
  1191. "navigationBarTitleText": "订单详情",
  1192. "enablePullDownRefresh": true
  1193. }
  1194. }, {
  1195. "path": "user/supplier",
  1196. "style": {
  1197. "navigationBarTitleText": "供应商信息"
  1198. }
  1199. }, {
  1200. "path": "order/order-list",
  1201. "style": {
  1202. "navigationBarTitleText": "我的订单",
  1203. "enablePullDownRefresh": true
  1204. }
  1205. }, {
  1206. "path": "order/order-service-details",
  1207. "style": {
  1208. "navigationBarTitleText": "订单详情",
  1209. "navigationStyle": "custom",
  1210. "enablePullDownRefresh": true
  1211. }
  1212. },
  1213. {
  1214. "path": "deliver/add-logistics",
  1215. "style": {
  1216. "navigationBarTitleText": "录入物流信息"
  1217. }
  1218. },
  1219. {
  1220. "path": "deliver/qualifications-add",
  1221. "style": {
  1222. "navigationBarTitleText": "上传商品资质"
  1223. }
  1224. },
  1225. {
  1226. "path": "deliver/qualifications-details",
  1227. "style": {
  1228. "navigationBarTitleText": "商品资质"
  1229. }
  1230. },
  1231. {
  1232. "path": "deliver/deliver-goods",
  1233. "style": {
  1234. "navigationBarTitleText": "发货",
  1235. "enablePullDownRefresh": true
  1236. }
  1237. },
  1238. {
  1239. "path": "deliver/deliver-record",
  1240. "style": {
  1241. "navigationBarTitleText": "发货记录",
  1242. "enablePullDownRefresh": true,
  1243. "navigationStyle": "custom"
  1244. }
  1245. },
  1246. {
  1247. "path": "deliver/logistics-list",
  1248. "style": {
  1249. "navigationBarTitleText": "物流公司"
  1250. }
  1251. },
  1252. {
  1253. "path": "user/setting/password",
  1254. "style": {
  1255. "navigationBarTitleText": "修改密码"
  1256. }
  1257. },
  1258. {
  1259. "path": "user/setting/phone",
  1260. "style": {
  1261. "navigationBarTitleText": "更换手机号"
  1262. }
  1263. },
  1264. {
  1265. "path": "user/setting/setting",
  1266. "style": {
  1267. "navigationBarTitleText": "账户设置"
  1268. }
  1269. },
  1270. {
  1271. "path": "user/operator/list",
  1272. "style": {
  1273. "navigationBarTitleText": "运营人员管理"
  1274. }
  1275. },
  1276. {
  1277. "path": "user/operator/addoperator",
  1278. "style": {
  1279. "navigationBarTitleText": "添加运营人员"
  1280. }
  1281. },
  1282. {
  1283. "path": "user/information",
  1284. "style": {
  1285. "navigationBarTitleText": "资料信息"
  1286. }
  1287. }
  1288. ]
  1289. }
  1290. ],
  1291. "tabBar": {
  1292. "height": "80",
  1293. "color": "#999999",
  1294. "selectedColor": "#FF5B00",
  1295. "borderStyle": "black",
  1296. "backgroundColor": "#ffffff",
  1297. "list": [{
  1298. "pagePath": "pages/tabBar/home/index",
  1299. "iconPath": "static/icon-home@3x.png",
  1300. "selectedIconPath": "static/icon-home-active@3x.png",
  1301. "text": "商城"
  1302. }, {
  1303. "pagePath": "pages/tabBar/category/index",
  1304. "iconPath": "static/icon-sort@3x.png",
  1305. "selectedIconPath": "static/icon-sort-active@3x.png",
  1306. "text": "分类"
  1307. },
  1308. {
  1309. "pagePath": "pages/tabBar/notice/index",
  1310. "iconPath": "static/icon-news@3x.png",
  1311. "selectedIconPath": "static/icon-news-active@3x.png",
  1312. "text": "消息"
  1313. },
  1314. {
  1315. "pagePath": "pages/tabBar/cart/index",
  1316. "iconPath": "static/icon-cart@3x.png",
  1317. "selectedIconPath": "static/icon-cart-active@3x.png",
  1318. "text": "购物车"
  1319. },
  1320. {
  1321. "pagePath": "pages/tabBar/user/user",
  1322. "iconPath": "static/icon-user@3x.png",
  1323. "selectedIconPath": "static/icon-user-active@3x.png",
  1324. "text": "我的"
  1325. }
  1326. ]
  1327. },
  1328. "easycom": {
  1329. "autoscan": true,
  1330. "custom": {
  1331. "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
  1332. }
  1333. },
  1334. "globalStyle": {
  1335. "navigationBarTextStyle": "black",
  1336. "navigationBarTitleText": "采美采购商城",
  1337. "navigationBarBackgroundColor": "#FFFFFF",
  1338. "backgroundColor": "#FFFFFF"
  1339. },
  1340. "condition": { //模式配置,仅开发期间生效
  1341. "current": 0, //当前激活的模式(list 的索引项)
  1342. "list": [{
  1343. "name": "", //模式名称
  1344. "path": "", //启动页面,必选
  1345. "query": "" //启动参数,在页面的onLoad函数里面得到
  1346. }]
  1347. }
  1348. }