Tony Kang il y a 3 mois
Parent
commit
8922c46210

+ 3 - 1
web/building_saas/pm/js/pm_newMain.js

@@ -54,7 +54,9 @@ function isStopCreate() {
   if (userMobile === '15919278500') {
     return false;
   }
-  const names = ['重庆养护(2018)', '内蒙古养护(2019)', '甘肃养护(2021)', '内蒙古高速公路养护(2022)', '内蒙古高速公路养护(2022)'];
+  const names = ['重庆养护(2018)', '内蒙古养护(2019)', '甘肃养护(2021)', '内蒙古高速公路养护(2022)', '内蒙古高速公路养护(2022)',
+    '浙江养护(2005)', '广西养护(2020)', '广西日常养护年度预算(2020)', '河南养护(2022)', '河南日常养护(2022)', '湖南养护(2022)', '湖南日常养护(2022)'
+  ];
   return !!(compilationData && names.includes(compilationData.name));
 }
 

+ 7 - 2
web/building_saas/standard_interface/export/view.js

@@ -34,15 +34,20 @@ const EXPORT_VIEW = (() => {
   //事件监听
   function exportListener() {
     // 导出接口
+    const excludeAreas = ['山东', '广西'];
+    const contactMap = {
+      '山东': '王洪生18660778328',
+      '广西': '陈叶婷15607807379',
+    };
     $('#interface-export-confirm').click(async function () {
       const pr = new SCComponent.InitProgressBar();
       try {
         let dom = $('#export-parent-area')[0];
-        if (dom.options[dom.selectedIndex].text === '山东' && userMobile !== '15919278500') {
+        if (excludeAreas.includes(dom.options[dom.selectedIndex].text) && userMobile !== '15919278500') {
           const message = `尊敬的用户:<br>
           感谢您一直以来对纵横的信任和支持,为了更好地坚守初心,持续为您提供高质量的产品与服务,纵横公路养护云造价已升级为大司空云计价。<br>
           请联系当地客服免费升级账号,使用大司空云计价继续导出导入电子招投标文件。<br>
-          当地服务热线:王洪生18660778328<br>
+          当地服务热线:${contactMap[parentArea] || '王洪生18660778328'}<br>
           全国服务热线:0756-3850888,企业QQ:800003850<br>
           请点链接进入大司空云计价:<a href="https://dsk.smartcost.com.cn">https://dsk.smartcost.com.cn</a>`;
           window.alert(message);

+ 7 - 2
web/building_saas/standard_interface/import/view.js

@@ -46,6 +46,11 @@ const IMPORT_VIEW = (() => {
       $('#interface-import-label').text(file && file.name || '请选择导入文件');
     });
     // 导入确认事件
+    const excludeAreas = ['山东', '广西'];
+    const contactMap = {
+      '山东': '王洪生18660778328',
+      '广西': '陈叶婷15607807379',
+    };
     $('#interface-import-confirm').click(async function () {
       try {
         if (STATE.importing) {
@@ -62,11 +67,11 @@ const IMPORT_VIEW = (() => {
         if (!parentArea || !subArea) {
           throw '请选择有效地区。';
         }
-        if (parentArea === '山东' && userMobile !== '15919278500') {
+        if (excludeAreas.includes(parentArea) && userMobile !== '15919278500') {
           const message = `尊敬的用户:<br>
           感谢您一直以来对纵横的信任和支持,为了更好地坚守初心,持续为您提供高质量的产品与服务,纵横公路养护云造价已升级为大司空云计价。<br>
           请联系当地客服免费升级账号,使用大司空云计价继续导出导入电子招投标文件。<br>
-          当地服务热线:王洪生18660778328<br>
+          当地服务热线:${contactMap[parentArea] || '王洪生18660778328'}<br>
           全国服务热线:0756-3850888,企业QQ:800003850<br>
           请点链接进入大司空云计价:<a href="https://dsk.smartcost.com.cn">https://dsk.smartcost.com.cn</a>`;
           window.alert(message);