pages.json 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  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/index/index", // 货架
  14. "style": {
  15. "navigationBarTitleText": "货架",
  16. "enablePullDownRefresh": false
  17. }
  18. },
  19. {
  20. "path": "pages/login/userAuthYs",
  21. "style": {
  22. "navigationBarTitleText": "注意事项及服务协议"
  23. }
  24. },
  25. {
  26. "path": "pages/login/forget-pass",
  27. "style": {
  28. "navigationBarTitleText": "忘记密码"
  29. }
  30. },
  31. {
  32. "path": "pages/userCenter/index",
  33. "style": {
  34. "enablePullDownRefresh": false,
  35. "navigationStyle": "custom",
  36. // 将回弹属性关掉
  37. "bounce":"none"
  38. }
  39. },
  40. {
  41. "path": "pages/userCenter/changePwd", // 我的>修改密码
  42. "style": {
  43. "navigationBarTitleText": "修改密码"
  44. }
  45. }
  46. ,{
  47. "path" : "pages/latePlay/chooseBulk",
  48. "style" :
  49. {
  50. "navigationBarTitleText": "选择货架",
  51. "enablePullDownRefresh": false
  52. }
  53. }
  54. ,{
  55. "path" : "pages/latePlay/chooseProduct",
  56. "style": {
  57. "navigationBarTitleText": "打印贴签",
  58. "navigationStyle":"custom",
  59. "app-plus":{
  60. "titleNView": {
  61. "titleAlign": "auto",
  62. "buttons": [ //原生标题栏按钮配置,
  63. {
  64. "text": "批量打印" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  65. "fontSize": "16",
  66. "color":"#00aaff",
  67. "width":"100px"
  68. }
  69. ]
  70. }
  71. }
  72. }
  73. },
  74. {
  75. "path" : "pages/index/printAbc",
  76. "style" :
  77. {
  78. "navigationBarTitleText": "打印ABC",
  79. "enablePullDownRefresh": false
  80. }
  81. },
  82. {
  83. "path" : "pages/shuntBackManage/shuntBackList",
  84. "style" :
  85. {
  86. "navigationBarTitleText": "调回管理",
  87. "enablePullDownRefresh": false
  88. }
  89. },
  90. {
  91. "path" : "pages/shuntBackManage/cancellingStocks",
  92. "style" :
  93. {
  94. "navigationBarTitleText": "调回退库",
  95. "enablePullDownRefresh": false,
  96. "titleView":false,
  97. // 将回弹属性关掉
  98. "bounce":"none"
  99. }
  100. },
  101. {
  102. "path" : "pages/shuntBackManage/detail",
  103. "style" :
  104. {
  105. "navigationBarTitleText": "调回详情",
  106. "enablePullDownRefresh": false
  107. }
  108. },
  109. {
  110. "path" : "pages/replenishmentManage/replenishmentList",
  111. "style" :
  112. {
  113. "navigationBarTitleText": "补货管理",
  114. "enablePullDownRefresh": false
  115. }
  116. },
  117. {
  118. "path" : "pages/replenishmentManage/confirm",
  119. "style" :
  120. {
  121. "navigationBarTitleText": "补货确认",
  122. "enablePullDownRefresh": false
  123. }
  124. },
  125. {
  126. "path" : "pages/replenishmentManage/outWarehousing",
  127. "style" :
  128. {
  129. "navigationBarTitleText": "补货出库",
  130. "enablePullDownRefresh": false
  131. }
  132. },
  133. {
  134. "path" : "pages/replenishmentManage/manualPrint",
  135. "style" :
  136. {
  137. "navigationBarTitleText": "手动打印",
  138. "enablePullDownRefresh": false
  139. }
  140. },
  141. {
  142. "path" : "pages/replenishmentManage/scanCodePrint",
  143. "style" :
  144. {
  145. "navigationBarTitleText": "扫码打印",
  146. "enablePullDownRefresh": false
  147. }
  148. },
  149. {
  150. "path" : "pages/replenishmentManage/sendOutGoods",
  151. "style" :
  152. {
  153. "navigationBarTitleText": "发货出库",
  154. "enablePullDownRefresh": false
  155. }
  156. },
  157. {
  158. "path" : "pages/replenishmentManage/signWarehousing",
  159. "style" :
  160. {
  161. "navigationBarTitleText": "补货签收",
  162. "enablePullDownRefresh": false
  163. }
  164. },
  165. {
  166. "path" : "pages/replenishmentManage/detail",
  167. "style" :
  168. {
  169. "navigationBarTitleText": "补货单详情",
  170. "enablePullDownRefresh": false
  171. }
  172. }
  173. ,{
  174. "path" : "pages/common/printTag/printTag",
  175. "style" :
  176. {
  177. "navigationBarTitleText": "打印标签",
  178. "enablePullDownRefresh": false
  179. }
  180. },
  181. {
  182. "path": "pages/stock/index", // 库存
  183. "style": {
  184. "navigationBarTitleText": "库存",
  185. "enablePullDownRefresh": false
  186. }
  187. },
  188. {
  189. "path": "pages/stock/stockSearch", // 库存查询
  190. "style": {
  191. "navigationBarTitleText": "库存查询",
  192. "enablePullDownRefresh": false
  193. }
  194. },
  195. {
  196. "path": "pages/stock/detaiList", // 库存详情列表
  197. "style": {
  198. "navigationBarTitleText": "库存详情",
  199. "enablePullDownRefresh": false
  200. }
  201. },
  202. {
  203. "path": "pages/stock/stockDetail", // 库存详情
  204. "style": {
  205. "navigationBarTitleText": "库存详情",
  206. "enablePullDownRefresh": false
  207. }
  208. },
  209. {
  210. "path": "pages/stock/warehouseDetail", // 出入库明细详情
  211. "style": {
  212. "navigationBarTitleText": "出入库明细",
  213. "enablePullDownRefresh": false
  214. }
  215. },
  216. {
  217. "path": "pages/sales/index", // 销售
  218. "style": {
  219. "navigationBarTitleText": "销售",
  220. "enablePullDownRefresh": false
  221. }
  222. },
  223. {
  224. "path": "pages/sales/list", // 销售列表
  225. "style": {
  226. "navigationBarTitleText": "销售单",
  227. "navigationStyle":"custom",
  228. "app-plus":{
  229. "titleNView": {
  230. "titleAlign": "auto",
  231. "buttons": [ //原生标题栏按钮配置,
  232. {
  233. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  234. "fontSrc": "/static/iconfont/iconfont.ttf",
  235. "fontSize": "16",
  236. "width":"90px"
  237. }
  238. ]
  239. }
  240. }
  241. }
  242. },
  243. {
  244. "path": "pages/sales/addSales", // 新增销售单
  245. "style": {
  246. "navigationBarTitleText": "新增销售单",
  247. "enablePullDownRefresh": false
  248. }
  249. },
  250. {
  251. "path": "pages/sales/edit", // 新增销售单/编辑销售单/销售单详情
  252. "style": {
  253. "navigationBarTitleText": "销售单",
  254. "enablePullDownRefresh": false
  255. }
  256. },
  257. {
  258. "path": "pages/sales/chooseProduct", // 选择产品
  259. "style": {
  260. "navigationBarTitleText": "选择产品",
  261. "navigationStyle":"custom",
  262. "app-plus":{
  263. "titleNView": {
  264. "titleAlign": "auto",
  265. "buttons": [ //原生标题栏按钮配置,
  266. {
  267. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  268. "fontSrc": "/static/iconfont/iconfont.ttf",
  269. "fontSize": "16",
  270. "width":"90px"
  271. }
  272. ]
  273. }
  274. }
  275. }
  276. },
  277. {
  278. "path": "pages/sales/chooseCustomer", // 销售单 选择客户
  279. "style": {
  280. "navigationBarTitleText": "选择客户",
  281. "enablePullDownRefresh": false
  282. }
  283. },
  284. {
  285. "path": "pages/sales/addCustomer", // 销售单 选择客户
  286. "style": {
  287. "navigationBarTitleText": "新增客户",
  288. "enablePullDownRefresh": false
  289. }
  290. },
  291. {
  292. "path": "pages/sales/productPricing", // 产品报价
  293. "style": {
  294. "navigationBarTitleText": "产品报价",
  295. "navigationStyle":"custom",
  296. "app-plus":{
  297. "titleNView": {
  298. "titleAlign": "auto",
  299. "buttons": [ //原生标题栏按钮配置,
  300. {
  301. "text": "\ue694 查询" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  302. "fontSrc": "/static/iconfont/iconfont.ttf",
  303. "fontSize": "16",
  304. "width":"90px"
  305. }
  306. ]
  307. }
  308. }
  309. }
  310. },
  311. {
  312. "path" : "pages/webviews/openview",
  313. "style" :
  314. {
  315. "navigationBarTitleText": "网页",
  316. "enablePullDownRefresh": false
  317. }
  318. }
  319. ,{
  320. "path" : "pages/sales/salesRecord",
  321. "style" :
  322. {
  323. "navigationBarTitleText": "销售记录",
  324. "enablePullDownRefresh": false
  325. }
  326. }
  327. ,{
  328. "path" : "pages/approveStore/list",
  329. "style" :
  330. {
  331. "navigationBarTitleText": "门店审核",
  332. "enablePullDownRefresh": false
  333. }
  334. }
  335. ,{
  336. "path" : "pages/approveStore/authPass",
  337. "style" :
  338. {
  339. "navigationBarTitleText": "审核通过",
  340. "enablePullDownRefresh": false
  341. }
  342. }
  343. ,{
  344. "path" : "pages/approveStore/detail",
  345. "style" :
  346. {
  347. "navigationBarTitleText": "门店审核详情",
  348. "enablePullDownRefresh": false
  349. }
  350. }
  351. ,{
  352. "path" : "pages/shelfSetting/shelfList",
  353. "style" :
  354. {
  355. "navigationBarTitleText": "选择货架",
  356. "enablePullDownRefresh": false
  357. }
  358. }
  359. ,{
  360. "path" : "pages/shelfSetting/shelfSet",
  361. "style": {
  362. "navigationBarTitleText": "货架设置",
  363. "navigationStyle":"custom",
  364. "app-plus":{
  365. "titleNView": {
  366. "titleAlign": "auto",
  367. "buttons": [ //原生标题栏按钮配置,
  368. {
  369. "text": "\ue6ee 批量上架产品" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  370. "fontSrc": "/static/iconfont/iconfont.ttf",
  371. "fontSize": "16",
  372. "color": "#00aaff",
  373. "width":"150px"
  374. }
  375. ]
  376. }
  377. }
  378. }
  379. }
  380. ,{
  381. "path" : "pages/shelfSetting/editShelf",
  382. "style" :
  383. {
  384. "navigationBarTitleText": "修改货架名称",
  385. "enablePullDownRefresh": false
  386. }
  387. }
  388. ,{
  389. "path" : "pages/shelfSetting/searchShelfHw",
  390. "style" :
  391. {
  392. "navigationBarTitleText": "按产品搜索",
  393. "enablePullDownRefresh": false
  394. }
  395. }
  396. ,{
  397. "path" : "pages/shelfSetting/editShelfHw",
  398. "style" :
  399. {
  400. "navigationBarTitleText": "编辑货位",
  401. "enablePullDownRefresh": false
  402. }
  403. }
  404. ,{
  405. "path" : "pages/shelfSetting/addShelfHw",
  406. "style" :
  407. {
  408. "navigationBarTitleText": "新增货位",
  409. "enablePullDownRefresh": false
  410. }
  411. }
  412. ,{
  413. "path" : "pages/shelfSetting/bindProduct",
  414. "style" :
  415. {
  416. "navigationBarTitleText": "绑定产品",
  417. "enablePullDownRefresh": false
  418. }
  419. }
  420. ,{
  421. "path" : "pages/shelfSetting/batchPrint",
  422. "style" :
  423. {
  424. "navigationBarTitleText": "批量打印",
  425. "enablePullDownRefresh": false
  426. }
  427. }
  428. ,{
  429. "path" : "pages/shelfSetting/quickReplenish",
  430. "style" :
  431. {
  432. "navigationBarTitleText": "快速补货",
  433. "enablePullDownRefresh": false
  434. }
  435. }
  436. ,{
  437. "path" : "pages/stockCheck/shelfList",
  438. "style" :
  439. {
  440. "navigationBarTitleText": "选择货架",
  441. "enablePullDownRefresh": false
  442. }
  443. }
  444. ,{
  445. "path" : "pages/stockCheck/startCheck",
  446. "style": {
  447. "navigationBarTitleText": "库存盘点",
  448. "navigationStyle":"custom",
  449. "app-plus":{
  450. "titleNView": {
  451. "titleAlign": "auto",
  452. "buttons": [ //原生标题栏按钮配置,
  453. {
  454. "text": "\ue694 盘点历史" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  455. "fontSrc": "/static/iconfont/iconfont.ttf",
  456. "fontSize": "16",
  457. "color": "#00aaff",
  458. "width":"120px"
  459. }
  460. ]
  461. }
  462. }
  463. }
  464. }
  465. ,{
  466. "path" : "pages/stockCheck/submitStockCheck",
  467. "style" :
  468. {
  469. "navigationBarTitleText": "提交盘点单",
  470. "enablePullDownRefresh": false
  471. }
  472. }
  473. ,{
  474. "path" : "pages/stockCheck/checkRecord",
  475. "style" :
  476. {
  477. "navigationBarTitleText": "盘点历史",
  478. "enablePullDownRefresh": false
  479. }
  480. }
  481. ,{
  482. "path" : "pages/batchShelves/index",
  483. "style" :
  484. {
  485. "navigationBarTitleText": "批量上架产品——选层",
  486. "enablePullDownRefresh": false
  487. }
  488. }
  489. ,{
  490. "path" : "pages/batchShelves/scanProduct",
  491. "style" :
  492. {
  493. "navigationBarTitleText": "扫描条形码",
  494. "enablePullDownRefresh": false,
  495. "app-plus":{
  496. "titleNView": {
  497. "titleAlign": "auto",
  498. "buttons": [ //原生标题栏按钮配置,
  499. {
  500. "text": "\ue694 按产品编码搜索" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  501. "fontSrc": "/static/iconfont/iconfont.ttf",
  502. "fontSize": "14",
  503. "color": "#00aaff",
  504. "width":"150px"
  505. }
  506. ]
  507. }
  508. }
  509. }
  510. }
  511. ,{
  512. "path" : "pages/batchShelves/searchProduct",
  513. "style" :
  514. {
  515. "navigationBarTitleText": "按产品编码搜索",
  516. "enablePullDownRefresh": false,
  517. "app-plus":{
  518. "titleNView": {
  519. "titleAlign": "auto",
  520. "buttons": [ //原生标题栏按钮配置,
  521. {
  522. "text": "\ue694 扫描条形码" ,//原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听u
  523. "fontSrc": "/static/iconfont/iconfont.ttf",
  524. "fontSize": "14",
  525. "color": "#00aaff",
  526. "width":"120px"
  527. }
  528. ]
  529. }
  530. }
  531. }
  532. }
  533. ,{
  534. "path" : "pages/batchShelves/cartList",
  535. "style" :
  536. {
  537. "navigationBarTitleText": "批量上架产品",
  538. "enablePullDownRefresh": false
  539. }
  540. }
  541. ],
  542. "globalStyle": {
  543. "navigationBarTextStyle": "black",
  544. "navigationBarTitleText": "iscm",
  545. "navigationBarBackgroundColor": "#FFFFFF",
  546. "backgroundColor": "#f2f2f2",
  547. "app-plus": {
  548. // 将回弹属性关掉
  549. "bounce": "none",
  550. "scrollIndicator": "none"
  551. }
  552. },
  553. "tabBar": {
  554. "fontSize": "14px",
  555. "list": [
  556. {
  557. "pagePath": "pages/sales/index",
  558. "text": "销售"
  559. },
  560. {
  561. "pagePath": "pages/stock/index",
  562. "text": "库存"
  563. },
  564. {
  565. "pagePath": "pages/index/index",
  566. "text": "货架"
  567. },
  568. {
  569. "pagePath": "pages/userCenter/index",
  570. "text": "我的"
  571. }
  572. ]
  573. }
  574. }