pages.json 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/components/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "lazyCodeLoading": "requiredComponents",
  6. "tabBar": {
  7. "custom": false,
  8. "color": "#656765",
  9. "selectedColor": "#22C572",
  10. "borderStyle": "black",
  11. "backgroundColor": "#ffffff",
  12. "list": [{
  13. "pagePath": "pages/sale/information",
  14. "iconPath": "static/img/zixun.png",
  15. "selectedIconPath": "static/img/zixun_check.png",
  16. "text": "资讯"
  17. },
  18. {
  19. "pagePath": "pages/business/businessNew",
  20. "iconPath": "static/img/jiaoyi.png",
  21. "selectedIconPath": "static/img/jiaoyi_check.png",
  22. "text": "交易"
  23. },
  24. {
  25. "pagePath": "pages/grain_pulse/home",
  26. "iconPath": "static/img/liangmai.png",
  27. "selectedIconPath": "static/img/liangmai_check.png",
  28. "text": "粮脉"
  29. },
  30. {
  31. "pagePath": "pages/tran/tran",
  32. "iconPath": "static/img/wuliu.png",
  33. "selectedIconPath": "static/img/wuliu_check.png",
  34. "text": "物流"
  35. },
  36. {
  37. "pagePath": "pages/user/user",
  38. "iconPath": "static/img/wode.png",
  39. "selectedIconPath": "static/img/wode_check.png",
  40. "text": "我的"
  41. }
  42. ]
  43. },
  44. "pages": [{
  45. "path": "pages/sale/information",
  46. "style": {
  47. "enablePullDownRefresh": true,
  48. "navigationBarTitleText": "易粮易运"
  49. // "navigationStyle": "custom"
  50. }
  51. }, {
  52. "path": "pages/index/index",
  53. "style": {
  54. "navigationBarTitleText": "启动页",
  55. "app-plus": {
  56. "titleNView": false
  57. }
  58. }
  59. },
  60. {
  61. "path": "pages/sale/plant",
  62. "style": {
  63. "enablePullDownRefresh": true,
  64. "navigationBarTitleText": "工厂价格"
  65. }
  66. },
  67. {
  68. "path": "pages/grain_pulse/details",
  69. "style": {
  70. "enablePullDownRefresh": true,
  71. "navigationBarTitleText": "详情"
  72. }
  73. },
  74. {
  75. "path": "pages/charts/charts",
  76. "style": {
  77. "enablePullDownRefresh": true,
  78. "navigationBarTitleText": "图表"
  79. }
  80. },
  81. {
  82. "path": "pages/grain_pulse/jubao",
  83. "style": {
  84. "enablePullDownRefresh": true,
  85. "navigationBarTitleText": "举报"
  86. }
  87. },
  88. {
  89. "path": "pages/grain_pulse/errorcorrection",
  90. "style": {
  91. "enablePullDownRefresh": true,
  92. "navigationBarTitleText": "纠错"
  93. }
  94. },
  95. {
  96. "path": "pages/grain_pulse/enter",
  97. "style": {
  98. "enablePullDownRefresh": true,
  99. "navigationBarTitleText": "入驻",
  100. "navigationStyle": "custom",
  101. "app-plus": {
  102. "titleNView": false,
  103. "animationType": "slide-in-bottom",
  104. "softinputMode": "adjustPan"
  105. }
  106. }
  107. },
  108. {
  109. "path": "pages/grain_pulse/perfect",
  110. "style": {
  111. "enablePullDownRefresh": true,
  112. "navigationBarTitleText": "完善信息"
  113. }
  114. },
  115. {
  116. "path": "pages/grain_pulse/dynamic",
  117. "style": {
  118. "enablePullDownRefresh": true,
  119. "navigationBarTitleText": "动态"
  120. }
  121. },
  122. {
  123. "path": "pages/grain_pulse/release",
  124. "style": {
  125. "enablePullDownRefresh": true,
  126. "navigationBarTitleText": "发布"
  127. }
  128. },
  129. {
  130. "path": "pages/grain_pulse/record",
  131. "style": {
  132. "enablePullDownRefresh": true,
  133. "navigationBarTitleText": "记录",
  134. "navigationStyle": "custom",
  135. "app-plus": {
  136. "titleNView": false,
  137. "animationType": "slide-in-bottom",
  138. "softinputMode": "adjustPan"
  139. }
  140. }
  141. },
  142. {
  143. "path": "pages/grain_pulse/search",
  144. "style": {
  145. "enablePullDownRefresh": true,
  146. "navigationBarTitleText": "搜索"
  147. }
  148. },
  149. {
  150. "path": "pages/grain_pulse/my_grain_pulse",
  151. "style": {
  152. "enablePullDownRefresh": true,
  153. "navigationBarTitleText": "我的粮脉"
  154. }
  155. },
  156. {
  157. "path": "pages/grain_pulse/editcompany",
  158. "style": {
  159. "enablePullDownRefresh": true,
  160. "navigationStyle": "custom",
  161. "navigationBarTitleText": "我的粮脉"
  162. }
  163. },
  164. {
  165. "path": "pages/task/procurement_details",
  166. "style": {
  167. "enablePullDownRefresh": true,
  168. "navigationBarTitleText": "采购订单详情"
  169. }
  170. },
  171. {
  172. "path": "pages/task/audit/salecontract",
  173. "style": {
  174. "enablePullDownRefresh": false,
  175. "navigationBarTitleText": "销售合同审核"
  176. }
  177. },
  178. {
  179. "path": "pages/task/audit/daishou_details",
  180. "style": {
  181. "enablePullDownRefresh": false,
  182. "navigationBarTitleText": "代收合同审核"
  183. }
  184. },
  185. {
  186. "path": "pages/task/audit/daichu_details",
  187. "style": {
  188. "enablePullDownRefresh": false,
  189. "navigationBarTitleText": "代储合同审核"
  190. }
  191. },
  192. {
  193. "path": "pages/task/audit/purchasecontract",
  194. "style": {
  195. "enablePullDownRefresh": false,
  196. "navigationBarTitleText": "采购合同审核"
  197. }
  198. },
  199. {
  200. "path": "pages/task/audit/acquisitioncontract",
  201. "style": {
  202. "enablePullDownRefresh": false,
  203. "navigationBarTitleText": "收购合同审核"
  204. }
  205. },
  206. {
  207. "path": "pages/task/audit/refuel",
  208. "style": {
  209. "enablePullDownRefresh": false,
  210. "navigationBarTitleText": "加油申请审核"
  211. }
  212. },
  213. {
  214. "path": "pages/user/mintor",
  215. "style": {
  216. "enablePullDownRefresh": false,
  217. "navigationBarTitleText": "查看监控"
  218. }
  219. },
  220. {
  221. "path": "pages/task/sale_details",
  222. "style": {
  223. "enablePullDownRefresh": true,
  224. "navigationBarTitleText": "销售订单详情"
  225. }
  226. }, {
  227. "path": "pages/task/audit_info",
  228. "style": {
  229. "enablePullDownRefresh": true,
  230. "navigationBarTitleText": "审核记录"
  231. }
  232. },
  233. {
  234. "path": "pages/task/procurement_report_details",
  235. "style": {
  236. "enablePullDownRefresh": true,
  237. "navigationBarTitleText": "采购入库统计详情"
  238. }
  239. },
  240. {
  241. "path": "pages/task/sale_report_details",
  242. "style": {
  243. "enablePullDownRefresh": true,
  244. "navigationBarTitleText": "销售出库统计详情"
  245. }
  246. },
  247. {
  248. "path": "pages/task/sale_close_details",
  249. "style": {
  250. "enablePullDownRefresh": true,
  251. "navigationBarTitleText": "销售平仓统计详情"
  252. }
  253. },
  254. {
  255. "path": "pages/task/procurement_close_details",
  256. "style": {
  257. "enablePullDownRefresh": true,
  258. "navigationBarTitleText": "采购平仓统计详情"
  259. }
  260. },
  261. {
  262. "path": "pages/sale/portprice",
  263. "style": {
  264. "enablePullDownRefresh": true,
  265. "navigationBarTitleText": "港口价格"
  266. }
  267. },
  268. {
  269. "path": "pages/sale/newsinfo",
  270. "style": {
  271. "enablePullDownRefresh": true,
  272. "navigationBarTitleText": "行业新闻"
  273. }
  274. },
  275. {
  276. "path": "pages/sale/index",
  277. "style": {
  278. // #ifdef MP
  279. "enablePullDownRefresh": true,
  280. "navigationBarTitleText": ""
  281. // #endif
  282. }
  283. },
  284. {
  285. "path": "pages/sale/webview",
  286. "style": {
  287. // #ifdef MP
  288. "enablePullDownRefresh": true,
  289. "navigationBarTitleText": ""
  290. // #endif
  291. }
  292. },
  293. {
  294. "path": "pages/home/home",
  295. "style": {
  296. "navigationStyle": "custom",
  297. "app-plus": {
  298. "titleNView": false
  299. },
  300. "enablePullDownRefresh": true
  301. }
  302. },
  303. {
  304. "path": "pages/grain_pulse/home",
  305. "style": {
  306. "navigationBarTitleText": "粮脉",
  307. "enablePullDownRefresh": true
  308. }
  309. // "style": {
  310. // "navigationBarTitleText": "粮脉",
  311. // // "navigationStyle": "custom",
  312. // "app-plus": {
  313. // "titleNView": false
  314. // },
  315. // "enablePullDownRefresh": true
  316. // }
  317. },
  318. {
  319. "path": "pages/public/login",
  320. "style": {
  321. "navigationBarTitleText": "",
  322. "navigationStyle": "custom",
  323. "app-plus": {
  324. "titleNView": false,
  325. "animationType": "slide-in-bottom"
  326. }
  327. }
  328. },
  329. {
  330. "path": "pages/public/login_account_number",
  331. "style": {
  332. "navigationBarTitleText": "",
  333. "navigationStyle": "custom",
  334. "app-plus": {
  335. "titleNView": false,
  336. "animationType": "slide-in-bottom",
  337. "softinputMode": "adjustPan"
  338. }
  339. }
  340. },
  341. {
  342. "path": "pages/public/register",
  343. "style": {
  344. "navigationBarTitleText": "",
  345. "navigationStyle": "custom",
  346. "app-plus": {
  347. "titleNView": false,
  348. "animationType": "slide-in-bottom"
  349. }
  350. }
  351. },
  352. {
  353. "path": "pages/public/reset",
  354. "style": {
  355. "navigationBarTitleText": "",
  356. "navigationStyle": "custom",
  357. "app-plus": {
  358. "titleNView": false,
  359. "animationType": "slide-in-bottom"
  360. }
  361. }
  362. },
  363. {
  364. "path": "pages/public/code",
  365. "style": {
  366. "navigationBarTitleText": "",
  367. "navigationStyle": "custom",
  368. "app-plus": {
  369. "titleNView": false,
  370. "animationType": "slide-in-bottom"
  371. }
  372. }
  373. },
  374. {
  375. "path": "pages/user/user",
  376. "style": {
  377. "navigationBarTitleText": "我的",
  378. "navigationStyle": "custom"
  379. }
  380. },
  381. {
  382. "path": "pages/user/report",
  383. "style": {
  384. "navigationStyle": "custom",
  385. "navigationBarTextStyle": "white"
  386. }
  387. },
  388. {
  389. "path": "pages/user/newReport",
  390. "style": {
  391. "navigationStyle": "custom",
  392. "navigationBarTextStyle": "white"
  393. }
  394. },
  395. {
  396. "path": "pages/user/contractLook/purchaseContract",
  397. "style": {
  398. "navigationBarTitleText": "采购合同",
  399. "enablePullDownRefresh": true
  400. }
  401. },
  402. {
  403. "path": "pages/user/contractLook/salesContract",
  404. "style": {
  405. "navigationBarTitleText": "销售合同",
  406. "enablePullDownRefresh": true
  407. }
  408. },
  409. {
  410. "path": "pages/user/contractLook/warehouseReserves",
  411. "style": {
  412. "navigationBarTitleText": "仓库储量"
  413. }
  414. },
  415. {
  416. "path": "pages/buy/transaction",
  417. "style": {
  418. "navigationBarTitleText": "交易"
  419. }
  420. },
  421. {
  422. "path": "pages/attestation/index",
  423. "style": {
  424. "navigationBarTitleText": "身份认证"
  425. }
  426. },
  427. {
  428. "path": "pages/bill/index",
  429. "style": {
  430. "navigationBarTitleText": "我的票据",
  431. "enablePullDownRefresh": true
  432. }
  433. },
  434. {
  435. "path": "pages/erpbusiness/index",
  436. "style": {
  437. // "navigationBarTitleText": "入库管理"
  438. "navigationBarTitleText": "收购业务"
  439. }
  440. },
  441. {
  442. "path": "pages/erpbusiness/quality_testing",
  443. "style": {
  444. "navigationStyle": "custom",
  445. "navigationBarTitleText": "",
  446. "enablePullDownRefresh": true
  447. }
  448. },
  449. {
  450. "path": "pages/erpbusiness/outbound_quality_testing",
  451. "style": {
  452. "navigationStyle": "custom",
  453. "navigationBarTitleText": "",
  454. "enablePullDownRefresh": true
  455. }
  456. },
  457. {
  458. "path": "pages/erpbusiness/check_the_weight",
  459. "style": {
  460. "navigationStyle": "custom",
  461. "navigationBarTitleText": ""
  462. }
  463. },
  464. {
  465. "path": "pages/erpbusiness/edit_quality_testing",
  466. "style": {
  467. "navigationBarTitleText": "编辑质检信息"
  468. }
  469. },
  470. {
  471. "path": "pages/erpbusiness/out_quality_testing",
  472. "style": {
  473. "navigationBarTitleText": "质检信息"
  474. }
  475. },
  476. {
  477. "path": "pages/erpbusiness/add_quality_testing",
  478. "style": {
  479. "navigationBarTitleText": "质检信息"
  480. }
  481. },
  482. {
  483. "path": "pages/erpbusiness/bleConnect",
  484. "style": {
  485. "navigationBarTitleText": "质检打印小票"
  486. }
  487. },
  488. {
  489. "path": "pages/erpbusiness/exbleConnect",
  490. "style": {
  491. "navigationBarTitleText": "出库打印小票"
  492. }
  493. },
  494. {
  495. "path": "pages/erpbusiness/jjbleConnect",
  496. "style": {
  497. "navigationBarTitleText": "检斤打印小票"
  498. }
  499. },
  500. {
  501. "path": "pages/erpbusiness/exbleConnect",
  502. "style": {
  503. "navigationBarTitleText": "出库打印小票"
  504. }
  505. },
  506. {
  507. "path": "pages/erpbusiness/sendCommand",
  508. "style": {
  509. "navigationBarTitleText": "质检小票数据"
  510. }
  511. },
  512. {
  513. "path": "pages/erpbusiness/jjsendCommand",
  514. "style": {
  515. "navigationBarTitleText": "检斤小票数据"
  516. }
  517. },
  518. {
  519. "path": "pages/erpbusiness/examine_quality_testing",
  520. "style": {
  521. "navigationBarTitleText": "质检详情"
  522. }
  523. },
  524. {
  525. "path": "pages/erpbusiness/customer",
  526. "style": {
  527. "navigationBarTitleText": "选择客户"
  528. }
  529. },
  530. {
  531. "path": "pages/attestation/indexTwo",
  532. "style": {
  533. "navigationBarTitleText": "粮商身份",
  534. "enablePullDownRefresh": true
  535. }
  536. },
  537. {
  538. "path": "pages/attestation/indexThree",
  539. "style": {
  540. "navigationBarTitleText": "司机身份",
  541. "enablePullDownRefresh": true
  542. }
  543. },
  544. {
  545. "path": "pages/tran/tran",
  546. "style": {
  547. "navigationBarTitleText": "物流信息",
  548. "enablePullDownRefresh": true,
  549. "navigationStyle": "custom"
  550. }
  551. },
  552. {
  553. "path": "pages/tran/tran_detail",
  554. "style": {
  555. "navigationBarTitleText": "物流详情"
  556. }
  557. },
  558. {
  559. "path": "pages/tran/car_detail",
  560. "style": {
  561. "navigationBarTitleText": "车辆详情"
  562. }
  563. },
  564. {
  565. "path": "pages/tran/my_tran",
  566. "style": {
  567. "navigationBarTitleText": "货源&车辆",
  568. "enablePullDownRefresh": true
  569. }
  570. },
  571. {
  572. "path": "pages/tran/my_tran_detail",
  573. "style": {
  574. "navigationBarTitleText": "货源详情"
  575. }
  576. },
  577. {
  578. "path": "pages/tran/my_car_detail",
  579. "style": {
  580. "navigationBarTitleText": "承运详情"
  581. }
  582. }
  583. , {
  584. "path": "pages/user/message",
  585. "style": {
  586. "navigationBarTitleText": "我的消息",
  587. "enablePullDownRefresh": true
  588. }
  589. }, {
  590. "path": "pages/user/task",
  591. "style": {
  592. "navigationBarTitleText": "我的任务",
  593. "enablePullDownRefresh": true
  594. }
  595. }, {
  596. "path": "pages/user/setUp",
  597. "style": {
  598. "navigationBarTitleText": "设置",
  599. "enablePullDownRefresh": true
  600. }
  601. },
  602. {
  603. "path": "pages/user/set_picture",
  604. "style": {
  605. "navigationBarTitleText": "头像",
  606. "enablePullDownRefresh": true
  607. }
  608. },{
  609. "path": "pages/user/upload",
  610. "style": {
  611. "navigationBarTitleText": "头像",
  612. "enablePullDownRefresh": false
  613. }
  614. },
  615. {
  616. "path": "pages/user/set_nickname",
  617. "style": {
  618. "navigationBarTitleText": "用户名",
  619. "enablePullDownRefresh": true
  620. }
  621. },
  622. {
  623. "path": "pages/user/set_wechatNo",
  624. "style": {
  625. "navigationBarTitleText": "昵称",
  626. "enablePullDownRefresh": true
  627. }
  628. },
  629. {
  630. "path": "pages/sale/port",
  631. "style": {
  632. "navigationBarTitleText": "港口价格",
  633. "enablePullDownRefresh": true
  634. }
  635. }, {
  636. "path": "pages/user/task_before",
  637. "style": {
  638. "navigationBarTitleText": "发运详情",
  639. "enablePullDownRefresh": true
  640. }
  641. },
  642. {
  643. "path": "pages/user/qr",
  644. "style": {
  645. "navigationBarTitleText": "二维码",
  646. "enablePullDownRefresh": true
  647. }
  648. },
  649. {
  650. "path": "pages/user/task_detail_pc",
  651. "style": {
  652. "navigationBarTitleText": "散船平仓"
  653. }
  654. }, {
  655. "path": "pages/user/task_detail_zx",
  656. "style": {
  657. "navigationBarTitleText": "装箱进港"
  658. }
  659. }, {
  660. "path": "pages/user/task_detail_jh",
  661. "style": {
  662. "navigationBarTitleText": "交货任务"
  663. }
  664. },
  665. {
  666. "path": "pages/user/task_detail_kn",
  667. "style": {
  668. "navigationBarTitleText": "库内销售"
  669. }
  670. }, {
  671. "path": "pages/user/task_detail_hy",
  672. "style": {
  673. "navigationBarTitleText": "发站完货"
  674. }
  675. }, {
  676. "path": "pages/user/task_detail_hyrk",
  677. "style": {
  678. "navigationBarTitleText": "到站入库任务"
  679. }
  680. }, {
  681. "path": "pages/user/task_detail_wai",
  682. "style": {
  683. "navigationBarTitleText": "外采入库任务"
  684. }
  685. }, {
  686. "path": "pages/user/task_detail_buy",
  687. "style": {
  688. "navigationBarTitleText": "采购任务"
  689. }
  690. }, {
  691. "path": "pages/user/task_detail_fh",
  692. "style": {
  693. "navigationBarTitleText": "放货申请"
  694. }
  695. },
  696. {
  697. "path": "pages/user/task_arrive",
  698. "style": {
  699. "navigationBarTitleText": "到站下线"
  700. }
  701. }, {
  702. "path": "pages/buy/purchase/purchase",
  703. "style": {
  704. "navigationBarTitleText": "",
  705. "enablePullDownRefresh": false
  706. }
  707. }, {
  708. "path": "pages/business/business",
  709. "style": {
  710. "navigationBarTitleText": "交易",
  711. "enablePullDownRefresh": true
  712. // "navigationStyle": "custom"
  713. }
  714. },
  715. {
  716. "path": "pages/business/businessNew",
  717. "style": {
  718. // "navigationStyle": "custom",
  719. "enablePullDownRefresh": false,
  720. "navigationBarTitleText": "交易",
  721. "titleNView": {
  722. "autoBackButton": false,
  723. "backgroundColor": "#fff",
  724. "buttons": [{
  725. "fontSrc": "/static/followIicon/iconfont.ttf",
  726. "float": "right",
  727. "text": "\uff2d",
  728. "fontSize": "22px"
  729. }]
  730. }
  731. }
  732. },
  733. {
  734. "path": "pages/release/release",
  735. "style": {
  736. "navigationBarTitleText": "我的发布",
  737. "enablePullDownRefresh": false
  738. }
  739. },
  740. {
  741. "path": "pageD/identity/driverIdentity",
  742. "style": {
  743. "navigationBarTitleText": "司机认证",
  744. "enablePullDownRefresh": false
  745. }
  746. },
  747. {
  748. "path": "pageD/identity/driverIdentityTwo",
  749. "style": {
  750. "navigationBarTitleText": "司机认证",
  751. "enablePullDownRefresh": false
  752. }
  753. },
  754. {
  755. "path": "pageD/identity/driverIdentityThree",
  756. "style": {
  757. "navigationBarTitleText": "司机认证",
  758. "enablePullDownRefresh": false
  759. }
  760. },
  761. {
  762. "path": "pageD/identity/driverIdentityLook",
  763. "style": {
  764. "navigationBarTitleText": "认证信息",
  765. "enablePullDownRefresh": false
  766. }
  767. },
  768. {
  769. "path": "pageD/identity/companyIdentity",
  770. "style": {
  771. "navigationBarTitleText": "粮商认证",
  772. "enablePullDownRefresh": false
  773. }
  774. },
  775. {
  776. "path": "pageD/identity/companyIdentityTwo",
  777. "style": {
  778. "navigationBarTitleText": "粮商认证",
  779. "enablePullDownRefresh": false
  780. }
  781. }, {
  782. "path": "pageD/identity/companyIdentityThree",
  783. "style": {
  784. "navigationBarTitleText": "粮商认证",
  785. "enablePullDownRefresh": false
  786. }
  787. },
  788. {
  789. "path": "pageD/identity/companyIdentityLook",
  790. "style": {
  791. "navigationBarTitleText": "认证信息",
  792. "enablePullDownRefresh": false
  793. }
  794. },
  795. {
  796. "path": "pageD/identity/companyIdentityEdit",
  797. "style": {
  798. "navigationBarTitleText": "编辑认证信息",
  799. "enablePullDownRefresh": false
  800. }
  801. },
  802. {
  803. "path": "pageD/identity/driverIdentityEdit",
  804. "style": {
  805. "navigationBarTitleText": "编辑认证信息",
  806. "enablePullDownRefresh": false
  807. }
  808. },
  809. {
  810. "path": "pages/task/my_task",
  811. "style": {
  812. "navigationBarTitleText": "我的任务",
  813. "enablePullDownRefresh": true
  814. }
  815. },
  816. {
  817. "path": "pageD/myRelease/Identity_switching",
  818. "style": {
  819. "navigationBarTitleText": "",
  820. "enablePullDownRefresh": false
  821. }
  822. },
  823. {
  824. "path": "pageD/myRelease/buyEdit",
  825. "style": {
  826. "navigationBarTitleText": "买粮",
  827. "enablePullDownRefresh": false
  828. }
  829. }, {
  830. "path": "pages/user/fankui",
  831. "style": {
  832. "navigationBarTitleText": "",
  833. "enablePullDownRefresh": false
  834. }
  835. }
  836. , {
  837. "path": "pages/grain_pulse/distribution/distribution",
  838. "style": {
  839. "navigationBarTitleText": "分布",
  840. "enablePullDownRefresh": false
  841. // "app-plus": {
  842. // "subNVues":[{
  843. // "id": "popup",
  844. // "path": "pages/grain_pulse/distribution/subNvue/popup.nvue",
  845. // "type": "popup",
  846. // "style": {
  847. // "position": "absolute",
  848. // "dock": "bottom",
  849. // "width": "100upx",
  850. // "height": "150upx",
  851. // "background": "red"
  852. // }
  853. // }]
  854. // }
  855. // "enablePullDownRefresh": false
  856. }
  857. }, {
  858. "path": "pages/grain_pulse/position/position",
  859. "style": {
  860. "navigationBarTitleText": "定位",
  861. "enablePullDownRefresh": false
  862. }
  863. }, {
  864. "path": "pages/grain_pulse/selectCity/selectCity",
  865. "style": {
  866. "navigationBarTitleText": "城市",
  867. "enablePullDownRefresh": false
  868. }
  869. }, {
  870. "path": "pages/grain_pulse/localtion/localtion",
  871. "style": {
  872. "navigationBarTitleText": "位置",
  873. "enablePullDownRefresh": false
  874. }
  875. }, {
  876. "path": "pages/grain_pulse/localtion/coordinate",
  877. "style": {
  878. "navigationBarTitleText": "坐标",
  879. "enablePullDownRefresh": false
  880. }
  881. }, {
  882. "path": "pages/grain_pulse/distribution/distribution",
  883. "style": {
  884. "navigationBarTitleText": "分布",
  885. "enablePullDownRefresh": false
  886. }
  887. },
  888. {
  889. "path": "pages/erpbusiness/sm/sm",
  890. "style": {
  891. "navigationBarTitleText": "客户邀请",
  892. "enablePullDownRefresh": false,
  893. "navigationStyle": "custom"
  894. }
  895. }, {
  896. "path": "pages/erpbusiness/QRCode/QRCode",
  897. "style": {
  898. "navigationBarTitleText": "二维码",
  899. "enablePullDownRefresh": false
  900. }
  901. },
  902. {
  903. "path": "pages/erpbusiness/acquisitionInspection/acquisitionInspection",
  904. "style": {
  905. "navigationBarTitleText": "入库检斤",
  906. "enablePullDownRefresh": true
  907. }
  908. },
  909. {
  910. "path": "pages/erpbusiness/acquisitionInspection/warehouseWeighing",
  911. "style": {
  912. "navigationBarTitleText": "出库检斤",
  913. "enablePullDownRefresh": false
  914. }
  915. },
  916. {
  917. "path": "pages/erpbusiness/acquisitionInspection/grossWeightDetail",
  918. "style": {
  919. "navigationBarTitleText": "毛重检斤",
  920. "enablePullDownRefresh": false
  921. }
  922. },
  923. {
  924. "path": "pages/erpbusiness/acquisitionInspection/grossWeightDetail1",
  925. "style": {
  926. "navigationBarTitleText": "毛重检斤",
  927. "enablePullDownRefresh": false
  928. }
  929. },
  930. {
  931. "path": "pages/erpbusiness/acquisitionInspection/tareDetail",
  932. "style": {
  933. "navigationBarTitleText": "皮重检斤",
  934. "enablePullDownRefresh": false
  935. }
  936. },
  937. {
  938. "path": "pages/erpbusiness/acquisitionInspection/tareDetail1",
  939. "style": {
  940. "navigationBarTitleText": "皮重检斤",
  941. "enablePullDownRefresh": false
  942. }
  943. },
  944. {
  945. "path": "pages/erpbusiness/acquisitionInspection/tareDetail2",
  946. "style": {
  947. "navigationBarTitleText": "检斤详情",
  948. "enablePullDownRefresh": false
  949. }
  950. },
  951. {
  952. "path": "pages/erpbusiness/acquisitionInspection/add_check_the_weight",
  953. "style": {
  954. "navigationBarTitleText": "皮重检斤",
  955. "enablePullDownRefresh": false
  956. }
  957. },
  958. {
  959. "path": "pages/erpbusiness/acquisitionInspection/selectContractNo",
  960. "style": {
  961. "navigationBarTitleText": "选择合同",
  962. "enablePullDownRefresh": false
  963. }
  964. },
  965. {
  966. "path": "pages/erp/index",
  967. "style": {
  968. "navigationBarTitleText": "ERP业务",
  969. "enablePullDownRefresh": false
  970. }
  971. }, {
  972. "path": "pages/erp/warehousing/warehousing",
  973. "style": {
  974. "navigationBarTitleText": "入库",
  975. "enablePullDownRefresh": false
  976. }
  977. }, {
  978. "path": "pages/erp/warehousing/selectContractNo",
  979. "style": {
  980. "navigationBarTitleText": "选择合同",
  981. "enablePullDownRefresh": false
  982. }
  983. },
  984. {
  985. "path": "pages/erp/exWarehousing/selectContractNo",
  986. "style": {
  987. "navigationBarTitleText": "选择合同",
  988. "enablePullDownRefresh": false
  989. }
  990. }, {
  991. "path": "pages/erp/warehousing/selectCarNo",
  992. "style": {
  993. "navigationBarTitleText": "选择车牌号",
  994. "enablePullDownRefresh": false
  995. }
  996. },
  997. {
  998. "path": "pages/erp/exWarehousing/selectCarNo",
  999. "style": {
  1000. "navigationBarTitleText": "选择车牌号",
  1001. "enablePullDownRefresh": false
  1002. }
  1003. }, {
  1004. "path": "pages/erp/improvedWrehousing/improvedWrehousing",
  1005. "style": {
  1006. "navigationBarTitleText": "待完善入库",
  1007. "enablePullDownRefresh": false
  1008. }
  1009. }, {
  1010. "path": "pages/erp/exWarehousing/exWarehousing",
  1011. "style": {
  1012. "navigationBarTitleText": "出库",
  1013. "enablePullDownRefresh": false
  1014. }
  1015. }, {
  1016. "path": "pages/erp/improvedExWaehousing/improvedExWaehousing",
  1017. "style": {
  1018. "navigationBarTitleText": "待完善出库",
  1019. "enablePullDownRefresh": false
  1020. }
  1021. }, {
  1022. "path": "pages/erp/improvedExWaehousing/improvedExWaehousing",
  1023. "style": {
  1024. "navigationBarTitleText": "待完善出库",
  1025. "enablePullDownRefresh": false
  1026. }
  1027. }, {
  1028. "path": "pages/erp/improvedWrehousing/improvedWrehousingDetail",
  1029. "style": {
  1030. "navigationBarTitleText": "完善入库",
  1031. "enablePullDownRefresh": false
  1032. }
  1033. }, {
  1034. "path": "pages/erp/improvedExWaehousing/improvedExWaehousingDetail",
  1035. "style": {
  1036. "navigationBarTitleText": "完善出库",
  1037. "enablePullDownRefresh": false
  1038. }
  1039. }, {
  1040. "path": "pages/erp/deliveryfeedback/list",
  1041. "style": {
  1042. "navigationBarTitleText": "发货反馈",
  1043. "enablePullDownRefresh": false
  1044. }
  1045. }, {
  1046. "path": "pages/erp/receivingfeedback/list",
  1047. "style": {
  1048. "navigationBarTitleText": "收货反馈",
  1049. "enablePullDownRefresh": false
  1050. }
  1051. },
  1052. {
  1053. "path": "pages/erp/deliveryfeedback/details",
  1054. "style": {
  1055. "navigationBarTitleText": "发货反馈详情",
  1056. "enablePullDownRefresh": false
  1057. }
  1058. },
  1059. {
  1060. "path": "pages/erp/deliveryfeedback/otherfeedback",
  1061. "style": {
  1062. "navigationBarTitleText": "发货反馈详情",
  1063. "enablePullDownRefresh": false
  1064. }
  1065. }, {
  1066. "path": "pages/erp/receivingfeedback/details",
  1067. "style": {
  1068. "navigationBarTitleText": "收货反馈详情",
  1069. "enablePullDownRefresh": false
  1070. }
  1071. }, {
  1072. "path": "pages/erp/receivingfeedback/otherfeedback",
  1073. "style": {
  1074. "navigationBarTitleText": "收货反馈详情",
  1075. "enablePullDownRefresh": false
  1076. }
  1077. }, {
  1078. "path": "pages/erp/openService/openService",
  1079. "style": {
  1080. "navigationBarTitleText": "开通服务",
  1081. "enablePullDownRefresh": false
  1082. }
  1083. }, {
  1084. "path": "pages/erp/contactCustomerService/contactCustomerService",
  1085. "style": {
  1086. "navigationBarTitleText": "联系客服",
  1087. "enablePullDownRefresh": false
  1088. }
  1089. }, {
  1090. "path": "pages/task/audit/warehouse_approval",
  1091. "style": {
  1092. "navigationBarTitleText": "仓库设置审核",
  1093. "enablePullDownRefresh": false
  1094. }
  1095. }, {
  1096. "path": "pages/task/audit/warehouse_details",
  1097. "style": {
  1098. "navigationBarTitleText": "仓库设置详情",
  1099. "enablePullDownRefresh": false
  1100. }
  1101. }, {
  1102. "path": "pages/task/audit/freight_setting_approval",
  1103. "style": {
  1104. "navigationBarTitleText": "运费设置审核",
  1105. "enablePullDownRefresh": false
  1106. }
  1107. }, {
  1108. "path": "pages/task/audit/freight_setting_details",
  1109. "style": {
  1110. "navigationBarTitleText": "运费设置详情",
  1111. "enablePullDownRefresh": false
  1112. }
  1113. },
  1114. {
  1115. "path": "pages/task/audit/tradeServices_audit",
  1116. "style": {
  1117. "navigationBarTitleText": "贸易服务审核",
  1118. "enablePullDownRefresh": false
  1119. }
  1120. },
  1121. {
  1122. "path": "pages/task/audit/tradeServices_audit_approval",
  1123. "style": {
  1124. "navigationBarTitleText": "贸易服务详情",
  1125. "enablePullDownRefresh": false
  1126. }
  1127. }, {
  1128. "path": "pages/task/audit/freight_settlement_approval",
  1129. "style": {
  1130. "navigationBarTitleText": "运费结算审核",
  1131. "enablePullDownRefresh": false
  1132. }
  1133. }, {
  1134. "path": "pages/task/audit/freight_settlement_details",
  1135. "style": {
  1136. "navigationBarTitleText": "运费结算详情",
  1137. "enablePullDownRefresh": false
  1138. }
  1139. },
  1140. {
  1141. "path": "pages/task/audit/freight_settlement_approvalcopy",
  1142. "style": {
  1143. "navigationBarTitleText": "运费结算审核",
  1144. "enablePullDownRefresh": false
  1145. }
  1146. }, {
  1147. "path": "pages/task/audit/freight_settlement_detailscopy",
  1148. "style": {
  1149. "navigationBarTitleText": "运费结算详情",
  1150. "enablePullDownRefresh": false
  1151. }
  1152. }, {
  1153. "path": "pages/task/audit/acquisition_settlement_approval",
  1154. "style": {
  1155. "navigationBarTitleText": "收购结算审核",
  1156. "enablePullDownRefresh": false
  1157. }
  1158. },
  1159. {
  1160. "path": "pages/task/audit/warehouse_warrant",
  1161. "style": {
  1162. "navigationBarTitleText": "入库单结算审核",
  1163. "enablePullDownRefresh": false
  1164. }
  1165. },
  1166. {
  1167. "path": "pages/task/audit/viewDetail",
  1168. "style": {
  1169. "navigationBarTitleText": "入库详情",
  1170. "enablePullDownRefresh": false
  1171. }
  1172. },
  1173. {
  1174. "path": "pages/task/audit/warehouse_warrant_detail",
  1175. "style": {
  1176. "navigationBarTitleText": "入库单结算详情",
  1177. "enablePullDownRefresh": false
  1178. }
  1179. },
  1180. {
  1181. "path": "pages/task/audit/charge_against_revenue",
  1182. "style": {
  1183. "navigationBarTitleText": "费用支出审核",
  1184. "enablePullDownRefresh": false
  1185. }
  1186. }, {
  1187. "path": "pages/task/audit/charge_against_revenue_detail",
  1188. "style": {
  1189. "navigationBarTitleText": "费用支出详情",
  1190. "enablePullDownRefresh": false
  1191. }
  1192. },
  1193. {
  1194. "path": "pages/task/audit/expense_allocation",
  1195. "style": {
  1196. "navigationBarTitleText": "费用分配审核",
  1197. "enablePullDownRefresh": false
  1198. }
  1199. },
  1200. {
  1201. "path": "pages/task/audit/acquisition_settlement_details",
  1202. "style": {
  1203. "navigationBarTitleText": "收购结算详情",
  1204. "enablePullDownRefresh": false
  1205. }
  1206. }, {
  1207. "path": "pages/task/audit/purchase_settlement_approval",
  1208. "style": {
  1209. "navigationBarTitleText": "采购结算审核",
  1210. "enablePullDownRefresh": false
  1211. }
  1212. }, {
  1213. "path": "pages/task/audit/purchase_settlement_details",
  1214. "style": {
  1215. "navigationBarTitleText": "采购结算详情",
  1216. "enablePullDownRefresh": false
  1217. }
  1218. }, {
  1219. "path": "pages/task/audit/Issueandreceipt_task_approval",
  1220. "style": {
  1221. "navigationBarTitleText": "出入库任务审核",
  1222. "enablePullDownRefresh": false
  1223. }
  1224. }, {
  1225. "path": "pages/task/audit/Issueandreceipt_task_details",
  1226. "style": {
  1227. "navigationBarTitleText": "出入库任务详情",
  1228. "enablePullDownRefresh": false
  1229. }
  1230. }
  1231. , {
  1232. "path": "pages/user/depotMonitoring",
  1233. "style": {
  1234. "navigationBarTitleText": "库点监控",
  1235. "enablePullDownRefresh": false
  1236. }
  1237. }, {
  1238. "path": "pages/task/audit/acquisition_information_approval",
  1239. "style": {
  1240. "navigationBarTitleText": "收购信息审核",
  1241. "enablePullDownRefresh": false
  1242. }
  1243. }, {
  1244. "path": "pages/task/audit/acquisition_information_details",
  1245. "style": {
  1246. "navigationBarTitleText": "收购信息详情",
  1247. "enablePullDownRefresh": false
  1248. }
  1249. }, {
  1250. "path": "pages/erpbusiness/acquisitionInformation",
  1251. "style": {
  1252. "navigationBarTitleText": "收购信息",
  1253. "enablePullDownRefresh": false
  1254. }
  1255. }, {
  1256. "path": "pages/erpbusiness/customerAudit",
  1257. "style": {
  1258. "navigationBarTitleText": "客户审核",
  1259. "enablePullDownRefresh": false
  1260. }
  1261. }, {
  1262. "path": "pages/erpbusiness/customerSee",
  1263. "style": {
  1264. "navigationBarTitleText": "客户详情",
  1265. "enablePullDownRefresh": false
  1266. }
  1267. }, {
  1268. "path": "pages/user/depotAcquisition/depotAcquisition",
  1269. "style": {
  1270. "navigationBarTitleText": "库点收购",
  1271. "enablePullDownRefresh": true,
  1272. "app-plus": {
  1273. "softinputNavBar": "none",
  1274. "scrollIndicator": "none",
  1275. "softinputMode": "adjustPan",
  1276. "titleNView": {
  1277. "autoBackButton": false,
  1278. "backgroundColor": "#fff",
  1279. "buttons": [{
  1280. "fontSrc": "/pageC/static/car/iconfont.ttf",
  1281. "float": "right",
  1282. "text": "\ue639",
  1283. "fontSize": "18px"
  1284. },
  1285. {
  1286. "fontSrc": "pageC/static/iconfont/iconfont.ttf",
  1287. "float": "left",
  1288. "text": "\ue6f2",
  1289. "fontSize": "20px"
  1290. }
  1291. ]
  1292. }
  1293. }
  1294. }
  1295. }, {
  1296. "path": "pages/user/depotAcquisition/grainDeliveryRegistration",
  1297. "style": {
  1298. "navigationBarTitleText": "送粮登记",
  1299. "enablePullDownRefresh": false
  1300. }
  1301. }, {
  1302. "path": "pages/user/depotAcquisition/grainDeliveryRecord",
  1303. "style": {
  1304. "navigationBarTitleText": "送粮记录",
  1305. "enablePullDownRefresh": false
  1306. }
  1307. }, {
  1308. "path": "pages/user/depotAcquisition/grainDeliveryRecord",
  1309. "style": {
  1310. "navigationBarTitleText": "送粮记录",
  1311. "enablePullDownRefresh": false
  1312. }
  1313. },
  1314. {
  1315. "path": "pages/user/depotAcquisition/selectCity",
  1316. "style": {
  1317. "navigationBarTitleText": "选择城市",
  1318. "enablePullDownRefresh": false
  1319. }
  1320. }, {
  1321. "path": "pages/user/contractLook/inventoryCost",
  1322. "style": {
  1323. "navigationBarTitleText": "库存成本",
  1324. "enablePullDownRefresh": false,
  1325. "app-plus": {
  1326. "titleNView": {
  1327. "buttons": [{
  1328. "color": "#000",
  1329. "fontSize": "28rpx",
  1330. "text": "导出"
  1331. }]
  1332. }
  1333. }
  1334. }
  1335. }, {
  1336. "path": "pages/task/audit/collection_business_approval",
  1337. "style": {
  1338. "navigationBarTitleText": "代收业务记录审核",
  1339. "enablePullDownRefresh": false
  1340. }
  1341. }, {
  1342. "path": "pages/task/audit/collection_business_details",
  1343. "style": {
  1344. "navigationBarTitleText": "代收业务记录查看",
  1345. "enablePullDownRefresh": false
  1346. }
  1347. }, {
  1348. "path": "pages/user/contractLook/position",
  1349. "style": {
  1350. "navigationBarTitleText": "仓位库存成本",
  1351. "enablePullDownRefresh": false
  1352. }
  1353. }, {
  1354. "path": "pages/clock/the_clock",
  1355. "style": {
  1356. "navigationBarTitleText": "打卡",
  1357. "enablePullDownRefresh": false
  1358. }
  1359. }, {
  1360. "path": "pages/clock/the_clock_record",
  1361. "style": {
  1362. "navigationBarTitleText": "打卡记录",
  1363. "enablePullDownRefresh": false
  1364. }
  1365. }, {
  1366. "path": "pages/clock/supp_clock",
  1367. "style": {
  1368. "navigationBarTitleText": "补卡",
  1369. "enablePullDownRefresh": false
  1370. }
  1371. }, {
  1372. "path": "pages/leave/the_leave",
  1373. "style": {
  1374. "navigationBarTitleText": "请假",
  1375. "enablePullDownRefresh": false
  1376. }
  1377. }, {
  1378. "path": "pages/leave/the_leave_record",
  1379. "style": {
  1380. "navigationBarTitleText": "请假记录",
  1381. "enablePullDownRefresh": false
  1382. }
  1383. }, {
  1384. "path": "pages/fuelfilling/the_fuel_filling",
  1385. "style": {
  1386. "navigationBarTitleText": "加油",
  1387. "enablePullDownRefresh": false
  1388. }
  1389. }, {
  1390. "path": "pages/fuelfilling/track_addition",
  1391. "style": {
  1392. "navigationBarTitleText": "添加轨迹",
  1393. "enablePullDownRefresh": false,
  1394. "app-plus": {
  1395. "titleNView": false , //禁用原生导航栏
  1396. "subNVues":[ {//弹出层
  1397. "id": "popview",//页面进行跳转时需要用,必须有,且要唯一
  1398. "path": "pages/fuelfilling/popup",
  1399. "style": {
  1400. "position": "absolute",
  1401. "margin": "auto",
  1402. "mask": "rgba(0,0,0,0.3)",
  1403. "width": "100%",
  1404. "height": "100%",
  1405. "background":"rgba(0,0,0,0.3)"
  1406. }
  1407. }]
  1408. }
  1409. }
  1410. }, {
  1411. "path": "pages/fuelfilling/apply_for_reimbursement",
  1412. "style": {
  1413. "navigationBarTitleText": "添加申请",
  1414. "enablePullDownRefresh": false
  1415. }
  1416. }, {
  1417. "path": "pages/fuelfilling/apply_see_reimbursement",
  1418. "style": {
  1419. "navigationBarTitleText": "查看申请",
  1420. "enablePullDownRefresh": false,
  1421. "softinputMode":"adjustResize"
  1422. }
  1423. }, {
  1424. "path": "pages/shortDistance/short_distance_record",
  1425. "style": {
  1426. "navigationBarTitleText": "短途记录",
  1427. "enablePullDownRefresh": false
  1428. }
  1429. }, {
  1430. "path": "pages/shortDistance/short_track_addition",
  1431. "style": {
  1432. "navigationBarTitleText": "短途添加轨迹",
  1433. "enablePullDownRefresh": false
  1434. }
  1435. }, {
  1436. "path": "pages/task/audit/supp_clock_approve",
  1437. "style": {
  1438. "navigationBarTitleText": "补卡审核",
  1439. "enablePullDownRefresh": false
  1440. }
  1441. }, {
  1442. "path": "pages/task/audit/supp_clock_details",
  1443. "style": {
  1444. "navigationBarTitleText": "",
  1445. "enablePullDownRefresh": false
  1446. }
  1447. }, {
  1448. "path": "pages/task/audit/leave_approve",
  1449. "style": {
  1450. "navigationBarTitleText": "请假审核",
  1451. "enablePullDownRefresh": false
  1452. }
  1453. }, {
  1454. "path": "pages/task/audit/leave_details",
  1455. "style": {
  1456. "navigationBarTitleText": "请假详情",
  1457. "enablePullDownRefresh": false
  1458. }
  1459. }, {
  1460. "path": "pages/oa_office/the_oaOffice",
  1461. "style": {
  1462. "navigationBarTitleText": "OA办公",
  1463. "enablePullDownRefresh": false
  1464. }
  1465. }, {
  1466. "path": "pages/reimbursement/the_reimbursement",
  1467. "style": {
  1468. "navigationBarTitleText": "报销",
  1469. "enablePullDownRefresh": false
  1470. }
  1471. }, {
  1472. "path": "pages/reimbursement/request_funds",
  1473. "style": {
  1474. "navigationBarTitleText": "收款",
  1475. "enablePullDownRefresh": false
  1476. }
  1477. }, {
  1478. "path": "pages/reimbursement/selectWarehouse",
  1479. "style": {
  1480. "navigationBarTitleText": "选择仓库",
  1481. "enablePullDownRefresh": false
  1482. }
  1483. }, {
  1484. "path": "pages/reimbursement/selectContract",
  1485. "style": {
  1486. "navigationBarTitleText": "选择合同",
  1487. "enablePullDownRefresh": false
  1488. }
  1489. },{
  1490. "path": "pages/fuelfilling/selectWarehouse",
  1491. "style": {
  1492. "navigationBarTitleText": "选择仓库",
  1493. "enablePullDownRefresh": false
  1494. }
  1495. }, {
  1496. "path": "pages/fuelfilling/selectContract",
  1497. "style": {
  1498. "navigationBarTitleText": "选择合同",
  1499. "enablePullDownRefresh": false
  1500. }
  1501. }, {
  1502. "path": "pages/reimbursement/get_request_funds",
  1503. "style": {
  1504. "navigationBarTitleText": "",
  1505. "enablePullDownRefresh": false
  1506. }
  1507. }, {
  1508. "path": "pages/universalityAudit/list",
  1509. "style": {
  1510. "navigationBarTitleText": "我的申请",
  1511. "enablePullDownRefresh": false,
  1512. "app-plus": {
  1513. "titleNView": {
  1514. "buttons": [{
  1515. "color": "#000",
  1516. "fontSize": "28rpx",
  1517. "text": "发起"
  1518. }]
  1519. }
  1520. }
  1521. }
  1522. }, {
  1523. "path": "pages/universalityAudit/look",
  1524. "style": {
  1525. "navigationBarTitleText": "申请详情",
  1526. "enablePullDownRefresh": false
  1527. }
  1528. }, {
  1529. "path": "pages/universalityAudit/addaduit",
  1530. "style": {
  1531. "navigationBarTitleText": "发起申请",
  1532. "enablePullDownRefresh": false
  1533. }
  1534. }, {
  1535. "path": "pages/dataReport/costbreakdown",
  1536. "style": {
  1537. "navigationBarTitleText": "费用明细",
  1538. "enablePullDownRefresh": false
  1539. // "onReachBottomDistance": 50
  1540. }
  1541. }, {
  1542. "path": "pages/dataReport/contractdetails/contractdetails",
  1543. "style": {
  1544. "navigationBarTitleText": "合同",
  1545. "enablePullDownRefresh": false
  1546. // "onReachBottomDistance": 50
  1547. }
  1548. }, {
  1549. "path": "pages/dataReport/breakdownofprofit",
  1550. "style": {
  1551. "navigationBarTitleText": "合同利润",
  1552. "enablePullDownRefresh": false,
  1553. "onReachBottomDistance": 50
  1554. }
  1555. }, {
  1556. "path": "pages/dataReport/Inventoryentrydetails",
  1557. "style": {
  1558. "navigationBarTitleText": "入库明细",
  1559. "enablePullDownRefresh": false
  1560. // "onReachBottomDistance": 50
  1561. }
  1562. }, {
  1563. "path": "pages/task/audit/universalityAudit",
  1564. "style": {
  1565. "navigationBarTitleText": "通用审核",
  1566. "enablePullDownRefresh": false
  1567. }
  1568. }, {
  1569. "path": "pages/business/release",
  1570. "style": {
  1571. "navigationBarTitleText": "发布",
  1572. "enablePullDownRefresh": false,
  1573. "app-plus": {
  1574. "titleNView": {
  1575. "buttons": [{
  1576. "float": "right",
  1577. "fontSize": "14px",
  1578. "text": "记录",
  1579. "color": "#333333",
  1580. "width": "40px"
  1581. }]
  1582. }
  1583. }
  1584. }
  1585. }, {
  1586. "path": "pages/business/record",
  1587. "style": {
  1588. "navigationBarTitleText": "发布记录",
  1589. "enablePullDownRefresh": false
  1590. }
  1591. }, {
  1592. "path": "pages/business/myAttention",
  1593. "style": {
  1594. "navigationBarTitleText": "我的关注",
  1595. "enablePullDownRefresh": false
  1596. }
  1597. }, {
  1598. "path": "pages/business/editRelease",
  1599. "style": {
  1600. "navigationBarTitleText": "发布",
  1601. "enablePullDownRefresh": false
  1602. }
  1603. }
  1604. ,{
  1605. "path" : "pages/reimbursement/addaccessory",
  1606. "style" :
  1607. {
  1608. "navigationBarTitleText": "",
  1609. "enablePullDownRefresh": false
  1610. }
  1611. }
  1612. ,{
  1613. "path" : "pages/business/search",
  1614. "style" :
  1615. {
  1616. "navigationBarTitleText": "搜索",
  1617. "enablePullDownRefresh": false
  1618. }
  1619. }
  1620. ,{
  1621. "path" : "pages/fuelfilling/popup",
  1622. "style" :
  1623. {
  1624. "navigationBarTitleText": "",
  1625. "enablePullDownRefresh": false
  1626. }
  1627. }
  1628. ],
  1629. "subpackages": [{
  1630. "root": "pageA",
  1631. "pages": [{
  1632. "path": "pages/task",
  1633. "style": {
  1634. "navigationBarTitleText": "发运任务"
  1635. }
  1636. },
  1637. {
  1638. "path": "freightTransport/index",
  1639. "style": {
  1640. "navigationBarTitleText": "货运收发",
  1641. "enablePullDownRefresh": true
  1642. }
  1643. },
  1644. {
  1645. "path": "freightTransport/addsendgoods",
  1646. "style": {
  1647. "navigationBarTitleText": "创建",
  1648. "enablePullDownRefresh": false
  1649. }
  1650. },
  1651. {
  1652. "path": "freightTransport/record/sendrecord",
  1653. "style": {
  1654. "navigationBarTitleText": "发货记录",
  1655. "enablePullDownRefresh": false
  1656. }
  1657. },
  1658. {
  1659. "path": "freightTransport/contract_detail",
  1660. "style": {
  1661. "navigationBarTitleText": "添加",
  1662. "enablePullDownRefresh": false
  1663. }
  1664. },
  1665. {
  1666. "path": "freightTransport/confirmpaygoods",
  1667. "style": {
  1668. "navigationBarTitleText": "确认收货",
  1669. "enablePullDownRefresh": false
  1670. }
  1671. },
  1672. {
  1673. "path": "freightTransport/record/payrecord",
  1674. "style": {
  1675. "navigationBarTitleText": "收货记录",
  1676. "enablePullDownRefresh": false
  1677. }
  1678. },
  1679. {
  1680. "path": "freightTransport/addpaygoods",
  1681. "style": {
  1682. "navigationBarTitleText": "添加收货人",
  1683. "enablePullDownRefresh": false
  1684. }
  1685. },
  1686. {
  1687. "path": "pages/task_detail_jy",
  1688. "style": {
  1689. "navigationBarTitleText": "交易审核任务"
  1690. }
  1691. },
  1692. {
  1693. "path": "product/Identity_switching",
  1694. "style": {
  1695. "navigationBarTitleText": "粮商身份"
  1696. }
  1697. },
  1698. {
  1699. "path": "pages/task_detail_ys",
  1700. "style": {
  1701. "navigationBarTitleText": "收货跟踪"
  1702. }
  1703. },
  1704. {
  1705. "path": "pages/account",
  1706. "style": {
  1707. "navigationBarTitleText": "交易合同信息"
  1708. }
  1709. },
  1710. {
  1711. "path": "pages/newcompany",
  1712. "style": {
  1713. "navigationBarTitleText": "名头"
  1714. }
  1715. },
  1716. {
  1717. "path": "product/search",
  1718. "style": {
  1719. "navigationBarTitleText": "搜索"
  1720. }
  1721. },
  1722. {
  1723. "path": "product/lookup",
  1724. "style": {
  1725. "navigationBarTitleText": "搜索"
  1726. }
  1727. },
  1728. {
  1729. "path": "product/detail",
  1730. "style": {
  1731. "navigationStyle": "custom"
  1732. }
  1733. }, {
  1734. "path": "product/sales_detail",
  1735. "style": {
  1736. "navigationStyle": "custom"
  1737. }
  1738. }, {
  1739. "path": "product/business_sale",
  1740. "style": {
  1741. "navigationBarTitleText": "订单"
  1742. }
  1743. },
  1744. {
  1745. "path": "product/buydetails",
  1746. "style": {
  1747. "navigationBarTitleText": "详情"
  1748. }
  1749. },
  1750. {
  1751. "path": "product/saledetails",
  1752. "style": {
  1753. "navigationBarTitleText": "详情"
  1754. }
  1755. },
  1756. {
  1757. "path": "product/detail_buy",
  1758. "style": {
  1759. "navigationBarTitleText": "采购详情"
  1760. // "app-plus": {
  1761. // "titleNView": {
  1762. // "type": "transparent"
  1763. // }
  1764. // }
  1765. }
  1766. }, {
  1767. "path": "product/trade",
  1768. "style": {
  1769. "navigationBarTitleText": "交易信息"
  1770. }
  1771. }, {
  1772. "path": "product/sale_trade",
  1773. "style": {
  1774. "navigationBarTitleText": "交易信息"
  1775. }
  1776. },
  1777. {
  1778. "path": "product/business_buy",
  1779. "style": {
  1780. "navigationBarTitleText": "订单"
  1781. }
  1782. },
  1783. {
  1784. "path": "product/list",
  1785. "style": {
  1786. "enablePullDownRefresh": true,
  1787. "navigationBarTitleText": "销售信息"
  1788. }
  1789. },
  1790. {
  1791. "path": "product/querylist",
  1792. "style": {
  1793. "enablePullDownRefresh": true,
  1794. "navigationBarTitleText": "销售信息"
  1795. }
  1796. },
  1797. {
  1798. "path": "product/detail_upload",
  1799. "style": {
  1800. "navigationBarTitleText": "上传图片"
  1801. }
  1802. },
  1803. {
  1804. "path": "product/trade_buy",
  1805. "style": {
  1806. "navigationBarTitleText": "交易信息"
  1807. }
  1808. }, {
  1809. "path": "product/trade_sale",
  1810. "style": {
  1811. "navigationBarTitleText": "交易信息"
  1812. }
  1813. },
  1814. {
  1815. "path": "pages/contract",
  1816. "style": {
  1817. "navigationBarTitleText": "我的名头"
  1818. }
  1819. }, {
  1820. "path": "pages/task_detail",
  1821. "style": {
  1822. "navigationBarTitleText": "任务详情",
  1823. "enablePullDownRefresh": true
  1824. }
  1825. }, {
  1826. "path": "pages/deliver_goods",
  1827. "style": {
  1828. "navigationBarTitleText": "合同车辆",
  1829. "enablePullDownRefresh": true
  1830. }
  1831. }, {
  1832. "path": "pages/task_detail_ck",
  1833. "style": {
  1834. "navigationBarTitleText": "任务详情",
  1835. "enablePullDownRefresh": true
  1836. }
  1837. },
  1838. {
  1839. "path": "agreement/agreement",
  1840. "style": {
  1841. "enablePullDownRefresh": true,
  1842. "navigationBarTitleText": "协议"
  1843. }
  1844. },
  1845. {
  1846. "path": "builtinBgImg/builtinBgImg",
  1847. "style": {
  1848. "enablePullDownRefresh": true,
  1849. "navigationBarTitleText": "选择背景图",
  1850. // #ifdef MP-WEIXIN
  1851. "navigationStyle": "custom",
  1852. // #endif
  1853. "app-plus": {
  1854. "titleNView": {
  1855. "buttons": [{
  1856. "float": "right",
  1857. "text": "完成",
  1858. "color": "#18b566",
  1859. "fontSize": "16"
  1860. }]
  1861. }
  1862. }
  1863. }
  1864. },
  1865. {
  1866. "path": "newFriend/newFriend",
  1867. "style": {
  1868. "navigationBarTitleText": "新的朋友",
  1869. "enablePullDownRefresh": false
  1870. }
  1871. },
  1872. {
  1873. "path": "webview/webview",
  1874. "style": {
  1875. "enablePullDownRefresh": true,
  1876. "navigationBarTitleText": "webview"
  1877. }
  1878. }
  1879. ]
  1880. }, {
  1881. "root": "pageB",
  1882. "pages": [{
  1883. "path": "news/news",
  1884. "style": {
  1885. "navigationBarTitleText": "行情信息",
  1886. "enablePullDownRefresh": true
  1887. }
  1888. },
  1889. {
  1890. "path": "info/info_list",
  1891. "style": {
  1892. "navigationBarTitleText": "期货信息",
  1893. "enablePullDownRefresh": false
  1894. }
  1895. },
  1896. {
  1897. "path": "contract/contract_detail",
  1898. "style": {
  1899. "navigationBarTitleText": "添加"
  1900. }
  1901. },
  1902. // {
  1903. // "path": "contract/warehousings",
  1904. // "style": {
  1905. // "navigationBarTitleText": "附件"
  1906. // }
  1907. // },
  1908. {
  1909. "path": "contract/contract",
  1910. "style": {
  1911. "navigationBarTitleText": "我的合同",
  1912. "enablePullDownRefresh": true
  1913. }
  1914. }, {
  1915. "path": "contract/look",
  1916. "style": {
  1917. "navigationBarTitleText": "发货",
  1918. "enablePullDownRefresh": true
  1919. }
  1920. },
  1921. {
  1922. "path": "contract/collectLook",
  1923. "style": {
  1924. "navigationBarTitleText": "收货",
  1925. "enablePullDownRefresh": true
  1926. }
  1927. },
  1928. {
  1929. "path": "contract/enclosures",
  1930. "style": {
  1931. "navigationBarTitleText": "附件",
  1932. "enablePullDownRefresh": true
  1933. }
  1934. },
  1935. {
  1936. "path": "video/look",
  1937. "style": {
  1938. "navigationBarTitleText": "观看"
  1939. }
  1940. },
  1941. {
  1942. "path": "video/broadcast",
  1943. "style": {
  1944. "navigationBarTitleText": "直播"
  1945. }
  1946. },
  1947. {
  1948. "path": "news/news_detail",
  1949. "style": {
  1950. "navigationBarTitleText": "新闻",
  1951. "enablePullDownRefresh": false
  1952. }
  1953. },
  1954. {
  1955. "path": "car/mycar_detail",
  1956. "style": {
  1957. "navigationBarTitleText": "车辆历史",
  1958. "enablePullDownRefresh": true
  1959. }
  1960. },
  1961. {
  1962. "path": "trust/trust",
  1963. "style": {
  1964. "navigationBarTitleText": "发布信息"
  1965. }
  1966. },
  1967. {
  1968. "path": "order/list",
  1969. "style": {
  1970. "navigationBarTitleText": "我的交易",
  1971. "app-plus": {
  1972. "bounce": "none"
  1973. }
  1974. }
  1975. },
  1976. {
  1977. "path": "order/detail",
  1978. "style": {
  1979. "navigationBarTitleText": "交易详情"
  1980. }
  1981. },
  1982. {
  1983. "path": "order/trace",
  1984. "style": {
  1985. "navigationBarTitleText": "查看物流"
  1986. }
  1987. },
  1988. {
  1989. "path": "qrcode/qrcode",
  1990. "style": {
  1991. "enablePullDownRefresh": true,
  1992. "navigationBarTitleText": "我的二维码"
  1993. }
  1994. }
  1995. ]
  1996. }, {
  1997. "root": "pageC",
  1998. "pages": [{
  1999. "path": "find/find",
  2000. "style": {
  2001. "navigationBarTitleText": "发现",
  2002. "enablePullDownRefresh": true
  2003. }
  2004. },
  2005. {
  2006. "path": "my/index",
  2007. "style": {
  2008. "enablePullDownRefresh": true,
  2009. "navigationBarTitleText": "我的",
  2010. "navigationStyle": "custom"
  2011. }
  2012. },
  2013. {
  2014. "path": "my/person",
  2015. "style": {
  2016. "enablePullDownRefresh": true,
  2017. "navigationBarTitleText": "个人信息"
  2018. }
  2019. }, {
  2020. "path": "my/common",
  2021. "style": {
  2022. "enablePullDownRefresh": true,
  2023. "navigationBarTitleText": "通用"
  2024. }
  2025. }, {
  2026. "path": "my/account",
  2027. "style": {
  2028. "enablePullDownRefresh": true,
  2029. "navigationBarTitleText": "账号与安全"
  2030. }
  2031. },
  2032. {
  2033. "path": "my/photo",
  2034. "style": {
  2035. "enablePullDownRefresh": true,
  2036. "navigationBarTitleText": "朋友圈相册"
  2037. }
  2038. },
  2039. {
  2040. "path": "my/face",
  2041. "style": {
  2042. "enablePullDownRefresh": true,
  2043. "navigationBarTitleText": "表情商店"
  2044. }
  2045. },
  2046. {
  2047. "path": "setings/setings",
  2048. "style": {
  2049. "enablePullDownRefresh": true,
  2050. "navigationBarTitleText": "设置"
  2051. }
  2052. },
  2053. {
  2054. "path": "businessCard/businessCard",
  2055. "style": {
  2056. "enablePullDownRefresh": true,
  2057. "navigationBarTitleText": "个人信息",
  2058. "app-plus": {
  2059. "titleNView": {
  2060. "backgroundColor": "#FFFFFF"
  2061. }
  2062. }
  2063. }
  2064. },
  2065. {
  2066. "path": "chat/userDetail",
  2067. "style": {
  2068. "enablePullDownRefresh": true,
  2069. "navigationBarTitleText": "",
  2070. "navigationStyle": "custom",
  2071. "app-plus": {
  2072. "titleView": false
  2073. }
  2074. }
  2075. }, {
  2076. "path": "chat/groupDetail",
  2077. "style": {
  2078. "enablePullDownRefresh": true,
  2079. "navigationBarTitleText": "",
  2080. "navigationStyle": "custom",
  2081. "app-plus": {
  2082. "titleView": false
  2083. }
  2084. }
  2085. },
  2086. {
  2087. "path": "chat/chat",
  2088. "style": {
  2089. "enablePullDownRefresh": true,
  2090. "app-plus": {
  2091. "softinputNavBar": "none",
  2092. "scrollIndicator": "none",
  2093. "softinputMode": "adjustPan",
  2094. "titleNView": {
  2095. "autoBackButton": false,
  2096. "backgroundColor": "#fff",
  2097. "buttons": [{
  2098. "fontSrc": "/pageC/static/iconfont/iconfont.ttf",
  2099. "float": "right",
  2100. "text": "\ue626"
  2101. },
  2102. {
  2103. "fontSrc": "/pageC/static/iconfont/iconfont.ttf",
  2104. "float": "left",
  2105. "text": "\ue6f2",
  2106. "color": "#303133",
  2107. "background": "rgba(255,255,255,0)"
  2108. }
  2109. ]
  2110. }
  2111. }
  2112. }
  2113. },
  2114. {
  2115. "path": "chat/moreMem",
  2116. "style": {
  2117. "enablePullDownRefresh": true,
  2118. "navigationBarTitleText": "所有成员"
  2119. }
  2120. },
  2121. {
  2122. "path": "chat/remind",
  2123. "style": {
  2124. "enablePullDownRefresh": true,
  2125. "navigationBarTitleText": "选择要提醒的人"
  2126. }
  2127. }, {
  2128. "path": "chat/forward",
  2129. "style": {
  2130. "enablePullDownRefresh": true,
  2131. "navigationBarTitleText": "选择一个聊天"
  2132. }
  2133. },
  2134. {
  2135. "path": "chat/updateGroupInfo",
  2136. "style": {
  2137. "enablePullDownRefresh": true,
  2138. "navigationBarTitleText": "",
  2139. "navigationStyle": "custom",
  2140. "app-plus": {
  2141. "titleView": false
  2142. }
  2143. }
  2144. }, {
  2145. "path": "chat/addGroupUser",
  2146. "style": {
  2147. "enablePullDownRefresh": true,
  2148. "navigationBarTitleText": "",
  2149. "navigationStyle": "custom",
  2150. "app-plus": {
  2151. "titleView": false
  2152. }
  2153. }
  2154. },
  2155. {
  2156. "path": "chat/detail",
  2157. "style": {
  2158. "enablePullDownRefresh": true,
  2159. "app-plus": {
  2160. "softinputNavBar": "none",
  2161. "softinputMode": "adjustPan",
  2162. "titleNView": {
  2163. "backgroundColor": "#EC624F",
  2164. "titleColor": "#fff",
  2165. "titleText": ""
  2166. }
  2167. }
  2168. }
  2169. },
  2170. {
  2171. "path": "firendCircle/firendCircle",
  2172. "style": {
  2173. "navigationBarTitleText": " ",
  2174. // #ifdef MP-WEIXIN
  2175. "navigationStyle": "custom",
  2176. // #endif
  2177. "transparentTitle": "auto",
  2178. "enablePullDownRefresh": true,
  2179. "app-plus": {
  2180. "titleNView": {
  2181. "type": "transparent",
  2182. "backgroundColor": "#f8f9f9",
  2183. "coverage": "45%", //h5不起作用
  2184. // #ifdef APP-PLUS
  2185. "backButton": {
  2186. "color": "#303133",
  2187. "background": "rgba(255,255,255,0)"
  2188. },
  2189. // #endif
  2190. "buttons": [{
  2191. "fontSrc": "/pageC/static/iconfont/iconfont.ttf",
  2192. "float": "right",
  2193. "text": "\ue609",
  2194. "color": "#303133",
  2195. "background": "rgba(255,255,255,0)"
  2196. }
  2197. // #ifdef H5
  2198. , {
  2199. "fontSrc": "/pageC/static/iconfont/iconfont.ttf",
  2200. "float": "left",
  2201. "text": "\ue6f2",
  2202. "color": "#303133",
  2203. "background": "rgba(255,255,255,0)"
  2204. }
  2205. // #endif
  2206. ]
  2207. }
  2208. }
  2209. }
  2210. }
  2211. ]
  2212. },
  2213. {
  2214. "root": "pageD",
  2215. "pages": [{
  2216. "path": "search/search",
  2217. "style": {
  2218. "enablePullDownRefresh": false,
  2219. "navigationBarTitleText": "",
  2220. "navigationStyle": "custom",
  2221. "app-plus": {
  2222. "titleView": false,
  2223. "animationType": "zoom-out",
  2224. "animationDuration": 300
  2225. }
  2226. }
  2227. },
  2228. {
  2229. "path": "releaseFirendCircle/releaseFirendCircle",
  2230. "style": {
  2231. "enablePullDownRefresh": true,
  2232. "navigationBarTitleText": "",
  2233. // #ifdef MP-WEIXIN
  2234. "navigationStyle": "custom",
  2235. // #endif
  2236. "app-plus": {
  2237. "titleNView": {
  2238. "buttons": [{
  2239. "float": "right",
  2240. "text": "发表",
  2241. "color": "#18b566",
  2242. "fontSize": "16"
  2243. }]
  2244. }
  2245. }
  2246. }
  2247. },
  2248. {
  2249. "path": "moreInforMation/moreInforMation",
  2250. "style": {
  2251. "enablePullDownRefresh": true,
  2252. "navigationBarTitleText": "更多信息"
  2253. }
  2254. },
  2255. {
  2256. "path": "groupItem/groupItem",
  2257. "style": {
  2258. "navigationBarTitleText": "我的群组",
  2259. "enablePullDownRefresh": false
  2260. }
  2261. },
  2262. {
  2263. "path": "chooseBgImg/chooseBgImg",
  2264. "style": {
  2265. "enablePullDownRefresh": true,
  2266. "navigationBarTitleText": "选择背景图"
  2267. }
  2268. }, {
  2269. "path": "identity/driverIdentity",
  2270. "style": {
  2271. "navigationBarTitleText": "司机认证",
  2272. "enablePullDownRefresh": false
  2273. }
  2274. },
  2275. {
  2276. "path": "identity/driverIdentityLook",
  2277. "style": {
  2278. "navigationBarTitleText": "认证信息",
  2279. "enablePullDownRefresh": false
  2280. }
  2281. },
  2282. {
  2283. "path": "identity/companyIdentity",
  2284. "style": {
  2285. "navigationBarTitleText": "粮商认证",
  2286. "enablePullDownRefresh": false
  2287. }
  2288. },
  2289. {
  2290. "path": "identity/companyIdentityLook",
  2291. "style": {
  2292. "navigationBarTitleText": "认证信息",
  2293. "enablePullDownRefresh": false
  2294. }
  2295. }, {
  2296. "path": "myRelease/sellGrain",
  2297. "style": {
  2298. "navigationBarTitleText": "卖粮",
  2299. "enablePullDownRefresh": false
  2300. }
  2301. },
  2302. {
  2303. "path": "myRelease/sellEdit",
  2304. "style": {
  2305. "navigationBarTitleText": "卖粮",
  2306. "enablePullDownRefresh": false
  2307. }
  2308. },
  2309. {
  2310. "path": "myRelease/buyGrain",
  2311. "style": {
  2312. "navigationBarTitleText": "买粮",
  2313. "enablePullDownRefresh": false
  2314. }
  2315. },
  2316. {
  2317. "path": "myRelease/sellDetails",
  2318. "style": {
  2319. "navigationBarTitleText": "卖粮详情",
  2320. "enablePullDownRefresh": false
  2321. }
  2322. },
  2323. {
  2324. "path": "myRelease/buyDetails",
  2325. "style": {
  2326. "navigationBarTitleText": "买粮详情",
  2327. "enablePullDownRefresh": false
  2328. }
  2329. }, {
  2330. "path": "warehousings/warehousings",
  2331. "style": {
  2332. "navigationBarTitleText": "入库",
  2333. "navigationStyle": "custom",
  2334. "enablePullDownRefresh": false
  2335. }
  2336. }
  2337. , {
  2338. "path": "warehousings/warehousingDetails",
  2339. "style": {
  2340. "navigationBarTitleText": "入库详情",
  2341. "enablePullDownRefresh": false
  2342. }
  2343. }, {
  2344. "path": "/warehousings/ex_warehouse",
  2345. "style": {
  2346. "navigationBarTitleText": "出库",
  2347. "enablePullDownRefresh": false
  2348. }
  2349. }, {
  2350. "path": "/warehousings/ex_warehouse_detail",
  2351. "style": {
  2352. "navigationBarTitleText": "出库详情",
  2353. "enablePullDownRefresh": false
  2354. }
  2355. }
  2356. ]
  2357. }
  2358. ],
  2359. "globalStyle": {
  2360. "navigationBarTextStyle": "black",
  2361. "navigationBarTitleText": "易粮易运",
  2362. "navigationBarBackgroundColor": "#FFFFFF"
  2363. // "backgroundColor": "#f8f8f8"
  2364. },
  2365. "condition": { //模式配置,仅开发期间生效
  2366. "current": 0, //当前激活的模式(list 的索引项)
  2367. "list": [{
  2368. "name": "", //模式名称
  2369. "path": "", //启动页面,必选
  2370. "query": "" //启动参数,在页面的onLoad函数里面得到
  2371. }]
  2372. }
  2373. }