lshcomment 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (430) hide show
  1. package/package.json +16 -0
  2. package/src/assets/Porsche/iconfont.css +19 -0
  3. package/src/assets/Porsche/iconfont.eot +0 -0
  4. package/src/assets/Porsche/iconfont.js +1 -0
  5. package/src/assets/Porsche/iconfont.svg +36 -0
  6. package/src/assets/Porsche/iconfont.ttf +0 -0
  7. package/src/assets/Porsche/iconfont.woff +0 -0
  8. package/src/assets/css/_bootstrap-variables.scss +108 -0
  9. package/src/assets/css/_core-variables.scss +1 -0
  10. package/src/assets/css/_custom.scss +4 -0
  11. package/src/assets/css/bootstrap/_alert.scss +48 -0
  12. package/src/assets/css/bootstrap/_badge.scss +48 -0
  13. package/src/assets/css/bootstrap/_breadcrumb.scss +38 -0
  14. package/src/assets/css/bootstrap/_button-group.scss +198 -0
  15. package/src/assets/css/bootstrap/_buttons.scss +141 -0
  16. package/src/assets/css/bootstrap/_card.scss +223 -0
  17. package/src/assets/css/bootstrap/_carousel.scss +185 -0
  18. package/src/assets/css/bootstrap/_close.scss +29 -0
  19. package/src/assets/css/bootstrap/_code.scss +64 -0
  20. package/src/assets/css/bootstrap/_custom-forms.scss +254 -0
  21. package/src/assets/css/bootstrap/_dropdown.scss +128 -0
  22. package/src/assets/css/bootstrap/_forms.scss +390 -0
  23. package/src/assets/css/bootstrap/_functions.scss +90 -0
  24. package/src/assets/css/bootstrap/_grid.scss +53 -0
  25. package/src/assets/css/bootstrap/_images.scss +43 -0
  26. package/src/assets/css/bootstrap/_input-group.scss +176 -0
  27. package/src/assets/css/bootstrap/_jumbotron.scss +16 -0
  28. package/src/assets/css/bootstrap/_list-group.scss +114 -0
  29. package/src/assets/css/bootstrap/_media.scss +8 -0
  30. package/src/assets/css/bootstrap/_mixins.scss +41 -0
  31. package/src/assets/css/bootstrap/_modal.scss +142 -0
  32. package/src/assets/css/bootstrap/_nav.scss +120 -0
  33. package/src/assets/css/bootstrap/_navbar.scss +284 -0
  34. package/src/assets/css/bootstrap/_pagination.scss +66 -0
  35. package/src/assets/css/bootstrap/_popover.scss +195 -0
  36. package/src/assets/css/bootstrap/_print.scss +111 -0
  37. package/src/assets/css/bootstrap/_progress.scss +32 -0
  38. package/src/assets/css/bootstrap/_reboot.scss +481 -0
  39. package/src/assets/css/bootstrap/_tables.scss +142 -0
  40. package/src/assets/css/bootstrap/_tooltip.scss +107 -0
  41. package/src/assets/css/bootstrap/_transitions.scss +34 -0
  42. package/src/assets/css/bootstrap/_type.scss +123 -0
  43. package/src/assets/css/bootstrap/_utilities.scss +14 -0
  44. package/src/assets/css/bootstrap/_variables.scss +636 -0
  45. package/src/assets/css/bootstrap/bootstrap-grid.scss +37 -0
  46. package/src/assets/css/bootstrap/bootstrap-reboot.scss +9 -0
  47. package/src/assets/css/bootstrap/bootstrap.scss +48 -0
  48. package/src/assets/css/bootstrap/mixins/_alert.scss +13 -0
  49. package/src/assets/css/bootstrap/mixins/_background-variant.scss +12 -0
  50. package/src/assets/css/bootstrap/mixins/_badge.scss +12 -0
  51. package/src/assets/css/bootstrap/mixins/_border-radius.scss +35 -0
  52. package/src/assets/css/bootstrap/mixins/_box-shadow.scss +5 -0
  53. package/src/assets/css/bootstrap/mixins/_breakpoints.scss +105 -0
  54. package/src/assets/css/bootstrap/mixins/_buttons.scss +83 -0
  55. package/src/assets/css/bootstrap/mixins/_clearfix.scss +7 -0
  56. package/src/assets/css/bootstrap/mixins/_float.scss +9 -0
  57. package/src/assets/css/bootstrap/mixins/_forms.scss +81 -0
  58. package/src/assets/css/bootstrap/mixins/_gradients.scss +37 -0
  59. package/src/assets/css/bootstrap/mixins/_grid-framework.scss +56 -0
  60. package/src/assets/css/bootstrap/mixins/_grid.scss +47 -0
  61. package/src/assets/css/bootstrap/mixins/_hover.scss +60 -0
  62. package/src/assets/css/bootstrap/mixins/_image.scss +36 -0
  63. package/src/assets/css/bootstrap/mixins/_list-group.scss +26 -0
  64. package/src/assets/css/bootstrap/mixins/_lists.scss +7 -0
  65. package/src/assets/css/bootstrap/mixins/_nav-divider.scss +10 -0
  66. package/src/assets/css/bootstrap/mixins/_navbar-align.scss +9 -0
  67. package/src/assets/css/bootstrap/mixins/_pagination.scss +22 -0
  68. package/src/assets/css/bootstrap/mixins/_reset-text.scss +18 -0
  69. package/src/assets/css/bootstrap/mixins/_resize.scss +6 -0
  70. package/src/assets/css/bootstrap/mixins/_screen-reader.scss +35 -0
  71. package/src/assets/css/bootstrap/mixins/_size.scss +6 -0
  72. package/src/assets/css/bootstrap/mixins/_table-row.scss +30 -0
  73. package/src/assets/css/bootstrap/mixins/_text-emphasis.scss +12 -0
  74. package/src/assets/css/bootstrap/mixins/_text-hide.scss +8 -0
  75. package/src/assets/css/bootstrap/mixins/_text-truncate.scss +8 -0
  76. package/src/assets/css/bootstrap/mixins/_transition.scss +9 -0
  77. package/src/assets/css/bootstrap/mixins/_visibility.scss +5 -0
  78. package/src/assets/css/bootstrap/utilities/_align.scss +6 -0
  79. package/src/assets/css/bootstrap/utilities/_background.scss +6 -0
  80. package/src/assets/css/bootstrap/utilities/_borders.scss +52 -0
  81. package/src/assets/css/bootstrap/utilities/_clearfix.scss +3 -0
  82. package/src/assets/css/bootstrap/utilities/_display.scss +53 -0
  83. package/src/assets/css/bootstrap/utilities/_embed.scss +52 -0
  84. package/src/assets/css/bootstrap/utilities/_flex.scss +44 -0
  85. package/src/assets/css/bootstrap/utilities/_float.scss +9 -0
  86. package/src/assets/css/bootstrap/utilities/_position.scss +25 -0
  87. package/src/assets/css/bootstrap/utilities/_screenreaders.scss +11 -0
  88. package/src/assets/css/bootstrap/utilities/_sizing.scss +10 -0
  89. package/src/assets/css/bootstrap/utilities/_spacing.scss +41 -0
  90. package/src/assets/css/bootstrap/utilities/_text.scss +49 -0
  91. package/src/assets/css/bootstrap/utilities/_visibility.scss +11 -0
  92. package/src/assets/css/core/_animate.scss +44 -0
  93. package/src/assets/css/core/_aside.scss +64 -0
  94. package/src/assets/css/core/_avatars.scss +51 -0
  95. package/src/assets/css/core/_badge.scss +3 -0
  96. package/src/assets/css/core/_breadcrumb-menu.scss +35 -0
  97. package/src/assets/css/core/_breadcrumb.scss +6 -0
  98. package/src/assets/css/core/_buttons.scss +575 -0
  99. package/src/assets/css/core/_callout.scss +55 -0
  100. package/src/assets/css/core/_card.scss +191 -0
  101. package/src/assets/css/core/_charts.scss +9 -0
  102. package/src/assets/css/core/_dropdown.scss +69 -0
  103. package/src/assets/css/core/_footer.scss +8 -0
  104. package/src/assets/css/core/_grid.scss +15 -0
  105. package/src/assets/css/core/_input-group.scss +6 -0
  106. package/src/assets/css/core/_input.scss +26 -0
  107. package/src/assets/css/core/_layout.scss +397 -0
  108. package/src/assets/css/core/_loading.scss +128 -0
  109. package/src/assets/css/core/_mixins.scss +116 -0
  110. package/src/assets/css/core/_mobile.scss +0 -0
  111. package/src/assets/css/core/_modal.scss +16 -0
  112. package/src/assets/css/core/_nav.scss +32 -0
  113. package/src/assets/css/core/_navbar.scss +106 -0
  114. package/src/assets/css/core/_others.scss +4 -0
  115. package/src/assets/css/core/_progress.scss +15 -0
  116. package/src/assets/css/core/_rtl.scss +267 -0
  117. package/src/assets/css/core/_sidebar.scss +426 -0
  118. package/src/assets/css/core/_switches.scss +301 -0
  119. package/src/assets/css/core/_tables.scss +72 -0
  120. package/src/assets/css/core/_temp.scss +47 -0
  121. package/src/assets/css/core/_typography.scss +36 -0
  122. package/src/assets/css/core/_utilities.scss +3 -0
  123. package/src/assets/css/core/_variables.scss +174 -0
  124. package/src/assets/css/core/_widgets.scss +253 -0
  125. package/src/assets/css/core/core.scss +40 -0
  126. package/src/assets/css/core/utilities/_background.scss +8 -0
  127. package/src/assets/css/core/utilities/_borders.scss +18 -0
  128. package/src/assets/css/core/utilities/_display.scss +18 -0
  129. package/src/assets/css/global.scss +111 -0
  130. package/src/assets/css/iconfont.css +85 -0
  131. package/src/assets/css/loading.css +18 -0
  132. package/src/assets/css/main.scss +15 -0
  133. package/src/assets/css/themes/default.scss +418 -0
  134. package/src/assets/css/themes/first.css +25 -0
  135. package/src/assets/css/vendors/_vendors.scss +1 -0
  136. package/src/assets/css/vendors/chart.js/chart.scss +45 -0
  137. package/src/assets/financial/demo.css +539 -0
  138. package/src/assets/financial/demo_index.html +230 -0
  139. package/src/assets/financial/iconfont.css +21 -0
  140. package/src/assets/financial/iconfont.js +1 -0
  141. package/src/assets/financial/iconfont.json +23 -0
  142. package/src/assets/financial/iconfont.ttf +0 -0
  143. package/src/assets/font_jipan/demo.css +539 -0
  144. package/src/assets/font_jipan/demo_index.html +211 -0
  145. package/src/assets/font_jipan/iconfont.css +19 -0
  146. package/src/assets/font_jipan/iconfont.js +1 -0
  147. package/src/assets/font_jipan/iconfont.json +16 -0
  148. package/src/assets/font_jipan/iconfont.ttf +0 -0
  149. package/src/assets/font_jipan/iconfont.woff +0 -0
  150. package/src/assets/font_jipan/iconfont.woff2 +0 -0
  151. package/src/assets/fontgift/demo.css +539 -0
  152. package/src/assets/fontgift/demo_index.html +207 -0
  153. package/src/assets/fontgift/iconfont.css +17 -0
  154. package/src/assets/fontgift/iconfont.js +1 -0
  155. package/src/assets/fontgift/iconfont.json +16 -0
  156. package/src/assets/fontgift/iconfont.ttf +0 -0
  157. package/src/assets/fonts/iconfont.eot +0 -0
  158. package/src/assets/fonts/iconfont.svg +79 -0
  159. package/src/assets/fonts/iconfont.ttf +0 -0
  160. package/src/assets/fonts/iconfont.woff +0 -0
  161. package/src/assets/img/1.jpg +0 -0
  162. package/src/assets/img/2.jpg +0 -0
  163. package/src/assets/img/404.jpg +0 -0
  164. package/src/assets/img/A01-Line.png +0 -0
  165. package/src/assets/img/A01.png +0 -0
  166. package/src/assets/img/W02-Line.png +0 -0
  167. package/src/assets/img/W02.png +0 -0
  168. package/src/assets/img/arrow-left.png +0 -0
  169. package/src/assets/img/arrow-right.png +0 -0
  170. package/src/assets/img/borad-check.png +0 -0
  171. package/src/assets/img/call-conference-end.png +0 -0
  172. package/src/assets/img/call-conference.png +0 -0
  173. package/src/assets/img/call-consult-end.png +0 -0
  174. package/src/assets/img/call-consult-out.png +0 -0
  175. package/src/assets/img/call-consult.png +0 -0
  176. package/src/assets/img/call-expansion-menu.png +0 -0
  177. package/src/assets/img/call-expansion.png +0 -0
  178. package/src/assets/img/call-hang-up.png +0 -0
  179. package/src/assets/img/call-hold.png +0 -0
  180. package/src/assets/img/call-holding.png +0 -0
  181. package/src/assets/img/call-shrink-menu.png +0 -0
  182. package/src/assets/img/call-shrink.png +0 -0
  183. package/src/assets/img/call-transfer-end.png +0 -0
  184. package/src/assets/img/call-transfer.png +0 -0
  185. package/src/assets/img/call.png +0 -0
  186. package/src/assets/img/cancle-keep.png +0 -0
  187. package/src/assets/img/card.png +0 -0
  188. package/src/assets/img/cash.png +0 -0
  189. package/src/assets/img/customer-portrayal-blue.png +0 -0
  190. package/src/assets/img/customer-portrayal-white.png +0 -0
  191. package/src/assets/img/error.png +0 -0
  192. package/src/assets/img/iris.png +0 -0
  193. package/src/assets/img/left-kuang.png +0 -0
  194. package/src/assets/img/lockimg.png +0 -0
  195. package/src/assets/img/offLine.png +0 -0
  196. package/src/assets/img/success.png +0 -0
  197. package/src/assets/img/tishi.png +0 -0
  198. package/src/assets/img/userimg.png +0 -0
  199. package/src/assets/iocnfont/AI/demo.css +539 -0
  200. package/src/assets/iocnfont/AI/demo_index.html +211 -0
  201. package/src/assets/iocnfont/AI/iconfont.css +19 -0
  202. package/src/assets/iocnfont/AI/iconfont.js +1 -0
  203. package/src/assets/iocnfont/AI/iconfont.json +16 -0
  204. package/src/assets/iocnfont/AI/iconfont.ttf +0 -0
  205. package/src/assets/iocnfont/AI/iconfont.woff +0 -0
  206. package/src/assets/iocnfont/AI/iconfont.woff2 +0 -0
  207. package/src/assets/iocnfont/add/demo.css +539 -0
  208. package/src/assets/iocnfont/add/demo_index.html +212 -0
  209. package/src/assets/iocnfont/add/iconfont.css +20 -0
  210. package/src/assets/iocnfont/add/iconfont.js +1 -0
  211. package/src/assets/iocnfont/add/iconfont.json +16 -0
  212. package/src/assets/iocnfont/add/iconfont.svg +21 -0
  213. package/src/assets/iocnfont/add/iconfont.ttf +0 -0
  214. package/src/assets/iocnfont/add/iconfont.woff +0 -0
  215. package/src/assets/iocnfont/add/iconfont.woff2 +0 -0
  216. package/src/assets/iocnfont/addsf/demo.css +539 -0
  217. package/src/assets/iocnfont/addsf/demo_index.html +506 -0
  218. package/src/assets/iocnfont/addsf/iconfont.css +69 -0
  219. package/src/assets/iocnfont/addsf/iconfont.js +1 -0
  220. package/src/assets/iocnfont/addsf/iconfont.json +107 -0
  221. package/src/assets/iocnfont/addsf/iconfont.ttf +0 -0
  222. package/src/assets/iocnfont/arrow/demo.css +370 -0
  223. package/src/assets/iocnfont/arrow/demo_fontclass.html +58 -0
  224. package/src/assets/iocnfont/arrow/demo_symbol.html +87 -0
  225. package/src/assets/iocnfont/arrow/demo_unicode.html +96 -0
  226. package/src/assets/iocnfont/arrow/iconfont.css +36 -0
  227. package/src/assets/iocnfont/arrow/iconfont.eot +0 -0
  228. package/src/assets/iocnfont/arrow/iconfont.js +1 -0
  229. package/src/assets/iocnfont/arrow/iconfont.svg +35 -0
  230. package/src/assets/iocnfont/arrow/iconfont.ttf +0 -0
  231. package/src/assets/iocnfont/arrow/iconfont.woff +0 -0
  232. package/src/assets/iocnfont/company/demo.css +539 -0
  233. package/src/assets/iocnfont/company/demo_index.html +253 -0
  234. package/src/assets/iocnfont/company/iconfont.css +24 -0
  235. package/src/assets/iocnfont/company/iconfont.js +1 -0
  236. package/src/assets/iocnfont/company/iconfont.json +30 -0
  237. package/src/assets/iocnfont/company/iconfont.ttf +0 -0
  238. package/src/assets/iocnfont/iconfont-otr/iconfont.css +39 -0
  239. package/src/assets/iocnfont/iconfont-otr/iconfont.eot +0 -0
  240. package/src/assets/iocnfont/iconfont-otr/iconfont.js +1 -0
  241. package/src/assets/iocnfont/iconfont-otr/iconfont.json +23 -0
  242. package/src/assets/iocnfont/iconfont-otr/iconfont.svg +14 -0
  243. package/src/assets/iocnfont/iconfont-otr/iconfont.ttf +0 -0
  244. package/src/assets/iocnfont/iconfont-otr/iconfont.woff +0 -0
  245. package/src/assets/iocnfont/iconfont.css +89 -0
  246. package/src/assets/iocnfont/iconfont.eot +0 -0
  247. package/src/assets/iocnfont/iconfont.js +1 -0
  248. package/src/assets/iocnfont/iconfont.svg +134 -0
  249. package/src/assets/iocnfont/iconfont.ttf +0 -0
  250. package/src/assets/iocnfont/iconfont.woff +0 -0
  251. package/src/assets/iocnfont/vehicle/iconfont.css +31 -0
  252. package/src/assets/iocnfont/vehicle/iconfont.eot +0 -0
  253. package/src/assets/iocnfont/vehicle/iconfont.js +1 -0
  254. package/src/assets/iocnfont/vehicle/iconfont.svg +54 -0
  255. package/src/assets/iocnfont/vehicle/iconfont.ttf +0 -0
  256. package/src/assets/iocnfont/vehicle/iconfont.woff +0 -0
  257. package/src/assets/lixinghang/iconfont.css +50 -0
  258. package/src/assets/lixinghang/iconfont.eot +0 -0
  259. package/src/assets/lixinghang/iconfont.js +1 -0
  260. package/src/assets/lixinghang/iconfont.json +58 -0
  261. package/src/assets/lixinghang/iconfont.svg +18 -0
  262. package/src/assets/lixinghang/iconfont.ttf +0 -0
  263. package/src/assets/lixinghang/iconfont.woff +0 -0
  264. package/src/assets/lixinghang/iconfont.woff2 +0 -0
  265. package/src/assets/privacy/demo.css +539 -0
  266. package/src/assets/privacy/demo_index.html +207 -0
  267. package/src/assets/privacy/iconfont.css +17 -0
  268. package/src/assets/privacy/iconfont.js +1 -0
  269. package/src/assets/privacy/iconfont.json +16 -0
  270. package/src/assets/privacy/iconfont.ttf +0 -0
  271. package/src/assets/sheche/demo.css +539 -0
  272. package/src/assets/sheche/demo_index.html +230 -0
  273. package/src/assets/sheche/iconfont.css +21 -0
  274. package/src/assets/sheche/iconfont.js +1 -0
  275. package/src/assets/sheche/iconfont.json +23 -0
  276. package/src/assets/sheche/iconfont.ttf +0 -0
  277. package/src/assets/suggtion/demo.css +539 -0
  278. package/src/assets/suggtion/demo_index.html +207 -0
  279. package/src/assets/suggtion/iconfont.css +17 -0
  280. package/src/assets/suggtion/iconfont.js +1 -0
  281. package/src/assets/suggtion/iconfont.json +16 -0
  282. package/src/assets/suggtion/iconfont.ttf +0 -0
  283. package/src/assets/survey/demo.css +539 -0
  284. package/src/assets/survey/demo_index.html +207 -0
  285. package/src/assets/survey/iconfont.css +17 -0
  286. package/src/assets/survey/iconfont.js +1 -0
  287. package/src/assets/survey/iconfont.json +16 -0
  288. package/src/assets/survey/iconfont.ttf +0 -0
  289. package/src/common/api-collection.js +1749 -0
  290. package/src/common/api-common.js +542 -0
  291. package/src/common/api.js +8475 -0
  292. package/src/common/btn-privilege.js +32 -0
  293. package/src/common/common.js +600 -0
  294. package/src/common/config.js +1508 -0
  295. package/src/common/directives.js +62 -0
  296. package/src/common/filters.js +105 -0
  297. package/src/common/global-filters.js +87 -0
  298. package/src/common/global.js +243 -0
  299. package/src/common/lixinghang-api.js +2941 -0
  300. package/src/common/lixinghang-bankcard.js +174 -0
  301. package/src/common/lixinghang-serviceContract.js +174 -0
  302. package/src/common/lixinghang-url.js +995 -0
  303. package/src/common/lixinghangServiceContract-url.js +38 -0
  304. package/src/common/lixinghangbankcard-url.js +45 -0
  305. package/src/common/logger.js +52 -0
  306. package/src/common/menuData.js +2001 -0
  307. package/src/common/number.js +137 -0
  308. package/src/common/ref-code.js +333 -0
  309. package/src/common/resource-btn.js +807 -0
  310. package/src/common/sequence.js +193 -0
  311. package/src/common/utils.js +17 -0
  312. package/src/components/LshCust/index.vue +885 -0
  313. package/src/components/LshVehicle/index.vue +1027 -0
  314. package/src/components/account-type-select/account-type-select.vue +340 -0
  315. package/src/components/account-type-select/paymentType.vue +287 -0
  316. package/src/components/add-pay-detail/detail-advance.vue +176 -0
  317. package/src/components/add-pay-detail/detail.vue +204 -0
  318. package/src/components/add-pay-detail/index.vue +254 -0
  319. package/src/components/approval-record/approval-record.vue +155 -0
  320. package/src/components/area/index.vue +146 -0
  321. package/src/components/aside/Aside.vue +231 -0
  322. package/src/components/batch-pull/batch-pull.vue +196 -0
  323. package/src/components/blitem-upload/index.vue +224 -0
  324. package/src/components/breadcrumb/Breadcrumb.vue +183 -0
  325. package/src/components/call-popup/index.vue +1318 -0
  326. package/src/components/clueSolitTable/dialog.vue +160 -0
  327. package/src/components/clueSolitTable/index.vue +298 -0
  328. package/src/components/containers/Full.vue +48 -0
  329. package/src/components/custom-fields/index.vue +313 -0
  330. package/src/components/custom-fields1/index.vue +471 -0
  331. package/src/components/customer-vehicle/index.vue +1160 -0
  332. package/src/components/customer-vehicle/new-customer-vehicle.vue +1216 -0
  333. package/src/components/distributeTable/dialog.vue +160 -0
  334. package/src/components/distributeTable/index.vue +262 -0
  335. package/src/components/el/DatePicker.vue +123 -0
  336. package/src/components/el/Dialog.vue +70 -0
  337. package/src/components/el/Page.vue +66 -0
  338. package/src/components/el/Select.vue +217 -0
  339. package/src/components/el/Table.vue +127 -0
  340. package/src/components/el/Upload.vue +215 -0
  341. package/src/components/footer/Footer.vue +18 -0
  342. package/src/components/header/Header.vue +566 -0
  343. package/src/components/header/changeOrg.vue +156 -0
  344. package/src/components/header/changePwd.vue +84 -0
  345. package/src/components/import-exel/index.vue +220 -0
  346. package/src/components/iris-areaqueryshop/index.vue +485 -0
  347. package/src/components/iris-areaqueryshop/lsh-bank-index.vue +233 -0
  348. package/src/components/iris-areaqueryshop/lsh-edit-index.vue +341 -0
  349. package/src/components/iris-areaqueryshop/lsh-index.vue +301 -0
  350. package/src/components/iris-areaqueryshop/lsh-policy-index.vue +280 -0
  351. package/src/components/iris-areaqueryshop/lsh-service-index.vue +208 -0
  352. package/src/components/iris-areaqueryshop/lsh-store-index.vue +231 -0
  353. package/src/components/iris-areaqueryshopCopy/lsh-index.vue +233 -0
  354. package/src/components/iris-car/index.vue +191 -0
  355. package/src/components/iris-card-modal/ApplicableProduct.vue +332 -0
  356. package/src/components/iris-card-modal/BatchProductRef.vue +65 -0
  357. package/src/components/iris-card-modal/index.vue +436 -0
  358. package/src/components/iris-carinfo/index.vue +652 -0
  359. package/src/components/iris-carinfo/iris-carinfo.vue +542 -0
  360. package/src/components/iris-carinfo/iris-carinfo1.vue +564 -0
  361. package/src/components/iris-chinaarea/index.vue +316 -0
  362. package/src/components/iris-chinaarea/list-item.vue +112 -0
  363. package/src/components/iris-chinaarea/treeapi.js +23 -0
  364. package/src/components/iris-input-search/search.vue +226 -0
  365. package/src/components/iris-modal/index.vue +237 -0
  366. package/src/components/iris-oldtree/tree-node.vue +376 -0
  367. package/src/components/iris-oldtree/tree-store.js +250 -0
  368. package/src/components/iris-oldtree/tree.vue +250 -0
  369. package/src/components/iris-plate/index.vue +227 -0
  370. package/src/components/iris-scope/area.vue +254 -0
  371. package/src/components/iris-scope/chinaarea.vue +254 -0
  372. package/src/components/iris-scope/index.vue +285 -0
  373. package/src/components/iris-scope/store.vue +344 -0
  374. package/src/components/iris-scope-clear/index.vue +157 -0
  375. package/src/components/iris-scope-clear/store.vue +355 -0
  376. package/src/components/iris-search/search.vue +299 -0
  377. package/src/components/iris-search/searchSku.vue +312 -0
  378. package/src/components/iris-search2.0/index.vue +163 -0
  379. package/src/components/iris-shopcategory/index.vue +24 -0
  380. package/src/components/iris-suitscope/govt..vue +215 -0
  381. package/src/components/iris-suitscope/index.vue +178 -0
  382. package/src/components/iris-suitscope/sales.vue +224 -0
  383. package/src/components/iris-suitscope/shop.vue +262 -0
  384. package/src/components/iris-suitscope/tableShow.vue +84 -0
  385. package/src/components/iris-tabscarousel/index.vue +268 -0
  386. package/src/components/iris-ticket-modal/index.vue +355 -0
  387. package/src/components/iris-upload/index.vue +217 -0
  388. package/src/components/iris-upload-2.0/index.vue +283 -0
  389. package/src/components/iris-upload-2.1/index.vue +295 -0
  390. package/src/components/iris-upload-2.2/index.vue +317 -0
  391. package/src/components/list-btn-group/list-btn-group.vue +205 -0
  392. package/src/components/lsh-customer/dialog.vue +66 -0
  393. package/src/components/lsh-customer/index.vue +445 -0
  394. package/src/components/lsh-organiza/index.vue +272 -0
  395. package/src/components/lsh-organization/index.vue +254 -0
  396. package/src/components/lsh-vehicle/dialog.vue +53 -0
  397. package/src/components/lsh-vehicle/index.vue +588 -0
  398. package/src/components/lsh-vehicle/lshCust.vue +754 -0
  399. package/src/components/maintaining/index.vue +619 -0
  400. package/src/components/pagination/pagination.vue +178 -0
  401. package/src/components/paginationDistribute/pagination.vue +178 -0
  402. package/src/components/portrayal/portrayal.vue +3671 -0
  403. package/src/components/progress-btn/index.vue +115 -0
  404. package/src/components/query-btn-group/query-btn-group.vue +59 -0
  405. package/src/components/range/china-area-tree.vue +84 -0
  406. package/src/components/range/range.vue +408 -0
  407. package/src/components/range/sales-area-tree.vue +102 -0
  408. package/src/components/recom/index.vue +208 -0
  409. package/src/components/recom/popup.vue +66 -0
  410. package/src/components/recom/recom.vue +169 -0
  411. package/src/components/record/index.vue +148 -0
  412. package/src/components/record/order-history.vue +257 -0
  413. package/src/components/select-car-extend-prop/select-car-extend-prop.vue +265 -0
  414. package/src/components/select-car-extend-prop/tabs.vue +54 -0
  415. package/src/components/select-date/select-date.vue +137 -0
  416. package/src/components/service-info/index.vue +13 -0
  417. package/src/components/sidebar/Sidebar.vue +456 -0
  418. package/src/components/sidebar/SidebarNavDropdown.vue +66 -0
  419. package/src/components/sidebar/SidebarNavLink.vue +157 -0
  420. package/src/components/sidebar/SidebarNavTitle.vue +16 -0
  421. package/src/components/table/dialog.vue +179 -0
  422. package/src/components/table/index.vue +252 -0
  423. package/src/components/tablethree/index.vue +282 -0
  424. package/src/components/tabletwo/dialog.vue +162 -0
  425. package/src/components/tabletwo/index.vue +258 -0
  426. package/src/components/tree/org-tree.vue +188 -0
  427. package/src/components/tree/sku-class.vue +154 -0
  428. package/src/components/treepicker/treepicker.vue +273 -0
  429. package/src/components/utils/Callout.vue +26 -0
  430. package/src/components/utils/Switch.vue +94 -0
@@ -0,0 +1,2001 @@
1
+ /**
2
+ * common config
3
+ * cataLog 为销售老客户用的二级菜单
4
+ * menuCataLog 为新用户用的三级菜单
5
+ */
6
+ import common from './common.js'
7
+ export default {
8
+
9
+ // 二级菜单 子菜单与父菜单匹配归类,菜单顺序为数组顺序
10
+ cataLog: [
11
+ {
12
+ modulName: '销售线索',
13
+ iconClass: "iconfont icon-xiaoshouxiansuo",
14
+ children: ['000481'] // 销售线索
15
+ }, {
16
+ modulName: '前台接待',
17
+ iconClass: "iconfont icon-qiantaijiedai",
18
+ children: ['000463'] // 前台接待
19
+ }, {
20
+ modulName: '金融管理',
21
+ iconClass: "iconfont icon-jinrongguanli",
22
+ children: [
23
+ '000186', // 金融机构
24
+ '000201', // 金融产品
25
+ '001186', // 金融协作报价
26
+ '001187' // 贷款申请管理
27
+ ]
28
+ }, {
29
+ modulName: '保险管理',
30
+ iconClass: "iconfont icon-baoxianguanli",
31
+ children: [
32
+ '000232', // 保险公司
33
+ '000246', // 保险方案
34
+ '001613', // 保险协作报价
35
+ '001670' // 保险出单管理
36
+ ]
37
+ }, {
38
+ modulName: '市场活动',
39
+ iconClass: "iconfont icon-shichanghuodongguanlicopy",
40
+ // 市场活动管理
41
+ children: ['000217']
42
+ }, {
43
+ modulName: 'CRM调研',
44
+ iconClass: "iconfont icon-CRMtiaoyan",
45
+ children: [
46
+ '000252', // 调查问卷设置
47
+ '000275' // 调研任务工作台
48
+ ]
49
+ }, {
50
+ modulName: '订单中心',
51
+ iconClass: "iconfont icon-dingdanzhongxin",
52
+ children: [
53
+ '000551', // 订单信息
54
+ '000608', // 订单收款信息
55
+ '000601', // 订单开票模块
56
+ '000607', // 订单退款信息
57
+ '002331', // 行政挂车
58
+ '002361' // 订单核销
59
+ ]
60
+ }, {
61
+ modulName: '仓库管理',
62
+ iconClass: "iconfont icon-cangkuguanli",
63
+ children: [
64
+ '000402', // 仓库信息
65
+ '000442', // 仓库库区
66
+ '000448' // 仓库库位
67
+ ]
68
+ }, {
69
+ modulName: '库存管理',
70
+ iconClass: "iconfont icon-cangkuguanli",
71
+ children: [
72
+ '000454', // 商品库存查询
73
+ '001340' // 整车库存查询
74
+ ]
75
+ }, {
76
+ modulName: '供应商管理',
77
+ iconClass: "iconfont icon-gongyinglianguanli",
78
+ // 供应商信息
79
+ children: ['000393']
80
+ }, {
81
+ modulName: '商品管理',
82
+ iconClass: "iconfont icon-shangpinguanli",
83
+ children: [
84
+ '000337', // 商品包装
85
+ '000302', // 商品产地
86
+ '000288', // 商品分类
87
+ '000315', // 商品目录
88
+ '000294', // 商品价格
89
+ '000343', // 商品单位
90
+ '000282', // 商品品牌
91
+ '000323', // 精品商品
92
+ '000349', // 组合商品
93
+ '000308', // 商品关联车型设置
94
+ '000429', // 精品采购订单
95
+ '000434' // 精品采购入库
96
+ ]
97
+ }, {
98
+ modulName: '整车商品管理',
99
+ iconClass: "iconfont icon-chexingguanli",
100
+ children: [
101
+ '000321', // 整车商品
102
+ '000767', // 车辆分享平台
103
+ '000769', // 车辆发布管理
104
+ '000818', // 调拨出库管理
105
+ '000826', // 调拨入库管理
106
+ '000333', // 整车锁定管理
107
+ '000410', // 整车采购订单
108
+ '000425', // 整车付款
109
+ '000421', // 整车开票
110
+ '000417', // 整车入库
111
+ '002326', // 科达整车采购
112
+ '002327', // 科达整车付款
113
+ '002282', // 车辆预装
114
+ ]
115
+ }, {
116
+ modulName: '销售行政管理',
117
+ iconClass: "iconfont icon-xiaoshouhangzhengguanli",
118
+ children: [
119
+ '000048', // GP归属设置
120
+ '000056', // SNP归属设置
121
+ '000367', // 客户主档
122
+ '000499', // 销售目标
123
+ '002719', // 销售目标(单车)
124
+ '000516', // 商务政策
125
+ '000530', // 门店审批流设置
126
+ '002197', // 服务费设置
127
+ '002228', // 审批流批量导入设置
128
+ '002526', // SI调整
129
+ '002527' // 手续费调整
130
+ ]
131
+ }, {
132
+ modulName: '车型管理',
133
+ iconClass: "iconfont icon-chexingguanli",
134
+ children: [
135
+ '000111', // 车型-厂家信息
136
+ '000118', // 车型-品牌信息
137
+ '000125', // 车型-车系信息
138
+ '000132', // 车型-车型信息
139
+ '000139', // 车型-排量信息
140
+ '000146', // 车型-进气方式
141
+ '000153', // 主车型信息
142
+ '001050' // 售后车型
143
+ ]
144
+ }, {
145
+ modulName: '数据报表',
146
+ iconClass: "iconfont icon-xiaoshouhangzhengguanli",
147
+ children: [
148
+ '002221', // 销售看板
149
+ '000740', // 展厅流量日志
150
+ '001306', // LPE展厅客流日志
151
+ '001119', // DCC线索跟进转化表
152
+ '001120', // SC线索跟进转化表
153
+ '001203', // 跨部门策略表
154
+ '002503', // 跨部门月报
155
+ '001660', // 销售管理报表
156
+ '001415', // 经销商财务报表
157
+ '001671', // SC线索电话跟进清单
158
+ '000796', // CRM回访跟进表
159
+ '002074', // CRM调研内容情况表
160
+ '001740', // 展厅历史客流导入
161
+ '002183', // 虚拟销售管理报表
162
+ '002384', // 毛利预测表
163
+ '002647', // 新车精品销售台账
164
+ ]
165
+ }, {
166
+ modulName: '基础设置',
167
+ iconClass: "iconfont icon-jichushezhi",
168
+ children: [
169
+ '000024', // 组织管理
170
+ '000030', // 岗位管理
171
+ '000039', // 角色管理
172
+ '002426', // 岗位类型角色管理
173
+ '000099', // 员工信息管理
174
+ '000001', // 数据字典
175
+ '000174', // 门店管理
176
+ '000183', // 销售车型管理
177
+ '000071', // 行政区域管理
178
+ '000085', // 采购区域管理
179
+ '000091', // 销售区域管理
180
+ '000079', // 配送区域管理
181
+ '000018', // 菜单管理
182
+ '000011', // 业务序号
183
+ '000167', // 统一任务调度
184
+ '001091', // 车型适配查询
185
+ '002350', // 公司管理
186
+ '002386', // 授信管理
187
+ '002510' // 车辆导出 //新增
188
+ ]
189
+ }
190
+ ],
191
+
192
+ // 老三级菜单 子菜单与父菜单匹配归类
193
+ menuCataLog: [
194
+ {
195
+ modulName: '工作台',
196
+ iconClass: 'iconfont icon-icon_shouye font-18',
197
+ children: ['002190', '002221'] //新增销售PC数据看板
198
+ },
199
+ {
200
+ modulName: '系统设置',
201
+ iconClass: "iconfont icon-icon_xitongguanli font-18",
202
+ children: [
203
+ '000001', // 数据字典
204
+ '000662', // 账务账期
205
+ '000011', // 业务序号
206
+ '000018', // 菜单管理
207
+ '000167', // 系统任务调度
208
+ '000048', // GP归属设置
209
+ '000056', // SNP归属设置
210
+ '000039', // 角色管理
211
+ '000530', // 工作流管理
212
+ '002457',//维修工时配置
213
+ '002510' // 车辆导出
214
+ ]
215
+ },
216
+ {
217
+ modulName: '行政管理',
218
+ iconClass: "iconfont icon-icon_hangzhengguanli font-18",
219
+ children: [
220
+ '000024', // 组织管理
221
+ '000030', // 岗位管理
222
+ '000979', // 员工管理
223
+ // '001015', // 员工岗位
224
+ '002426' // 岗位类型角色管理
225
+ ]
226
+ },
227
+ {
228
+ modulName: '门店管理',
229
+ iconClass: "iconfont icon-xiaoshouhangzhengguanli",
230
+ children: [
231
+ '001069', // 门店管理
232
+ '000183', // 销售车型管理
233
+ '000402', // 仓库信息
234
+ '000442', // 库区管理
235
+ '000448', // 库位管理
236
+ '000970', // 工位管理
237
+ '001425', // 摆放管理
238
+ '001390' // 店长折扣
239
+ ]
240
+ },
241
+ {
242
+ modulName: '区域管理',
243
+ iconClass: "iconfont icon-quyuguanlicopy",
244
+ children: [
245
+ '000071', // 行政区域
246
+ '000091', // 销售区域
247
+ '000085', // 采购区域
248
+ '000079' // 配送区域
249
+ ]
250
+ },
251
+ {
252
+ modulName: '车型管理',
253
+ iconClass: "iconfont icon-icon_chexingguanli font-18",
254
+ children: [
255
+ '000111', // 厂家管理
256
+ '000118', // 品牌管理
257
+ '000125', // 车系管理
258
+ '000132', // 车型管理
259
+ // '000139', // 排量管理
260
+ // '000146', // 进气方式
261
+ '000153', // 销售车型
262
+ '001050' // 售后车型
263
+ ]
264
+ },
265
+ {
266
+ modulName: '金融管理',
267
+ iconClass: "iconfont icon-icon_jinrongguanli font-18",
268
+ children: [
269
+ '000186', // 金融机构
270
+ '000201', // 金融产品
271
+ '001186', // 协作报价
272
+ '001187' // 贷款申请
273
+ ]
274
+ },
275
+ {
276
+ modulName: '保险管理',
277
+ iconClass: "iconfont icon-icon_baoxianguanli font-18",
278
+ children: [
279
+ '000232', // 保险公司
280
+ '000246', // 保险方案
281
+ '001613', // 协作报价
282
+ '001670' // 保险出单
283
+ ]
284
+ },
285
+ {
286
+ modulName: '市场活动',
287
+ iconClass: "iconfont icon-icon_shichanghuodong font-18",
288
+ // 活动管理
289
+ children: ['000217']
290
+ },
291
+ {
292
+ modulName: 'CRM管理',
293
+ iconClass: "iconfont icon-icon_CRMguanli font-18",
294
+ children: [
295
+ '000252', // 问卷设置
296
+ '000275', // 调研任务
297
+ '002299', // 售后招揽任务分配
298
+ '002332', // 售后招揽任务清单
299
+ '002292' // 车辆保养参数配置
300
+ ]
301
+ },
302
+ {
303
+ modulName: '商品中心',
304
+ iconClass: "iconfont icon-shangpinguanli",
305
+ children: [
306
+ '000288', // 分类管理
307
+ '000315', // 目录管理
308
+ {
309
+ childName: '整车信息',
310
+ textCode: [
311
+ '000321', // 整车信息
312
+ '000333' // 整车锁定/解锁
313
+ ]
314
+ }, {
315
+ childName: '商品信息',
316
+ textCode: [
317
+ '000325', // 商品管理
318
+ '000282', // 品牌管理
319
+ '000302', // 产地管理
320
+ '000337', // 包装管理
321
+ '000343', // 单位管理
322
+ '000294', // 商品定价
323
+ /* '000308', // 商品车型适配*/
324
+ '001093', // 商品适配概览
325
+ '001091' // 车型适配查询
326
+ ]
327
+ }, {
328
+ childName: '组合信息',
329
+ textCode: [
330
+ '001032', // 组合商品
331
+ /* '001161', // 组合分类
332
+ '001155' // 组合目录*/
333
+ ]
334
+ }
335
+ ],
336
+ },
337
+ {
338
+ modulName: '服务管理',
339
+ iconClass: "iconfont icon-xiaoshouhangzhengguanli",
340
+ children: [
341
+ '000786', // 分类管理
342
+ '000791', // 目录管理
343
+ {
344
+ childName: '服务信息',
345
+ textCode: [
346
+ '000877', // 服务管理
347
+ '000906' // 服务商品用量
348
+ ]
349
+ }, {
350
+ childName: '服务定价',
351
+ textCode: [
352
+ '000884', // 车型工时管理
353
+ '000897' // 套餐售价设置
354
+ ],
355
+ },
356
+ '002055', // 服务预约推荐配置
357
+ '001343' // 推荐服务
358
+ ],
359
+ },
360
+ {
361
+ modulName: '客户管理',
362
+ iconClass: "iconfont icon-xiaoshouhangzhengguanli",
363
+ //
364
+ children: [
365
+ '001437', // 客户档案
366
+ '002649', // 车辆档案
367
+ '002350', // 公司管理
368
+ '002386', // 授信管理
369
+ ]
370
+ },
371
+ {
372
+ modulName: '供应商管理',
373
+ iconClass: "iconfont icon-icon_gongyingshangguanli font-18",
374
+ children: [
375
+ '000636', // 供应商信息
376
+ '000670' // 采购合同
377
+ ]
378
+ },
379
+ {
380
+ modulName: '供应链管理',
381
+ iconClass: "iconfont icon-gongzuoliuguanlicopy font-18",
382
+ children: [
383
+ {
384
+ childName: '需求管理',
385
+ textCode: [
386
+ '001103', // 日常补货计划
387
+ '001126' // 需求处理
388
+ ]
389
+ }, {
390
+ childName: '整车采购',
391
+ textCode: [
392
+ '000410', // 采购订单
393
+ '000425', // 采购付款
394
+ '000421', // 采购开票
395
+ '000417', // 采购入库
396
+ '002326', // 科达整车采购
397
+ '002327', // 科达整车付款
398
+ ]
399
+ }, {
400
+ childName: '整车共享',
401
+ textCode: [
402
+ '000767', // 车辆分享
403
+ '000769', // 车辆发布
404
+ '000818', // 调拨出库
405
+ '000826' // 调拨入库
406
+ ]
407
+ }, {
408
+ childName: '商品供应链',
409
+ textCode: [
410
+ '002141', // 商品采购
411
+ '002163', // 采购入库
412
+ '001326', // 采购退货
413
+ '000698', // 调拨出库
414
+ '000720', // 调拨入库
415
+ '000962', // 内售出库
416
+ '000957', // 内售入库
417
+ '001601', // 自采管理
418
+ '001602', // 自采到货处理
419
+ '001615', // 商品库存调整
420
+ '000684', // 报损/报溢
421
+ '002282' // 车辆预装车
422
+ ]
423
+ }, {
424
+ childName: '库存信息',
425
+ textCode: [
426
+ '000454', // 商品库存
427
+ '001340', // 整车库存
428
+ '001319', // 入库批次查询
429
+ '001322', // 出入库查询
430
+ '001564' // 调拨在途查询
431
+ ]
432
+ }, {
433
+ childName: '盘点管理',
434
+ textCode: [
435
+ '000622', // 盘点计划
436
+ '000610' // 盘点处理
437
+ ]
438
+ }, {
439
+ childName: '对账/核销',
440
+ textCode: [
441
+ '001539', // 对账单管理
442
+ '001549' // 核销单管理
443
+ ]
444
+ },
445
+ '001780' // 自采对账核销
446
+ ]
447
+ },
448
+ {
449
+ modulName: '整车交易',
450
+ iconClass: "iconfont icon-icon_zhengchexiaoshou font-18",
451
+ children: [
452
+ {
453
+ childName: '行政设置',
454
+ textCode: [
455
+ '000499', // 销售目标
456
+ '002719', // 销售目标(单车)
457
+ '000516', // 商务政策
458
+ '001740', // 历史客流导入
459
+ '002197', // 服务费设置
460
+ '002526', // SI调整
461
+ '002527' // 手续费调整
462
+ ]
463
+ }, {
464
+ childName: '新车销售',
465
+ textCode: [
466
+ '000551', // 订单信息
467
+ '000463', // 前台接待
468
+ '000481', // 销售线索
469
+ '002331', // 行政挂车
470
+ '000601', // 订单发票模块
471
+ '000607', // 订单退款信息
472
+ '000608', // 订单收款信息
473
+ '002361' // 订单核销
474
+ ]
475
+ }
476
+ ],
477
+ },
478
+ {
479
+ modulName: '售后交易',
480
+ iconClass: "iconfont icon-xiaoshouguanlicopy",
481
+ children: [
482
+ {
483
+ childName: '行政设置',
484
+ textCode: [
485
+ '000836', // 员工排班
486
+ '001351' // 检查模板
487
+ ]
488
+ },
489
+ '001742', // 快捷洗车
490
+ {
491
+ childName: '预约单',
492
+ textCode: ['001913'] // 预约单查询
493
+ },
494
+ {
495
+ childName: '售后维修',
496
+ textCode: [
497
+ '001697', // 预检单查询
498
+ '001672', // 工单查询
499
+ '000929', // 派工管理
500
+ '000951', // 打卡管理
501
+ '001741', // 维修领料
502
+ '002202', // 寄存查询
503
+ '001724', // 工单收款
504
+ '001371', // 工单开票
505
+ '002302', // 完工检查
506
+ '002309', // 竣工校验
507
+ '002400', // 退货入库
508
+ '002512', // 提交结算
509
+ '002469', // 结算查询
510
+ '002611', // 备件外销
511
+ ]
512
+ }, {
513
+ childName: '退款',
514
+ textCode: ['002238'] // 退款查询
515
+ }
516
+ ],
517
+ },
518
+ {
519
+ modulName: '卡券中心',
520
+ iconClass: "iconfont icon-icon_qiaquanzhongxin font-18",
521
+ children: [
522
+ {
523
+ childName: '卡中心',
524
+ textCode: [
525
+ '001216', // 计次卡模版
526
+ '001566', // 储值卡模版
527
+ '001261', // 卡管理
528
+ '001226', // 卡销售
529
+ '001239', // 卡充值
530
+ '001307' // 卡退换
531
+ ]
532
+ },
533
+ {
534
+ childName: '券中心',
535
+ textCode: [
536
+ '001469', // 券模板
537
+ '001667', // 券管理
538
+ '001952' // 券销售
539
+ ]
540
+ }
541
+ ],
542
+ },
543
+ {
544
+ modulName: '财务管理',
545
+ iconClass: "iconfont icon-icon_caiwuguanli font-18",
546
+ children: [
547
+ {
548
+ childName: '发票管理',
549
+ textCode: [
550
+ '001376', // 退票管理
551
+ '002632' // 开票管理
552
+ ]
553
+ },
554
+ {
555
+ childName: '对账管理',
556
+ textCode: [
557
+ '002475', // 应收对账管理
558
+ '002561'
559
+ ]
560
+ },
561
+ {
562
+ childName: '核销管理',
563
+ textCode: [
564
+ '002497', // 应收核销管理
565
+ '002582'
566
+ ]
567
+ },
568
+ {
569
+ childName: '出门单管理',
570
+ textCode: [
571
+ '002686', // 出门单管理
572
+ ]
573
+ },
574
+ '002538', // 收款单管理
575
+ ],
576
+ },
577
+ {
578
+ modulName: '数据报表',
579
+ iconClass: "iconfont icon-icon_shujubaobiao font-18",
580
+ children: [
581
+ {
582
+ childName:'整车交易',
583
+ textCode: [
584
+ '000740', // 展厅客流日志
585
+ '000796', // CRM回访跟进表
586
+ '001203', // 跨部门策略表
587
+ '002503', // 跨部门月报
588
+ '001119', // DCC线索跟进转化表
589
+ '001120', // SC线索跟进转化表
590
+ '001306', // LPE展厅客流日志
591
+ '001660', // 销售管理报表
592
+ '001415', // 经销商财务报表
593
+ '001671', // SC线索电话跟进清单
594
+ '002074', // CRM调研情况表
595
+ '002183', // 虚拟销售管理报表
596
+ '002384', // 毛利预测表
597
+ ]
598
+ },
599
+ {
600
+ childName:'整车销售',
601
+ textCode: [
602
+ '002647', // 新车精品销售台账
603
+ ]
604
+ }
605
+ ],
606
+ },
607
+ ],
608
+
609
+ // 新三级菜单
610
+ newMenuCataLog: [
611
+ {
612
+ modulName: '首页',
613
+ iconClass: "iconfont icon-icon_shouye font-18",
614
+ children: [
615
+ '002221', // 首页-PC端数据看板
616
+ '002190' // 首页-售后看板
617
+ ]
618
+ },
619
+ {
620
+ modulName: '系统管理',
621
+ iconClass: "iconfont icon-icon_xitongguanli font-18",
622
+ children: [
623
+ {
624
+ childName: '系统设置',
625
+ textCode: [
626
+ '000011', // 业务序号
627
+ '000001', // 数据字典
628
+ '000018', // 菜单管理
629
+ '000167' // 系统任务调度
630
+ ]
631
+ }, {
632
+ childName: '初始化设置',
633
+ textCode: [
634
+ '000530', // 审批流管理
635
+ '002228', // 审批流批量导入
636
+ '000786', // 服务分类
637
+ '000288', // 商品分类
638
+ '000791', // 服务目录
639
+ '000315' // 商品目录
640
+ ]
641
+ }, {
642
+ childName: '行政设置',
643
+ textCode: [
644
+ '000048', // GP归属设置
645
+ '000056' // SNP归属设置
646
+ ]
647
+ }, {
648
+ childName: '区域设置',
649
+ textCode: [
650
+ '000071', // 行政区域
651
+ '000091', // 销售区域
652
+ '000085', // 采购区域
653
+ '000079' // 配送区域
654
+ ]
655
+ }, {
656
+ childName: '车型设置',
657
+ textCode: [
658
+ '000111', // 厂家管理
659
+ '000118', // 品牌管理
660
+ '000125', // 车系管理
661
+ '000132', // 车型管理
662
+ '001050', // 销售车型管理
663
+ ]
664
+ }
665
+ ]
666
+ }, {
667
+ modulName: '组织管理',
668
+ iconClass: "iconfont icon-icon_zuzhiguanli font-18",
669
+ children: [
670
+ '000024', // 组织管理
671
+ '001069', // 门店管理
672
+ '000030', // 岗位管理
673
+ '000039', // 角色管理
674
+ '002426', // 岗位类型与角色管理
675
+ '000979' // 员工信息管理
676
+ ]
677
+ }, {
678
+ modulName: '仓库管理',
679
+ iconClass: "iconfont icon-qitaleixingcopy font-18",
680
+ children: [
681
+ '000402', // 仓库管理
682
+ '000442', // 库区管理
683
+ '000448', // 库位管理
684
+ '001425' // 摆放管理
685
+ ]
686
+ }, {
687
+ modulName: '行政管理',
688
+ iconClass: "iconfont icon-icon_hangzhengguanli font-18",
689
+ children: [
690
+ '002197', // 服务费设置
691
+ '000662', // 账务账期
692
+ '000516', // 商务政策
693
+ '000499', // 销售目标
694
+ '002719', // 销售目标(单车)
695
+ '002526', // SI调整
696
+ '002527', // 手续费调整
697
+ '000183', // 销售车型管理
698
+ '001740', // 历史客流导入
699
+ '002331', // 行政挂车
700
+ '000970', // 工位管理
701
+ '001390' // 岗位折扣
702
+ ]
703
+ }, {
704
+ modulName: '市场活动',
705
+ iconClass: "iconfont icon-icon_shichanghuodong font-18",
706
+ children: [
707
+ '000217' // 活动管理
708
+ ]
709
+ }, {
710
+ modulName: 'CRM',
711
+ iconClass: "iconfont icon-icon_CRMguanli font-18",
712
+ children: [
713
+ {
714
+ childName: '基础设置',
715
+ textCode: ['000252'], // 问卷设置
716
+ },
717
+ '001437', // 客户档案
718
+ '002649', // 车辆档案
719
+ {
720
+ childName: '公司客户',
721
+ textCode: [
722
+ '002350', // 公司管理
723
+ '002386', // 授信管理
724
+ ]
725
+ },
726
+ '000275', // 调研回访
727
+ '002299', // 客户招揽分配
728
+ '002332', // 客户招揽清单
729
+ ]
730
+ }, {
731
+ modulName: '整车销售',
732
+ iconClass: "iconfont icon-icon_zhengchexiaoshou font-18",
733
+ children: [
734
+ '000463', // 前台接待
735
+ '000481', // 销售线索
736
+ '000551', // 整车订单
737
+ ]
738
+ }, {
739
+ modulName: '车辆管理',
740
+ iconClass: "iconfont icon-icon_chexingguanli font-18",
741
+ children: [
742
+ '000321', // 整车查询
743
+ '000333', // 整车锁定/解锁
744
+ {
745
+ childName: '整车采购',
746
+ textCode: [
747
+ '000410', // 采购订单
748
+ '000417', // 采购入库
749
+ ]
750
+ },
751
+ '002282', // 车辆预装
752
+ {
753
+ childName: '整车调拨',
754
+ textCode: [
755
+ '000767', // 车辆分享
756
+ '000769', // 车辆发布
757
+ '000818', // 调拨出库
758
+ '000826', // 调拨入库
759
+ ]
760
+ }, {
761
+ childName: '整车库存',
762
+ textCode: [
763
+ '001340', // 库存查询
764
+ ]
765
+ }
766
+ ]
767
+ }, {
768
+ modulName: '金融管理',
769
+ iconClass: "iconfont icon-icon_jinrongguanli font-18",
770
+ children: [
771
+ '000186', // 金融机构
772
+ '000201', // 金融产品
773
+ '001186', // 协作报价
774
+ '001187' // 金融申请
775
+ ]
776
+ }, {
777
+ modulName: '保险管理',
778
+ iconClass: "iconfont icon-icon_baoxianguanli font-18",
779
+ children: [
780
+ '000232', // 保险公司
781
+ '000246', // 保险方案
782
+ '001613', // 协作报价
783
+ '001670' // 保险出单
784
+ ]
785
+ }, {
786
+ modulName: '财务管理',
787
+ iconClass: "iconfont icon-icon_caiwuguanli font-18",
788
+ children: [
789
+ {
790
+ childName: '整车采购结算',
791
+ textCode: [
792
+ '000425', // 整车采购付款
793
+ '000421', // 整车采购开票
794
+ ]
795
+ }, {
796
+ childName: '整车订单结算',
797
+ textCode: [
798
+ '000608', // 订单收款
799
+ '000607', // 订单退款
800
+ '000601', // 订单开票
801
+ '002361' // 订单核销
802
+ ]
803
+ }, {
804
+ childName: '收付款管理',
805
+ textCode: [
806
+ '002538', // 收款管理
807
+ ]
808
+ }, {
809
+ childName: '对账管理',
810
+ textCode: [
811
+ '002475', // 应收对账管理
812
+ '002561', // 大客户对账管理
813
+ '001539', // 应付对账管理
814
+ '001780', // 自采对账核销管理
815
+ ]
816
+ }, {
817
+ childName: '核销管理',
818
+ textCode: [
819
+ '002497', // 应收核销管理
820
+ '002582', // 大客户核销管理
821
+ '001549', // 应付核销管理
822
+ ]
823
+ }, {
824
+ childName: '发票管理',
825
+ textCode: [
826
+ '002632', // 开票管理
827
+ '001376', // 退票管理
828
+ ]
829
+ },
830
+ {
831
+ childName: '出门单管理',
832
+ textCode: [
833
+ '002686', // 出门单管理
834
+ ]
835
+ }
836
+ ]
837
+ }, {
838
+ modulName: '卡券中心',
839
+ iconClass: "iconfont icon-icon_qiaquanzhongxin font-18",
840
+ children: [
841
+ {
842
+ childName: '卡中心',
843
+ textCode: [
844
+ '001216', // 计次卡模版
845
+ '001566', // 储值卡模版
846
+ '001261', // 卡管理
847
+ '001226', // 卡销售
848
+ '001239', // 卡充值
849
+ '001307', // 退换卡申请
850
+ ]
851
+ }, {
852
+ childName: '券中心',
853
+ textCode: [
854
+ '001469', // 券模板
855
+ '001667', // 券管理
856
+ '001952', // 券销售
857
+ ]
858
+ }
859
+ ]
860
+ }, {
861
+ modulName: '供应商管理',
862
+ iconClass: "iconfont icon-icon_gongyingshangguanli font-18",
863
+ children: [
864
+ '000636', // 供应商信息
865
+ '000670', // 采购合同
866
+ ]
867
+ }, {
868
+ modulName: '商品管理',
869
+ iconClass: "iconfont icon-icon_shangpinguanli font-18",
870
+ children: [
871
+ {
872
+ childName: '基础数据',
873
+ textCode: [
874
+ '000282', // 品牌管理
875
+ '000302', // 产地管理
876
+ '000337', // 包装管理
877
+ '000343', // 单位管理
878
+ ]
879
+ }, {
880
+ childName: '商品信息',
881
+ textCode: [
882
+ '000325', // 商品管理
883
+ '000294', // 商品定价
884
+ '000349', // 组合商品
885
+ '001093', // 商品适配设置
886
+ '001091', // 车型适配查询
887
+ ]
888
+ }, {
889
+ childName: '采购管理',
890
+ textCode: [
891
+ '001103', // 日常补货计划
892
+ '001126', // 需求处理
893
+ '002141', // 精品采购
894
+ '001601', // 自采管理
895
+ '001602', // 自采到货处理
896
+ '001326', // 采购退货
897
+ ]
898
+ }, {
899
+ childName: '入库管理',
900
+ textCode: [
901
+ '002163', // 采购入库
902
+ '000720', // 调拨入库
903
+ '000957', // 内售入库
904
+ '002400', // 领料退货入库
905
+ ]
906
+ }, {
907
+ childName: '出库管理',
908
+ textCode: [
909
+ '001741', // 维修领料
910
+ '000698', // 调拨出库
911
+ '000962', // 内售出库
912
+ ]
913
+ }, {
914
+ childName: '库存管理',
915
+ textCode: [
916
+ '000454', // 备件库存
917
+ '002202', // 寄存单查询
918
+ '001615', // 备件库存调整
919
+ '001319', // 入库批次查询
920
+ '001322', // 出入库查询
921
+ '001564', // 调拨在途查询
922
+ ]
923
+ }, {
924
+ childName: '盘点管理',
925
+ textCode: [
926
+ '000622', // 盘点计划
927
+ '000610', // 盘点处理
928
+ '000684', // 报损/报溢
929
+ ]
930
+ }
931
+ ]
932
+ }, {
933
+ modulName: '维修管理',
934
+ iconClass: "iconfont icon-icon_weixiuguanli font-18",
935
+ children: [
936
+ {
937
+ childName: '基础数据管理',
938
+ textCode: [
939
+ '001351', // 检查模板
940
+ '002457', // 维修工时关联配置
941
+ '000836', // 员工排班
942
+ '002292', // 车辆保养参数设置
943
+ ]
944
+ }, {
945
+ childName: '服务管理',
946
+ textCode: [
947
+ '000877', // 服务设置
948
+ '000906', // 服务商品用量
949
+ '000884', // 服务工时管理
950
+ '002055', // 预约推荐服务设置
951
+ '000897', // 服务套餐价设置
952
+ '001343', // 车型推荐服务设置
953
+ ]
954
+ }, {
955
+ childName: '预约管理',
956
+ textCode: [
957
+ '001913', // 预约单
958
+ ]
959
+ }, {
960
+ childName: '售后维修',
961
+ textCode: [
962
+ '001697', // 预检单
963
+ '001742', // 快捷洗车
964
+ '002611', // 零件外销
965
+ '001672', // 工单管理
966
+ '002512', // 提交结算
967
+ '002469', // 结算单查询
968
+ '002238', // 退款申请
969
+ ]
970
+ }, {
971
+ childName: '车间管理',
972
+ textCode: [
973
+ '000929', // 派工管理
974
+ '000951', // 打卡管理
975
+ '002302', // 完工检查
976
+ '002309', // 竣工检验
977
+ ]
978
+ },
979
+ ]
980
+ }, {
981
+ modulName: '数据报表',
982
+ iconClass: "iconfont icon-icon_shujubaobiao font-18",
983
+ children: [
984
+ {
985
+ childName: '整车销售报表',
986
+ textCode: [
987
+ '000740', // 展厅客流日志
988
+ '001306', // LPE展厅客流日
989
+ '001671', // SC线索电话跟进清单
990
+ '001203', // 跨部门策略表
991
+ '002503', // 跨部门策略表月报
992
+ '001119', // DCC线索跟进转化表
993
+ '001120', // SC线索跟进转化表
994
+ '000796', // CRM回访跟进表
995
+ '002074', // CRM调研内容情况
996
+ '001660', // 销售管理报表
997
+ '002183', // 虚拟销售管理报表
998
+ '002384', // 毛利预测表
999
+ '002647', // 新车精品销售台账
1000
+ ]
1001
+ }, {
1002
+ childName: '财务报表',
1003
+ textCode: ['001415'] // 整车销售财务报表
1004
+ }
1005
+ ]
1006
+ }
1007
+ ],
1008
+
1009
+ //菜单sidebar 渲染
1010
+ menuMap: {
1011
+ // ==========================================以下为基础模块
1012
+ //数据字典
1013
+ '000001': {
1014
+ url:common.isweb() + '/dataDictionary/dataDictionary.html',
1015
+ isNative:false
1016
+ },
1017
+ //根据岗位类型添加角色
1018
+ '002426': {
1019
+ url:common.isweb() + '/addingroles/addingroles.html',
1020
+ isNative: false
1021
+ },
1022
+ //业务序号
1023
+ '000011': {
1024
+ url: common.isweb() + '/ordinal-info/ordinal-info.html',
1025
+ isNative:false
1026
+ },
1027
+ //菜单管理
1028
+ '000018': {
1029
+ url: common.isweb() + '/menu/menu.html',
1030
+ isNative:false
1031
+ },
1032
+ //组织管理
1033
+ '000024': {
1034
+ url: common.isweb() + '/organization/organization.html',
1035
+ isNative:false
1036
+ },
1037
+ //岗位管理
1038
+ '000030': {
1039
+ url: common.isweb() + '/position/position.html',
1040
+ isNative:false
1041
+ },
1042
+ //角色管理
1043
+ '000039': {
1044
+ url: common.isweb() + '/role/role.html',
1045
+ isNative:false
1046
+ },
1047
+ //行政区域管理
1048
+ '000071': {
1049
+ url: common.isweb() + '/china/china.html',
1050
+ isNative:false
1051
+ },
1052
+ //配送区域管理
1053
+ '000079': {
1054
+ url: common.isweb() + '/distribution/distribution.html',
1055
+ isNative:false
1056
+ },
1057
+ //采购区域管理
1058
+ '000085': {
1059
+ url: common.isweb() + '/purchase/purchase.html',
1060
+ isNative: false
1061
+ },
1062
+ //销售区域管理
1063
+ '000091': {
1064
+ url: common.isweb() + '/sale/sale.html',
1065
+ isNative: false
1066
+ },
1067
+ //员工信息管理
1068
+ '000099': {
1069
+ url: common.isweb() + '/employee/employee.html',
1070
+ isNative: false
1071
+ },
1072
+ //车型-厂家信息
1073
+ '000111': {
1074
+ url: common.isweb() + '/carType/factory/factory.html',
1075
+ isNative: false
1076
+ },
1077
+ //车型-品牌信息
1078
+ '000118': {
1079
+ url: common.isweb() + '/carType/brand/brand.html',
1080
+ isNative: false
1081
+ },
1082
+ //车型-车系信息
1083
+ '000125': {
1084
+ url: common.isweb() + '/carType/series/series.html',
1085
+ isNative: false
1086
+ },
1087
+ //车型-车型信息
1088
+ '000132': {
1089
+ url: common.isweb() + '/carType/model/model.html',
1090
+ isNative: false
1091
+ },
1092
+ //车型-排量信息
1093
+ '000139': {
1094
+ url: common.isweb() + '/carType/displacement/displacement.html',
1095
+ isNative: false
1096
+ },
1097
+ //车型-进气方式
1098
+ '000146': {
1099
+ url: common.isweb() + '/carType/inlet/inlet.html',
1100
+ isNative: false
1101
+ },
1102
+ //主车型信息
1103
+ '000153': {
1104
+ url: common.isweb() + '/carType/mainCarType/mainCarType.html',
1105
+ isNative: false
1106
+ },
1107
+ //统一任务调度
1108
+ '000167': {
1109
+ url: common.isweb() + '/task/tasklist.html',
1110
+ isNative: false
1111
+ },
1112
+ //门店管理
1113
+ '000174': {
1114
+ url: common.isweb() + '/store/storeInfo/storeInfo.html',
1115
+ isNative: false
1116
+ },
1117
+ //门店可见车型设置
1118
+ '000183': {
1119
+ url: common.isweb() + '/store/storeVisibleCar/storeVisibleCar.html',
1120
+ isNative: false
1121
+ },
1122
+ //主车型信息V2
1123
+ '001050': {
1124
+ url: common.isweb() + '/carType/saleMainCarType/saleMainCarType.html',
1125
+ isNative: false
1126
+ },
1127
+ // ==========================================以下为销售模块
1128
+ // 行政挂车
1129
+ '002331': {
1130
+ url: common.islivePro() + '/salesQuote',
1131
+ isNative: true
1132
+ },
1133
+ //商品关联车型设置
1134
+ '000308': {
1135
+ url: common.islivePro() + '/models/query',
1136
+ isNative: false
1137
+ },
1138
+ //市场活动管理
1139
+ "000217": {
1140
+ url: common.islivePro() + '/market/query',
1141
+ isNative: false
1142
+ },
1143
+ //金融机构
1144
+ "000186": {
1145
+ url: common.islivePro() + '/finance/mainFinance',
1146
+ isNative: false
1147
+ },
1148
+ //金融产品
1149
+ "000201": {
1150
+ url: common.islivePro() + '/financePro/mainFinancePro',
1151
+ isNative: false
1152
+ },
1153
+ //金融协作报价
1154
+ '001186': {
1155
+ url: common.islivePro() + '/financeWb/quote',
1156
+ isNative: false
1157
+ },
1158
+ //金融贷款申请
1159
+ '001187': {
1160
+ url: common.islivePro() + '/financeWb/loan',
1161
+ isNative: false
1162
+ },
1163
+ //保险协作报价
1164
+ "001613": {
1165
+ url: common.islivePro() + '/insuranceWorkbench/quote',
1166
+ isNative: false
1167
+ },
1168
+ //保险出单管理
1169
+ "001670": {
1170
+ url: common.islivePro() + '/insuranceWorkbench/out',
1171
+ isNative: false
1172
+ },
1173
+ //保险公司
1174
+ "000232": {
1175
+ url: common.islivePro() + '/insurance/query',
1176
+ isNative: false
1177
+ },
1178
+ //保险方案
1179
+ "000246": {
1180
+ url:common.islivePro() + '/insurancepro/query',
1181
+ isNative: false
1182
+ },
1183
+ //调查问卷设置
1184
+ "000252": {
1185
+ url:common.islivePro() + '/questionnaire/query',
1186
+ isNative: false
1187
+ },
1188
+
1189
+ //调研任务工作台
1190
+ "000275": {
1191
+ url: common.islivePro() + '/research/query',
1192
+ isNative: false
1193
+ },
1194
+ // 商品分类
1195
+ "000288": {
1196
+ url:common.islivePro() + '/classification',
1197
+ isNative: false
1198
+ },
1199
+ // 商品目录
1200
+ "000315": {
1201
+ url:common.islivePro() + '/catalog',
1202
+ isNative: false
1203
+ },
1204
+ //商品品牌
1205
+ '000282': {
1206
+ url:common.islivePro() + '/commoditybrand',
1207
+ isNative: false
1208
+ },
1209
+ //商品价格
1210
+ '000294': {
1211
+ url:common.islivePro() + '/skuPrice/query',
1212
+ isNative: false
1213
+ },
1214
+ //商品产地
1215
+ '000302': {
1216
+ url: common.islivePro() + '/birthplace',
1217
+ isNative: false
1218
+ },
1219
+ //整车商品
1220
+ '000321': {
1221
+ url: common.islivePro() + '/archives/query',
1222
+ isNative: false
1223
+ },
1224
+ //车辆预装
1225
+ '002282': {
1226
+ url: common.islivePro() + '/preloadedCar',
1227
+ isNative: false
1228
+ },
1229
+ //商品包装
1230
+ '000337': {
1231
+ url: common.islivePro() + '/pack',
1232
+ isNative: false
1233
+ },
1234
+ //商品单位
1235
+ '000343': {
1236
+ url: common.islivePro() + '/commodityunit',
1237
+ isNative: false
1238
+ },
1239
+ //仓库信息
1240
+ '000402': {
1241
+ url: common.islivePro() + '/warehouse/query',
1242
+ isNative: false
1243
+ },
1244
+ //仓库库区
1245
+ '000442': {
1246
+ url: common.islivePro() + '/whArea',
1247
+ isNative: false
1248
+ },
1249
+ //仓库库位
1250
+ '000448': {
1251
+ url: common.islivePro() + '/whLocation',
1252
+ isNative: false
1253
+ },
1254
+ // 销售线索
1255
+ '000481': {
1256
+ url: common.islivePro() + '/dccthread/queryclientmain',
1257
+ isNative: false
1258
+ },
1259
+ //前台接待
1260
+ '000463': {
1261
+ url: common.islivePro() + '/receptionist',
1262
+ isNative: false
1263
+ },
1264
+ //订单发票模块
1265
+ '000601': {
1266
+ url: common.islivePro() + '/billing/query',
1267
+ isNative: false
1268
+ },
1269
+ //订单收款信息
1270
+ '000608': {
1271
+ url: common.islivePro() + '/incollectmoney/query',
1272
+ isNative: false
1273
+ },
1274
+ //订单退款信息
1275
+ '000607': {
1276
+ url: common.islivePro() + '/outcollectmoney/query',
1277
+ isNative: false
1278
+ },
1279
+ //整车订单
1280
+ '000551': {
1281
+ url: common.islivePro() + '/order',
1282
+ isNative: false
1283
+ },
1284
+ //商品库存查询
1285
+ '000454': {
1286
+ url: common.islivePro() + '/storeInfo/sku',
1287
+ isNative: false
1288
+ },
1289
+ //整车库存查询
1290
+ '001340':{
1291
+ url: common.islivePro() + '/storeInfo/car',
1292
+ isNative: false
1293
+ },
1294
+ //整车锁定管理
1295
+ '000333': {
1296
+ url: common.islivePro() + '/archiveslock',
1297
+ isNative: false
1298
+ },
1299
+ //整车采购订单
1300
+ '000410': {
1301
+ url: common.islivePro() + '/procurement/orderForm',
1302
+ isNative: false
1303
+ },
1304
+ //整车采购付款
1305
+ '000425': {
1306
+ url: common.islivePro() + '/pay/query',
1307
+ isNative: false
1308
+ },
1309
+ //整车采购开票
1310
+ '000421': {
1311
+ url: common.islivePro() + '/ticket/query',
1312
+ isNative: false
1313
+ },
1314
+ //整车采购入库
1315
+ '000417': {
1316
+ url: common.islivePro() + '/storage/query',
1317
+ isNative: false
1318
+ },
1319
+ //车辆资源共享平台
1320
+ '000767': {
1321
+ url: common.islivePro() + '/vehicle/share',
1322
+ isNative: false
1323
+ },
1324
+ //车辆资源发布
1325
+ '000769': {
1326
+ url: common.islivePro() + '/vehicle/release/main',
1327
+ isNative: false
1328
+ },
1329
+ //GP归属设置
1330
+ '000048': {
1331
+ url: common.islivePro() + '/gpbelonging/gp',
1332
+ isNative: false
1333
+ },
1334
+ //SNP归属设置
1335
+ '000056': {
1336
+ url: common.islivePro() + '/snpbelonging/snp',
1337
+ isNative: false
1338
+ },
1339
+ //销售目标
1340
+ '000499': {
1341
+ url: common.islivePro() + '/salesTargetPlan/query',
1342
+ isNative: false
1343
+ },
1344
+ //商务政策
1345
+ '000516': {
1346
+ url: common.islivePro() + '/businessaffairs',
1347
+ isNative: false
1348
+ },
1349
+ //门店审批流设置
1350
+ '000530': {
1351
+ url: common.islivePro() + '/salesAdmin/query',
1352
+ isNative: false
1353
+ },
1354
+ //展厅客流日志
1355
+ '000740': {
1356
+ url: common.islivePro() + '/dataReport/exHallPassengerLog',
1357
+ isNative: false
1358
+ },
1359
+ //展厅历史客流导入
1360
+ '001740': {
1361
+ url: common.islivePro() + '/dataReport/exHallPassengerToChannel',
1362
+ isNative: false
1363
+ },
1364
+ //审批流批量导入设置
1365
+ '002228': {
1366
+ url: common.islivePro() + '/approvalFlowBatchImportSetting',
1367
+ isNative: false
1368
+ },
1369
+ '002197': {
1370
+ url: common.islivePro() + '/serviceFree/index',
1371
+ isNative: false
1372
+ },
1373
+ //CRM跟进情况表
1374
+ '000796': {
1375
+ url: common.islivePro() + '/dataReport/crmFollowUp',
1376
+ isNative: false
1377
+ },
1378
+ //SC线索电话跟进清单
1379
+ '001671': {
1380
+ url: common.islivePro() + '/dataReport/phonecalllist',
1381
+ isNative: false
1382
+ },
1383
+ //CRM调研情况表
1384
+ '002074': {
1385
+ url: common.islivePro() + '/crm/index',
1386
+ isNative: false
1387
+ },
1388
+ //虚拟销售管理报表
1389
+ '002183': {
1390
+ url: common.islivePro() + '/dataReport/virtualMarketReportForm',
1391
+ isNative: false
1392
+ },
1393
+ //车款导出
1394
+ '002510': {
1395
+ url: common.islivePro() + '/carDataExport',
1396
+ isNative: false
1397
+ },
1398
+ // 科达整车采购
1399
+ '002326': {
1400
+ url: common.islivePro() + '/kedaprocurement/orderForm',
1401
+ isNative: false
1402
+ },
1403
+ // 科达整车付款
1404
+ '002327': {
1405
+ url: common.islivePro() + '/kedaprocurement/pay',
1406
+ isNative: false
1407
+ },
1408
+ //SC线索跟进及转化表
1409
+ '001120': {
1410
+ url: common.islivePro() + '/dataReport/scThreadFollowUp',
1411
+ isNative: false
1412
+ },
1413
+ //DCC线索跟进及转化表
1414
+ '001119': {
1415
+ url: common.islivePro() + '/dataReport/dccThreadReport',
1416
+ isNative: false
1417
+ },
1418
+ //经销商财务报表
1419
+ '001415': {
1420
+ url: common.islivePro() + '/dataReport/financeReport',
1421
+ isNative: false
1422
+ },
1423
+ //毛利预测表
1424
+ '002384': {
1425
+ url: common.islivePro() + '/dataReport/grossProfitForecastTable',
1426
+ isNative: false
1427
+ },
1428
+ //销售管理报表
1429
+ '001660': {
1430
+ url: common.islivePro() + '/dataReport/salesManageOrder',
1431
+ isNative: false
1432
+ },
1433
+ //跨部门策略表
1434
+ '001203': {
1435
+ url: common.islivePro() + '/policyTable/list',
1436
+ isNative: false
1437
+ },
1438
+ // 跨部门月报
1439
+ '002503': {
1440
+ url: common.islivePro() + '/cross-cuetable/query',
1441
+ isNative: false
1442
+ },
1443
+ //LPE展厅客流日志
1444
+ '001306': {
1445
+ url: common.islivePro() + '/lpe/index',
1446
+ isNative: false
1447
+ },
1448
+ //内采内销调出单
1449
+ '000818': {
1450
+ url: common.islivePro() + '/vehicle/callOut/main',
1451
+ isNative: false
1452
+ },
1453
+ //内采内销调入单
1454
+ '000826': {
1455
+ url: common.islivePro() + '/vehicle/callIn/main',
1456
+ isNative: false
1457
+ },
1458
+ // PC销售看板
1459
+ '002221': {
1460
+ url: common.islivePro() + '/dashboardmarket',
1461
+ isNative: false
1462
+ },
1463
+ // SI调整
1464
+ '002526': {
1465
+ url: common.islivePro() + '/income/si',
1466
+ isNative: false
1467
+ },
1468
+ // 手续费调整
1469
+ '002527': {
1470
+ url: common.islivePro() + '/adjustment/svc',
1471
+ isNative: false
1472
+ },
1473
+ // ==========================================以下为售后模块\
1474
+ // 精品商品 old
1475
+ '000323': {
1476
+ url: common.islivePro() + '/boutique',
1477
+ isNative: false
1478
+ },
1479
+ // dashboard
1480
+ '002190': {
1481
+ url: common.isliveCs() + '/dashboard',
1482
+ isNative: true
1483
+ },
1484
+ // 商品分类 new
1485
+ '000325': {
1486
+ url: common.isliveCs() + '/skuinfo/query',
1487
+ isNative: true
1488
+ },
1489
+ //精品采购订单 老 pro项目
1490
+ '000429': {
1491
+ url: common.islivePro() + '/purchaseOrder',
1492
+ isNative: false
1493
+ },
1494
+ //精品采购订单
1495
+ '002141': {
1496
+ url: common.isliveCs() + '/purchase-order/purchase-query',
1497
+ isNative: true
1498
+ },
1499
+ //精品采购入库 老 pro项目
1500
+ '000434': {
1501
+ url: common.islivePro() + '/inStock',
1502
+ isNative: false
1503
+ },
1504
+ //精品采购入库
1505
+ '002163': {
1506
+ url: common.isliveCs() + '/notarchives-put/notarchives-query',
1507
+ isNative: true
1508
+ },
1509
+ //员工岗位
1510
+ '001015': {
1511
+ url: common.isliveCs() + '/staffjobs/query',
1512
+ isNative: true
1513
+ },
1514
+ //员工打卡
1515
+ '000951': {
1516
+ url: common.isliveCs() + '/clock/clock',
1517
+ isNative: true
1518
+ },
1519
+ //盘点单
1520
+ '000610': {
1521
+ url: common.isliveCs() + '/blitem/blitemSearch',
1522
+ isNative: true
1523
+ },
1524
+ //采购合同
1525
+ '000670': {
1526
+ url: common.isliveCs() + '/purchasecontract/search',
1527
+ isNative: true
1528
+ },
1529
+ //员工管理
1530
+ '000979': {
1531
+ url: common.isliveCs() + '/staff/search',
1532
+ isNative: true
1533
+ },
1534
+ //盘点计划
1535
+ '000622': {
1536
+ url: common.isliveCs() + '/checkplan/query',
1537
+ isNative: true
1538
+ },
1539
+ //账务账期
1540
+ '000662': {
1541
+ url: common.isliveCs() + '/accounting/query',
1542
+ isNative: true
1543
+ },
1544
+ //服务信息
1545
+ '000877': {
1546
+ url: common.isliveCs() + '/serviceitem/query',
1547
+ isNative: true
1548
+ },
1549
+ //服务固定价格
1550
+ '000897': {
1551
+ url: common.isliveCs() + '/service-staticprice/query',
1552
+ isNative: true
1553
+ },
1554
+ //服务工时车型适配
1555
+ '000884': {
1556
+ url: common.isliveCs() + '/service-manhour/query',
1557
+ isNative: true
1558
+ },
1559
+ //非整车调拨入库单
1560
+ '000720': {
1561
+ url: common.isliveCs() + '/allotin/query',
1562
+ isNative: true
1563
+ },
1564
+ //非整车调拨出库单
1565
+ '000698': {
1566
+ url: common.isliveCs() + '/allotout/query',
1567
+ isNative: true
1568
+ },
1569
+ //报损报溢
1570
+ '000684': {
1571
+ url: common.isliveCs() + '/decrease-overflow/query',
1572
+ isNative: true
1573
+ },
1574
+ //库存调整单
1575
+ '001615': {
1576
+ url: common.isliveCs() + '/stock-adjust/query',
1577
+ isNative: true
1578
+ },
1579
+ //员工排班
1580
+ '000836': {
1581
+ url: common.isliveCs() + '/emp-scheduling',
1582
+ isNative: true
1583
+ },
1584
+ //商品服务目录
1585
+ '000791': {
1586
+ url: common.isliveCs() + '/serviceCatalog/query',
1587
+ isNative: true
1588
+ },
1589
+ //商品服务分类
1590
+ '000786': {
1591
+ url: common.isliveCs() + '/serviceClassify/query',
1592
+ isNative: true
1593
+ },
1594
+ //商品服务-服务商品关系及数量信息
1595
+ '000906': {
1596
+ url: common.isliveCs() + '/servicesku',
1597
+ isNative: true
1598
+ },
1599
+ //售后主业务(派工管理)
1600
+ '000929': {
1601
+ url: common.isliveCs() + '/resource-utilization/resource-utilization',
1602
+ isNative: true
1603
+ },
1604
+ //供应商信息
1605
+ '000393': {
1606
+ url: common.islivePro() + '/supplier/query',
1607
+ isNative: false
1608
+ },
1609
+ //商品关联车型设置V2
1610
+ '001000':{
1611
+ url: common.isliveCs() + '/skuCar/skuCarSearch',
1612
+ isNative: true
1613
+ },
1614
+ //车型查询适配SKU
1615
+ '001091':{
1616
+ url: common.isliveCs() + '/carSku',
1617
+ isNative: true
1618
+ },
1619
+ //SKU车型适配全数据预览
1620
+ '001093':{
1621
+ url: common.isliveCs() + '/skuCarAll',
1622
+ isNative: true
1623
+ },
1624
+
1625
+
1626
+ /*==========================================演示测试==============================================================*/
1627
+ //非整车采购订单
1628
+ '000955' :{
1629
+ url: common.isliveCs() + '/purchase-order',
1630
+ isNative: true
1631
+ },
1632
+ // 自采管理
1633
+ '001601' :{
1634
+ url: common.isliveCs() + '/store-ownpurchase/search',
1635
+ isNative: true
1636
+ },
1637
+ // 自采到货处理
1638
+ '001602' :{
1639
+ url: common.isliveCs() + '/arrive-handle/query',
1640
+ isNative: true
1641
+ },
1642
+ //日常补货计划
1643
+ '001103' :{
1644
+ url: common.isliveCs() + '/dailyfill/query',
1645
+ isNative: true
1646
+ },
1647
+ //商品摆放目录
1648
+ '001425' :{
1649
+ url: common.isliveCs() + '/sku-place/query',
1650
+ isNative: true
1651
+ },
1652
+ //非整车采购退货
1653
+ '001326' :{
1654
+ url: common.isliveCs() + '/purchase-return/purchase-return-search',
1655
+ isNative: true
1656
+ },
1657
+ //出入库清单明细
1658
+ '001322' :{
1659
+ url: common.isliveCs() + '/warehousing-list',
1660
+ isNative: true
1661
+ },
1662
+ //入库清单明细
1663
+ '001319' :{
1664
+ url: common.isliveCs() + '/inventory-list',
1665
+ isNative: true
1666
+ },
1667
+ //集团内调拨入库单
1668
+ '000957' :{
1669
+ url: common.isliveCs() + '/group-allotin/query',
1670
+ isNative: true
1671
+ },
1672
+ //集团调拨出库单
1673
+ '000962' :{
1674
+ url: common.isliveCs() + '/group-allotout/query',
1675
+ isNative: true
1676
+ },
1677
+ //需求单
1678
+ '001126' :{
1679
+ url: common.isliveCs() + '/demand-order/require-goods',
1680
+ isNative: true
1681
+ },
1682
+ // 组合
1683
+ // 由于有两个页面的 name 都是 skuComb,所以在本地点击此链接时
1684
+ // 由于重定向会跳到 001032 所对应的页面
1685
+ '000349': {
1686
+ url: common.islivePro() + '/skuComb',
1687
+ isNative: false
1688
+ },
1689
+ //组合商品
1690
+ '001032':{
1691
+ url: common.isliveCs() + '/skuComb/query',
1692
+ isNative: true
1693
+ },
1694
+ // 组合分类
1695
+ '001161' :{
1696
+ url: common.isliveCs() + '/groupClassify/query',
1697
+ isNative: true
1698
+ },
1699
+ // 组合目录
1700
+ '001155' :{
1701
+ url: common.isliveCs() + '/groupCatalog/query',
1702
+ isNative: true
1703
+ },
1704
+ // 门店管理
1705
+ '001069' :{
1706
+ url: common.isliveCs() + '/storemanage/query',
1707
+ isNative: true
1708
+ },
1709
+ //门店工位信息
1710
+ '000970' :{
1711
+ url: common.isliveCs() + '/store-station',
1712
+ isNative: true
1713
+ },
1714
+ //卡模板管理计次卡
1715
+ '001216' :{
1716
+ url: common.isliveCs() + '/card-template-counting/card-template-counting-query',
1717
+ isNative: true
1718
+ },
1719
+ //卡充值
1720
+ '001239' :{
1721
+ url: common.isliveCs() + '/card-pay/card-pay-search',
1722
+ isNative: true
1723
+ },
1724
+ //卡管理
1725
+ '001261' :{
1726
+ url: common.isliveCs() + '/card-manager/query',
1727
+ isNative: true
1728
+ },
1729
+ //卡销售单
1730
+ '001226' :{
1731
+ url: common.isliveCs() + '/card-sale-order/query',
1732
+ isNative: true
1733
+ },
1734
+ //退卡退款
1735
+ '001307' :{
1736
+ url: common.isliveCs() + '/back-card/back-card-query',
1737
+ isNative: true
1738
+ },
1739
+
1740
+ // 券模板
1741
+ '001469': {
1742
+ url: common.isliveCs() + '/ticket-template-counting/ticket-template-counting-query',
1743
+ isNative: true
1744
+ },
1745
+ // 券管理
1746
+ '001667': {
1747
+ url: common.isliveCs() + '/ticket-manager/query',
1748
+ isNative: true
1749
+ },
1750
+ // 券销售
1751
+ '001952': {
1752
+ url: common.isliveCs() + '/coupons-sale-order/query',
1753
+ isNative: true
1754
+ },
1755
+
1756
+ // 检查模板
1757
+ '001351' :{
1758
+ url: common.isliveCs() + '/check-template/check-template-search',
1759
+ isNative: true
1760
+ },
1761
+ // 对账单
1762
+ '001539' :{
1763
+ url: common.isliveCs() + '/statement-account/query',
1764
+ isNative: true
1765
+ },
1766
+ // 对账核销单
1767
+ '001549' : {
1768
+ url: common.isliveCs() + '/statement-account-cancel/query',
1769
+ isNative: true
1770
+ },
1771
+ // 自采对账核销
1772
+ '001780' : {
1773
+ url: common.isliveCs() + '/account-check/index',
1774
+ isNative: true
1775
+ },
1776
+ // 调拨相关清单
1777
+ '001564' :{
1778
+ url: common.isliveCs() + '/allot-relative/query',
1779
+ isNative: true
1780
+ },
1781
+ // 卡模版储值
1782
+ '001566' :{
1783
+ url: common.isliveCs() + '/card-template-storedvalue/card-template-storedvalue-query',
1784
+ isNative: true
1785
+ },
1786
+ // 退票
1787
+ '001376' :{
1788
+ url: common.isliveCs() + '/refund/refund-query',
1789
+ isNative: true
1790
+ },
1791
+ // 开票
1792
+ '001371' :{
1793
+ url: common.isliveCs() + '/workOrderInvoice/workOrderInvoice',
1794
+ isNative: true
1795
+ },
1796
+ // 完工
1797
+ '002302' :{
1798
+ url: common.isliveCs() + '/finish/query',
1799
+ isNative: true
1800
+ },
1801
+ // 竣工
1802
+ '002309' :{
1803
+ url: common.isliveCs() + '/complete/query',
1804
+ isNative: true
1805
+ },
1806
+ // 公司管理
1807
+ '002350': {
1808
+ url:common.isliveCs() + '/company/query',
1809
+ isNative: true
1810
+ },
1811
+ // 授信管理
1812
+ '002386': {
1813
+ url:common.isliveCs() + '/credit/query',
1814
+ isNative: true
1815
+ },
1816
+ '002361': {
1817
+ url:common.isliveCs() + '/enterprise-verification/query',
1818
+ isNative: true
1819
+ },
1820
+ // 售后招揽任务分配
1821
+ '002299' :{
1822
+ url: common.isliveCs() + '/solicit-allocation/query',
1823
+ isNative: true
1824
+ },
1825
+ // 售后招揽任务清单
1826
+ '002332' :{
1827
+ url: common.isliveCs() + '/solicit/query',
1828
+ isNative: true
1829
+ },
1830
+ // 车辆保养配置
1831
+ '002292' :{
1832
+ url: common.isliveCs() + '/vehicle-maintain/query',
1833
+ isNative: true
1834
+ },
1835
+ // 退款查询
1836
+ '002238' :{
1837
+ url: common.isliveCs() + '/repair-order-refund/query',
1838
+ isNative: true
1839
+ },
1840
+ // 洗车
1841
+ '001742': {
1842
+ url: common.isliveCs() + '/vehicle-cleaning/vehicle-cleaning-add',
1843
+ isNative: true
1844
+ },
1845
+ // 维修合同
1846
+ '001689': {
1847
+ url: common.isliveCs() + '/work-order/work-order-search',
1848
+ isNative: true
1849
+ },
1850
+ // 预约单
1851
+ '001913': {
1852
+ url: common.isliveCs() + '/appoint/query',
1853
+ isNative: true
1854
+ },
1855
+ // 预检单
1856
+ '001697': {
1857
+ url: common.isliveCs() + '/precheck-fix/precheck-fix-query',
1858
+ isNative: true
1859
+ },
1860
+ // 订单结算
1861
+ '001724': {
1862
+ url: common.isliveCs() + '/workOrderPay/workOrderPay',
1863
+ isNative: true
1864
+ },
1865
+ // 领料
1866
+ '001741': {
1867
+ url: common.isliveCs() + '/store-requisition/query',
1868
+ isNative: true
1869
+ },
1870
+ // 寄存查询
1871
+ '002202': {
1872
+ url: common.isliveCs() + '/consign/consign-query',
1873
+ isNative: true
1874
+ },
1875
+ // 非整车工单基础包
1876
+ '001672': {
1877
+ url: common.isliveCs() + '/check-fix-list/query',
1878
+ isNative: true
1879
+ },
1880
+ // 促销折扣权限
1881
+ '001390' :{
1882
+ url: common.isliveCs() + '/sale-discount/sale-discount-search',
1883
+ isNative: true
1884
+ },
1885
+ //供应商
1886
+ '000636' :{
1887
+ url: common.isliveCs() + '/supplier/supplierSearch',
1888
+ isNative: true
1889
+ },
1890
+ // 服务预约推荐配置
1891
+ '002055' :{
1892
+ url: common.isliveCs() + '/store-appointment-service/store-appointment-service-query',
1893
+ isNative: true
1894
+ },
1895
+ // 服务推荐
1896
+ '001343' :{
1897
+ url: common.isliveCs() + '/service-recommend/query',
1898
+ isNative: true
1899
+ },
1900
+ //客户主档 pre 销售环境老的 客户主档
1901
+ '000367': {
1902
+ url: common.isliveCs() + '/mancar/query',
1903
+ isNative: true
1904
+ },
1905
+ // 人车-会员车辆信息
1906
+ '001437' :{
1907
+ url: common.isliveCs() + '/mancar/query',
1908
+ isNative: true
1909
+ },
1910
+ // 客户车辆管理
1911
+ '002649' :{
1912
+ url: common.isliveCs() + '/vehicle/query',
1913
+ isNative: true
1914
+ },
1915
+ // 商品信息
1916
+ '000905' :{
1917
+ url: common.isliveCs() + '/skuinfo/query',
1918
+ isNative: true
1919
+ },
1920
+ // 服务信息
1921
+ '000803' :{
1922
+ url: common.isliveCs() + '/serviceitem/query',
1923
+ isNative: true
1924
+ },
1925
+ // 非整车商品采购
1926
+ '001506' :{
1927
+ url: common.isliveCs() + '/notarchives-put/notarchives-query',
1928
+ isNative: true
1929
+ },
1930
+ // 退货入库
1931
+ '002400' :{
1932
+ url: common.isliveCs() + '/refund-sku-instock/query',
1933
+ isNative: true
1934
+ },
1935
+ // 应收对账管理
1936
+ '002475' :{
1937
+ url: common.isliveCs() + '/finance/reconciliation/reconciliation-query',
1938
+ isNative: true
1939
+ },
1940
+ // 应收核销管理
1941
+ '002497' :{
1942
+ url: common.isliveCs() + '/verifications/verification/query',
1943
+ isNative: true
1944
+ },
1945
+ //大客户核销
1946
+ '002582' :{
1947
+ url: common.isliveCs() + '/customers/customer/query',
1948
+ isNative: true
1949
+ },
1950
+ //出门单管理
1951
+ '002686' :{
1952
+ url: common.isliveCs() + '/release/query',
1953
+ isNative: true
1954
+ },
1955
+ // 大客户对账
1956
+ '002561' :{
1957
+ url: common.isliveCs() + '/customer/reconciliation/customer-reconciliation-query',
1958
+ isNative: true
1959
+ },
1960
+ // 收款单管理
1961
+ '002538' :{
1962
+ url: common.isliveCs() + '/collection-query/query',
1963
+ isNative: true
1964
+ },
1965
+ //维修工时配置
1966
+ '002457':{
1967
+ url: common.isliveCs() + '/maintenance-work-config/query',
1968
+ isNative: true
1969
+ },
1970
+ //提交结算
1971
+ '002512' :{
1972
+ url: common.isliveCs() + '/settlement/submit',
1973
+ isNative: true
1974
+ },
1975
+ //结算查询
1976
+ '002469':{
1977
+ url: common.isliveCs() + '/settlement-query/query',
1978
+ isNative: true
1979
+ },
1980
+ // 备件外销
1981
+ '002611':{
1982
+ url: common.isliveCs() + '/spare-parts-sale/insert',
1983
+ isNative: true
1984
+ },
1985
+ // 开票管理
1986
+ '002632':{
1987
+ url: common.isliveCs() + '/receipt/receipt-query',
1988
+ isNative: true
1989
+ },
1990
+ // 新车精品销售台账
1991
+ '002647':{
1992
+ url: common.islivePro() + '/dataReport/qualityGoodsExport',
1993
+ isNative: false
1994
+ },
1995
+ // 销售目标(单车)
1996
+ '002719': {
1997
+ url: common.islivePro() + '/personalizedSalesSetting/query',
1998
+ isNative: true
1999
+ },
2000
+ }
2001
+ }