123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085 |
- import { message, Select } from 'antd';
- import React from 'react';
- import $ from 'jquery/src/ajax';
- import {
- patentTypeList,
- patentStateList,
- patentFieldList,
- technicalSourceList,
- catagoryList,
- intellectualGetList,
- conversionFormList,
- annualReportStateList,
- cognizanceStateList,
- technologyStateList,
- copyrightStateList,
- auditStatusList,
- scaleList,
- companyType,
- industryList,
- contractTypeList,
- contractStateList,
- demandTypeList,
- achievementCategoryList,
- techAuditStatusList,
- auditStatusLists,
- maturityList,
- transferModeList,
- innovationList,
- orderStatusList,
- activityForm,
- activityType,
- boutique,
- hot,
- statuslist,
- customerTyp,
- cityArr,
- customerStatus,
- intentionalService,
- newFollow,
- sex,
- tag,
- contactType,
- contact,
- intentionalServiceOn,
- newFollowOn,
- customerStatusOn,
- Whether,
- Certification,
- currentMember,
- lvl,
- industry,
- socialAttribute,
- station,
- post,
- patternOrganization,
- conditionOrganization,
- categoryState,
- auditStatusL,
- gameState,
- messageType,
- designated,
- featured,
- actives,
- intentProgress,
- transactionProgress,
- contractProgress,
- projectProgress,
- orderType, orderStage, orderState, paymentState, orderChannel, approvedState, lock, paymentMethod, transactionChannel, projectState, transactionProject,
- client,
- stick,
- taskStatus,
- publishStatus,
- changeState,
- distributeState,
- customerSource,
- releaseStateList,
- releasePosition,
- achievementPosition,
- achievementType,
- transaction,
- newsPosition,
- policyPosition,
- newType,
- adviserType,
- authState,
- typeModule,
- lowType,
- msgType,
- ziYuanType,
- couponAuthState,
- couponAuthStates,
- couponCome,
- secretType,
- buyAuditType,
- categoryType,
- categoryPatent,
- maturityType,
- indateType,
- } from './dataDic.js';
- import { provinceList } from './NewDicProvinceList.js';
- // 东北(黑龙江省、吉林省、辽宁省);
- // 华东(上海市、江苏省、浙江省、安徽省、福建省、江西省、山东省、台湾省);
- // 华北(北京市、天津市、山西省、河北省、内蒙古自治区);
- // 华中(河南省、湖北省、湖南省);
- // 华南(广东省、广西壮族自治区、海南省、香港特别行政区、澳门特别行政区);
- // 西南(四川省、贵州省、云南省、重庆市、西藏自治区);
- // 西北(陕西省、甘肃省、青海省、宁夏回族自治区、新疆维吾尔自治区)
- module.exports = {
- placeList: [
- {
- place: "东北",
- children: ["黑龙江", "吉林", "辽宁"],
- value: "1"
- },
- {
- place: "华东",
- children: ["上海", "江苏", "浙江", "安徽", "福建", "江西", "山东", "台湾"],
- value: "2"
- },
- {
- place: "华北",
- children: ["北京", "天津", "山西", "河北", "内蒙古"],
- value: "3"
- },
- {
- place: "华中",
- children: ["河南", "湖北", "湖南"],
- value: "4"
- },
- {
- place: "华南",
- children: ["广东", "广西", "海南", "香港", "澳门"],
- value: "5"
- },
- {
- place: "西南",
- children: ["四川", "贵州", "云南", "重庆", "西藏"],
- value: "6"
- },
- {
- place: "西北",
- children: ["陕西", "甘肃", "青海", "宁夏", "新疆"],
- value: "7"
- }
- ],
- provinceStatus: [
- {
- value: "7",
- key: "安徽"
- },
- {
- value: "15",
- key: "北京"
- },
- {
- value: "27",
- key: "重庆"
- },
- {
- value: "8",
- key: "福建"
- },
- {
- value: "30",
- key: "甘肃"
- },
- {
- value: "24",
- key: "广东"
- },
- {
- value: "20",
- key: "广西"
- },
- {
- value: "25",
- key: "贵州"
- },
- {
- value: "21",
- key: "海南"
- },
- {
- value: "13",
- key: "河北"
- },
- {
- value: "1",
- key: "黑龙江"
- },
- {
- value: "19",
- key: "河南"
- },
- {
- value: "22",
- key: "香港"
- },
- {
- value: "17",
- key: "湖北"
- },
- {
- value: "18",
- key: "湖南"
- },
- {
- value: "5",
- key: "江苏"
- },
- {
- value: "9",
- key: "江西"
- },
- {
- value: "3",
- key: "辽宁"
- },
- {
- value: "2",
- key: "吉林"
- },
- {
- value: "23",
- key: "澳门"
- },
- {
- value: "14",
- key: "内蒙古"
- },
- {
- value: "32",
- key: "宁夏"
- },
- {
- value: "31",
- key: "青海"
- },
- {
- value: "10",
- key: "山东"
- },
- {
- value: "4",
- key: "上海"
- },
- {
- value: "12",
- key: "山西"
- },
- {
- value: "34",
- key: "陕西"
- },
- {
- value: "29",
- key: "四川"
- },
- {
- value: "11",
- key: "台湾"
- },
- {
- value: "16",
- key: "天津"
- },
- {
- value: "33",
- key: "新疆"
- },
- {
- value: "28",
- key: "西藏"
- },
- {
- value: "26",
- key: "云南"
- },
- {
- value: "6",
- key: "浙江"
- },
- ],
- province: [
- "黑龙江",
- "吉林",
- "辽宁",
- "上海",
- "江苏",
- "浙江",
- "安徽",
- "福建",
- "江西",
- "山东",
- "台湾",
- "北京",
- "天津",
- "山西",
- "河北",
- "内蒙古",
- "河南",
- "湖北",
- "湖南",
- "广东",
- "广西",
- "海南",
- "香港",
- "澳门",
- "四川",
- "贵州",
- "云南",
- "重庆",
- "西藏",
- "陕西",
- "甘肃",
- "青海",
- "宁夏",
- "新疆"
- ],
- splitUrl: function (string, i, url) {
- let theList = [];
- let theArr = [];
- if (string && string.length) {
- theArr = string.split(i);
- theArr.map(function (item, i) {
- theList.push({
- uid: -i - 1,
- url: url + item,
- response: {
- data: item
- }
- });
- });
- }
- return theList;
- },
- getBase64: function (img, callback) {
- const reader = new FileReader();
- reader.addEventListener("load", () => callback(reader.result));
- reader.readAsDataURL(img);
- },
- beforeUpload: function (file) {
- const isLt2M = file.size / 1024 / 1024 < 2;
- if (!isLt2M) {
- message.error("图片小大必须小于2MB!");
- }
- return isLt2M;
- },
- beforeUploadFile: function (file) {
- const isImage = file.type.split('/');
- //判断是否是图片类型
- // if (isImage[0] === 'image') {
- // let compressThreshold = 1, isPictureCompress = true, pictureQuality = 0.92;
- // let fileSize = file.size / 1024 / 1024;
- // //当开启图片压缩且图片大小大于等于压缩阈值,进行压缩
- // if ((fileSize >= compressThreshold) && isPictureCompress) {
- // //判断浏览器内核是否支持base64图片压缩
- // if (typeof (FileReader) === 'undefined') {
- // return file;
- // } else {
- // try {
- // // this.setState({
- // // spinLoading: true
- // // });
- // return new Promise(resolve => {
- // //声明FileReader文件读取对象
- // const reader = new FileReader();
- // reader.readAsDataURL(file);
- // reader.onload = () => {
- // // 生成canvas画布
- // const canvas = document.createElement('canvas');
- // // 生成img
- // const img = document.createElement('img');
- // img.src = reader.result;
- // img.onload = () => {
- // const ctx = canvas.getContext('2d');
- // //原始图片宽度、高度
- // let originImageWidth = img.width, originImageHeight = img.height;
- // //默认最大尺度的尺寸限制在(1920 * 1080)
- // let maxWidth = 1920, maxHeight = 1080, ratio = maxWidth / maxHeight;
- // //目标尺寸
- // let targetWidth = originImageWidth, targetHeight = originImageHeight;
- // //当图片的宽度或者高度大于指定的最大宽度或者最大高度时,进行缩放图片
- // if (originImageWidth > maxWidth || originImageHeight > maxHeight) {
- // //超过最大宽高比例
- // if ((originImageWidth / originImageHeight) > ratio) {
- // //宽度取最大宽度值maxWidth,缩放高度
- // targetWidth = maxWidth;
- // targetHeight = Math.round(maxWidth * (originImageHeight / originImageWidth));
- // } else {
- // //高度取最大高度值maxHeight,缩放宽度
- // targetHeight = maxHeight;
- // targetWidth = Math.round(maxHeight * (originImageWidth / originImageHeight));
- // }
- // }
- // // canvas对图片进行缩放
- // canvas.width = targetWidth;
- // canvas.height = targetHeight;
- // // 清除画布
- // ctx.clearRect(0, 0, targetWidth, targetHeight);
- // // 绘制图片
- // ctx.drawImage(img, 0, 0, targetWidth, targetHeight);
- // // quality值越小,图像越模糊,默认图片质量为0.92
- // const imageDataURL = canvas.toDataURL(file.type || 'image/jpeg', pictureQuality);
- // // 去掉URL的头,并转换为byte
- // const imageBytes = window.atob(imageDataURL.split(',')[1]);
- // // 处理异常,将ascii码小于0的转换为大于0
- // const arrayBuffer = new ArrayBuffer(imageBytes.length);
- // const uint8Array = new Uint8Array(arrayBuffer);
- // for (let i = 0; i < imageBytes.length; i++) {
- // uint8Array[i] = imageBytes.charCodeAt(i);
- // }
- // let mimeType = imageDataURL.split(',')[0].match(/:(.*?);/)[1];
- // let newFile = new File([uint8Array], file.name, { type: mimeType || 'image/jpeg' });
- // resolve(newFile);
- // };
- // };
- // reader.onerror = () => {
- // // this.setState({
- // // spinLoading: false
- // // });
- // return file;
- // }
- // }).then(res => {
- // // this.setState({
- // // spinLoading: false
- // // });
- // return res;
- // }).catch(() => {
- // // this.setState({
- // // spinLoading: false
- // // });
- // return file;
- // });
- // } catch (e) {
- // // this.setState({
- // // spinLoading: false
- // // });
- // //压缩出错,直接返回原file对象
- // return file;
- // }
- // }
- // } else {
- // //不需要压缩,直接返回原file对象
- // return file;
- // }
- // } else {
- // //非图片文件,不进行压缩,直接返回原file对象
- // return file;
- // }
- },
- getTime: function (e, t) {
- if (e && !t) {
- var d = new Date(e);
- d =
- d.getFullYear() +
- "-" +
- (d.getMonth() + 1 < 10 ? "0" + (d.getMonth() + 1) : d.getMonth() + 1) +
- "-" +
- (d.getDate() < 10 ? "0" + d.getDate() : d.getDate()) +
- " ";
- // + (d.getHours() < 10 ? "0" + d.getHours() : d.getHours()) + ":" +
- // (d.getMinutes() < 10 ? "0" + d.getMinutes() : d.getMinutes()) + ":" +
- // (d.getSeconds() < 10 ? "0" + d.getSeconds() : d.getSeconds());
- return d;
- } else if (e && t) {
- var d1 = new Date(e);
- var d2 = new Date(e);
- d2 = d2.setMonth(d1.getMonth() + t);
- d2 = new Date(d2);
- d2 =
- d2.getFullYear() +
- "-" +
- (d2.getMonth() + 1 < 10
- ? "0" + (d2.getMonth() + 1)
- : d2.getMonth() + 1) +
- "-" +
- (d2.getDate() < 10 ? "0" + d2.getDate() : d2.getDate()) +
- " ";
- return d2;
- } else {
- return "";
- }
- },
- getPatentType: function (e) {
- if (e) {
- let theType = "";
- patentTypeList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getPatentState: function (e) {
- if (e) {
- let theState = "";
- patentStateList.map(function (item) {
- if (item.value == e) {
- theState = item.key;
- }
- });
- return theState;
- }
- },
- getPatentField: function (e) {
- if (e) {
- let theState = "";
- patentFieldList.map(function (item) {
- if (item.value == e) {
- theState = item.key;
- }
- });
- return theState;
- }
- },
- getTechnicalSource: function (e) {
- if (e) {
- let theSource = "";
- technicalSourceList.map(function (item) {
- if (item.value == e) {
- theSource = item.key;
- }
- });
- return theSource;
- }
- },
- getCatagory: function (e) {
- if (e) {
- let theType = "";
- catagoryList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getIntellectualObtainWay: function (e) {
- if (e) {
- let theType = "";
- intellectualGetList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getConversionForm: function (e) {
- if (e) {
- let theType = "";
- conversionFormList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getAnnualReportState: function (e) {
- if (e) {
- let theType = "";
- annualReportStateList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getCognizanceState: function (e) {
- if (e) {
- let theType = "";
- cognizanceStateList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getTechnologyState: function (e) {
- if (e) {
- let theType = "";
- technologyStateList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //显示用户认证状态
- getAuditState: function (e) {
- if (e) {
- let theType = "";
- auditStatusList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getCopyrightState: function (e) {
- if (e) {
- let theType = "";
- copyrightStateList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- downloadFile: function (path, fileName) {
- window.open(
- globalConfig.context +
- "/open/downloadFile?path=" +
- path +
- "&fileName=" +
- fileName
- );
- },
- techDownloadFile: function (url, id) {
- window.open(globalConfig.context + url + "?id=" + id);
- },
- copyrightDownloadFile: function (id, sign, url) {
- window.open(globalConfig.context + url + "?id=" + id + "&sign=" + sign);
- },
- newDownloadFile: function (id, sign, url, type) {
- if (!type) {
- window.open(globalConfig.context + url + "?id=" + id + "&sign=" + sign);
- }
- if (type) {
- window.open(
- globalConfig.context +
- url +
- "?id=" +
- id +
- "&sign=" +
- sign +
- "&type=" +
- type
- );
- }
- },
- companySearch(input, option) {
- return option.props.children.indexOf(input) >= 0;
- },
- getVacations(ccccc) {
- let now = new Date();
- let theYear = now.getFullYear();
- $.ajax({
- type: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/open/html/json/vacations" + theYear,
- success: data => {
- if (data) {
- ccccc(data);
- }
- }
- });
- },
- getInUrgentTime(date, inUrgent, vocations) {
- if (vocations && vocations.length) {
- let now = new Date(date),
- addNum = 0;
- for (var i = 1; i <= inUrgent;) {
- now.setDate(now.getDate() + 1);
- let thebool = true;
- vocations.map(item => {
- if (item == getKey(now)) {
- thebool = false;
- }
- });
- if (thebool) {
- i++;
- }
- }
- return now;
- }
- function getKey(date) {
- var year = date.getFullYear(),
- month = date.getMonth() + 1,
- day = date.getDate();
- year = "" + year;
- month = (month > 9 ? "" : "0") + month;
- day = (day > 9 ? "" : "0") + day;
- return year + month + day;
- }
- },
- //各种通过接口获取下拉列表
- setPatentStateOption(permission) {
- let theArr = [];
- patentStateList.map(function (item) {
- for (let i = 0; i < permission.length; i++) {
- if (item.value == permission[i]) {
- theArr.push(item);
- }
- }
- });
- return theArr;
- },
- setUserContactsList() {
- let theOption = [];
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/getContacts",
- success: function (data) {
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- return;
- }
- for (let item in data.data) {
- let theData = data.data[item];
- theOption.push(
- <Select.Option value={item} key={theData}>
- {theData}
- </Select.Option>
- );
- }
- }
- });
- return theOption;
- },
- setAdminContactsList(uid) {
- let theOption = [];
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/getContacts",
- data: { uid: uid },
- success: function (data) {
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- return;
- }
- for (let item in data.data) {
- let theData = data.data[item];
- theOption.push(
- <Select.Option value={item} key={theData}>
- {theData}
- </Select.Option>
- );
- }
- }
- });
- return theOption;
- },
- //高企培育资料完成情况(比重)
- getProportion(uid, callback) {
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/proportion",
- data: { uid: uid },
- success: function (data) {
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- data.data = {};
- callback(data.data);
- }
- callback(data.data);
- }
- });
- },
- //保存高企培育资料完成情况
- saveProportion(id, uid, sign, status) {
- $.ajax({
- method: "post",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/confirmProportion",
- data: {
- id: id,
- uid: uid,
- sign: sign,
- status: status
- },
- success: function (data) {
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- return;
- }
- }
- });
- },
- //获取window.location.search传的值
- getSearchUrl(e) {
- let searchURL = e;
- let theObj = {};
- searchURL = searchURL.substring(1, searchURL.length);
- theObj[searchURL.split("&")[0].split("=")[0]] = searchURL
- .split("&")[0]
- .split("=")[1];
- if (searchURL.split("&")[1]) {
- theObj[searchURL.split("&")[1].split("=")[0]] = searchURL
- .split("&")[1]
- .split("=")[1];
- if (searchURL.split("&")[2]) {
- theObj[searchURL.split("&")[2].split("=")[0]] = searchURL
- .split("&")[2]
- .split("=")[1];
- }
- }
- return theObj;
- },
- //预览接口
- getPreview(id, url, sign, callback) {
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/preview/" + url,
- data: {
- id: id,
- sign: sign
- },
- success: function (data) {
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- }
- callback(
- "https://view.officeapps.live.com/op/view.aspx?src=" +
- encodeURIComponent(
- location.origin +
- globalConfig.context +
- "/open/preview?" +
- data.data
- )
- );
- }
- });
- },
- //获取企业规模
- getScaleState(e) {
- if (e) {
- let theType = "";
- scaleList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取企业类型
- getCompanyType(type1, type2) {
- let companyTypeList = [];
- for (let i = 0; i < companyType.length; i++) {
- companyTypeList.push({
- value: companyType[i].value,
- label: companyType[i].label
- });
- if (companyType[i].children) {
- for (let j = 0; j < companyType[i].children.length; j++) {
- companyTypeList.push({
- value: companyType[i].children[j].value,
- label: companyType[i].children[j].label
- });
- }
- }
- }
- companyTypeList.sort(function (a, b) {
- return a.value - b.value;
- });
- let typeKey = "";
- companyTypeList.map(function (item) {
- if (type1 == item.value) {
- typeKey = item.label;
- }
- if (type2 == item.value) {
- typeKey = typeKey + "/" + item.label;
- }
- });
- return typeKey;
- },
- //获取企业行业
- getIndustryType(e) {
- if (e) {
- let theType = "";
- industryList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取合同状态
- getContractType: function (e) {
- if (e) {
- let theType = "";
- contractTypeList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取合同类型
- getContractState: function (e) {
- if (e) {
- let theType = "";
- contractStateList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取需求类型
- getDemandType: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- demandTypeList.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取成果类型
- getAchievementCategory: function (e) {
- if (e || e == "0") {
- let theType = "";
- achievementCategoryList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取需求和成果审核状态
- getTechAuditStatus: function (e) {
- if (e) {
- let theType = "";
- techAuditStatusList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取政策审核状态
- getauditStatus: function (e) {
- if (e || e >= 0) {
- let tt = e.toString();
- let theType = "";
- auditStatusLists.map(function (item) {
- if (item.value == tt) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取需求和成果审核状态
- getMaturity: function (e) {
- if (e) {
- let theType = "";
- maturityList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取需求和成果审核状态
- getTransferMode: function (e) {
- if (e) {
- let theType = "";
- transferModeList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取创新度状态
- getInnovation: function (e) {
- if (e || e == "0") {
- let theType = "";
- innovationList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //获取创新度状态
- getOrderStatus: function (e) {
- if (e) {
- let theType = "";
- orderStatusList.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //科技管理
- //活动圈后台管理
- getActivityType: function (e) {
- if (e) {
- let theType = "";
- activityType.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getActivityForm: function (e) {
- if (e) {
- let theType = "";
- activityForm.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //是否展示在首页
- gethot: function (e) {
- if (e) {
- let theType = "";
- hot.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //是否精品
- getboutique: function (e) {
- if (e) {
- let theType = "";
- boutique.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //客户类型
- getcustomerTyp: function (e) {
- if (e) {
- let theType = "";
- customerTyp.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //省份
- getcityArr: function (e) {
- if (e) {
- let theType = "";
- cityArr.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //客户状态
- getcustomerStatue: function (e) {
- if (e || e == 0) {
- let theType = "";
- customerStatus.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //账户状态
- getStatuslist: function (e) {
- if (e) {
- let theType = "";
- statuslist.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //意向服务
- getCompanyIntention: function (e) {
- if (e) {
- let theType = "";
- intentionalService.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //客户标签
- getTag: function (e) {
- if (e) {
- let theType = "";
- tag.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //最新跟进
- getfllowSituation: function (e) {
- if (e || e == 0) {
- let theType = "";
- newFollow.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //性别
- getsex: function (e) {
- if (e) {
- let theType = "";
- sex.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //联系方式
- getcontact: function (e) {
- if (e) {
- let theType = "";
- contact.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //是否文字与数字转换
- getWhether: function (e) {
- if (e) {
- let theType = "";
- Whether.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //是否实名认证
- getCertification: function (e) {
- if (e) {
- let theType = "";
- Certification.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //会员状态
- getCurrentMember: function (e) {
- if (e) {
- let theType = "";
- currentMember.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //会员等级
- getLvl: function (e) {
- if (e) {
- let theType = "";
- lvl.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //省份转换
- getprovince: function (e) {
- let nub = parseInt(e);
- let theType = "";
- if (nub <= 34) {
- provinceList.map(function (item) {
- if (item.id == nub) {
- theType = item.name;
- }
- });
- }
- if (nub > 34 && nub < 380) {
- provinceList.map(function (item) {
- item.cityList.map(function (city) {
- if (city.id == nub) {
- theType = city.name;
- }
- });
- });
- }
- if (nub >= 380) {
- provinceList.map(function (item) {
- item.cityList.map(function (city) {
- city.areaList.map(function (areas) {
- if (areas.id == nub) {
- theType = areas.name;
- }
- });
- });
- });
- }
- return theType;
- },
- //我的业务跟进状态
- getStatusFollow: function (e) {
- let theType = "";
- if (e) {
- theType = "跟进中";
- } else {
- theType = "停止跟进";
- }
- return theType;
- },
- //我的业务跟进状态
- getContactType: function (e) {
- if (e) {
- let theType = "";
- contactType.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //社会属性
- getSocialAttribute: function (e) {
- if (e) {
- let theType = "";
- socialAttribute.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //行业
- getIndustry: function (e) {
- if (e) {
- let theType = "";
- industry.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //岗位
- getStation: function (e) {
- if (e) {
- let theType = "";
- station.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //职务
- getPost: function (e) {
- if (e) {
- let theType = "";
- post.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //组织类型
- getPattern: function (e) {
- if (e) {
- let theType = "";
- patternOrganization.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //组织状态
- getCondition: function (e) {
- if (e) {
- let theType = "";
- conditionOrganization.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //品类状态
- getCategoryState: function (e) {
- if (e) {
- let theType = "";
- categoryState.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //实名认证
- getAuditStatus: function (index) {
- let e = index ? index.toString() : "";
- if (e) {
- let theType = "";
- auditStatusL.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //品类状态
- getGameState: function (index) {
- if (index || index == 0) {
- let theType = "";
- gameState.map(function (item) {
- if (item.value == index) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //消息类型
- getMessageType: function (index) {
- if (index || index == 0) {
- let theType = "";
- gameState.map(function (item) {
- if (item.value == index) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //发送目标
- getDesignated: function (index) {
- let e = index ? index.toString() : "";
- if (e) {
- let theType = "";
- designated.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //客户端
- getClient: function (index) {
- let e = index ? index.toString() : "";
- if (e) {
- let theType = "";
- client.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //是否置顶
- getStick: function (index) {
- let e = index ? index.toString() : "";
- if (e) {
- let theType = "";
- stick.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getFeatured: function (index) {
- let e = index ? index.toString() : "";
- if (e) {
- let theType = "";
- featured.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getActives: function (e) {
- if (e) {
- let theType = "";
- actives.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //意向进度
- getIntentProgress: function (e) {
- if (e) {
- let theType = "";
- intentProgress.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //交易进度
- getTransactionProgress: function (e) {
- if (e) {
- let theType = "";
- transactionProgress.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //合同进度
- getContractProgress: function (e) {
- if (e) {
- let theType = "";
- contractProgress.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //项目进度
- getProjectProgress: function (e) {
- if (e) {
- let theType = "";
- projectProgress.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //订单类型
- getOrderType: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- orderType.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //订单阶段
- getOrderStage: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- orderStage.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //订单状态o
- getOrderState: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- orderState.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //付款状态
- getPaymentState: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- paymentState.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //订单渠道
- getOrderChannel: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- orderChannel.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //特批状态
- getApprovedState: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- approvedState.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //锁定或废除
- getLock: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- lock.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //支付方式
- getPaymentMethod: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- paymentMethod.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //交易渠道 transactionProject
- getTransactionChannel: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- transactionChannel.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //交易科目
- getTransactionProject: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- transactionProject.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //项目状态
- getProjectState: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- projectState.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //任务状态
- getTaskStatus: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- taskStatus.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //公示状态
- getPublishStatus: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- publishStatus.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //变更状态
- getChangeState: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- changeState.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //分派情况
- getDistributeState: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- distributeState.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //客户来源
- getCustomerSource: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- customerSource.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- /* g个人中心开发 */
- //发布状态
- getReleaseStateList: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- releaseStateList.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //需求发布位置;
- getReleasePositionList: function (e = []) {
- if (e) {
- let theType = [];
- e.map(item => {
- releasePosition.map(function (atem) {
- if (atem.value == item) {
- theType.push(atem.key);
- }
- });
- });
- return theType.join(" - ");
- }
- },
- //政策发布位置
- getPolicyPosition: function (e = []) {
- if (e) {
- let theType = [];
- e.map(item => {
- policyPosition.map(function (atem) {
- if (atem.value == item) {
- theType.push(atem.key);
- }
- });
- });
- return theType.join(" - ");
- }
- },
- //成果发布位置;
- getAchievementPosition: function (e = []) {
- if (e) {
- let theType = [];
- e.map(item => {
- achievementPosition.map(function (atem) {
- if (atem.value == item) {
- theType.push(atem.key);
- }
- });
- });
- return theType.join(" - ");
- }
- },
- //新闻发布位置
- getNewPosition: function (e = []) {
- if (e) {
- let theType = [];
- e.map(item => {
- newsPosition.map(function (atem) {
- if (atem.value == item) {
- theType.push(atem.key);
- }
- });
- });
- return theType.join(" - ");
- }
- },
- //成果类型;
- getAchievementType: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- achievementType.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //成果交易形式;
- getTransaction: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- transaction.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //新闻类型
- getNewType: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- newType.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //顾问类型
- getAdviserType: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- adviserType.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //认证状态
- getAuthState: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- authState.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //认证状态
- getTypeModule: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- typeModule.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //律师类型
- getLowType: function (e) {
- if (e || e == 0) {
- let str = e.toString();
- let theType = "";
- lowType.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //消息推送搜索类型转换ziYuanType
- getMsgType: function (e) {
- if (e) {
- let str = e.toString();
- let theType = "";
- msgType.map(function (item) {
- if (item.value == str) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //消息推送搜索类型转换数字couponAuthState
- getZiYuanType: function (e) {
- if (e) {
- let str = e.toString();
- let theType = "";
- ziYuanType.map(function (item) {
- if (item.key == str) {
- theType = item.value;
- }
- });
- return theType;
- }
- },
- //抵用券状态
- getCouponAuthState: function (e) {
- if (e) {
- let str = e.toString();
- let theType = "";
- couponAuthState.map(function (item) {
- if (item.key == str) {
- theType = item.value;
- }
- });
- return theType;
- }
- },
- //抵用券来源
- // getCouponCome:function(e){
- // if (e) {
- // let str=e.toString();
- // let theType = '';
- // couponCome.map(function (item) {
- // if (item.key == str) {
- // theType = item.value;
- // };
- // });
- // return theType;
- // }
- // }
- //抵用券来源
- getCouponCome: function (e) {
- if (e || e == "0") {
- let theType = "";
- couponCome.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //抵用券状态
- getCouponAuthState: function (e) {
- if (e || e == "0") {
- let theType = "";
- couponAuthState.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //抵用券状态
- getCouponAuthStates: function (e) {
- if (e || e == "0") {
- let theType = "";
- couponAuthStates.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //采购信息密级
- getSecretType: function (e) {
- if (e || e == "0") {
- let theType = "";
- secretType.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //采购信息审核状态
- getBuyAuditType: function (e) {
- if (e || e == "0") {
- let theType = "";
- buyAuditType.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //军转民分类列表
- getCategoryType: function (e) {
- if (e || e == "0") {
- let theType = "";
- categoryType.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //军转民分类列表
- getCategoryType: function (e) {
- if (e || e == "0") {
- let theType = "";
- categoryType.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //军转民类型列表
- getCategoryPatent: function (e) {
- if (e || e == "0") {
- let theType = "";
- categoryPatent.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //军转民类型列表
- getMaturityType: function (e) {
- if (e || e == "0") {
- let theType = "";
- maturityType.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- //军转民类型列表
- getIndateType: function (e) {
- if (e || e == "0") {
- let theType = "";
- indateType.map(function (item) {
- if (item.value == e) {
- theType = item.key;
- }
- });
- return theType;
- }
- },
- getPicPath: function (path, e) {
- return path + e;
- }
- };
|