pages.json 29 KB

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