pages.json 31 KB

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