pages.json 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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/index",
  8. "style": {
  9. "navigationBarTitleText": "登录",
  10. "navigationStyle": "custom",
  11. "app-plus": {
  12. "titleNView": false //禁用原生导航栏
  13. }
  14. }
  15. },
  16. {
  17. "path": "pages/index/index",
  18. "style": {
  19. "navigationBarTitleText": "首页",
  20. "navigationStyle": "custom",
  21. "app-plus": {
  22. "titleNView": false //禁用原生导航栏
  23. }
  24. }
  25. },{
  26. "path" : "pages/stockOut/salesOut/list",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "销售出库",
  30. "enablePullDownRefresh": false
  31. }
  32. },{
  33. "path" : "pages/stockOut/salesOut/index",
  34. "style" :
  35. {
  36. "navigationBarTitleText": "销售出库",
  37. "enablePullDownRefresh": false
  38. }
  39. },{
  40. "path" : "pages/stockOut/chainTransferOut/list",
  41. "style" :
  42. {
  43. "navigationBarTitleText": "连锁调出",
  44. "enablePullDownRefresh": false
  45. }
  46. },{
  47. "path" : "pages/stockOut/chainTransferOut/index",
  48. "style" :
  49. {
  50. "navigationBarTitleText": "连锁调出",
  51. "enablePullDownRefresh": false
  52. }
  53. },{
  54. "path" : "pages/stockOut/storeTransferOut/list",
  55. "style" :
  56. {
  57. "navigationBarTitleText": "店内调出",
  58. "enablePullDownRefresh": false
  59. }
  60. },{
  61. "path" : "pages/stockOut/storeTransferOut/index",
  62. "style" :
  63. {
  64. "navigationBarTitleText": "店内调出",
  65. "enablePullDownRefresh": false
  66. }
  67. },{
  68. "path" : "pages/stockPan/add",
  69. "style" :
  70. {
  71. "navigationBarTitleText": "新建盘点",
  72. "enablePullDownRefresh": false,
  73. "app-plus": {
  74. "titleNView": {
  75. "backButton": { //自定义 backButton
  76. "title": "返回",
  77. "color": "#666666"
  78. },
  79. "buttons": [ //原生标题栏按钮配置,
  80. {
  81. "text": "全部盘点",
  82. "fontSize": "12px",
  83. "width": "82px",
  84. "color": "#00aaff"
  85. }
  86. ]
  87. }
  88. }
  89. }
  90. },{
  91. "path" : "pages/stockPan/index",
  92. "style" :
  93. {
  94. "navigationBarTitleText": "盘点",
  95. "enablePullDownRefresh": false,
  96. "app-plus": {
  97. "titleNView": {
  98. "backButton": { //自定义 backButton
  99. "title": "返回",
  100. "color": "#666666"
  101. },
  102. "buttons": [ //原生标题栏按钮配置,
  103. {
  104. "text": "全部盘点",
  105. "fontSize": "12px",
  106. "width": "82px",
  107. "color": "#00aaff"
  108. }
  109. ]
  110. }
  111. }
  112. }
  113. }
  114. ,{
  115. "path" : "pages/stockPan/detail",
  116. "style" :
  117. {
  118. "navigationBarTitleText": "商品信息",
  119. "enablePullDownRefresh": false
  120. }
  121. }
  122. ,{
  123. "path" : "pages/product/product",
  124. "style" :
  125. {
  126. "navigationBarTitleText": "商品管理",
  127. "enablePullDownRefresh": false
  128. }
  129. }
  130. ,{
  131. "path" : "pages/product/add",
  132. "style" :
  133. {
  134. "navigationBarTitleText": "录入商品",
  135. "enablePullDownRefresh": false
  136. }
  137. }
  138. ,{
  139. "path" : "pages/product/del",
  140. "style" :
  141. {
  142. "navigationBarTitleText": "删除商品",
  143. "enablePullDownRefresh": false
  144. }
  145. }
  146. ,{
  147. "path" : "pages/product/detail",
  148. "style" :
  149. {
  150. "navigationBarTitleText": "商品信息",
  151. "enablePullDownRefresh": false
  152. }
  153. }
  154. ,{
  155. "path" : "pages/stockIn/add",
  156. "style" :
  157. {
  158. "navigationBarTitleText": "新建入库",
  159. "enablePullDownRefresh": false,
  160. "app-plus": {
  161. "titleNView": {
  162. "backButton": { //自定义 backButton
  163. "title": "返回",
  164. "color": "#666666"
  165. },
  166. "buttons": [ //原生标题栏按钮配置,
  167. {
  168. "text": "入库记录",
  169. "fontSize": "12px",
  170. "width": "82px",
  171. "color": "#00aaff"
  172. }
  173. ]
  174. }
  175. }
  176. }
  177. },{
  178. "path" : "pages/stockIn/index",
  179. "style" :
  180. {
  181. "navigationBarTitleText": "散件入库",
  182. "enablePullDownRefresh": false,
  183. "app-plus": {
  184. "titleNView": {
  185. "backButton": { //自定义 backButton
  186. "title": "返回",
  187. "color": "#666666"
  188. },
  189. "buttons": [ //原生标题栏按钮配置,
  190. {
  191. "text": "入库记录",
  192. "fontSize": "12px",
  193. "width": "82px",
  194. "color": "#00aaff"
  195. }
  196. ]
  197. }
  198. }
  199. }
  200. },{
  201. "path" : "pages/stockIn/detail",
  202. "style" :
  203. {
  204. "navigationBarTitleText": "商品信息",
  205. "enablePullDownRefresh": false
  206. }
  207. }
  208. ,{
  209. "path" : "pages/stockPan/list",
  210. "style" :
  211. {
  212. "navigationBarTitleText": "全部盘点",
  213. "enablePullDownRefresh": false
  214. }
  215. }
  216. ,{
  217. "path" : "pages/stockPan/viewDetail",
  218. "style" :
  219. {
  220. "navigationBarTitleText": "盘点单详情",
  221. "enablePullDownRefresh": false
  222. }
  223. },{
  224. "path" : "pages/stockIn/list",
  225. "style" :
  226. {
  227. "navigationBarTitleText": "入库记录",
  228. "enablePullDownRefresh": false
  229. }
  230. }
  231. ,{
  232. "path" : "pages/stockIn/viewDetail",
  233. "style" :
  234. {
  235. "navigationBarTitleText": "入库单详情",
  236. "enablePullDownRefresh": false
  237. }
  238. }
  239. ,{
  240. "path" : "pages/stockOut/salesOut/viewDetail",
  241. "style" :
  242. {
  243. "navigationBarTitleText": "销售单详情",
  244. "enablePullDownRefresh": false
  245. }
  246. },{
  247. "path" : "pages/stockOut/chainTransferOut/viewDetail",
  248. "style" :
  249. {
  250. "navigationBarTitleText": "连锁调出单详情",
  251. "enablePullDownRefresh": false
  252. }
  253. },{
  254. "path" : "pages/stockOut/storeTransferOut/viewDetail",
  255. "style" :
  256. {
  257. "navigationBarTitleText": "店内调出单详情",
  258. "enablePullDownRefresh": false
  259. }
  260. }
  261. ,{
  262. "path" : "pages/codeBar/codeBar",
  263. "style" :
  264. {
  265. "navigationBarTitleText": "条码维护",
  266. "enablePullDownRefresh": false
  267. }
  268. },
  269. {
  270. "path": "pages/stock/index", // 库存
  271. "style": {
  272. "navigationBarTitleText": "库存",
  273. "enablePullDownRefresh": false
  274. }
  275. },
  276. {
  277. "path": "pages/stock/stockDetail", // 库存详情
  278. "style": {
  279. "navigationBarTitleText": "库存详情",
  280. "enablePullDownRefresh": false
  281. }
  282. },
  283. {
  284. "path" : "pages/purchasing/list",
  285. "style" :
  286. {
  287. "navigationBarTitleText": "采购入库",
  288. "enablePullDownRefresh": false
  289. }
  290. }
  291. ,{
  292. "path" : "pages/purchasing/index",
  293. "style" :
  294. {
  295. "navigationBarTitleText": "采购入库",
  296. "enablePullDownRefresh": false
  297. }
  298. }
  299. ],
  300. "globalStyle": {
  301. "navigationBarTextStyle": "black",
  302. "navigationBarTitleText": "uni-app",
  303. "navigationBarBackgroundColor": "#F8F8F8",
  304. "backgroundColor": "#F8F8F8",
  305. "app-plus": {
  306. "titleNView":{
  307. "backButton": { //自定义 backButton
  308. "title": "返回",
  309. "color": "#666666"
  310. }
  311. }
  312. }
  313. },
  314. "uniIdRouter": {}
  315. }