pages-clz.json 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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. "navigationStyle": "custom", // 是否显示导航栏 default显示,custom不显示
  10. "navigationBarTitleText": "登录"
  11. }
  12. },
  13. {
  14. "path": "pages/login/apply-trial", // 申请试用
  15. "style": {
  16. "navigationStyle": "default", // 是否显示导航栏 default显示,custom不显示
  17. "navigationBarTitleText": "申请试用"
  18. }
  19. },
  20. {
  21. "path": "pages/login/forget-pass", // 忘记密码
  22. "style": {
  23. "navigationStyle": "default", // 是否显示导航栏 default显示,custom不显示
  24. "navigationBarTitleText": "忘记密码"
  25. }
  26. },
  27. {
  28. "path": "pages/login/userAuthYs", // 用户隐私政策须知
  29. "style": {
  30. "navigationStyle": "default", // 是否显示导航栏 default显示,custom不显示
  31. "navigationBarTitleText": "用户协议及隐私保护政策"
  32. }
  33. },
  34. {
  35. "path": "pages/index/index",
  36. "style": {
  37. "navigationBarTitleText": "智能巡店"
  38. }
  39. },
  40. {
  41. "path": "pages/videoShopTour/videoShopTour",
  42. "style": {
  43. "navigationBarTitleText": "视频巡店"
  44. }
  45. },
  46. {
  47. "path": "pages/searchPage/searchPage",
  48. "style": {
  49. "navigationStyle": "custom", // 隐藏系统导航栏
  50. "navigationBarTextStyle": "black" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一
  51. }
  52. },
  53. {
  54. "path": "pages/organization/organization",
  55. "style": {
  56. "navigationBarTitleText": "按组织机构查询"
  57. }
  58. },
  59. {
  60. "path": "pages/shopTour/shopTour",
  61. "style": {
  62. "navigationBarTitleText": "视频巡店",
  63. "app-plus": {
  64. "bounce": "none", //关闭窗口回弹效果
  65. "titleNView": {
  66. "buttons": [ //原生标题栏按钮配置,
  67. {
  68. "text": "\ue610 考评方案", //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  69. "fontSize": 16,
  70. "color": "#eee",
  71. "width": "120px",
  72. "fontSrc": "/static/iconfont/iconfont.ttf"
  73. }
  74. ]
  75. }
  76. }
  77. }
  78. },
  79. {
  80. "path": "pages/evaluatePlan/evaluatePlan",
  81. "style": {
  82. "navigationBarTitleText": "选择考评方案"
  83. }
  84. },
  85. {
  86. "path": "pages/evaluatePlan/planDetail",
  87. "style": {
  88. "navigationBarTitleText": "考评方案详细"
  89. }
  90. },
  91. {
  92. "path": "pages/work/work",
  93. "style": {
  94. "navigationBarTitleText": "工作台"
  95. }
  96. },
  97. {
  98. "path": "pages/siteInspection/siteInspection",
  99. "style": {
  100. "navigationBarTitleText": "现场巡店"
  101. }
  102. },
  103. {
  104. "path": "pages/signIn/signIn",
  105. "style": {
  106. "navigationBarTitleText": "拍照签到"
  107. }
  108. },
  109. {
  110. "path": "pages/shopTourOver/shopTourOver", // 现场巡店结束签字
  111. "style": {
  112. "navigationBarTitleText": "签字"
  113. }
  114. },
  115. {
  116. "path": "pages/shopTourCompleted/shopTourCompleted", // 现场巡店-巡店完成
  117. "style": {
  118. "navigationBarTitleText": "巡店完成"
  119. }
  120. },
  121. {
  122. "path": "pages/myShopTour/myShopTour", // 我的巡店
  123. "style": {
  124. "navigationBarTitleText": "我的巡店",
  125. "app-plus": {
  126. "bounce": "none", //关闭窗口回弹效果
  127. "titleNView": {
  128. "buttons": [ //原生标题栏按钮配置,
  129. {
  130. "text": "\ue67c 筛选", //原生标题栏增加过滤按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  131. "fontSize": 16,
  132. "color": "#eee",
  133. "width": "80px",
  134. "fontSrc": "/static/iconfont/iconfont.ttf"
  135. }
  136. ]
  137. }
  138. }
  139. }
  140. },
  141. {
  142. "path": "pages/shopTourRecord/shopTourRecord", // 巡店记录
  143. "style": {
  144. "navigationBarTitleText": "巡店记录"
  145. }
  146. },
  147. {
  148. "path": "pages/shopTourDetails/shopTourDetails", // 巡店详情
  149. "style": {
  150. "navigationBarTitleText": "巡店详情"
  151. }
  152. },
  153. {
  154. "path": "pages/spotCheckDetails/spotCheckDetails", // 点检详情
  155. "style": {
  156. "navigationBarTitleText": "点检详情"
  157. }
  158. },
  159. {
  160. "path": "pages/spotCheckCenter/spotChecking",
  161. "style": {
  162. "navigationBarTitleText": "点检中心"
  163. }
  164. }, {
  165. "path": "pages/spotCheckCenter/spotCheckResult",
  166. "style": {
  167. "navigationBarTitleText": "点检结果"
  168. }
  169. },
  170. {
  171. "path" : "pages/userCenter/viewStores",
  172. "style" : {
  173. "navigationBarTitleText": "可点检门店"
  174. }
  175. },
  176. {
  177. "path": "pages/spotCheckConfigure/spotCheckList",
  178. "style": {
  179. "navigationBarTitleText": "点检任务配置",
  180. "titleNView": {
  181. "buttons": [
  182. {
  183. "text": ""
  184. }
  185. ]
  186. }
  187. }
  188. },
  189. {
  190. "path": "pages/spotCheckConfigure/addSpotCheck",
  191. "style": {
  192. "navigationBarTitleText": "新增点检任务"
  193. }
  194. },
  195. {
  196. "path": "pages/spotCheckConfigure/spotCheckDetail/spotCheckDetail",
  197. "style": {
  198. "navigationBarTitleText": "点检任务详情"
  199. }
  200. },
  201. {
  202. "path": "pages/spotCheckConfigure/spotCheckDetail/evaluateItemDetail",
  203. "style": {
  204. "navigationBarTitleText": "考评指标详情"
  205. }
  206. },
  207. {
  208. "path": "pages/spotCheckConfigure/evaluateItem",
  209. "style": {
  210. "navigationBarTitleText": "考评指标"
  211. }
  212. },
  213. {
  214. "path": "pages/spotCheckConfigure/evaluateStore",
  215. "style": {
  216. "navigationBarTitleText": "考评门店"
  217. }
  218. },
  219. {
  220. "path": "pages/userCenter/userCenter",
  221. "style": {
  222. "navigationBarTitleText": "个人中心"
  223. }
  224. },
  225. {
  226. "path": "pages/userCenter/personInfo", // 我的>个人信息
  227. "style": {
  228. "navigationBarTitleText": "个人信息"
  229. }
  230. },
  231. {
  232. "path": "pages/userCenter/aboutUs", // 我的>关于我们
  233. "style": {
  234. "navigationBarTitleText": "关于我们"
  235. }
  236. },
  237. {
  238. "path": "pages/userCenter/changePwd", // 我的>修改密码
  239. "style": {
  240. "navigationBarTitleText": "修改密码"
  241. }
  242. },
  243. {
  244. "path": "pages/toDoList/toDoList", // 待办单 > 待办单列表
  245. "style": {
  246. "navigationBarTitleText": "待办单",
  247. "app-plus": {
  248. "titleNView": {
  249. "buttons": [
  250. {
  251. "text": ""
  252. }
  253. ]
  254. }
  255. }
  256. }
  257. },
  258. {
  259. "path": "pages/toDoList/backlogDetail", // 待办单 > 问题详情
  260. "style": {
  261. "navigationBarTitleText": "待办单详情"
  262. }
  263. },
  264. {
  265. "path": "pages/toDoList/addBacklog", // 待办单 > 创建问题
  266. "style": {
  267. "navigationBarTitleText": "新增待办单"
  268. }
  269. },
  270. {
  271. "path": "pages/toDoList/chooseReceiveUser", // 待办单 > 选择抄送人
  272. "style": {
  273. "navigationBarTitleText": "选择抄送人"
  274. }
  275. }
  276. ,{
  277. "path" : "pages/spotCheck/spotCheck",
  278. "style" : {
  279. "navigationBarTitleText": "开始点检"
  280. }
  281. },
  282. {
  283. "path": "pages/toDoList/chooseEvaluateItem",
  284. "style": {
  285. "navigationBarTitleText": "考评指标"
  286. }
  287. }
  288. ],
  289. "globalStyle": {
  290. "navigationBarTitleText": "智能巡店",
  291. "navigationBarTextStyle": "white",
  292. "navigationBarBackgroundColor": "#0b6ce0",
  293. "backgroundColor": "#F8F8F8",
  294. "app-plus": {
  295. // 将回弹属性关掉
  296. "bounce": "none",
  297. "scrollIndicator": "none"
  298. }
  299. },
  300. "tabBar": {
  301. "color": "#7A7E83",
  302. "selectedColor": "#0b6ce0",
  303. "borderStyle": "#eee",
  304. "backgroundColor": "#ffffff",
  305. "fontSize": "14px",
  306. "list": [{
  307. "pagePath": "pages/index/index",
  308. "iconPath": "static/zyuxd/tabbar/home.png",
  309. "selectedIconPath": "static/zyuxd/tabbar/home-active.png",
  310. "text": "首页"
  311. }, {
  312. "pagePath": "pages/work/work",
  313. "iconPath": "static/zyuxd/tabbar/work.png",
  314. "selectedIconPath": "static/zyuxd/tabbar/work-active.png",
  315. "text": "工作台"
  316. }, {
  317. "pagePath": "pages/userCenter/userCenter",
  318. "iconPath": "static/zyuxd/tabbar/user.png",
  319. "selectedIconPath": "static/zyuxd/tabbar/user-active.png",
  320. "text": "我的"
  321. }]
  322. }
  323. }