|
|
@@ -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);
|