pages.json 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958
  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/userCenter/setData", // 我的>修改密码
  55. "style": {
  56. "navigationBarTitleText": "系统参数"
  57. }
  58. },
  59. {
  60. "path": "pages/xtNotice/xtNotice", // 我的>消息
  61. "style": {
  62. "navigationBarTitleText": "消息",
  63. "navigationStyle":"custom",
  64. "app-plus":{
  65. "titleNView": {
  66. "titleAlign": "left",
  67. "buttons": [ //原生标题栏按钮配置,
  68. {
  69. "text": "设置全部已读" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  70. "fontSize": "14",
  71. "color": "#00aaff",
  72. "width":"100px"
  73. }
  74. ]
  75. }
  76. }
  77. }
  78. },
  79. {
  80. "path": "pages/xtNotice/xtNoticeDetail/xtNoticeDetail", // 我的>消息详情
  81. "style": {
  82. "navigationBarTitleText": "消息详情"
  83. }
  84. },
  85. {
  86. "path" : "pages/latePlay/chooseBulk",
  87. "style" :
  88. {
  89. "navigationBarTitleText": "选择货架",
  90. "enablePullDownRefresh": false
  91. }
  92. }
  93. ,{
  94. "path" : "pages/latePlay/chooseProduct",
  95. "style": {
  96. "navigationBarTitleText": "打印贴签",
  97. "navigationStyle":"custom",
  98. "app-plus":{
  99. "titleNView": {
  100. "titleAlign": "left",
  101. "buttons": [ //原生标题栏按钮配置,
  102. {
  103. "text": "\ue65a 批量打印" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  104. "fontSrc": "/static/iconfont/iconfont.ttf",
  105. "fontSize": "14",
  106. "color": "#00aaff",
  107. "width":"110px"
  108. }
  109. ]
  110. }
  111. }
  112. }
  113. },
  114. {
  115. "path" : "pages/index/printAbc",
  116. "style" :
  117. {
  118. "navigationBarTitleText": "打印ABC",
  119. "enablePullDownRefresh": false
  120. }
  121. },
  122. {
  123. "path" : "pages/shuntBackManage/shuntBackList",
  124. "style" :
  125. {
  126. "navigationBarTitleText": "调回管理",
  127. "navigationStyle":"custom",
  128. "app-plus":{
  129. "titleNView": {
  130. "titleAlign": "left",
  131. "buttons": [ //原生标题栏按钮配置,
  132. {
  133. "text": "\ue8c0 新增" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  134. "fontSrc": "/static/iconfont/iconfont.ttf",
  135. "fontSize": "14",
  136. "color": "#ffffff",
  137. "width":"90px"
  138. }
  139. ]
  140. }
  141. }
  142. }
  143. },
  144. {
  145. "path" : "pages/shuntBackManage/cancellingStocks",
  146. "style" :
  147. {
  148. "navigationBarTitleText": "调回退库",
  149. "enablePullDownRefresh": false,
  150. // 将回弹属性关掉
  151. "bounce":"none",
  152. "navigationStyle":"custom",
  153. "app-plus":{
  154. "titleNView": {
  155. "titleAlign": "left",
  156. "buttons": [ //原生标题栏按钮配置,
  157. {
  158. "text": "\ue859 生成销售退货单" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  159. "fontSrc": "/static/iconfont/iconfont.ttf",
  160. "fontSize": "14",
  161. "color": "#ffffff",
  162. "width":"140px"
  163. }
  164. ]
  165. }
  166. }
  167. }
  168. },
  169. {
  170. "path" : "pages/shuntBackManage/detail",
  171. "style" :
  172. {
  173. "navigationBarTitleText": "调回详情",
  174. "enablePullDownRefresh": false,
  175. "navigationStyle":"custom",
  176. "app-plus":{
  177. "titleNView": {
  178. "titleAlign": "left",
  179. "buttons": [ //原生标题栏按钮配置,
  180. {
  181. "text": "\ue859 生成销售退货单" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  182. "fontSrc": "/static/iconfont/iconfont.ttf",
  183. "fontSize": "14",
  184. "color": "#ffffff",
  185. "width":"140px"
  186. }
  187. ]
  188. }
  189. }
  190. }
  191. },
  192. {
  193. "path" : "pages/shuntBackManage/shelfList",
  194. "style" :
  195. {
  196. "navigationBarTitleText": "选择货架",
  197. "enablePullDownRefresh": false
  198. }
  199. },
  200. {
  201. "path" : "pages/shuntBackManage/chooseProduct",
  202. "style" :
  203. {
  204. "navigationBarTitleText": "选择产品",
  205. "enablePullDownRefresh": false
  206. }
  207. },
  208. {
  209. "path" : "pages/shuntBackManage/addBackOrder",
  210. "style" :
  211. {
  212. "navigationBarTitleText": "新增调回单",
  213. "navigationStyle": "custom"
  214. }
  215. },
  216. {
  217. "path" : "pages/replenishmentManage/replenishmentList",
  218. "style" :
  219. {
  220. "navigationBarTitleText": "补货管理",
  221. "navigationStyle":"custom",
  222. "app-plus":{
  223. "titleNView": {
  224. "titleAlign": "left",
  225. "buttons": [ //原生标题栏按钮配置,
  226. {
  227. "text": "\ue64e 待补货" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  228. "fontSrc": "/static/iconfont/iconfont.ttf",
  229. "fontSize": "14",
  230. "color": "#ffffff",
  231. "width":"90px"
  232. }
  233. ]
  234. }
  235. }
  236. }
  237. },
  238. {
  239. "path" : "pages/soldOut/shelfList",
  240. "style" :
  241. {
  242. "navigationBarTitleText": "待补货产品",
  243. "enablePullDownRefresh": false
  244. }
  245. },
  246. {
  247. "path" : "pages/soldOut/creatOrder",
  248. "style": {
  249. "navigationStyle": "custom" ,// 隐藏系统导航栏
  250. "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  251. }
  252. },
  253. {
  254. "path" : "pages/replenishmentManage/confirm",
  255. "style" :
  256. {
  257. "navigationBarTitleText": "补货确认",
  258. "enablePullDownRefresh": false
  259. }
  260. },
  261. {
  262. "path" : "pages/replenishmentManage/outWarehousing",
  263. "style": {
  264. "navigationStyle": "custom" ,// 隐藏系统导航栏
  265. "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  266. }
  267. },
  268. {
  269. "path" : "pages/replenishmentManage/manualPrint",
  270. "style" :
  271. {
  272. "navigationBarTitleText": "手动打印",
  273. "enablePullDownRefresh": false
  274. }
  275. },
  276. {
  277. "path" : "pages/replenishmentManage/scanCodePrint",
  278. "style" :
  279. {
  280. "navigationBarTitleText": "扫码打印",
  281. "enablePullDownRefresh": false
  282. }
  283. },
  284. {
  285. "path" : "pages/replenishmentManage/sendOutGoods",
  286. "style" :
  287. {
  288. "navigationBarTitleText": "扫码出库",
  289. "enablePullDownRefresh": false
  290. }
  291. },
  292. {
  293. "path" : "pages/replenishmentManage/signWarehousing",
  294. "style": {
  295. "navigationStyle": "custom" ,// 隐藏系统导航栏
  296. "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  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/bill", // 应收对账单
  378. "style": {
  379. "navigationBarTitleText": "对账单明细"
  380. }
  381. },
  382. {
  383. "path": "pages/sales/billHistory",
  384. "style": {
  385. "navigationBarTitleText": "历史对账单",
  386. "navigationBarTextStyle": "black"
  387. }
  388. },
  389. {
  390. "path": "pages/sales/billHistoryDetail",
  391. "style": {
  392. "navigationBarTitleText": "对账单详情",
  393. "navigationBarTextStyle": "black",
  394. "app-plus":{
  395. "titleNView": {
  396. "titleAlign": "left",
  397. "buttons": [ //原生标题栏按钮配置,
  398. {
  399. "text": "\ue601 编辑" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  400. "fontSrc": "/static/iconfont/iconfont.ttf",
  401. "fontSize": "14",
  402. "color":"#fff",
  403. "width":"60px"
  404. }
  405. ]
  406. }
  407. }
  408. }
  409. },
  410. {
  411. "path": "pages/sales/salesDetail",
  412. "style": {
  413. "navigationBarTitleText": "销售单详情",
  414. "navigationBarTextStyle": "black"
  415. }
  416. },
  417. {
  418. "path": "pages/sales/chooseCustomerBill",
  419. "style": {
  420. "navigationBarTitleText": "应收对账单",
  421. "navigationBarTextStyle": "black",
  422. "app-plus":{
  423. "titleNView": {
  424. "titleAlign": "left",
  425. "buttons": [ //原生标题栏按钮配置,
  426. {
  427. "text": "\ue60e 历史对账单" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  428. "fontSrc": "/static/iconfont/iconfont.ttf",
  429. "fontSize": "14",
  430. "color":"#fff",
  431. "width":"100px"
  432. }
  433. ]
  434. }
  435. }
  436. }
  437. },
  438. {
  439. "path": "pages/sales/addSales", // 新增销售单
  440. "style": {
  441. "navigationBarTitleText": "新增销售单",
  442. "enablePullDownRefresh": false
  443. }
  444. },
  445. {
  446. "path": "pages/sales/chooseShelf",
  447. "style": {
  448. "navigationBarTitleText": "选择客户",
  449. "enablePullDownRefresh": false
  450. }
  451. },
  452. {
  453. "path": "pages/sales/edit", // 新增销售单/编辑销售单/销售单详情
  454. "style": {
  455. "navigationBarTitleText": "销售单",
  456. "enablePullDownRefresh": false
  457. }
  458. },
  459. {
  460. "path": "pages/sales/chooseProduct", // 选择产品
  461. "style": {
  462. "navigationBarTitleText": "选择产品",
  463. "navigationStyle":"custom",
  464. "app-plus":{
  465. "titleNView": {
  466. "titleAlign": "left",
  467. "buttons": [ //原生标题栏按钮配置,
  468. {
  469. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  470. "fontSrc": "/static/iconfont/iconfont.ttf",
  471. "fontSize": "14",
  472. "width":"90px"
  473. }
  474. ]
  475. }
  476. }
  477. }
  478. },
  479. {
  480. "path": "pages/sales/chooseCustomer", // 销售单 选择客户
  481. "style": {
  482. "navigationBarTitleText": "选择客户",
  483. "enablePullDownRefresh": false
  484. }
  485. },
  486. {
  487. "path": "pages/sales/addCustomer", // 销售单 选择客户
  488. "style": {
  489. "navigationBarTitleText": "新增客户",
  490. "enablePullDownRefresh": false
  491. }
  492. },
  493. {
  494. "path": "pages/sales/productPricing", // 产品报价
  495. "style": {
  496. "navigationBarTitleText": "产品报价",
  497. "navigationStyle":"custom",
  498. "app-plus":{
  499. "titleNView": {
  500. "titleAlign": "left",
  501. "buttons": [ //原生标题栏按钮配置,
  502. {
  503. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  504. "fontSrc": "/static/iconfont/iconfont.ttf",
  505. "fontSize": "14",
  506. "width":"90px"
  507. }
  508. ]
  509. }
  510. }
  511. }
  512. },
  513. {
  514. "path": "pages/sales/productUniversal", // 产品报价
  515. "style": {
  516. "navigationBarTitleText": "产品报价",
  517. "enablePullDownRefresh": false
  518. }
  519. },
  520. {
  521. "path" : "pages/webviews/openview",
  522. "style" :
  523. {
  524. "navigationBarTitleText": "网页",
  525. "enablePullDownRefresh": false
  526. }
  527. }
  528. ,{
  529. "path" : "pages/sales/salesRecord",
  530. "style" :
  531. {
  532. "navigationBarTitleText": "销售记录",
  533. "enablePullDownRefresh": false
  534. }
  535. }
  536. ,{
  537. "path" : "pages/approveStore/list",
  538. "style" :
  539. {
  540. "navigationBarTitleText": "门店审核",
  541. "enablePullDownRefresh": false
  542. }
  543. }
  544. ,{
  545. "path" : "pages/approveStore/authPass",
  546. "style" :
  547. {
  548. "navigationBarTitleText": "审核通过",
  549. "enablePullDownRefresh": false
  550. }
  551. }
  552. ,{
  553. "path" : "pages/approveStore/detail",
  554. "style" :
  555. {
  556. "navigationBarTitleText": "门店审核详情",
  557. "enablePullDownRefresh": false
  558. }
  559. }
  560. ,{
  561. "path" : "pages/shelfSetting/shelfList",
  562. "style" :
  563. {
  564. "navigationBarTitleText": "选择货架",
  565. "enablePullDownRefresh": false
  566. }
  567. }
  568. ,{
  569. "path" : "pages/shelfSetting/shelfSet",
  570. "style": {
  571. "navigationStyle": "custom" ,// 隐藏系统导航栏
  572. "navigationBarTextStyle": "black" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  573. }
  574. }
  575. ,{
  576. "path" : "pages/shelfSetting/editShelf",
  577. "style" :
  578. {
  579. "navigationBarTitleText": "修改货架名称",
  580. "enablePullDownRefresh": false
  581. }
  582. }
  583. ,{
  584. "path" : "pages/shelfSetting/searchShelfHw",
  585. "style" :
  586. {
  587. "navigationBarTitleText": "按产品搜索",
  588. "enablePullDownRefresh": false
  589. }
  590. }
  591. ,{
  592. "path" : "pages/shelfSetting/editShelfHw",
  593. "style": {
  594. "navigationStyle": "custom" ,// 隐藏系统导航栏
  595. "navigationBarTextStyle": "black" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  596. }
  597. }
  598. ,{
  599. "path" : "pages/shelfSetting/addShelfHw",
  600. "style" :
  601. {
  602. "navigationBarTitleText": "新增货位",
  603. "enablePullDownRefresh": false
  604. }
  605. }
  606. ,{
  607. "path" : "pages/shelfSetting/bindProduct",
  608. "style" :
  609. {
  610. "navigationBarTitleText": "绑定产品",
  611. "enablePullDownRefresh": false
  612. }
  613. }
  614. ,{
  615. "path" : "pages/shelfSetting/batchPrint",
  616. "style" :
  617. {
  618. "navigationBarTitleText": "批量打印",
  619. "enablePullDownRefresh": false
  620. }
  621. }
  622. ,{
  623. "path" : "pages/shelfSetting/quickReplenish",
  624. "style" :
  625. {
  626. "navigationBarTitleText": "快速补货",
  627. "enablePullDownRefresh": false
  628. }
  629. }
  630. ,{
  631. "path" : "pages/stockCheck/shelfList",
  632. "style" :
  633. {
  634. "navigationBarTitleText": "选择货架",
  635. "enablePullDownRefresh": false
  636. }
  637. }
  638. ,{
  639. "path" : "pages/stockCheck/startCheck",
  640. "style": {
  641. "navigationBarTitleText": "库存盘点",
  642. "navigationStyle":"custom",
  643. "app-plus":{
  644. "titleNView": {
  645. "titleAlign": "left",
  646. "buttons": [ //原生标题栏按钮配置,
  647. {
  648. "text": "\ue694 盘点历史" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  649. "fontSrc": "/static/iconfont/iconfont.ttf",
  650. "fontSize": "14",
  651. "color": "#00aaff",
  652. "width":"120px"
  653. }
  654. ]
  655. }
  656. }
  657. }
  658. }
  659. ,{
  660. "path" : "pages/stockCheck/submitStockCheck",
  661. "style" :
  662. {
  663. "navigationBarTitleText": "提交盘点单",
  664. "enablePullDownRefresh": false
  665. }
  666. }
  667. ,{
  668. "path" : "pages/stockCheck/checkRecord",
  669. "style" :
  670. {
  671. "navigationBarTitleText": "盘点历史",
  672. "enablePullDownRefresh": false
  673. }
  674. }
  675. ,{
  676. "path" : "pages/batchShelves/index",
  677. "style" :
  678. {
  679. "navigationBarTitleText": "批量上架—选层",
  680. "enablePullDownRefresh": false
  681. }
  682. }
  683. ,{
  684. "path" : "pages/batchShelves/scanProduct",
  685. "style" :
  686. {
  687. "navigationBarTitleText": "扫描条形码",
  688. "enablePullDownRefresh": false,
  689. "app-plus":{
  690. "titleNView": {
  691. "titleAlign": "left",
  692. "buttons": [ //原生标题栏按钮配置,
  693. {
  694. "text": "\ue694 搜索" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  695. "fontSrc": "/static/iconfont/iconfont.ttf",
  696. "fontSize": "16",
  697. "color": "#00aaff",
  698. "width":"80px"
  699. }
  700. ]
  701. }
  702. }
  703. }
  704. }
  705. ,{
  706. "path" : "pages/batchShelves/searchProduct",
  707. "style" :
  708. {
  709. "navigationBarTitleText": "产品编码搜索",
  710. "enablePullDownRefresh": false,
  711. "app-plus":{
  712. "titleNView": {
  713. "titleAlign": "left",
  714. "buttons": [ //原生标题栏按钮配置,
  715. {
  716. "text": "\ue617 扫码" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  717. "fontSrc": "/static/iconfont/iconfont.ttf",
  718. "fontSize": "16",
  719. "color": "#00aaff",
  720. "width":"80px"
  721. }
  722. ]
  723. }
  724. }
  725. }
  726. }
  727. ,{
  728. "path" : "pages/batchShelves/cartList",
  729. "style" :
  730. {
  731. "navigationBarTitleText": "批量上架",
  732. "enablePullDownRefresh": false,
  733. "app-plus":{
  734. "titleNView": {
  735. "titleAlign": "left",
  736. "buttons": [ //原生标题栏按钮配置,
  737. {
  738. "text": "\ue67a 上架" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  739. "fontSrc": "/static/iconfont/iconfont.ttf",
  740. "fontSize": "14",
  741. "color": "#00aaff",
  742. "width":"80px"
  743. },
  744. {
  745. "text": "\ue65a 打印" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  746. "fontSrc": "/static/iconfont/iconfont.ttf",
  747. "fontSize": "14",
  748. "color": "#00aaff",
  749. "width":"auto"
  750. }
  751. ]
  752. }
  753. }
  754. }
  755. },{
  756. "path" : "pages/batchShelves/editShelfHw",
  757. "style" :
  758. {
  759. "navigationBarTitleText": "编辑上架信息",
  760. "enablePullDownRefresh": false
  761. }
  762. }
  763. ,{
  764. "path" : "pages/batchShelves/setProductCost",
  765. "style" :
  766. {
  767. "navigationBarTitleText": "结算价设置",
  768. "enablePullDownRefresh": false
  769. }
  770. }
  771. ,{
  772. "path" : "pages/batchShelves/batchPrint/batchPrint",
  773. "style" :
  774. {
  775. "navigationBarTitleText": "批量打印",
  776. "enablePullDownRefresh": false
  777. }
  778. }
  779. ,{
  780. "path" : "pages/shelfOrder/shelfOrder",
  781. "style" :
  782. {
  783. "navigationBarTitleText": "货架订单",
  784. "enablePullDownRefresh": false,
  785. "app-plus":{
  786. "titleNView": {
  787. "titleAlign": "left",
  788. "buttons": [ //原生标题栏按钮配置,
  789. {
  790. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  791. "fontSrc": "/static/iconfont/iconfont.ttf",
  792. "fontSize": "14",
  793. "color": "#ffffff",
  794. "width":"80px"
  795. }
  796. ]
  797. }
  798. }
  799. }
  800. }
  801. ,{
  802. "path" : "pages/shelfOrder/orderDetail",
  803. "style" :
  804. {
  805. "navigationBarTitleText": "货架订单详情",
  806. "enablePullDownRefresh": false
  807. }
  808. }
  809. ,{
  810. "path" : "pages/statistics/index",
  811. "style" :
  812. {
  813. "navigationBarTitleText": "销售统计",
  814. "navigationStyle":"custom",
  815. "app-plus":{
  816. "titleNView": {
  817. "titleAlign": "left",
  818. "buttons": [ //原生标题栏按钮配置,
  819. {
  820. "text": "\ue626 本周" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  821. "fontSrc": "/static/iconfont/iconfont.ttf",
  822. "fontSize": "14",
  823. "color": "#00aaff",
  824. "width":"90px"
  825. }
  826. ]
  827. }
  828. }
  829. }
  830. }
  831. ,{
  832. "path" : "pages/statistics/chooseShelf",
  833. "style" :
  834. {
  835. "navigationBarTitleText": "选择客户",
  836. "enablePullDownRefresh": false
  837. }
  838. }
  839. ,{
  840. "path" : "pages/vinAnalyse/shelfList",
  841. "style" :
  842. {
  843. "navigationBarTitleText": "选择货架",
  844. "enablePullDownRefresh": false
  845. }
  846. }
  847. ,{
  848. "path" : "pages/vinAnalyse/fitProductlist",
  849. "style" :
  850. {
  851. "navigationBarTitleText": "适配产品统计",
  852. "navigationStyle":"custom",
  853. "app-plus":{
  854. "titleNView": {
  855. "titletext": "适配产品统计"
  856. }
  857. }
  858. }
  859. }
  860. ,{
  861. "path" : "pages/vinAnalyse/shelfAnalyse",
  862. "style": {
  863. "navigationStyle":"custom",
  864. "app-plus":{
  865. "titleNView": {
  866. "titletext":"VIN分析",
  867. "titleAlign": "left",
  868. "buttons": [ //原生标题栏按钮配置,
  869. {
  870. "text": "\ue626 适配产品统计" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  871. "fontSrc": "/static/iconfont/iconfont.ttf",
  872. "fontSize": "14",
  873. "color": "#00aaff",
  874. "width":"140px"
  875. }
  876. ]
  877. }
  878. }
  879. }
  880. }
  881. ,{
  882. "path" : "pages/soldOut/chooseProduct",
  883. "style" :
  884. {
  885. "navigationBarTitleText": "选择待补货产品",
  886. "enablePullDownRefresh": false
  887. }
  888. }
  889. ],
  890. "globalStyle": {
  891. "navigationBarTextStyle": "black",
  892. "navigationBarTitleText": "iscm",
  893. "navigationBarBackgroundColor": "#FFFFFF",
  894. "backgroundColor": "#f2f2f2",
  895. "app-plus": {
  896. // 将回弹属性关掉
  897. "bounce": "none",
  898. "scrollIndicator": "none",
  899. "titleAlign": "left",
  900. "disableSwipeBack": true,
  901. "softinputMode":"adjustResize"
  902. }
  903. },
  904. "tabBar": {
  905. "fontSize": "14px",
  906. "list": [
  907. {
  908. "pagePath": "pages/sales/index",
  909. "text": "销售",
  910. "visible": true
  911. },
  912. {
  913. "pagePath": "pages/stock/index",
  914. "text": "库存",
  915. "visible": true
  916. },
  917. {
  918. "pagePath": "pages/index/index",
  919. "text": "货架",
  920. "visible": true
  921. },
  922. {
  923. "pagePath": "pages/statistics/index",
  924. "text": "统计",
  925. "visible": true
  926. },
  927. {
  928. "pagePath": "pages/userCenter/index",
  929. "text": "我的",
  930. "visible": true
  931. }
  932. ]
  933. }
  934. }