pages.json 12 KB

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