| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011 | 
							- import { message,Timeline,Select  } from 'antd';
 
- import React from 'react';
 
- import ajax from 'jquery/src/ajax/xhr.js';
 
- 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,
 
-     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
 
- } from './dataDic.js';
 
- import { provinceList} from './NewDicProvinceList.js';
 
- module.exports = {
 
-     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) {
 
-         // debugger
 
-         // const isJPG = file.type === 'image/jpeg/document';
 
-         // if (!isJPG) {
 
-         //     message.error('You can only upload JPG file!');
 
-         // }
 
-         // const isLt2M = file.size / 1024 / 1024 < 2;
 
-         // if (!isLt2M) {
 
-         //     message.error('Image must smaller than 2MB!');
 
-         // }
 
-         // return isJPG && isLt2M;
 
-     },
 
-     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) {
 
-             let theType = '';
 
-             demandTypeList.map(function (item) {
 
-                 if (item.value == e) {
 
-                     theType = item.key;
 
-                 };
 
-             });
 
-             return theType;
 
-         }
 
-     },
 
-     //获取成果类型
 
-     getAchievementCategory: function (e) {
 
-         if (e) {
 
-             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;
 
-         }
 
-     },
 
-     //获取需求和成果审核状态
 
-     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) {
 
-             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) {
 
-             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) {
 
-             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){
 
- 	 	let e=index?index.toString():'';
 
-    		 if (e) {
 
-             let theType = '';
 
-             gameState.map(function (item) {
 
-                 if (item.value == e) {
 
-                     theType = item.key;
 
-                 };
 
-             });
 
-             return theType;
 
-         }
 
-     
 
- 	}
 
- 	
 
- }
 
 
  |