pages.json 26 KB

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