pages.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. {
  2. "pages" : [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. // "path" : "pages/my/index",
  6. "path": "pages/cashier/index",
  7. "style": {
  8. // "navigationBarTitleText": "收银台"
  9. "navigationStyle": "custom",
  10. "enablePullDownRefresh": true
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText": "启动"
  17. }
  18. },
  19. {
  20. "path": "pages/my/index",
  21. "style": {
  22. "navigationStyle": "custom"
  23. // "navigationBarTitleText": "服务中心"
  24. }
  25. },
  26. // "navigationBarBackgroundColor": "#FFFF"
  27. {
  28. "path": "pages/index/bottombat",
  29. "style": {
  30. "navigationBarTitleText": ""
  31. }
  32. },
  33. // "navigationBarBackgroundColor": "#FFFF"
  34. {
  35. "path": "pages/cashier/index",
  36. "style": {
  37. // "navigationBarTitleText": "收银台",
  38. "navigationStyle": "custom",
  39. "enablePullDownRefresh": true
  40. }
  41. },
  42. {
  43. "path": "pages/storemanagement/index",
  44. "style": {
  45. "navigationBarTitleText": ""
  46. }
  47. },
  48. {
  49. "path": "pages/ordermanagement/index",
  50. "style": {
  51. // "navigationBarTitleText": "订单管理"
  52. "navigationStyle": "custom"
  53. }
  54. },
  55. {
  56. "path": "pages/onlineproductselection/onlineproductselection",
  57. "style": {
  58. // "navigationBarTitleText": "在线选品"
  59. "navigationStyle": "custom",
  60. "enablePullDownRefresh": true
  61. }
  62. },
  63. {
  64. "path": "pages/supplychainon/supplychainon",
  65. "style": {
  66. // "navigationBarTitleText": "供应链"
  67. "navigationStyle": "custom",
  68. "enablePullDownRefresh": true
  69. }
  70. }
  71. ],
  72. "subPackages" : [
  73. //用户登陆--分包
  74. {
  75. "root" : "pages/user",
  76. "pages" : [
  77. {
  78. "path" : "login/index",
  79. "style" : {
  80. "navigationBarTitleText" : "登录"
  81. }
  82. }
  83. ]
  84. },
  85. // "navigationBarBackgroundColor": "#FFFF"
  86. //开通商户--分包
  87. {
  88. "root" : "openmerchant",
  89. "pages" : [
  90. {
  91. "path" : "guide/index", //指引开通
  92. "style" : {
  93. "navigationStyle" : "custom"
  94. }
  95. },
  96. {
  97. "path" : "amountopening/index", //电商支付
  98. "style" : {
  99. "navigationStyle" : "custom"
  100. }
  101. },
  102. {
  103. "path" : "shopentry/process", //店铺入驻流程
  104. "style" : {
  105. "navigationStyle" : "custom"
  106. }
  107. },
  108. {
  109. "path" : "shopentry/processstore", //店铺入驻流程-门店信息
  110. "style" : {
  111. "navigationStyle" : "custom"
  112. }
  113. },
  114. {
  115. "path" : "shopentry/processidentity", //店铺入驻流程-身份信息
  116. "style" : {
  117. "navigationStyle" : "custom"
  118. }
  119. },
  120. {
  121. "path" : "shopentry/processaudit", //店铺入驻流程-审核
  122. "style" : {
  123. "navigationStyle" : "custom"
  124. }
  125. }
  126. ]
  127. },
  128. //收银台--流程
  129. {
  130. "root" : "shop",
  131. "pages" : [
  132. {
  133. "path" : "perating/activitecode", //聚合码
  134. "style" : {
  135. "navigationStyle" : "custom"
  136. }
  137. },
  138. {
  139. "path" : "perating/statement", //经营报表
  140. "style" : {
  141. "navigationStyle" : "custom"
  142. }
  143. },
  144. {
  145. "path" : "perating/consumption", //开通消费分
  146. "style" : {
  147. "navigationStyle" : "custom"
  148. }
  149. },
  150. {
  151. "path" : "perating/consumptionbreakdown", //开通消费分
  152. "style" : {
  153. "navigationStyle" : "custom",
  154. "enablePullDownRefresh" : true
  155. }
  156. },
  157. {
  158. "path" : "department/management", //部门管理
  159. "style" : {
  160. "navigationStyle" : "custom"
  161. }
  162. },
  163. {
  164. "path" : "department/managementadd", //添加部门
  165. "style" : {
  166. "navigationStyle" : "custom"
  167. }
  168. },
  169. {
  170. "path" : "employee/list", //员工管理
  171. "style" : {
  172. "navigationStyle" : "custom"
  173. }
  174. },
  175. {
  176. "path" : "employee/listadd", //添加员工
  177. "style" : {
  178. "navigationStyle" : "custom"
  179. }
  180. },
  181. {
  182. "path" : "services/setting", //分润设置
  183. "style" : {
  184. "navigationStyle" : "custom"
  185. }
  186. },
  187. {
  188. "path" : "services/lockuser", //锁定用户
  189. "style" : {
  190. "navigationStyle" : "custom",
  191. "enablePullDownRefresh" : true
  192. }
  193. },
  194. {
  195. "path" : "services/mystereo", //得我音响
  196. "style" : {
  197. "navigationStyle" : "custom"
  198. }
  199. },
  200. {
  201. "path" : "commodity/order", //我的订单
  202. "style" : {
  203. "navigationStyle" : "custom",
  204. "enablePullDownRefresh" : true
  205. }
  206. },
  207. {
  208. "path" : "commodity/details", //订单详情
  209. "style" : {
  210. "navigationStyle" : "custom"
  211. }
  212. },
  213. {
  214. "path" : "commodity/sendoutgoods",//发货
  215. "style" : {
  216. "navigationStyle" : "custom"
  217. }
  218. },
  219. {
  220. "path" : "commodity/deliveryman",//选择送货人员
  221. "style" : {
  222. "navigationStyle" : "custom"
  223. }
  224. },
  225. {
  226. "path" : "commodity/logisticsInformationDetail",
  227. "style" :
  228. {
  229. "navigationStyle" : "custom"
  230. }
  231. },
  232. {
  233. "path" : "productManagementModule/productManagement",
  234. "style" :
  235. {
  236. "navigationStyle" : "custom",
  237. "enablePullDownRefresh": true
  238. }
  239. },
  240. {
  241. "path" : "productManagementModule/addProduct",
  242. "style" :
  243. {
  244. "navigationStyle" : "custom"
  245. }
  246. },
  247. {
  248. "path" : "productManagementModule/scanCodeAddProduct",
  249. "style" :
  250. {
  251. "navigationStyle" : "custom"
  252. }
  253. },
  254. {
  255. "path" : "productManagementModule/scanCodeIdentifiedTreasure",
  256. "style" :
  257. {
  258. "navigationStyle" : "custom"
  259. }
  260. },
  261. {
  262. "path" : "productManagementModule/index",
  263. "style" :
  264. {
  265. // "navigationBarTitleText" : "",
  266. "navigationStyle" : "custom"
  267. }
  268. },
  269. {
  270. "path" : "productManagementModule/productevaluation",//商品评价
  271. "style" :
  272. {
  273. // "navigationBarTitleText" : "",
  274. "navigationStyle": "custom",
  275. "enablePullDownRefresh": true
  276. }
  277. },
  278. {
  279. "path" : "productManagementModule/productClassification",//商品分类
  280. "style" : {
  281. "navigationStyle": "custom",
  282. "enablePullDownRefresh": true
  283. }
  284. },
  285. {
  286. "path" : "afterSalesManagement/index",//售后管理
  287. "style" : {
  288. "navigationStyle": "custom",
  289. "enablePullDownRefresh": true
  290. }
  291. },
  292. {
  293. "path" : "afterSalesManagement/afterSalesDetail",//售后详情
  294. "style" :
  295. {
  296. // "navigationBarTitleText" : ""
  297. "navigationStyle": "custom"
  298. }
  299. }
  300. ]
  301. },
  302. //会话
  303. {
  304. "root" : "chat",
  305. "pages" : [
  306. {
  307. "path": "contacts/contacts",
  308. "style": {
  309. "navigationStyle": "custom",
  310. "navigationBarTextStyle": "white",
  311. "app-plus": {
  312. "bounce": "none"
  313. }
  314. }
  315. }
  316. ]
  317. },
  318. {
  319. "root" : "emChat",
  320. "pages" : [
  321. {
  322. "path": "emChatContainer/index",
  323. "style": {
  324. "navigationStyle": "custom",
  325. "navigationBarTextStyle": "white",
  326. "app-plus": {
  327. "bounce": "none"
  328. }
  329. }
  330. }
  331. ]
  332. },
  333. {
  334. "root" : "chatIndex",
  335. "pages" : [
  336. {
  337. "path" : "storemanagement/index",
  338. "style" : {
  339. "navigationStyle": "custom"
  340. }
  341. }
  342. ]
  343. }
  344. ],
  345. "globalStyle" : {
  346. "navigationBarTextStyle" : "black",
  347. "navigationBarTitleText" : "uni-app",
  348. "navigationBarBackgroundColor" : "#F8F8F8",
  349. "backgroundColor" : "#F8F8F8"
  350. },
  351. "navigateToMiniProgramAppIdList" : [ "wxfb755febdb800f23" ],
  352. "tabBar" : {
  353. "borderStyle" : "black",
  354. "backgroundColor" : "#FFFFFF",
  355. "color" : "#4D4D4D",
  356. "selectedColor" : "#1F7CFF",
  357. "list" : [
  358. {
  359. "pagePath" : "pages/cashier/index",
  360. "iconPath" : "static/tab/tai1.png",
  361. "selectedIconPath" : "static/tab/tai.png",
  362. "text" : "收银台"
  363. },
  364. {
  365. // "pagePath" : "shop/productManagementModule/productManagement",
  366. "pagePath" : "shop/productManagementModule/index",
  367. "iconPath" : "static/tab/dian.png",
  368. "selectedIconPath" : "static/tab/dian1.png",
  369. "text" : "商品管理"
  370. },
  371. // {
  372. // "pagePath" : "pages/supplychainon/supplychainon",
  373. // "iconPath" : "static/tab/gongyinglian.png",
  374. // "selectedIconPath" : "static/tab/gongyinglian1.png",
  375. // "text" : "供应链"
  376. // },
  377. {
  378. "pagePath" : "pages/ordermanagement/index",
  379. "iconPath" : "static/tab/daing.png",
  380. "selectedIconPath" : "static/tab/ding1.png",
  381. "text" : "订单管理"
  382. },
  383. {
  384. "pagePath" :"pages/my/index",
  385. "iconPath" : "/static/tab/wo.png",
  386. "selectedIconPath" : "/static/tab/wo1.png",
  387. "text" : "服务中心"
  388. }
  389. ]
  390. },
  391. "easycom": {
  392. "autoscan": true,
  393. "custom":{
  394. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
  395. }
  396. }
  397. }