setting.js 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. const fs = require('fs');
  2. const args = process.argv.slice(2)[0];
  3. const filesToModify = ['./src/manifest.json', './src/pages.json'];
  4. filesToModify.forEach((file) => {
  5. fs.readFile(file, 'utf8', function (err, data) {
  6. if (err) throw err;
  7. let cleanedData = data.replace(/\/\/.*|\/\*[\s\S]*?\*\//g, '');// 使用正则表达式去除单行注释
  8. let state = JSON.parse(cleanedData);// 解析JSON数据
  9. if (file == './src/manifest.json') {
  10. var maps = state["app-plus"].distribute.sdkConfigs.maps
  11. var geolocation = state["app-plus"].distribute.sdkConfigs.geolocation
  12. if (args === 'zhiHuiYun') {
  13. state.name = '综合智慧云'
  14. state.appid = '__UNI__36DE3A0'
  15. state.description = '综合智慧云APP,是一款助力于企业数字化的应用平台,帮助企业提升办公效率,实现组织数字化和业务数字化。'
  16. state.versionName = "2.2.4"
  17. state.versionCode = 24
  18. state.h5.title = '综合智慧云'
  19. maps.amap.name = "amapBOujshtbA"
  20. maps.amap.appkey_ios = "fb35d03fbb17cbf7a8743a522da3c7fc"
  21. maps.amap.appkey_android = "ffc71dfd4e576596027f8f45a1b8fb2f"
  22. geolocation.amap.name = "amapBOujshtbA"
  23. geolocation.amap.appkey_ios = "fb35d03fbb17cbf7a8743a522da3c7fc"
  24. geolocation.amap.appkey_android = "ffc71dfd4e576596027f8f45a1b8fb2f"
  25. geolocation.tencent.apikey_ios = "EGOBZ-74ZET-ST7XS-VYICT-RBLHZ-KLFEX"
  26. geolocation.tencent.apikey_android = "EGOBZ-74ZET-ST7XS-VYICT-RBLHZ-KLFEX"
  27. } else if (args === 'xunJian') {
  28. state.name = '智能巡更'
  29. state.appid = '__UNI__BF1A1F0'
  30. state.description = '智能巡更app,是一款用于监督和记录巡逻人员按照预定路线和时间进行巡逻的系统。'
  31. state.versionName = "2.2.7"
  32. state.versionCode = 27
  33. state.h5.title = '智能巡更'
  34. maps.amap.name = "amap_15575941817CWPEQVCyc"
  35. maps.amap.appkey_ios = "4da4abbd317d0b083d6c25dd9b509eed"
  36. maps.amap.appkey_android = "63bef5d715bfa5433189e7b65516dfa5"
  37. geolocation.amap.name = "amap_15575941817CWPEQVCyc"
  38. geolocation.amap.appkey_ios = "4da4abbd317d0b083d6c25dd9b509eed"
  39. geolocation.amap.appkey_android = "63bef5d715bfa5433189e7b65516dfa5"
  40. geolocation.tencent.apikey_ios = "EGOBZ-74ZET-ST7XS-VYICT-RBLHZ-KLFEX"
  41. geolocation.tencent.apikey_android = "EGOBZ-74ZET-ST7XS-VYICT-RBLHZ-KLFEX"
  42. } else if (args === 'huiYi') {
  43. state.name = '智能会议'
  44. state.appid = '__UNI__F3963F8'
  45. state.description = '智能会议APP,是一款集成了现代信息技术和智能化管理功能的移动应用程序,旨在提升会议体验和管理效率。'
  46. state.versionName = "2.0.5"
  47. state.versionCode = 1
  48. state.h5.title = '智能会议'
  49. maps.amap.name = "amapBOujshtbA"
  50. maps.amap.appkey_ios = "fb35d03fbb17cbf7a8743a522da3c7fc"
  51. maps.amap.appkey_android = "ffc71dfd4e576596027f8f45a1b8fb2f"
  52. geolocation.amap.name = "amapBOujshtbA"
  53. geolocation.amap.appkey_ios = "fb35d03fbb17cbf7a8743a522da3c7fc"
  54. geolocation.amap.appkey_android = "ffc71dfd4e576596027f8f45a1b8fb2f"
  55. geolocation.tencent.apikey_ios = "EGOBZ-74ZET-ST7XS-VYICT-RBLHZ-KLFEX"
  56. geolocation.tencent.apikey_android = "EGOBZ-74ZET-ST7XS-VYICT-RBLHZ-KLFEX"
  57. } else if (args === 'menJin') {
  58. state.name = '智能门禁'
  59. state.appid = '__UNI__8D6E9FD'
  60. state.description = '智能门禁APP,是一款集成了现代信息技术和智能化管理功能的移动应用程序。'
  61. state.versionName = "1.0.0"
  62. state.versionCode = 1
  63. state.h5.title = '智能门禁'
  64. maps.amap.name = "amapBOujshtbA"
  65. maps.amap.appkey_ios = "fb35d03fbb17cbf7a8743a522da3c7fc"
  66. maps.amap.appkey_android = "ffc71dfd4e576596027f8f45a1b8fb2f"
  67. geolocation.amap.name = "amapBOujshtbA"
  68. geolocation.amap.appkey_ios = "fb35d03fbb17cbf7a8743a522da3c7fc"
  69. geolocation.amap.appkey_android = "ffc71dfd4e576596027f8f45a1b8fb2f"
  70. geolocation.tencent.apikey_ios = "EGOBZ-74ZET-ST7XS-VYICT-RBLHZ-KLFEX"
  71. geolocation.tencent.apikey_android = "EGOBZ-74ZET-ST7XS-VYICT-RBLHZ-KLFEX"
  72. }
  73. } else if ('./src/pages.json') {
  74. state.pages.forEach((e, index) => {
  75. if (args === 'zhiHuiYun') {
  76. if (e.style.navigationBarTitleText === "工作台") {
  77. if (index != 0) {
  78. state.pages.splice(0, 1, ...state.pages.splice(index, 1, state.pages[0]))
  79. }
  80. }
  81. state.condition.list[0].path = "pages/login"
  82. } else if (args === 'xunJian') {
  83. if (e.style.navigationBarTitleText === "工作台") {
  84. if (index != 0) {
  85. state.pages.splice(0, 1, ...state.pages.splice(index, 1, state.pages[0]))
  86. }
  87. }
  88. state.condition.list[0].path = "pages/login"
  89. } else if (args === 'huiYi') {
  90. if (e.style.navigationBarTitleText === "人脸识别") {
  91. if (index != 0) {
  92. state.pages.splice(0, 1, ...state.pages.splice(index, 1, state.pages[0]))
  93. }
  94. }
  95. state.condition.list[0].path = "pages/face/index"
  96. } else if (args === 'menJin') {
  97. if (e.style.navigationBarTitleText === "门禁识别") {
  98. if (index != 0) {
  99. state.pages.splice(0, 1, ...state.pages.splice(index, 1, state.pages[0]))
  100. }
  101. }
  102. state.condition.list[0].path = "pages/door/index"
  103. }
  104. })
  105. }
  106. // 将修改后的对象转换回JSON字符串
  107. const updated = JSON.stringify(state, null, 4);
  108. // 写入新的配置到manifest.json
  109. fs.writeFile(file, updated, 'utf8', function (err) {
  110. if (err) throw err;
  111. console.log(file + ' updated successfully');
  112. });
  113. });
  114. })