pages.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/login/login",
  8. "style": {
  9. "navigationBarTitleText": ""
  10. }
  11. },
  12. {
  13. "path": "pages/login/apply-trial", // 申请试用
  14. "style": {
  15. "navigationStyle": "default", // 是否显示导航栏 default显示,custom不显示
  16. "navigationBarTitleText": "申请注册"
  17. }
  18. },
  19. {
  20. "path": "pages/index/index", // 货架
  21. "style": {
  22. "navigationBarTitleText": "货架",
  23. "enablePullDownRefresh": false
  24. }
  25. },
  26. {
  27. "path": "pages/login/userAuthYs",
  28. "style": {
  29. "navigationBarTitleText": "注意事项及服务协议"
  30. }
  31. },
  32. {
  33. "path": "pages/login/forget-pass",
  34. "style": {
  35. "navigationBarTitleText": "忘记密码"
  36. }
  37. },
  38. {
  39. "path": "pages/userCenter/index",
  40. "style": {
  41. "enablePullDownRefresh": false,
  42. "navigationStyle": "custom",
  43. // 将回弹属性关掉
  44. "bounce":"none"
  45. }
  46. },
  47. {
  48. "path": "pages/userCenter/changePwd", // 我的>修改密码
  49. "style": {
  50. "navigationBarTitleText": "修改密码"
  51. }
  52. },
  53. {
  54. "path": "pages/xtNotice/xtNotice", // 我的>消息
  55. "style": {
  56. "navigationBarTitleText": "消息",
  57. "navigationStyle":"custom",
  58. "app-plus":{
  59. "titleNView": {
  60. "titleAlign": "left",
  61. "buttons": [ //原生标题栏按钮配置,
  62. {
  63. "text": "设置全部已读" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  64. "fontSize": "14",
  65. "color": "#00aaff",
  66. "width":"100px"
  67. }
  68. ]
  69. }
  70. }
  71. }
  72. },
  73. {
  74. "path": "pages/xtNotice/xtNoticeDetail/xtNoticeDetail", // 我的>消息详情
  75. "style": {
  76. "navigationBarTitleText": "消息详情"
  77. }
  78. },
  79. {
  80. "path" : "pages/latePlay/chooseBulk",
  81. "style" :
  82. {
  83. "navigationBarTitleText": "选择货架",
  84. "enablePullDownRefresh": false
  85. }
  86. }
  87. ,{
  88. "path" : "pages/latePlay/chooseProduct",
  89. "style": {
  90. "navigationBarTitleText": "打印贴签",
  91. "navigationStyle":"custom",
  92. "app-plus":{
  93. "titleNView": {
  94. "titleAlign": "left",
  95. "buttons": [ //原生标题栏按钮配置,
  96. {
  97. "text": "\ue65a 批量打印" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  98. "fontSrc": "/static/iconfont/iconfont.ttf",
  99. "fontSize": "14",
  100. "color": "#00aaff",
  101. "width":"110px"
  102. }
  103. ]
  104. }
  105. }
  106. }
  107. },
  108. {
  109. "path" : "pages/index/printAbc",
  110. "style" :
  111. {
  112. "navigationBarTitleText": "打印ABC",
  113. "enablePullDownRefresh": false
  114. }
  115. },
  116. {
  117. "path" : "pages/shuntBackManage/shuntBackList",
  118. "style" :
  119. {
  120. "navigationBarTitleText": "调回管理",
  121. "navigationStyle":"custom",
  122. "app-plus":{
  123. "titleNView": {
  124. "titleAlign": "left",
  125. "buttons": [ //原生标题栏按钮配置,
  126. {
  127. "text": "\ue8c0 新增" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  128. "fontSrc": "/static/iconfont/iconfont.ttf",
  129. "fontSize": "14",
  130. "color": "#00aaff",
  131. "width":"90px"
  132. }
  133. ]
  134. }
  135. }
  136. }
  137. },
  138. {
  139. "path" : "pages/shuntBackManage/cancellingStocks",
  140. "style" :
  141. {
  142. "navigationBarTitleText": "调回退库",
  143. "enablePullDownRefresh": false,
  144. // 将回弹属性关掉
  145. "bounce":"none",
  146. "navigationStyle":"custom",
  147. "app-plus":{
  148. "titleNView": {
  149. "titleAlign": "left",
  150. "buttons": [ //原生标题栏按钮配置,
  151. {
  152. "text": "\ue859 生成销售退货单" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  153. "fontSrc": "/static/iconfont/iconfont.ttf",
  154. "fontSize": "14",
  155. "color": "#ffffff",
  156. "width":"140px"
  157. }
  158. ]
  159. }
  160. }
  161. }
  162. },
  163. {
  164. "path" : "pages/shuntBackManage/detail",
  165. "style" :
  166. {
  167. "navigationBarTitleText": "调回详情",
  168. "enablePullDownRefresh": false,
  169. "navigationStyle":"custom",
  170. "app-plus":{
  171. "titleNView": {
  172. "titleAlign": "left",
  173. "buttons": [ //原生标题栏按钮配置,
  174. {
  175. "text": "\ue859 生成销售退货单" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  176. "fontSrc": "/static/iconfont/iconfont.ttf",
  177. "fontSize": "14",
  178. "color": "#ffffff",
  179. "width":"140px"
  180. }
  181. ]
  182. }
  183. }
  184. }
  185. },
  186. {
  187. "path" : "pages/shuntBackManage/shelfList",
  188. "style" :
  189. {
  190. "navigationBarTitleText": "选择货架",
  191. "enablePullDownRefresh": false
  192. }
  193. },
  194. {
  195. "path" : "pages/shuntBackManage/addBackOrder",
  196. "style" :
  197. {
  198. "navigationBarTitleText": "新增调回单",
  199. "enablePullDownRefresh": false
  200. }
  201. },
  202. {
  203. "path" : "pages/replenishmentManage/replenishmentList",
  204. "style" :
  205. {
  206. "navigationBarTitleText": "补货管理",
  207. "navigationStyle":"custom",
  208. "app-plus":{
  209. "titleNView": {
  210. "titleAlign": "left",
  211. "buttons": [ //原生标题栏按钮配置,
  212. {
  213. "text": "\ue64e 待补货" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  214. "fontSrc": "/static/iconfont/iconfont.ttf",
  215. "fontSize": "14",
  216. "color": "#ffffff",
  217. "width":"90px"
  218. }
  219. ]
  220. }
  221. }
  222. }
  223. },
  224. {
  225. "path" : "pages/soldOut/shelfList",
  226. "style" :
  227. {
  228. "navigationBarTitleText": "待补货产品",
  229. "enablePullDownRefresh": false
  230. }
  231. },
  232. {
  233. "path" : "pages/soldOut/creatOrder",
  234. "style" :
  235. {
  236. "navigationBarTitleText": "待补货产品",
  237. "enablePullDownRefresh": false
  238. }
  239. },
  240. {
  241. "path" : "pages/replenishmentManage/confirm",
  242. "style" :
  243. {
  244. "navigationBarTitleText": "补货确认",
  245. "enablePullDownRefresh": false
  246. }
  247. },
  248. {
  249. "path" : "pages/replenishmentManage/outWarehousing",
  250. "style": {
  251. "navigationStyle": "custom" ,// 隐藏系统导航栏
  252. "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  253. }
  254. },
  255. {
  256. "path" : "pages/replenishmentManage/manualPrint",
  257. "style" :
  258. {
  259. "navigationBarTitleText": "手动打印",
  260. "enablePullDownRefresh": false
  261. }
  262. },
  263. {
  264. "path" : "pages/replenishmentManage/scanCodePrint",
  265. "style" :
  266. {
  267. "navigationBarTitleText": "扫码打印",
  268. "enablePullDownRefresh": false
  269. }
  270. },
  271. {
  272. "path" : "pages/replenishmentManage/sendOutGoods",
  273. "style" :
  274. {
  275. "navigationBarTitleText": "扫码出库",
  276. "enablePullDownRefresh": false
  277. }
  278. },
  279. {
  280. "path" : "pages/replenishmentManage/signWarehousing",
  281. "style": {
  282. "navigationStyle": "custom" ,// 隐藏系统导航栏
  283. "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  284. }
  285. },
  286. {
  287. "path" : "pages/replenishmentManage/detail",
  288. "style": {
  289. "navigationStyle": "custom" ,// 隐藏系统导航栏
  290. "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  291. }
  292. }
  293. ,{
  294. "path" : "pages/common/printTag/printTag",
  295. "style" :
  296. {
  297. "navigationBarTitleText": "打印标签",
  298. "enablePullDownRefresh": false
  299. }
  300. },
  301. {
  302. "path": "pages/stock/index", // 库存
  303. "style": {
  304. "navigationBarTitleText": "库存",
  305. "enablePullDownRefresh": false
  306. }
  307. },
  308. {
  309. "path": "pages/stock/stockSearch", // 库存查询
  310. "style": {
  311. "navigationBarTitleText": "库存查询",
  312. "enablePullDownRefresh": false
  313. }
  314. },
  315. {
  316. "path": "pages/stock/detaiList", // 库存详情列表
  317. "style": {
  318. "navigationBarTitleText": "库存详情",
  319. "enablePullDownRefresh": false
  320. }
  321. },
  322. {
  323. "path": "pages/stock/stockDetail", // 库存详情
  324. "style": {
  325. "navigationBarTitleText": "库存详情",
  326. "enablePullDownRefresh": false
  327. }
  328. },
  329. {
  330. "path": "pages/stock/warehouseDetail", // 出入库明细详情
  331. "style": {
  332. "navigationBarTitleText": "出入库明细",
  333. "enablePullDownRefresh": false
  334. }
  335. },
  336. {
  337. "path": "pages/sales/index", // 销售
  338. "style": {
  339. "navigationBarTitleText": "销售",
  340. "enablePullDownRefresh": false
  341. }
  342. },
  343. {
  344. "path": "pages/sales/list", // 销售列表
  345. "style": {
  346. "navigationBarTitleText": "销售单",
  347. "navigationStyle":"custom",
  348. "app-plus":{
  349. "titleNView": {
  350. "titleAlign": "left",
  351. "buttons": [ //原生标题栏按钮配置,
  352. {
  353. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  354. "fontSrc": "/static/iconfont/iconfont.ttf",
  355. "fontSize": "14",
  356. "width":"90px"
  357. }
  358. ]
  359. }
  360. }
  361. }
  362. },
  363. {
  364. "path": "pages/sales/addSales", // 新增销售单
  365. "style": {
  366. "navigationBarTitleText": "新增销售单",
  367. "enablePullDownRefresh": false
  368. }
  369. },
  370. {
  371. "path": "pages/sales/edit", // 新增销售单/编辑销售单/销售单详情
  372. "style": {
  373. "navigationBarTitleText": "销售单",
  374. "enablePullDownRefresh": false
  375. }
  376. },
  377. {
  378. "path": "pages/sales/chooseProduct", // 选择产品
  379. "style": {
  380. "navigationBarTitleText": "选择产品",
  381. "navigationStyle":"custom",
  382. "app-plus":{
  383. "titleNView": {
  384. "titleAlign": "left",
  385. "buttons": [ //原生标题栏按钮配置,
  386. {
  387. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  388. "fontSrc": "/static/iconfont/iconfont.ttf",
  389. "fontSize": "14",
  390. "width":"90px"
  391. }
  392. ]
  393. }
  394. }
  395. }
  396. },
  397. {
  398. "path": "pages/sales/chooseCustomer", // 销售单 选择客户
  399. "style": {
  400. "navigationBarTitleText": "选择客户",
  401. "enablePullDownRefresh": false
  402. }
  403. },
  404. {
  405. "path": "pages/sales/addCustomer", // 销售单 选择客户
  406. "style": {
  407. "navigationBarTitleText": "新增客户",
  408. "enablePullDownRefresh": false
  409. }
  410. },
  411. {
  412. "path": "pages/sales/productPricing", // 产品报价
  413. "style": {
  414. "navigationBarTitleText": "产品报价",
  415. "navigationStyle":"custom",
  416. "app-plus":{
  417. "titleNView": {
  418. "titleAlign": "left",
  419. "buttons": [ //原生标题栏按钮配置,
  420. {
  421. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  422. "fontSrc": "/static/iconfont/iconfont.ttf",
  423. "fontSize": "14",
  424. "width":"90px"
  425. }
  426. ]
  427. }
  428. }
  429. }
  430. },
  431. {
  432. "path" : "pages/webviews/openview",
  433. "style" :
  434. {
  435. "navigationBarTitleText": "网页",
  436. "enablePullDownRefresh": false
  437. }
  438. }
  439. ,{
  440. "path" : "pages/sales/salesRecord",
  441. "style" :
  442. {
  443. "navigationBarTitleText": "销售记录",
  444. "enablePullDownRefresh": false
  445. }
  446. }
  447. ,{
  448. "path" : "pages/approveStore/list",
  449. "style" :
  450. {
  451. "navigationBarTitleText": "门店审核",
  452. "enablePullDownRefresh": false
  453. }
  454. }
  455. ,{
  456. "path" : "pages/approveStore/authPass",
  457. "style" :
  458. {
  459. "navigationBarTitleText": "审核通过",
  460. "enablePullDownRefresh": false
  461. }
  462. }
  463. ,{
  464. "path" : "pages/approveStore/detail",
  465. "style" :
  466. {
  467. "navigationBarTitleText": "门店审核详情",
  468. "enablePullDownRefresh": false
  469. }
  470. }
  471. ,{
  472. "path" : "pages/shelfSetting/shelfList",
  473. "style" :
  474. {
  475. "navigationBarTitleText": "选择货架",
  476. "enablePullDownRefresh": false
  477. }
  478. }
  479. ,{
  480. "path" : "pages/shelfSetting/shelfSet",
  481. "style": {
  482. "navigationStyle": "custom" ,// 隐藏系统导航栏
  483. "navigationBarTextStyle": "black" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  484. }
  485. }
  486. ,{
  487. "path" : "pages/shelfSetting/editShelf",
  488. "style" :
  489. {
  490. "navigationBarTitleText": "修改货架名称",
  491. "enablePullDownRefresh": false
  492. }
  493. }
  494. ,{
  495. "path" : "pages/shelfSetting/searchShelfHw",
  496. "style" :
  497. {
  498. "navigationBarTitleText": "按产品搜索",
  499. "enablePullDownRefresh": false
  500. }
  501. }
  502. ,{
  503. "path" : "pages/shelfSetting/editShelfHw",
  504. "style" :
  505. {
  506. "navigationBarTitleText": "编辑货位",
  507. "enablePullDownRefresh": false
  508. }
  509. }
  510. ,{
  511. "path" : "pages/shelfSetting/addShelfHw",
  512. "style" :
  513. {
  514. "navigationBarTitleText": "新增货位",
  515. "enablePullDownRefresh": false
  516. }
  517. }
  518. ,{
  519. "path" : "pages/shelfSetting/bindProduct",
  520. "style" :
  521. {
  522. "navigationBarTitleText": "绑定产品",
  523. "enablePullDownRefresh": false
  524. }
  525. }
  526. ,{
  527. "path" : "pages/shelfSetting/batchPrint",
  528. "style" :
  529. {
  530. "navigationBarTitleText": "批量打印",
  531. "enablePullDownRefresh": false
  532. }
  533. }
  534. ,{
  535. "path" : "pages/shelfSetting/quickReplenish",
  536. "style" :
  537. {
  538. "navigationBarTitleText": "快速补货",
  539. "enablePullDownRefresh": false
  540. }
  541. }
  542. ,{
  543. "path" : "pages/stockCheck/shelfList",
  544. "style" :
  545. {
  546. "navigationBarTitleText": "选择货架",
  547. "enablePullDownRefresh": false
  548. }
  549. }
  550. ,{
  551. "path" : "pages/stockCheck/startCheck",
  552. "style": {
  553. "navigationBarTitleText": "库存盘点",
  554. "navigationStyle":"custom",
  555. "app-plus":{
  556. "titleNView": {
  557. "titleAlign": "left",
  558. "buttons": [ //原生标题栏按钮配置,
  559. {
  560. "text": "\ue694 盘点历史" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  561. "fontSrc": "/static/iconfont/iconfont.ttf",
  562. "fontSize": "14",
  563. "color": "#00aaff",
  564. "width":"120px"
  565. }
  566. ]
  567. }
  568. }
  569. }
  570. }
  571. ,{
  572. "path" : "pages/stockCheck/submitStockCheck",
  573. "style" :
  574. {
  575. "navigationBarTitleText": "提交盘点单",
  576. "enablePullDownRefresh": false
  577. }
  578. }
  579. ,{
  580. "path" : "pages/stockCheck/checkRecord",
  581. "style" :
  582. {
  583. "navigationBarTitleText": "盘点历史",
  584. "enablePullDownRefresh": false
  585. }
  586. }
  587. ,{
  588. "path" : "pages/batchShelves/index",
  589. "style" :
  590. {
  591. "navigationBarTitleText": "批量上架—选层",
  592. "enablePullDownRefresh": false
  593. }
  594. }
  595. ,{
  596. "path" : "pages/batchShelves/scanProduct",
  597. "style" :
  598. {
  599. "navigationBarTitleText": "扫描条形码",
  600. "enablePullDownRefresh": false,
  601. "app-plus":{
  602. "titleNView": {
  603. "titleAlign": "left",
  604. "buttons": [ //原生标题栏按钮配置,
  605. {
  606. "text": "\ue694 搜索" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  607. "fontSrc": "/static/iconfont/iconfont.ttf",
  608. "fontSize": "16",
  609. "color": "#00aaff",
  610. "width":"80px"
  611. }
  612. ]
  613. }
  614. }
  615. }
  616. }
  617. ,{
  618. "path" : "pages/batchShelves/searchProduct",
  619. "style" :
  620. {
  621. "navigationBarTitleText": "产品编码搜索",
  622. "enablePullDownRefresh": false,
  623. "app-plus":{
  624. "titleNView": {
  625. "titleAlign": "left",
  626. "buttons": [ //原生标题栏按钮配置,
  627. {
  628. "text": "\ue617 扫码" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  629. "fontSrc": "/static/iconfont/iconfont.ttf",
  630. "fontSize": "16",
  631. "color": "#00aaff",
  632. "width":"80px"
  633. }
  634. ]
  635. }
  636. }
  637. }
  638. }
  639. ,{
  640. "path" : "pages/batchShelves/cartList",
  641. "style" :
  642. {
  643. "navigationBarTitleText": "批量上架",
  644. "enablePullDownRefresh": false,
  645. "app-plus":{
  646. "titleNView": {
  647. "titleAlign": "left",
  648. "buttons": [ //原生标题栏按钮配置,
  649. {
  650. "text": "\ue67a 上架" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  651. "fontSrc": "/static/iconfont/iconfont.ttf",
  652. "fontSize": "14",
  653. "color": "#00aaff",
  654. "width":"80px"
  655. },
  656. {
  657. "text": "\ue65a 打印" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  658. "fontSrc": "/static/iconfont/iconfont.ttf",
  659. "fontSize": "14",
  660. "color": "#00aaff",
  661. "width":"auto"
  662. }
  663. ]
  664. }
  665. }
  666. }
  667. },{
  668. "path" : "pages/batchShelves/editShelfHw",
  669. "style" :
  670. {
  671. "navigationBarTitleText": "编辑上架信息",
  672. "enablePullDownRefresh": false
  673. }
  674. }
  675. ,{
  676. "path" : "pages/batchShelves/setProductCost",
  677. "style" :
  678. {
  679. "navigationBarTitleText": "结算价设置",
  680. "enablePullDownRefresh": false
  681. }
  682. }
  683. ,{
  684. "path" : "pages/batchShelves/batchPrint/batchPrint",
  685. "style" :
  686. {
  687. "navigationBarTitleText": "批量打印",
  688. "enablePullDownRefresh": false
  689. }
  690. }
  691. ,{
  692. "path" : "pages/shelfOrder/shelfOrder",
  693. "style" :
  694. {
  695. "navigationBarTitleText": "货架订单",
  696. "enablePullDownRefresh": false,
  697. "app-plus":{
  698. "titleNView": {
  699. "titleAlign": "left",
  700. "buttons": [ //原生标题栏按钮配置,
  701. {
  702. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  703. "fontSrc": "/static/iconfont/iconfont.ttf",
  704. "fontSize": "14",
  705. "width":"80px"
  706. }
  707. ]
  708. }
  709. }
  710. }
  711. }
  712. ,{
  713. "path" : "pages/shelfOrder/orderDetail",
  714. "style" :
  715. {
  716. "navigationBarTitleText": "货架订单详情",
  717. "enablePullDownRefresh": false
  718. }
  719. }
  720. ,{
  721. "path" : "pages/statistics/index",
  722. "style" :
  723. {
  724. "navigationBarTitleText": "销售统计",
  725. "navigationStyle":"custom",
  726. "app-plus":{
  727. "titleNView": {
  728. "titleAlign": "left",
  729. "buttons": [ //原生标题栏按钮配置,
  730. {
  731. "text": "\ue626 本周" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  732. "fontSrc": "/static/iconfont/iconfont.ttf",
  733. "fontSize": "14",
  734. "color": "#00aaff",
  735. "width":"90px"
  736. }
  737. ]
  738. }
  739. }
  740. }
  741. }
  742. ,{
  743. "path" : "pages/statistics/chooseShelf",
  744. "style" :
  745. {
  746. "navigationBarTitleText": "选择客户",
  747. "enablePullDownRefresh": false
  748. }
  749. }
  750. ,{
  751. "path" : "pages/vinAnalyse/shelfList",
  752. "style" :
  753. {
  754. "navigationBarTitleText": "选择货架",
  755. "enablePullDownRefresh": false
  756. }
  757. }
  758. ,{
  759. "path" : "pages/vinAnalyse/fitProductlist",
  760. "style" :
  761. {
  762. "navigationBarTitleText": "适配产品统计",
  763. "navigationStyle":"custom",
  764. "app-plus":{
  765. "titleNView": {
  766. "titletext": "适配产品统计"
  767. }
  768. }
  769. }
  770. }
  771. ,{
  772. "path" : "pages/vinAnalyse/shelfAnalyse",
  773. "style": {
  774. "navigationStyle":"custom",
  775. "app-plus":{
  776. "titleNView": {
  777. "titletext":"VIN分析",
  778. "titleAlign": "left",
  779. "buttons": [ //原生标题栏按钮配置,
  780. {
  781. "text": "\ue626 适配产品统计" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  782. "fontSrc": "/static/iconfont/iconfont.ttf",
  783. "fontSize": "14",
  784. "color": "#00aaff",
  785. "width":"140px"
  786. }
  787. ]
  788. }
  789. }
  790. }
  791. }
  792. ],
  793. "globalStyle": {
  794. "navigationBarTextStyle": "black",
  795. "navigationBarTitleText": "iscm",
  796. "navigationBarBackgroundColor": "#FFFFFF",
  797. "backgroundColor": "#f2f2f2",
  798. "app-plus": {
  799. // 将回弹属性关掉
  800. "bounce": "none",
  801. "scrollIndicator": "none",
  802. "titleAlign": "left",
  803. "disableSwipeBack": true,
  804. "softinputMode":"adjustResize"
  805. }
  806. },
  807. "tabBar": {
  808. "fontSize": "14px",
  809. "list": [
  810. {
  811. "pagePath": "pages/sales/index",
  812. "text": "销售",
  813. "visible": true
  814. },
  815. {
  816. "pagePath": "pages/stock/index",
  817. "text": "库存",
  818. "visible": true
  819. },
  820. {
  821. "pagePath": "pages/index/index",
  822. "text": "货架",
  823. "visible": true
  824. },
  825. {
  826. "pagePath": "pages/statistics/index",
  827. "text": "统计",
  828. "visible": true
  829. },
  830. {
  831. "pagePath": "pages/userCenter/index",
  832. "text": "我的",
  833. "visible": true
  834. }
  835. ]
  836. }
  837. }