pages.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874
  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. "width":"100px"
  217. }
  218. ]
  219. }
  220. }
  221. }
  222. },
  223. {
  224. "path" : "pages/replenishmentManage/confirm",
  225. "style" :
  226. {
  227. "navigationBarTitleText": "补货确认",
  228. "enablePullDownRefresh": false
  229. }
  230. },
  231. {
  232. "path" : "pages/replenishmentManage/outWarehousing",
  233. "style" :
  234. {
  235. "navigationBarTitleText": "补货出库",
  236. "navigationStyle":"custom",
  237. "app-plus":{
  238. "titleNView": {
  239. "titleAlign": "left",
  240. "buttons": [ //原生标题栏按钮配置,
  241. {
  242. "text": "\ue603 生成销售单" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  243. "fontSrc": "/static/iconfont/iconfont.ttf",
  244. "fontSize": "14",
  245. "color": "#ffffff",
  246. "width":"120px"
  247. }
  248. ]
  249. }
  250. }
  251. }
  252. },
  253. {
  254. "path" : "pages/replenishmentManage/manualPrint",
  255. "style" :
  256. {
  257. "navigationBarTitleText": "手动打印",
  258. "enablePullDownRefresh": false
  259. }
  260. },
  261. {
  262. "path" : "pages/replenishmentManage/scanCodePrint",
  263. "style" :
  264. {
  265. "navigationBarTitleText": "扫码打印",
  266. "enablePullDownRefresh": false
  267. }
  268. },
  269. {
  270. "path" : "pages/replenishmentManage/sendOutGoods",
  271. "style" :
  272. {
  273. "navigationBarTitleText": "扫码出库",
  274. "enablePullDownRefresh": false
  275. }
  276. },
  277. {
  278. "path" : "pages/replenishmentManage/signWarehousing",
  279. "style" :
  280. {
  281. "navigationBarTitleText": "补货签收",
  282. "navigationStyle":"custom",
  283. "app-plus":{
  284. "titleNView": {
  285. "titleAlign": "left",
  286. "buttons": [ //原生标题栏按钮配置,
  287. {
  288. "text": "\ue603 生成销售单" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  289. "fontSrc": "/static/iconfont/iconfont.ttf",
  290. "fontSize": "14",
  291. "color": "#ffffff",
  292. "width":"120px"
  293. }
  294. ]
  295. }
  296. }
  297. }
  298. },
  299. {
  300. "path" : "pages/replenishmentManage/detail",
  301. "style": {
  302. "navigationStyle": "custom" ,// 隐藏系统导航栏
  303. "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  304. }
  305. }
  306. ,{
  307. "path" : "pages/common/printTag/printTag",
  308. "style" :
  309. {
  310. "navigationBarTitleText": "打印标签",
  311. "enablePullDownRefresh": false
  312. }
  313. },
  314. {
  315. "path": "pages/stock/index", // 库存
  316. "style": {
  317. "navigationBarTitleText": "库存",
  318. "enablePullDownRefresh": false
  319. }
  320. },
  321. {
  322. "path": "pages/stock/stockSearch", // 库存查询
  323. "style": {
  324. "navigationBarTitleText": "库存查询",
  325. "enablePullDownRefresh": false
  326. }
  327. },
  328. {
  329. "path": "pages/stock/detaiList", // 库存详情列表
  330. "style": {
  331. "navigationBarTitleText": "库存详情",
  332. "enablePullDownRefresh": false
  333. }
  334. },
  335. {
  336. "path": "pages/stock/stockDetail", // 库存详情
  337. "style": {
  338. "navigationBarTitleText": "库存详情",
  339. "enablePullDownRefresh": false
  340. }
  341. },
  342. {
  343. "path": "pages/stock/warehouseDetail", // 出入库明细详情
  344. "style": {
  345. "navigationBarTitleText": "出入库明细",
  346. "enablePullDownRefresh": false
  347. }
  348. },
  349. {
  350. "path": "pages/sales/index", // 销售
  351. "style": {
  352. "navigationBarTitleText": "销售",
  353. "enablePullDownRefresh": false
  354. }
  355. },
  356. {
  357. "path": "pages/sales/list", // 销售列表
  358. "style": {
  359. "navigationBarTitleText": "销售单",
  360. "navigationStyle":"custom",
  361. "app-plus":{
  362. "titleNView": {
  363. "titleAlign": "left",
  364. "buttons": [ //原生标题栏按钮配置,
  365. {
  366. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  367. "fontSrc": "/static/iconfont/iconfont.ttf",
  368. "fontSize": "14",
  369. "width":"90px"
  370. }
  371. ]
  372. }
  373. }
  374. }
  375. },
  376. {
  377. "path": "pages/sales/addSales", // 新增销售单
  378. "style": {
  379. "navigationBarTitleText": "新增销售单",
  380. "enablePullDownRefresh": false
  381. }
  382. },
  383. {
  384. "path": "pages/sales/edit", // 新增销售单/编辑销售单/销售单详情
  385. "style": {
  386. "navigationBarTitleText": "销售单",
  387. "enablePullDownRefresh": false
  388. }
  389. },
  390. {
  391. "path": "pages/sales/chooseProduct", // 选择产品
  392. "style": {
  393. "navigationBarTitleText": "选择产品",
  394. "navigationStyle":"custom",
  395. "app-plus":{
  396. "titleNView": {
  397. "titleAlign": "left",
  398. "buttons": [ //原生标题栏按钮配置,
  399. {
  400. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  401. "fontSrc": "/static/iconfont/iconfont.ttf",
  402. "fontSize": "14",
  403. "width":"90px"
  404. }
  405. ]
  406. }
  407. }
  408. }
  409. },
  410. {
  411. "path": "pages/sales/chooseCustomer", // 销售单 选择客户
  412. "style": {
  413. "navigationBarTitleText": "选择客户",
  414. "enablePullDownRefresh": false
  415. }
  416. },
  417. {
  418. "path": "pages/sales/addCustomer", // 销售单 选择客户
  419. "style": {
  420. "navigationBarTitleText": "新增客户",
  421. "enablePullDownRefresh": false
  422. }
  423. },
  424. {
  425. "path": "pages/sales/productPricing", // 产品报价
  426. "style": {
  427. "navigationBarTitleText": "产品报价",
  428. "navigationStyle":"custom",
  429. "app-plus":{
  430. "titleNView": {
  431. "titleAlign": "left",
  432. "buttons": [ //原生标题栏按钮配置,
  433. {
  434. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  435. "fontSrc": "/static/iconfont/iconfont.ttf",
  436. "fontSize": "14",
  437. "width":"90px"
  438. }
  439. ]
  440. }
  441. }
  442. }
  443. },
  444. {
  445. "path" : "pages/webviews/openview",
  446. "style" :
  447. {
  448. "navigationBarTitleText": "网页",
  449. "enablePullDownRefresh": false
  450. }
  451. }
  452. ,{
  453. "path" : "pages/sales/salesRecord",
  454. "style" :
  455. {
  456. "navigationBarTitleText": "销售记录",
  457. "enablePullDownRefresh": false
  458. }
  459. }
  460. ,{
  461. "path" : "pages/approveStore/list",
  462. "style" :
  463. {
  464. "navigationBarTitleText": "门店审核",
  465. "enablePullDownRefresh": false
  466. }
  467. }
  468. ,{
  469. "path" : "pages/approveStore/authPass",
  470. "style" :
  471. {
  472. "navigationBarTitleText": "审核通过",
  473. "enablePullDownRefresh": false
  474. }
  475. }
  476. ,{
  477. "path" : "pages/approveStore/detail",
  478. "style" :
  479. {
  480. "navigationBarTitleText": "门店审核详情",
  481. "enablePullDownRefresh": false
  482. }
  483. }
  484. ,{
  485. "path" : "pages/shelfSetting/shelfList",
  486. "style" :
  487. {
  488. "navigationBarTitleText": "选择货架",
  489. "enablePullDownRefresh": false
  490. }
  491. }
  492. ,{
  493. "path" : "pages/shelfSetting/shelfSet",
  494. "style": {
  495. "navigationStyle": "custom" ,// 隐藏系统导航栏
  496. "navigationBarTextStyle": "black" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  497. }
  498. }
  499. ,{
  500. "path" : "pages/shelfSetting/editShelf",
  501. "style" :
  502. {
  503. "navigationBarTitleText": "修改货架名称",
  504. "enablePullDownRefresh": false
  505. }
  506. }
  507. ,{
  508. "path" : "pages/shelfSetting/searchShelfHw",
  509. "style" :
  510. {
  511. "navigationBarTitleText": "按产品搜索",
  512. "enablePullDownRefresh": false
  513. }
  514. }
  515. ,{
  516. "path" : "pages/shelfSetting/editShelfHw",
  517. "style" :
  518. {
  519. "navigationBarTitleText": "编辑货位",
  520. "enablePullDownRefresh": false
  521. }
  522. }
  523. ,{
  524. "path" : "pages/shelfSetting/addShelfHw",
  525. "style" :
  526. {
  527. "navigationBarTitleText": "新增货位",
  528. "enablePullDownRefresh": false
  529. }
  530. }
  531. ,{
  532. "path" : "pages/shelfSetting/bindProduct",
  533. "style" :
  534. {
  535. "navigationBarTitleText": "绑定产品",
  536. "enablePullDownRefresh": false
  537. }
  538. }
  539. ,{
  540. "path" : "pages/shelfSetting/batchPrint",
  541. "style" :
  542. {
  543. "navigationBarTitleText": "批量打印",
  544. "enablePullDownRefresh": false
  545. }
  546. }
  547. ,{
  548. "path" : "pages/shelfSetting/quickReplenish",
  549. "style" :
  550. {
  551. "navigationBarTitleText": "快速补货",
  552. "enablePullDownRefresh": false
  553. }
  554. }
  555. ,{
  556. "path" : "pages/stockCheck/shelfList",
  557. "style" :
  558. {
  559. "navigationBarTitleText": "选择货架",
  560. "enablePullDownRefresh": false
  561. }
  562. }
  563. ,{
  564. "path" : "pages/stockCheck/startCheck",
  565. "style": {
  566. "navigationBarTitleText": "库存盘点",
  567. "navigationStyle":"custom",
  568. "app-plus":{
  569. "titleNView": {
  570. "titleAlign": "left",
  571. "buttons": [ //原生标题栏按钮配置,
  572. {
  573. "text": "\ue694 盘点历史" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  574. "fontSrc": "/static/iconfont/iconfont.ttf",
  575. "fontSize": "14",
  576. "color": "#00aaff",
  577. "width":"120px"
  578. }
  579. ]
  580. }
  581. }
  582. }
  583. }
  584. ,{
  585. "path" : "pages/stockCheck/submitStockCheck",
  586. "style" :
  587. {
  588. "navigationBarTitleText": "提交盘点单",
  589. "enablePullDownRefresh": false
  590. }
  591. }
  592. ,{
  593. "path" : "pages/stockCheck/checkRecord",
  594. "style" :
  595. {
  596. "navigationBarTitleText": "盘点历史",
  597. "enablePullDownRefresh": false
  598. }
  599. }
  600. ,{
  601. "path" : "pages/batchShelves/index",
  602. "style" :
  603. {
  604. "navigationBarTitleText": "批量上架—选层",
  605. "enablePullDownRefresh": false
  606. }
  607. }
  608. ,{
  609. "path" : "pages/batchShelves/scanProduct",
  610. "style" :
  611. {
  612. "navigationBarTitleText": "扫描条形码",
  613. "enablePullDownRefresh": false,
  614. "app-plus":{
  615. "titleNView": {
  616. "titleAlign": "left",
  617. "buttons": [ //原生标题栏按钮配置,
  618. {
  619. "text": "\ue694 搜索" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  620. "fontSrc": "/static/iconfont/iconfont.ttf",
  621. "fontSize": "16",
  622. "color": "#00aaff",
  623. "width":"80px"
  624. }
  625. ]
  626. }
  627. }
  628. }
  629. }
  630. ,{
  631. "path" : "pages/batchShelves/searchProduct",
  632. "style" :
  633. {
  634. "navigationBarTitleText": "产品编码搜索",
  635. "enablePullDownRefresh": false,
  636. "app-plus":{
  637. "titleNView": {
  638. "titleAlign": "left",
  639. "buttons": [ //原生标题栏按钮配置,
  640. {
  641. "text": "\ue617 扫码" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  642. "fontSrc": "/static/iconfont/iconfont.ttf",
  643. "fontSize": "16",
  644. "color": "#00aaff",
  645. "width":"80px"
  646. }
  647. ]
  648. }
  649. }
  650. }
  651. }
  652. ,{
  653. "path" : "pages/batchShelves/cartList",
  654. "style" :
  655. {
  656. "navigationBarTitleText": "批量上架",
  657. "enablePullDownRefresh": false,
  658. "app-plus":{
  659. "titleNView": {
  660. "titleAlign": "left",
  661. "buttons": [ //原生标题栏按钮配置,
  662. {
  663. "text": "\ue67a 上架" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  664. "fontSrc": "/static/iconfont/iconfont.ttf",
  665. "fontSize": "14",
  666. "color": "#00aaff",
  667. "width":"80px"
  668. },
  669. {
  670. "text": "\ue65a 打印" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  671. "fontSrc": "/static/iconfont/iconfont.ttf",
  672. "fontSize": "14",
  673. "color": "#00aaff",
  674. "width":"auto"
  675. }
  676. ]
  677. }
  678. }
  679. }
  680. },{
  681. "path" : "pages/batchShelves/editShelfHw",
  682. "style" :
  683. {
  684. "navigationBarTitleText": "编辑上架信息",
  685. "enablePullDownRefresh": false
  686. }
  687. }
  688. ,{
  689. "path" : "pages/batchShelves/setProductCost",
  690. "style" :
  691. {
  692. "navigationBarTitleText": "结算价设置",
  693. "enablePullDownRefresh": false
  694. }
  695. }
  696. ,{
  697. "path" : "pages/batchShelves/batchPrint/batchPrint",
  698. "style" :
  699. {
  700. "navigationBarTitleText": "批量打印",
  701. "enablePullDownRefresh": false
  702. }
  703. }
  704. ,{
  705. "path" : "pages/shelfOrder/shelfOrder",
  706. "style" :
  707. {
  708. "navigationBarTitleText": "货架订单",
  709. "enablePullDownRefresh": false,
  710. "app-plus":{
  711. "titleNView": {
  712. "titleAlign": "left",
  713. "buttons": [ //原生标题栏按钮配置,
  714. {
  715. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  716. "fontSrc": "/static/iconfont/iconfont.ttf",
  717. "fontSize": "14",
  718. "width":"80px"
  719. }
  720. ]
  721. }
  722. }
  723. }
  724. }
  725. ,{
  726. "path" : "pages/shelfOrder/orderDetail",
  727. "style" :
  728. {
  729. "navigationBarTitleText": "货架订单详情",
  730. "enablePullDownRefresh": false
  731. }
  732. }
  733. ,{
  734. "path" : "pages/statistics/index",
  735. "style" :
  736. {
  737. "navigationBarTitleText": "销售统计",
  738. "navigationStyle":"custom",
  739. "app-plus":{
  740. "titleNView": {
  741. "titleAlign": "left",
  742. "buttons": [ //原生标题栏按钮配置,
  743. {
  744. "text": "\ue626 本周" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  745. "fontSrc": "/static/iconfont/iconfont.ttf",
  746. "fontSize": "14",
  747. "color": "#00aaff",
  748. "width":"90px"
  749. }
  750. ]
  751. }
  752. }
  753. }
  754. }
  755. ,{
  756. "path" : "pages/statistics/chooseShelf",
  757. "style" :
  758. {
  759. "navigationBarTitleText": "选择客户",
  760. "enablePullDownRefresh": false
  761. }
  762. }
  763. ,{
  764. "path" : "pages/vinAnalyse/shelfList",
  765. "style" :
  766. {
  767. "navigationBarTitleText": "选择货架",
  768. "enablePullDownRefresh": false
  769. }
  770. }
  771. ,{
  772. "path" : "pages/vinAnalyse/fitProductlist",
  773. "style" :
  774. {
  775. "navigationBarTitleText": "适配产品统计",
  776. "navigationStyle":"custom",
  777. "app-plus":{
  778. "titleNView": {
  779. "titletext": "适配产品统计"
  780. }
  781. }
  782. }
  783. }
  784. ,{
  785. "path" : "pages/vinAnalyse/shelfAnalyse",
  786. "style": {
  787. "navigationStyle":"custom",
  788. "app-plus":{
  789. "titleNView": {
  790. "titletext":"VIN分析",
  791. "titleAlign": "left",
  792. "buttons": [ //原生标题栏按钮配置,
  793. {
  794. "text": "\ue626 适配产品统计" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  795. "fontSrc": "/static/iconfont/iconfont.ttf",
  796. "fontSize": "14",
  797. "color": "#00aaff",
  798. "width":"140px"
  799. }
  800. ]
  801. }
  802. }
  803. }
  804. }
  805. ],
  806. "globalStyle": {
  807. "navigationBarTextStyle": "black",
  808. "navigationBarTitleText": "iscm",
  809. "navigationBarBackgroundColor": "#FFFFFF",
  810. "backgroundColor": "#f2f2f2",
  811. "app-plus": {
  812. // 将回弹属性关掉
  813. "bounce": "none",
  814. "scrollIndicator": "none",
  815. "titleAlign": "left",
  816. "disableSwipeBack": true,
  817. "softinputMode":"adjustResize"
  818. }
  819. },
  820. "tabBar": {
  821. "fontSize": "14px",
  822. "list": [
  823. {
  824. "pagePath": "pages/sales/index",
  825. "text": "销售",
  826. "visible": true
  827. },
  828. {
  829. "pagePath": "pages/stock/index",
  830. "text": "库存",
  831. "visible": true
  832. },
  833. {
  834. "pagePath": "pages/index/index",
  835. "text": "货架",
  836. "visible": true
  837. },
  838. {
  839. "pagePath": "pages/statistics/index",
  840. "text": "统计",
  841. "visible": true
  842. },
  843. {
  844. "pagePath": "pages/userCenter/index",
  845. "text": "我的",
  846. "visible": true
  847. }
  848. ]
  849. }
  850. }