tools.js 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499
  1. import { message, Select } from 'antd';
  2. import { Tag } from 'antd';
  3. import React from 'react';
  4. import $ from 'jquery/src/ajax';
  5. import moment from 'moment';
  6. import {
  7. formRetrieveList,
  8. projectStatusList,
  9. patentTypeList,
  10. patentStateList,
  11. patentFieldList,
  12. technicalSourceList,
  13. catagoryList,
  14. intellectualGetList,
  15. conversionFormList,
  16. annualReportStateList,
  17. cognizanceStateList,
  18. technologyStateList,
  19. copyrightStateList,
  20. auditStatusList,
  21. scaleList,
  22. companyType,
  23. industryList,
  24. natureList,
  25. contractTypeList,
  26. contractStateList,
  27. demandTypeList,
  28. achievementCategoryList,
  29. techAuditStatusList,
  30. auditStatusLists,
  31. maturityList,
  32. transferModeList,
  33. innovationList,
  34. orderStatusList,
  35. activityForm,
  36. activityType,
  37. boutique,
  38. hot,
  39. statuslist,
  40. customerTyp,
  41. cityArr,
  42. customerStatus,
  43. intentionalService,
  44. newFollow,
  45. sex,
  46. tag,
  47. contactType,
  48. contact,
  49. Whether,
  50. Certification,
  51. currentMember,
  52. lvl,
  53. industry,
  54. socialAttribute,
  55. station,
  56. post,
  57. patternOrganization,
  58. conditionOrganization,
  59. categoryState,
  60. auditStatusL,
  61. gameState,
  62. messageType,
  63. designated,
  64. featured,
  65. actives,
  66. intentProgress,
  67. transactionProgress,
  68. contractProgress,
  69. projectProgress,
  70. orderType,
  71. orderStage,
  72. orderState,
  73. paymentState,
  74. orderChannel,
  75. approvedState,
  76. lock,
  77. paymentMethod,
  78. transactionChannel,
  79. projectState,
  80. transactionProject,
  81. client,
  82. stick,
  83. taskStatus,
  84. publishStatus,
  85. changeState,
  86. distributeState,
  87. customerSource,
  88. slcRedit,
  89. dataGrade,
  90. level,
  91. xiangmoState,
  92. newOrderStatus,
  93. refundStatus,
  94. approval,
  95. projectStatus,
  96. processStatus,
  97. liquidationStatus,
  98. newOrderType,
  99. jsyPaymentType,
  100. customerType,
  101. orderTypes,
  102. bonusState,
  103. jiedian,
  104. cuikuan,
  105. province,
  106. invoiceStatus,
  107. approvalA,
  108. processStatusNew,
  109. contractChangeStatus,
  110. typeList,
  111. channelAllocationStatus,
  112. transferType,
  113. messageReminderStart,
  114. clockState,
  115. clockJournalState,
  116. roleList,
  117. typeLists,
  118. accountType,
  119. vehiclelist,
  120. approvalOptions,
  121. } from "./dataDic.js";
  122. import { provinceList } from './NewDicProvinceList.js';
  123. import ShowModal from './showModal.jsx';
  124. const obj = {
  125. // deepClone: function (data) {
  126. // let type = typeof data;
  127. // let tempValue;
  128. // if (!(type === 'array' || type === 'object')) return data;
  129. // if (type === 'array') {
  130. // tempValue = [];
  131. // data.forEach((item) => {
  132. // tempValue.push(deepClone(item));
  133. // })
  134. // return tempValue;
  135. // } else if (type === 'object') {
  136. // tempValue = {};
  137. // for (const key in data) {
  138. // if (data.hasOwnProperty(key)) {
  139. // tempValue[key] = deepClone(data[key]);
  140. // }
  141. // }
  142. // return tempValue;
  143. // }
  144. // },
  145. onReplace: function (val) {
  146. // 空格变大,便于识别
  147. if (val) {
  148. let text = val.replace(/ /gm, ' ⁠⁡⁢⁣⁤⁠⁡⁢⁣⁤ ⁠⁡⁢⁣⁤⁠⁡⁢⁣⁤⁠⁡⁢⁣⁤⁠⁡⁢⁣⁤⁠⁡ ⁠⁡⁢⁣⁤⁠⁡⁢⁣⁤ ⁠⁡⁢⁣⁤⁠⁡⁢⁣⁤ ⁠⁡⁢⁣⁠⁡⁢⁣⁤⁠')
  149. return text
  150. }
  151. },
  152. getPercentage: function (val) {
  153. return (Math.round(val * 10000)) / 100 + '%';
  154. },
  155. splitUrl: function (string, i, url) {
  156. let theList = [];
  157. let theArr = [];
  158. if (string && string.length) {
  159. theArr = string.split(i);
  160. theArr.map(function (item, i) {
  161. let name = item.substring(item.lastIndexOf("_") + 1);
  162. theList.push({
  163. uid: -i - 1,
  164. name: name,
  165. url: url + item,
  166. response: {
  167. data: item,
  168. },
  169. });
  170. });
  171. }
  172. return theList;
  173. },
  174. getBase64: function (img, callback) {
  175. const reader = new FileReader();
  176. reader.addEventListener("load", () => callback(reader.result));
  177. reader.readAsDataURL(img);
  178. },
  179. beforeUpload: function (file) {
  180. const isLt2M = file.size / 1024 / 1024 < 2;
  181. if (!isLt2M) {
  182. message.error("图片小大必须小于2MB!");
  183. }
  184. return isLt2M;
  185. },
  186. beforeUploadFile: function () {
  187. // debugger
  188. // const isJPG = file.type === 'image/jpeg/document';
  189. // if (!isJPG) {
  190. // message.error('You can only upload JPG file!');
  191. // }
  192. // const isLt2M = file.size / 1024 / 1024 < 2;
  193. // if (!isLt2M) {
  194. // message.error('Image must smaller than 2MB!');
  195. // }
  196. // return isJPG && isLt2M;
  197. },
  198. getTime: function (e, t) {
  199. if (e && !t) {
  200. var d = new Date(e);
  201. d =
  202. d.getFullYear() +
  203. "-" +
  204. (d.getMonth() + 1 < 10 ? "0" + (d.getMonth() + 1) : d.getMonth() + 1) +
  205. "-" +
  206. (d.getDate() < 10 ? "0" + d.getDate() : d.getDate()) +
  207. " ";
  208. // + (d.getHours() < 10 ? "0" + d.getHours() : d.getHours()) + ":" +
  209. // (d.getMinutes() < 10 ? "0" + d.getMinutes() : d.getMinutes()) + ":" +
  210. // (d.getSeconds() < 10 ? "0" + d.getSeconds() : d.getSeconds());
  211. return d;
  212. } else if (e && t) {
  213. var d1 = new Date(e);
  214. var d2 = new Date(e);
  215. d2 = d2.setMonth(d1.getMonth() + t);
  216. d2 = new Date(d2);
  217. d2 =
  218. d2.getFullYear() +
  219. "-" +
  220. (d2.getMonth() + 1 < 10
  221. ? "0" + (d2.getMonth() + 1)
  222. : d2.getMonth() + 1) +
  223. "-" +
  224. (d2.getDate() < 10 ? "0" + d2.getDate() : d2.getDate()) +
  225. " ";
  226. return d2;
  227. } else {
  228. return "";
  229. }
  230. },
  231. getPatentType: function (e) {
  232. let theType = "";
  233. patentTypeList.map(function (item) {
  234. if (item.value == e) {
  235. theType = item.key;
  236. }
  237. });
  238. return theType;
  239. },
  240. getPatentTypeva: function (e) {
  241. if (e) {
  242. let theType = "";
  243. patentTypeList.map(function (item) {
  244. if (item.key == e) {
  245. theType = item.value;
  246. }
  247. });
  248. return theType;
  249. }
  250. },
  251. getPatentState: function (e) {
  252. if (e) {
  253. let theState = "";
  254. patentStateList.map(function (item) {
  255. if (item.value == e) {
  256. theState = item.key;
  257. }
  258. });
  259. return theState;
  260. }
  261. },
  262. getPatentField: function (e) {
  263. if (e) {
  264. let theState = "";
  265. patentFieldList.map(function (item) {
  266. if (item.value == e) {
  267. theState = item.key;
  268. }
  269. });
  270. return theState;
  271. }
  272. },
  273. getTechnicalSource: function (e) {
  274. if (e) {
  275. let theSource = "";
  276. technicalSourceList.map(function (item) {
  277. if (item.value == e) {
  278. theSource = item.key;
  279. }
  280. });
  281. return theSource;
  282. }
  283. },
  284. getCatagory: function (e) {
  285. if (e) {
  286. let theType = "";
  287. catagoryList.map(function (item) {
  288. if (item.value == e) {
  289. theType = item.key;
  290. }
  291. });
  292. return theType;
  293. }
  294. },
  295. getIntellectualObtainWay: function (e) {
  296. if (e) {
  297. let theType = "";
  298. intellectualGetList.map(function (item) {
  299. if (item.value == e) {
  300. theType = item.key;
  301. }
  302. });
  303. return theType;
  304. }
  305. },
  306. getConversionForm: function (e) {
  307. if (e) {
  308. let theType = "";
  309. conversionFormList.map(function (item) {
  310. if (item.value == e) {
  311. theType = item.key;
  312. }
  313. });
  314. return theType;
  315. }
  316. },
  317. getAnnualReportState: function (e) {
  318. if (e) {
  319. let theType = "";
  320. annualReportStateList.map(function (item) {
  321. if (item.value == e) {
  322. theType = item.key;
  323. }
  324. });
  325. return theType;
  326. }
  327. },
  328. getCognizanceState: function (e) {
  329. if (e) {
  330. let theType = "";
  331. cognizanceStateList.map(function (item) {
  332. if (item.value == e) {
  333. theType = item.key;
  334. }
  335. });
  336. return theType;
  337. }
  338. },
  339. getTechnologyState: function (e) {
  340. if (e) {
  341. let theType = "";
  342. technologyStateList.map(function (item) {
  343. if (item.value == e) {
  344. theType = item.key;
  345. }
  346. });
  347. return theType;
  348. }
  349. },
  350. //显示用户认证状态
  351. getAuditState: function (e) {
  352. if (e) {
  353. let theType = "";
  354. auditStatusList.map(function (item) {
  355. if (item.value == e) {
  356. theType = item.key;
  357. }
  358. });
  359. return theType;
  360. }
  361. },
  362. getCopyrightState: function (e) {
  363. if (e) {
  364. let theType = "";
  365. copyrightStateList.map(function (item) {
  366. if (item.value == e) {
  367. theType = item.key;
  368. }
  369. });
  370. return theType;
  371. }
  372. },
  373. downloadFile: function (path, fileName) {
  374. window.open(
  375. globalConfig.context +
  376. "/open/downloadFile?path=" +
  377. path +
  378. "&fileName=" +
  379. fileName
  380. );
  381. },
  382. techDownloadFile: function (url, id) {
  383. window.open(globalConfig.context + url + "?id=" + id);
  384. },
  385. copyrightDownloadFile: function (id, sign, url) {
  386. window.open(globalConfig.context + url + "?id=" + id + "&sign=" + sign);
  387. },
  388. newDownloadFile: function (id, sign, url, type) {
  389. if (!type) {
  390. window.open(globalConfig.context + url + "?id=" + id + "&sign=" + sign);
  391. }
  392. if (type) {
  393. window.open(
  394. globalConfig.context +
  395. url +
  396. "?id=" +
  397. id +
  398. "&sign=" +
  399. sign +
  400. "&type=" +
  401. type
  402. );
  403. }
  404. },
  405. companySearch(input, option) {
  406. return option.props.children.indexOf(input) >= 0;
  407. },
  408. getVacations(ccccc) {
  409. let now = new Date();
  410. let theYear = now.getFullYear();
  411. $.ajax({
  412. type: "get",
  413. dataType: "json",
  414. crossDomain: false,
  415. url: globalConfig.context + "/open/html/json/vacations" + theYear,
  416. success: (data) => {
  417. if (data) {
  418. ccccc(data);
  419. }
  420. },
  421. });
  422. },
  423. getInUrgentTime(date, inUrgent, vocations) {
  424. if (vocations && vocations.length) {
  425. let now = new Date(date);
  426. for (var i = 1; i <= inUrgent;) {
  427. now.setDate(now.getDate() + 1);
  428. let thebool = true;
  429. vocations.map((item) => {
  430. if (item == getKey(now)) {
  431. thebool = false;
  432. }
  433. });
  434. if (thebool) {
  435. i++;
  436. }
  437. }
  438. return now;
  439. }
  440. function getKey(date) {
  441. var year = date.getFullYear(),
  442. month = date.getMonth() + 1,
  443. day = date.getDate();
  444. year = "" + year;
  445. month = (month > 9 ? "" : "0") + month;
  446. day = (day > 9 ? "" : "0") + day;
  447. return year + month + day;
  448. }
  449. },
  450. //各种通过接口获取下拉列表
  451. setPatentStateOption(permission) {
  452. let theArr = [];
  453. patentStateList.map(function (item) {
  454. for (let i = 0; i < permission.length; i++) {
  455. if (item.value == permission[i]) {
  456. theArr.push(item);
  457. }
  458. }
  459. });
  460. return theArr;
  461. },
  462. setUserContactsList() {
  463. let theOption = [];
  464. $.ajax({
  465. method: "get",
  466. dataType: "json",
  467. crossDomain: false,
  468. url: globalConfig.context + "/api/user/getContacts",
  469. success: function (data) {
  470. if (!data.data) {
  471. if (data.error && data.error.length) {
  472. message.warning(data.error[0].message);
  473. }
  474. return;
  475. }
  476. for (let item in data.data) {
  477. let theData = data.data[item];
  478. theOption.push(
  479. <Select.Option value={item} key={theData}>
  480. {theData}
  481. </Select.Option>
  482. );
  483. }
  484. },
  485. });
  486. return theOption;
  487. },
  488. setAdminContactsList(uid) {
  489. let theOption = [];
  490. $.ajax({
  491. method: "get",
  492. dataType: "json",
  493. crossDomain: false,
  494. url: globalConfig.context + "/api/admin/getContacts",
  495. data: { uid: uid },
  496. success: function (data) {
  497. if (!data.data) {
  498. if (data.error && data.error.length) {
  499. message.warning(data.error[0].message);
  500. }
  501. return;
  502. }
  503. for (let item in data.data) {
  504. let theData = data.data[item];
  505. theOption.push(
  506. <Select.Option value={item} key={theData}>
  507. {theData}
  508. </Select.Option>
  509. );
  510. }
  511. },
  512. });
  513. return theOption;
  514. },
  515. //高企培育资料完成情况(比重)
  516. getProportion(uid, callback) {
  517. $.ajax({
  518. method: "get",
  519. dataType: "json",
  520. crossDomain: false,
  521. url: globalConfig.context + "/api/admin/proportion",
  522. data: { uid: uid },
  523. success: function (data) {
  524. if (!data.data) {
  525. if (data.error && data.error.length) {
  526. message.warning(data.error[0].message);
  527. }
  528. data.data = {};
  529. callback(data.data);
  530. }
  531. callback(data.data);
  532. },
  533. });
  534. },
  535. //保存高企培育资料完成情况
  536. saveProportion(id, uid, sign, status) {
  537. $.ajax({
  538. method: "post",
  539. dataType: "json",
  540. crossDomain: false,
  541. url: globalConfig.context + "/api/admin/confirmProportion",
  542. data: {
  543. id: id,
  544. uid: uid,
  545. sign: sign,
  546. status: status,
  547. },
  548. success: function (data) {
  549. if (!data.data) {
  550. if (data.error && data.error.length) {
  551. message.warning(data.error[0].message);
  552. }
  553. return;
  554. }
  555. },
  556. });
  557. },
  558. //获取window.location.search传的值
  559. getSearchUrl(e) {
  560. let searchURL = e;
  561. let theObj = {};
  562. searchURL = searchURL.substring(1, searchURL.length);
  563. theObj[searchURL.split("&")[0].split("=")[0]] = searchURL
  564. .split("&")[0]
  565. .split("=")[1];
  566. if (searchURL.split("&")[1]) {
  567. theObj[searchURL.split("&")[1].split("=")[0]] = searchURL
  568. .split("&")[1]
  569. .split("=")[1];
  570. if (searchURL.split("&")[2]) {
  571. theObj[searchURL.split("&")[2].split("=")[0]] = searchURL
  572. .split("&")[2]
  573. .split("=")[1];
  574. }
  575. }
  576. return theObj;
  577. },
  578. //预览接口
  579. getPreview(id, url, sign, callback) {
  580. $.ajax({
  581. method: "get",
  582. dataType: "json",
  583. crossDomain: false,
  584. url: globalConfig.context + "/api/admin/preview/" + url,
  585. data: {
  586. id: id,
  587. sign: sign,
  588. },
  589. success: function (data) {
  590. if (!data.data) {
  591. if (data.error && data.error.length) {
  592. message.warning(data.error[0].message);
  593. }
  594. }
  595. callback(
  596. "https://view.officeapps.live.com/op/view.aspx?src=" +
  597. encodeURIComponent(
  598. location.origin +
  599. globalConfig.context +
  600. "/open/preview?" +
  601. data.data
  602. )
  603. );
  604. console.log(
  605. "https://view.officeapps.live.com/op/view.aspx?src=" +
  606. (location.origin +
  607. globalConfig.context +
  608. "/open/preview?" +
  609. data.data)
  610. );
  611. console.log(
  612. "https://view.officeapps.live.com/op/view.aspx?src=" +
  613. encodeURIComponent(
  614. location.origin +
  615. globalConfig.context +
  616. "/open/preview?" +
  617. data.data
  618. )
  619. );
  620. },
  621. });
  622. },
  623. //预览接口
  624. getPreviews(id, url, sign, callback) {
  625. $.ajax({
  626. method: "get",
  627. dataType: "json",
  628. crossDomain: false,
  629. url: globalConfig.context + "/api/admin/customer/" + url,
  630. data: {
  631. id: id,
  632. sign: sign,
  633. },
  634. success: function (data) {
  635. if (!data.data) {
  636. if (data.error && data.error.length) {
  637. message.warning(data.error[0].message);
  638. }
  639. }
  640. callback(
  641. "https://view.officeapps.live.com/op/view.aspx?src=" +
  642. encodeURIComponent(
  643. location.origin +
  644. globalConfig.context +
  645. "/open/preview?" +
  646. data.data
  647. )
  648. );
  649. console.log(
  650. "https://view.officeapps.live.com/op/view.aspx?src=" +
  651. (location.origin +
  652. globalConfig.context +
  653. "/open/preview?" +
  654. data.data)
  655. );
  656. console.log(
  657. "https://view.officeapps.live.com/op/view.aspx?src=" +
  658. encodeURIComponent(
  659. location.origin +
  660. globalConfig.context +
  661. "/open/preview?" +
  662. data.data
  663. )
  664. );
  665. },
  666. });
  667. },
  668. //获取企业规模
  669. getScaleState(e) {
  670. if (e) {
  671. let theType = "";
  672. scaleList.map(function (item) {
  673. if (item.value == e) {
  674. theType = item.key;
  675. }
  676. });
  677. return theType;
  678. }
  679. },
  680. //获取企业类型
  681. getCompanyType(type1, type2) {
  682. let companyTypeList = [];
  683. for (let i = 0; i < companyType.length; i++) {
  684. companyTypeList.push({
  685. value: companyType[i].value,
  686. label: companyType[i].label,
  687. });
  688. if (companyType[i].children) {
  689. for (let j = 0; j < companyType[i].children.length; j++) {
  690. companyTypeList.push({
  691. value: companyType[i].children[j].value,
  692. label: companyType[i].children[j].label,
  693. });
  694. }
  695. }
  696. }
  697. companyTypeList.sort(function (a, b) {
  698. return a.value - b.value;
  699. });
  700. let typeKey = "";
  701. companyTypeList.map(function (item) {
  702. if (type1 == item.value) {
  703. typeKey = item.label;
  704. }
  705. if (type2 == item.value) {
  706. typeKey = typeKey + "/" + item.label;
  707. }
  708. });
  709. return typeKey;
  710. },
  711. //获取企业行业
  712. getIndustryType(e) {
  713. if (e) {
  714. let theType = "";
  715. industryList.map(function (item) {
  716. if (item.value == e) {
  717. theType = item.key;
  718. }
  719. });
  720. return theType;
  721. }
  722. },
  723. //获取客户性质
  724. getNatureType(e, other) {
  725. if (e) {
  726. let theType = "";
  727. natureList.map(function (item) {
  728. if (item.value == e) {
  729. if (e == 0) {
  730. theType = other
  731. } else {
  732. theType = item.key;
  733. }
  734. }
  735. });
  736. return theType;
  737. }
  738. },
  739. //获取合同状态
  740. getContractType: function (e) {
  741. if (e) {
  742. let theType = "";
  743. contractTypeList.map(function (item) {
  744. if (item.value == e) {
  745. theType = item.key;
  746. }
  747. });
  748. return theType;
  749. }
  750. },
  751. //获取合同类型
  752. getContractState: function (e) {
  753. if (e) {
  754. let theType = "";
  755. contractStateList.map(function (item) {
  756. if (item.value == e) {
  757. theType = item.key;
  758. }
  759. });
  760. return theType;
  761. }
  762. },
  763. //获取需求类型
  764. getDemandType: function (e) {
  765. if (e) {
  766. let theType = "";
  767. demandTypeList.map(function (item) {
  768. if (item.value == e) {
  769. theType = item.key;
  770. }
  771. });
  772. return theType;
  773. }
  774. },
  775. //获取成果类型
  776. getAchievementCategory: function (e) {
  777. if (e) {
  778. let theType = "";
  779. achievementCategoryList.map(function (item) {
  780. if (item.value == e) {
  781. theType = item.key;
  782. }
  783. });
  784. return theType;
  785. }
  786. },
  787. //获取需求和成果审核状态
  788. getTechAuditStatus: function (e) {
  789. if (e) {
  790. let theType = "";
  791. techAuditStatusList.map(function (item) {
  792. if (item.value == e) {
  793. theType = item.key;
  794. }
  795. });
  796. return theType;
  797. }
  798. },
  799. //获取政策审核状态
  800. getauditStatus: function (e) {
  801. if (e || e >= 0) {
  802. let tt = e.toString();
  803. let theType = "";
  804. auditStatusLists.map(function (item) {
  805. if (item.value == tt) {
  806. theType = item.key;
  807. }
  808. });
  809. return theType;
  810. }
  811. },
  812. //获取需求和成果审核状态
  813. getMaturity: function (e) {
  814. if (e) {
  815. let theType = "";
  816. maturityList.map(function (item) {
  817. if (item.value == e) {
  818. theType = item.key;
  819. }
  820. });
  821. return theType;
  822. }
  823. },
  824. //获取需求和成果审核状态
  825. getTransferMode: function (e) {
  826. if (e) {
  827. let theType = "";
  828. transferModeList.map(function (item) {
  829. if (item.value == e) {
  830. theType = item.key;
  831. }
  832. });
  833. return theType;
  834. }
  835. },
  836. //获取创新度状态
  837. getInnovation: function (e) {
  838. if (e) {
  839. let theType = "";
  840. innovationList.map(function (item) {
  841. if (item.value == e) {
  842. theType = item.key;
  843. }
  844. });
  845. return theType;
  846. }
  847. },
  848. //获取创新度状态
  849. getOrderStatus: function (e) {
  850. if (e) {
  851. let theType = "";
  852. orderStatusList.map(function (item) {
  853. if (item.value == e) {
  854. theType = item.key;
  855. }
  856. });
  857. return theType;
  858. }
  859. },
  860. //科技管理
  861. //活动圈后台管理
  862. getActivityType: function (e) {
  863. if (e) {
  864. let theType = "";
  865. activityType.map(function (item) {
  866. if (item.value == e) {
  867. theType = item.key;
  868. }
  869. });
  870. return theType;
  871. }
  872. },
  873. getActivityForm: function (e) {
  874. if (e) {
  875. let theType = "";
  876. activityForm.map(function (item) {
  877. if (item.value == e) {
  878. theType = item.key;
  879. }
  880. });
  881. return theType;
  882. }
  883. },
  884. //是否展示在首页
  885. gethot: function (e) {
  886. if (e) {
  887. let theType = "";
  888. hot.map(function (item) {
  889. if (item.value == e) {
  890. theType = item.key;
  891. }
  892. });
  893. return theType;
  894. }
  895. },
  896. //是否精品
  897. getboutique: function (e) {
  898. if (e) {
  899. let theType = "";
  900. boutique.map(function (item) {
  901. if (item.value == e) {
  902. theType = item.key;
  903. }
  904. });
  905. return theType;
  906. }
  907. },
  908. //客户类型
  909. getcustomerTyp: function (e) {
  910. if (e) {
  911. let theType = "";
  912. customerTyp.map(function (item) {
  913. if (item.value == e) {
  914. theType = item.key;
  915. }
  916. });
  917. return theType;
  918. }
  919. },
  920. //省份
  921. getcityArr: function (e) {
  922. if (e) {
  923. let theType = "";
  924. cityArr.map(function (item) {
  925. if (item.value == e) {
  926. theType = item.key;
  927. }
  928. });
  929. return theType;
  930. }
  931. },
  932. //与后端一致省份
  933. getNewDiccityArr: function (e) {
  934. if (e) {
  935. let theType = "";
  936. provinceList.map(function (item) {
  937. if (item.id === e) {
  938. theType = item.name;
  939. }
  940. });
  941. return theType;
  942. }
  943. },
  944. //客户状态
  945. getcustomerStatue: function (e) {
  946. if (e || e == 0) {
  947. let theType = "";
  948. customerStatus.map(function (item) {
  949. if (item.value == e) {
  950. theType = item.key;
  951. }
  952. });
  953. return theType;
  954. }
  955. },
  956. //账户状态
  957. getStatuslist: function (e) {
  958. if (e) {
  959. let theType = "";
  960. statuslist.map(function (item) {
  961. if (item.value == e) {
  962. theType = item.key;
  963. }
  964. });
  965. return theType;
  966. }
  967. },
  968. //意向服务
  969. getCompanyIntention: function (e) {
  970. if (e) {
  971. let theType = "";
  972. intentionalService.map(function (item) {
  973. if (item.value == e) {
  974. theType = item.key;
  975. }
  976. });
  977. return theType;
  978. }
  979. },
  980. //客户标签
  981. getTag: function (e) {
  982. if (e) {
  983. let theType = "";
  984. tag.map(function (item) {
  985. if (item.value == e) {
  986. theType = item.key;
  987. }
  988. });
  989. return theType;
  990. }
  991. },
  992. //最新跟进
  993. getfllowSituation: function (e) {
  994. if (e || e == 0) {
  995. let theType = "";
  996. newFollow.map(function (item) {
  997. if (item.value == e) {
  998. theType = item.key;
  999. }
  1000. });
  1001. return theType;
  1002. }
  1003. },
  1004. //性别
  1005. getsex: function (e) {
  1006. if (e) {
  1007. let theType = "";
  1008. sex.map(function (item) {
  1009. if (item.value == e) {
  1010. theType = item.key;
  1011. }
  1012. });
  1013. return theType;
  1014. }
  1015. },
  1016. //联系方式
  1017. getcontact: function (e) {
  1018. if (e) {
  1019. let theType = "";
  1020. contact.map(function (item) {
  1021. if (item.value == e) {
  1022. theType = item.key;
  1023. }
  1024. });
  1025. return theType;
  1026. }
  1027. },
  1028. //是否文字与数字转换
  1029. getWhether: function (e) {
  1030. if (e || e == 0) {
  1031. let theType = "";
  1032. Whether.map(function (item) {
  1033. if (item.value == e) {
  1034. theType = item.key;
  1035. }
  1036. });
  1037. return theType;
  1038. }
  1039. },
  1040. //是否实名认证
  1041. getCertification: function (e) {
  1042. if (e) {
  1043. let theType = "";
  1044. Certification.map(function (item) {
  1045. if (item.value == e) {
  1046. theType = item.key;
  1047. }
  1048. });
  1049. return theType;
  1050. }
  1051. },
  1052. //会员状态
  1053. getCurrentMember: function (e) {
  1054. if (e) {
  1055. let theType = "";
  1056. currentMember.map(function (item) {
  1057. if (item.value == e) {
  1058. theType = item.key;
  1059. }
  1060. });
  1061. return theType;
  1062. }
  1063. },
  1064. //会员等级
  1065. getLvl: function (e) {
  1066. if (e) {
  1067. let theType = "";
  1068. lvl.map(function (item) {
  1069. if (item.value == e) {
  1070. theType = item.key;
  1071. }
  1072. });
  1073. return theType;
  1074. }
  1075. },
  1076. //省份转换
  1077. getprovince: function (e) {
  1078. let nub = parseInt(e);
  1079. let theType = "";
  1080. if (nub <= 34) {
  1081. provinceList.map(function (item) {
  1082. if (item.id == nub) {
  1083. theType = item.name;
  1084. }
  1085. });
  1086. }
  1087. if (nub > 34 && nub < 380) {
  1088. provinceList.map(function (item) {
  1089. item.cityList.map(function (city) {
  1090. if (city.id == nub) {
  1091. theType = city.name;
  1092. }
  1093. });
  1094. });
  1095. }
  1096. if (nub >= 380) {
  1097. provinceList.map(function (item) {
  1098. item.cityList.map(function (city) {
  1099. city.areaList.map(function (areas) {
  1100. if (areas.id == nub) {
  1101. theType = areas.name;
  1102. }
  1103. });
  1104. });
  1105. });
  1106. }
  1107. return theType;
  1108. },
  1109. //我的业务跟进状态
  1110. getStatusFollow: function (e) {
  1111. let theType = "";
  1112. if (e) {
  1113. theType = "跟进中";
  1114. } else {
  1115. theType = "停止跟进";
  1116. }
  1117. return theType;
  1118. },
  1119. //我的业务跟进状态
  1120. getContactType: function (e) {
  1121. if (!isNaN(parseInt(e))) {
  1122. let theType = "";
  1123. contactType.map(function (item) {
  1124. if (item.value == e) {
  1125. theType = item.key;
  1126. }
  1127. });
  1128. return theType;
  1129. }
  1130. },
  1131. //社会属性
  1132. getSocialAttribute: function (e) {
  1133. if (!isNaN(parseInt(e))) {
  1134. let theType = "";
  1135. socialAttribute.map(function (item) {
  1136. if (item.value == e) {
  1137. theType = item.key;
  1138. }
  1139. });
  1140. return theType;
  1141. } else {
  1142. return '未知';
  1143. }
  1144. },
  1145. //获取外联分配状态名
  1146. getChannelAllocationStatus: function (e, isTag) {
  1147. if (!isNaN(parseInt(e))) {
  1148. let theType = "";
  1149. let color = "";
  1150. channelAllocationStatus.map(function (item) {
  1151. if (item.value == e) {
  1152. theType = item.key;
  1153. color = item.color;
  1154. }
  1155. });
  1156. if (isTag) {
  1157. return <Tag color={color}>{theType}</Tag>
  1158. } else {
  1159. return theType;
  1160. }
  1161. } else {
  1162. if (isTag) {
  1163. return <Tag color='#000'>未知</Tag>
  1164. } else {
  1165. return '未知';
  1166. }
  1167. }
  1168. },
  1169. //获取消息提醒状态
  1170. getMessageReminderStart: function (e, isTag) {
  1171. if (!isNaN(parseInt(e))) {
  1172. let theType = "";
  1173. let color = "";
  1174. messageReminderStart.map(function (item) {
  1175. if (item.value == e) {
  1176. theType = item.key;
  1177. color = item.color;
  1178. }
  1179. });
  1180. if (isTag) {
  1181. return <Tag color={color}>{theType}</Tag>
  1182. } else {
  1183. return theType;
  1184. }
  1185. } else {
  1186. if (isTag) {
  1187. return <Tag color='#000'>未知</Tag>
  1188. } else {
  1189. return '未知';
  1190. }
  1191. }
  1192. },
  1193. //获取分配状态名称
  1194. getTransferType: function (id) {
  1195. if (!isNaN(parseInt(id))) {
  1196. let typeName = '';
  1197. transferType.map(function (item) {
  1198. if (item.value == id) {
  1199. typeName = item.label
  1200. }
  1201. });
  1202. return typeName;
  1203. }
  1204. },
  1205. //行业
  1206. getIndustry: function (e) {
  1207. if (e) {
  1208. let theType = "";
  1209. industry.map(function (item) {
  1210. if (item.value == e) {
  1211. theType = item.key;
  1212. }
  1213. });
  1214. return theType;
  1215. }
  1216. },
  1217. //岗位
  1218. getStation: function (e) {
  1219. if (e) {
  1220. let theType = "";
  1221. station.map(function (item) {
  1222. if (item.value == e) {
  1223. theType = item.key;
  1224. }
  1225. });
  1226. return theType;
  1227. }
  1228. },
  1229. //职务
  1230. getPost: function (e) {
  1231. if (e) {
  1232. let theType = "";
  1233. post.map(function (item) {
  1234. if (item.value == e) {
  1235. theType = item.key;
  1236. }
  1237. });
  1238. return theType;
  1239. }
  1240. },
  1241. //组织类型
  1242. getPattern: function (e) {
  1243. if (e) {
  1244. let theType = "";
  1245. patternOrganization.map(function (item) {
  1246. if (item.value == e) {
  1247. theType = item.key;
  1248. }
  1249. });
  1250. return theType;
  1251. }
  1252. },
  1253. //组织状态
  1254. getCondition: function (e) {
  1255. if (e) {
  1256. let theType = "";
  1257. conditionOrganization.map(function (item) {
  1258. if (item.value == e) {
  1259. theType = item.key;
  1260. }
  1261. });
  1262. return theType;
  1263. }
  1264. },
  1265. //品类状态
  1266. getCategoryState: function (e) {
  1267. if (e) {
  1268. let theType = "";
  1269. categoryState.map(function (item) {
  1270. if (item.value == e) {
  1271. theType = item.key;
  1272. }
  1273. });
  1274. return theType;
  1275. }
  1276. },
  1277. //实名认证
  1278. getAuditStatus: function (index) {
  1279. let e = index ? index.toString() : "";
  1280. if (e) {
  1281. let theType = "";
  1282. auditStatusL.map(function (item) {
  1283. if (item.value == e) {
  1284. theType = item.key;
  1285. }
  1286. });
  1287. return theType;
  1288. }
  1289. },
  1290. //品类状态
  1291. getGameState: function (index) {
  1292. let e = index ? index.toString() : "";
  1293. if (e) {
  1294. let theType = "";
  1295. gameState.map(function (item) {
  1296. if (item.value == e) {
  1297. theType = item.key;
  1298. }
  1299. });
  1300. return theType;
  1301. }
  1302. },
  1303. //消息类型
  1304. getMessageType: function (index) {
  1305. let e = index ? index.toString() : "";
  1306. if (e) {
  1307. let theType = "";
  1308. messageType.map(function (item) {
  1309. if (item.value == e) {
  1310. theType = item.key;
  1311. }
  1312. });
  1313. return theType;
  1314. }
  1315. },
  1316. //发送目标
  1317. getDesignated: function (index) {
  1318. let e = index ? index.toString() : "";
  1319. if (e) {
  1320. let theType = "";
  1321. designated.map(function (item) {
  1322. if (item.value == e) {
  1323. theType = item.key;
  1324. }
  1325. });
  1326. return theType;
  1327. }
  1328. },
  1329. //客户端
  1330. getClient: function (index) {
  1331. let e = index ? index.toString() : "";
  1332. if (e) {
  1333. let theType = "";
  1334. client.map(function (item) {
  1335. if (item.value == e) {
  1336. theType = item.key;
  1337. }
  1338. });
  1339. return theType;
  1340. }
  1341. },
  1342. //是否置顶
  1343. getStick: function (index) {
  1344. let e = index ? index.toString() : "";
  1345. if (e) {
  1346. let theType = "";
  1347. stick.map(function (item) {
  1348. if (item.value == e) {
  1349. theType = item.key;
  1350. }
  1351. });
  1352. return theType;
  1353. }
  1354. },
  1355. getFeatured: function (index) {
  1356. let e = index ? index.toString() : "";
  1357. if (e) {
  1358. let theType = "";
  1359. featured.map(function (item) {
  1360. if (item.value == e) {
  1361. theType = item.key;
  1362. }
  1363. });
  1364. return theType;
  1365. }
  1366. },
  1367. getActives: function (e) {
  1368. if (e) {
  1369. let theType = "";
  1370. actives.map(function (item) {
  1371. if (item.value == e) {
  1372. theType = item.key;
  1373. }
  1374. });
  1375. return theType;
  1376. }
  1377. },
  1378. //意向进度
  1379. getIntentProgress: function (e) {
  1380. if (e) {
  1381. let theType = "";
  1382. intentProgress.map(function (item) {
  1383. if (item.value == e) {
  1384. theType = item.key;
  1385. }
  1386. });
  1387. return theType;
  1388. }
  1389. },
  1390. //交易进度
  1391. getTransactionProgress: function (e) {
  1392. if (e) {
  1393. let theType = "";
  1394. transactionProgress.map(function (item) {
  1395. if (item.value == e) {
  1396. theType = item.key;
  1397. }
  1398. });
  1399. return theType;
  1400. }
  1401. },
  1402. //合同进度
  1403. getContractProgress: function (e) {
  1404. //debugger
  1405. // console.log(e);
  1406. if (e) {
  1407. let theType = "";
  1408. contractProgress.map(function (item) {
  1409. if (item.value == e) {
  1410. theType = item.key;
  1411. }
  1412. });
  1413. return theType;
  1414. }
  1415. },
  1416. //项目进度
  1417. getProjectProgress: function (e) {
  1418. if (e) {
  1419. let theType = "";
  1420. projectProgress.map(function (item) {
  1421. if (item.value == e) {
  1422. theType = item.key;
  1423. }
  1424. });
  1425. return theType;
  1426. }
  1427. },
  1428. //订单类型
  1429. getOrderType: function (e) {
  1430. if (e || e == 0) {
  1431. let str = e.toString();
  1432. let theType = "";
  1433. orderType.map(function (item) {
  1434. if (item.value == str) {
  1435. theType = item.key;
  1436. }
  1437. });
  1438. return theType;
  1439. }
  1440. },
  1441. //订单阶段
  1442. getOrderStage: function (e) {
  1443. if (e || e == 0) {
  1444. let str = e.toString();
  1445. let theType = "";
  1446. orderStage.map(function (item) {
  1447. if (item.value == str) {
  1448. theType = item.key;
  1449. }
  1450. });
  1451. return theType;
  1452. }
  1453. },
  1454. //订单状态o
  1455. getOrderState: function (e) {
  1456. if (e || e == 0) {
  1457. let str = e.toString();
  1458. let theType = "";
  1459. orderState.map(function (item) {
  1460. if (item.value == str) {
  1461. theType = item.key;
  1462. }
  1463. });
  1464. return theType;
  1465. }
  1466. },
  1467. //付款状态
  1468. getPaymentState: function (e) {
  1469. if (e || e == 0) {
  1470. let str = e.toString();
  1471. let theType = "";
  1472. paymentState.map(function (item) {
  1473. if (item.value == str) {
  1474. theType = item.key;
  1475. }
  1476. });
  1477. return theType;
  1478. }
  1479. },
  1480. //订单外联
  1481. getOrderChannel: function (e) {
  1482. if (e || e == 0) {
  1483. let str = e.toString();
  1484. let theType = "";
  1485. orderChannel.map(function (item) {
  1486. if (item.value == str) {
  1487. theType = item.key;
  1488. }
  1489. });
  1490. return theType;
  1491. }
  1492. },
  1493. //特批状态
  1494. getApprovedState: function (e) {
  1495. if (e || e == 0) {
  1496. let str = e.toString();
  1497. let theType = "";
  1498. approvedState.map(function (item) {
  1499. if (item.value == str) {
  1500. theType = item.key;
  1501. }
  1502. });
  1503. return theType;
  1504. }
  1505. },
  1506. //锁定或废除
  1507. getLock: function (e) {
  1508. if (e || e == 0) {
  1509. let str = e.toString();
  1510. let theType = "";
  1511. lock.map(function (item) {
  1512. if (item.value == str) {
  1513. theType = item.key;
  1514. }
  1515. });
  1516. return theType;
  1517. }
  1518. },
  1519. //支付方式
  1520. getPaymentMethod: function (e) {
  1521. if (e || e == 0) {
  1522. let str = e.toString();
  1523. let theType = "";
  1524. paymentMethod.map(function (item) {
  1525. if (item.value == str) {
  1526. theType = item.key;
  1527. }
  1528. });
  1529. return theType;
  1530. }
  1531. },
  1532. //交易外联
  1533. getTransactionChannel: function (e) {
  1534. if (e || e == 0) {
  1535. let str = e.toString();
  1536. let theType = "";
  1537. transactionChannel.map(function (item) {
  1538. if (item.value == str) {
  1539. theType = item.key;
  1540. }
  1541. });
  1542. return theType;
  1543. }
  1544. },
  1545. //交易科目
  1546. getTransactionProject: function (e) {
  1547. if (e || e == 0) {
  1548. let str = e.toString();
  1549. let theType = "";
  1550. transactionProject.map(function (item) {
  1551. if (item.value == str) {
  1552. theType = item.key;
  1553. }
  1554. });
  1555. return theType;
  1556. }
  1557. },
  1558. //项目状态
  1559. getProjectState: function (e) {
  1560. if (e || e == 0) {
  1561. let str = e.toString();
  1562. let theType = "";
  1563. projectState.map(function (item) {
  1564. if (item.value == str) {
  1565. theType = item.key;
  1566. }
  1567. });
  1568. return theType;
  1569. }
  1570. },
  1571. //任务状态
  1572. getTaskStatus: function (e) {
  1573. if (e || e == 0) {
  1574. let str = e.toString();
  1575. let theType = "";
  1576. taskStatus.map(function (item) {
  1577. if (item.value == str) {
  1578. theType = item.key;
  1579. }
  1580. });
  1581. return theType;
  1582. }
  1583. },
  1584. //公示状态
  1585. getPublishStatus: function (e) {
  1586. if (e || e == 0) {
  1587. let str = e.toString();
  1588. let theType = "";
  1589. publishStatus.map(function (item) {
  1590. if (item.value == str) {
  1591. theType = item.key;
  1592. }
  1593. });
  1594. return theType;
  1595. }
  1596. },
  1597. //变更状态
  1598. getChangeState: function (e) {
  1599. if (e || e == 0) {
  1600. let str = e.toString();
  1601. let theType = "";
  1602. changeState.map(function (item) {
  1603. if (item.value == str) {
  1604. theType = item.key;
  1605. }
  1606. });
  1607. return theType;
  1608. }
  1609. },
  1610. //分派情况
  1611. getDistributeState: function (e) {
  1612. if (e || e == 0) {
  1613. let str = e.toString();
  1614. let theType = "";
  1615. distributeState.map(function (item) {
  1616. if (item.value == str) {
  1617. theType = item.key;
  1618. }
  1619. });
  1620. return theType;
  1621. }
  1622. },
  1623. //客户来源
  1624. getCustomerSource: function (e) {
  1625. if (e || e == 0) {
  1626. let str = e.toString();
  1627. let theType = "";
  1628. customerSource.map(function (item) {
  1629. if (item.value == str) {
  1630. theType = item.key;
  1631. }
  1632. });
  1633. return theType;
  1634. }
  1635. },
  1636. //客户来源
  1637. getSlcRedit: function (e) {
  1638. if (e || e == 0) {
  1639. let str = e.toString();
  1640. let theType = "";
  1641. slcRedit.map(function (item) {
  1642. if (item.value == str) {
  1643. theType = item.key;
  1644. }
  1645. });
  1646. return theType;
  1647. }
  1648. },
  1649. //客户来源
  1650. getDataGrade: function (e) {
  1651. if (e || e == 0) {
  1652. let str = e.toString();
  1653. let theType = "";
  1654. dataGrade.map(function (item) {
  1655. if (item.value == str) {
  1656. theType = item.key;
  1657. }
  1658. });
  1659. return theType;
  1660. }
  1661. },
  1662. //客户等级
  1663. getLevel: function (e) {
  1664. if (e || e == 0) {
  1665. let str = e.toString();
  1666. let theType = "";
  1667. level.map(function (item) {
  1668. if (item.value == str) {
  1669. theType = item.key;
  1670. }
  1671. });
  1672. return theType;
  1673. }
  1674. },
  1675. //项目状态
  1676. getXiangmoState: function (e) {
  1677. if (e || e == 0) {
  1678. let str = e.toString();
  1679. let theType = "";
  1680. xiangmoState.map(function (item) {
  1681. if (item.value == str) {
  1682. theType = item.key;
  1683. }
  1684. });
  1685. return theType;
  1686. }
  1687. },
  1688. //订单状态
  1689. getNewOrderStatus: function (e) {
  1690. if (e || e == 0) {
  1691. let str = e.toString();
  1692. let theType = "";
  1693. newOrderStatus.map(function (item) {
  1694. if (item.value == str) {
  1695. theType = item.key;
  1696. }
  1697. });
  1698. return theType;
  1699. }
  1700. },
  1701. //催款状态
  1702. getCuikuan: function (e) {
  1703. if (e || e == 0) {
  1704. let str = e.toString();
  1705. let theType = "";
  1706. cuikuan.map(function (item) {
  1707. if (item.value == str) {
  1708. theType = item.key;
  1709. }
  1710. });
  1711. return theType;
  1712. }
  1713. },
  1714. //分配状态
  1715. // getAllotStatus:function (e) {
  1716. // if (e||e==0) {
  1717. // let str=e.toString()
  1718. // let theType = '';
  1719. // processStatus.map(function (item) {
  1720. // if (item.value == str) {
  1721. // theType = item.key;
  1722. // };
  1723. // });
  1724. // return theType;
  1725. // }
  1726. // },
  1727. //退单状态
  1728. getRefundStatus: function (e) {
  1729. if (e || e == 0) {
  1730. let str = e.toString();
  1731. let theType = "";
  1732. refundStatus.map(function (item) {
  1733. if (item.value == str) {
  1734. theType = item.key;
  1735. }
  1736. });
  1737. return theType;
  1738. }
  1739. },
  1740. //退单状态
  1741. getTaskStatus: function (e) {
  1742. if (e || e == 0) {
  1743. let str = e.toString();
  1744. let theType = "";
  1745. taskStatus.map(function (item) {
  1746. if (item.value == str) {
  1747. theType = item.key;
  1748. }
  1749. });
  1750. return theType;
  1751. }
  1752. },
  1753. getApprovalTag: function (e) {
  1754. if (e == 1) {
  1755. return <Tag color="#faa755">特批待审</Tag>
  1756. } else if (e == 2) {
  1757. return <Tag color="#ff0000">特批通过</Tag>
  1758. } else if (e == 4) {
  1759. return <Tag color="#faa755">特批待审</Tag>
  1760. } else if (e == 5) {
  1761. return <Tag color="#ff0000">特批通过</Tag>
  1762. } else if (e == 7) {
  1763. return <Tag color="#faa755">特批待审</Tag>
  1764. } else if (e == 8) {
  1765. return <Tag color="#ff0000">特批通过</Tag>
  1766. }
  1767. },
  1768. //特批状态
  1769. getApproval: function (e, flag) {
  1770. if (flag) {
  1771. if (e == 0) {
  1772. return "非特批";
  1773. } else if (e == 1) {
  1774. return "特批待审核";
  1775. } else if (e == 2) {
  1776. return "特批通过";
  1777. } else if (e == 3) {
  1778. return "特批驳回";
  1779. } else if (e == 4) {
  1780. return "特批董事长待审核";
  1781. } else if (e == 5) {
  1782. return "特批董事长通过";
  1783. } else if (e == 6) {
  1784. return "特批董事长驳回";
  1785. }
  1786. // else if (e == 7) {
  1787. // return "特批副总裁待审核";
  1788. // } else if (e == 8) {
  1789. // return "特批副总裁通过";
  1790. // } else if (e == 9) {
  1791. // return "特批副总裁驳回";
  1792. // }
  1793. else {
  1794. return "未知";
  1795. }
  1796. }
  1797. if (e || e == 0) {
  1798. let str = e.toString();
  1799. let theType = "";
  1800. approval.map(function (item) {
  1801. if (item.value == str) {
  1802. theType = item.key;
  1803. }
  1804. });
  1805. return theType;
  1806. }
  1807. },
  1808. //流程状态
  1809. getPeople: function (val) {
  1810. if (val == 0) {
  1811. return "已派营销员";
  1812. } else if (val == 1) {
  1813. return "已派营销管理员";
  1814. } else if (val == 2) {
  1815. return "已派咨询师";
  1816. } else if (val == 3) {
  1817. return "已派咨询师经理";
  1818. } else if (val == 4) {
  1819. return "已派咨询师管理员";
  1820. } else if (val == 5) {
  1821. return "已派财务专员";
  1822. } else if (val == 6) {
  1823. return "已派财务总监";
  1824. }
  1825. },
  1826. //第三方信息状态----是否有方案
  1827. getMaterialStatus: function (val) {
  1828. if (val == 0) {
  1829. return "无方案";
  1830. } else if (val == 1) {
  1831. return "有方案";
  1832. }
  1833. },
  1834. //第三方信息状态----加急
  1835. getUrgentStatus: function (val) {
  1836. if (val == 0) {
  1837. return "无加急";
  1838. } else if (val == 1) {
  1839. return "加急3-5个工作日";
  1840. } else if (val == 2) {
  1841. return "加急6-10个工作日";
  1842. } else if (val == 3) {
  1843. return "加急11-15个工作日";
  1844. } else if (val == 4) {
  1845. return "加急16-20个工作日";
  1846. } else if (val == 5) {
  1847. return "加急21-25个工作日";
  1848. } else if (val == 6) {
  1849. return "加急26-30个工作日";
  1850. } else if (val == 7) {
  1851. return "加急45个工作日";
  1852. } else if (val == 8) {
  1853. return "加急60个工作日";
  1854. }
  1855. },
  1856. //审核状态
  1857. getStatus: function (val) {
  1858. if (val == 0) {
  1859. return "未提交";
  1860. } else if (val == 1) {
  1861. return "处理中";
  1862. } else if (val == 2) {
  1863. return "通过";
  1864. } else if (val == 3) {
  1865. return "拒绝";
  1866. } else if (val == 4) {
  1867. return "撤销";
  1868. }
  1869. },
  1870. //项目状态
  1871. getProjectStatus: function (e) {
  1872. let arr = projectStatusList.filter(v => {
  1873. return v.value === e
  1874. });
  1875. if (arr.length) {
  1876. return arr[0].value == 29 ? <Tag color="#FF0000">{arr[0].label}</Tag> : <span>{arr[0].label}</span>
  1877. }
  1878. return '';
  1879. },
  1880. //流程状态
  1881. getProcessStatus: function (e, name, state) {
  1882. if (e || e == 0) {
  1883. let str = e.toString();
  1884. let theType = "";
  1885. let theName = "(" + name + ")"
  1886. processStatus.map(function (item) {
  1887. if (item.value == str) {
  1888. theType = item.key;
  1889. }
  1890. });
  1891. if (e == 0 || e == 6 || e == 7 || !name) {
  1892. theName = ""
  1893. } else if (e == 4) {
  1894. // if (state == "1" || state == "2" || state == "3") {
  1895. // theName = "(公司/部门管理)"
  1896. // } else
  1897. if (state == "4" || state == "5" || state == "6") {
  1898. theName = "(董事长)"
  1899. }
  1900. // else if (state == "7" || state == "8" || state == "9") {
  1901. // theName = "(副总裁)"
  1902. // }
  1903. }
  1904. return theType + theName;
  1905. }
  1906. },
  1907. //结算状态
  1908. getLiquidationStatus: function (e) {
  1909. if (e || e == 0) {
  1910. let str = e.toString();
  1911. let theType = "";
  1912. liquidationStatus.map(function (item) {
  1913. if (item.value == str) {
  1914. theType = item.key;
  1915. }
  1916. });
  1917. return theType;
  1918. }
  1919. },
  1920. //新项目类型
  1921. getNewOrderType: function (e) {
  1922. if (e || e == 0) {
  1923. let str = e.toString();
  1924. let theType = "";
  1925. newOrderType.map(function (item) {
  1926. if (item.value == str) {
  1927. theType = item.key;
  1928. }
  1929. });
  1930. return theType;
  1931. }
  1932. },
  1933. //技术员发款类型
  1934. getJsyPaymentType: function (e) {
  1935. if (e || e == 0) {
  1936. let str = e.toString();
  1937. let theType = "";
  1938. jsyPaymentType.map(function (item) {
  1939. if (item.value == str) {
  1940. theType = item.key;
  1941. }
  1942. });
  1943. return theType;
  1944. }
  1945. },
  1946. //奖金发放状态
  1947. getBonusState: function (e) {
  1948. if (e || e == 0) {
  1949. let str = e.toString();
  1950. let theType = "";
  1951. bonusState.map(function (item) {
  1952. if (item.value == str) {
  1953. theType = item.key;
  1954. }
  1955. });
  1956. return theType;
  1957. }
  1958. },
  1959. //技术员发款类型
  1960. getCustomerType: function (e) {
  1961. if (e || e == 0) {
  1962. let str = e.toString();
  1963. let theType = "";
  1964. customerType.map(function (item) {
  1965. if (item.value == str) {
  1966. theType = item.key;
  1967. }
  1968. });
  1969. return theType;
  1970. }
  1971. },
  1972. //技术员发款类型
  1973. getOrderTypes: function (e) {
  1974. if (e || e == 0) {
  1975. let str = e.toString();
  1976. let theType = "";
  1977. orderTypes.map(function (item) {
  1978. if (item.value == str) {
  1979. theType = item.key;
  1980. }
  1981. });
  1982. return theType;
  1983. }
  1984. },
  1985. //技术员发款类型
  1986. getjiedian: function (e) {
  1987. if (e || e == 0) {
  1988. let str = e.toString();
  1989. let theType = "";
  1990. jiedian.map(function (item) {
  1991. if (item.value == str) {
  1992. theType = item.key;
  1993. }
  1994. });
  1995. return theType;
  1996. }
  1997. },
  1998. //省内外
  1999. getProvinceA: function (e) {
  2000. if (e || e == 0) {
  2001. let str = e.toString();
  2002. let theType = "";
  2003. province.map(function (item) {
  2004. if (item.value == str) {
  2005. theType = item.key;
  2006. }
  2007. });
  2008. return theType;
  2009. }
  2010. },
  2011. //开票状态
  2012. // getInvoiceStatus: function (e, record) {
  2013. // if (record && record.approval == 1) {
  2014. // return "特批待审核";
  2015. // } else {
  2016. // if (e || e == 0) {
  2017. // let str = e.toString();
  2018. // let theType = "";
  2019. // invoiceStatus.map(function (item) {
  2020. // if (item.value == str) {
  2021. // theType = item.key;
  2022. // }
  2023. // });
  2024. // return theType;
  2025. // }
  2026. // }
  2027. // },
  2028. // approval(0非特批 1待审核 2审核通过) status(0未提交 1处理中 2通过 3拒绝 4撤销)
  2029. getInvoiceStatus: function (e, record) {
  2030. let theType = "";
  2031. let name = "(" + record.examineName + ")"
  2032. if (!record.examineName) {
  2033. name = ""
  2034. }
  2035. if (record) {
  2036. if (record.status === 4) {
  2037. theType = "撤销"
  2038. }
  2039. if (record.approval === 1) {
  2040. theType = "特批审核中"
  2041. if (record.status === 3) {
  2042. theType = "特批被拒"
  2043. }
  2044. } else {
  2045. if (record.status === 1) {
  2046. theType = "开票处理中"
  2047. } else if (record.status === 2) {
  2048. theType = "已完成"
  2049. } else if (record.status === 3) {
  2050. theType = "开票被拒"
  2051. }
  2052. }
  2053. } else {
  2054. theType = "";
  2055. }
  2056. return theType + name;
  2057. },
  2058. getApprovalA: function (e) {
  2059. if (e || e == 0) {
  2060. let str = e.toString();
  2061. let theType = "";
  2062. approvalA.map(function (item) {
  2063. if (item.value == str) {
  2064. theType = item.key;
  2065. }
  2066. });
  2067. return theType;
  2068. }
  2069. },
  2070. getProcessStatusNew: function (name, pro, status) {
  2071. let names = "(" + name + ")";
  2072. // if (!name || pro == 0 || pro == 8 || pro == 9 || pro == 10) {
  2073. if (!name) {
  2074. names = ""
  2075. }
  2076. let str = "";
  2077. if (pro == 0) {
  2078. str = "营销员";
  2079. } else if (pro == 1) {
  2080. str = "营销经理";
  2081. } else if (pro == 2) {
  2082. str = "营销管理员";
  2083. } else if (pro == 3) {
  2084. str = "咨询师";
  2085. } else if (pro == 4) {
  2086. str = "咨询师经理";
  2087. } else if (pro == 5) {
  2088. str = "咨询师总监";
  2089. } else if (pro == 6) {
  2090. str = "财务专员";
  2091. } else if (pro == 7) {
  2092. str = "财务总监";
  2093. } else if (pro == 8) {
  2094. str = "运营保障";
  2095. } else if (pro == 9) {
  2096. str = "公司/部门管理";
  2097. } else if (pro == 10) {
  2098. str = "董事长";
  2099. }
  2100. // else if (pro == 11) {
  2101. // str = "副总裁";
  2102. // }
  2103. let num = "";
  2104. if (status == 0) {
  2105. num = "发起";
  2106. } else if (status == 1) {
  2107. num = "审核中";
  2108. } else if (status == 2) {
  2109. num = "通过";
  2110. } else if (status == 3) {
  2111. num = "驳回";
  2112. return num + "到" + str + names;
  2113. }
  2114. // else if (status == 4) {
  2115. // num = "完成";
  2116. // }
  2117. else if (status == 5) {
  2118. num = "取消变更";
  2119. } else if (status == 6) {
  2120. num = "待上传附件";
  2121. }
  2122. if (pro == 8 && status == 2) {
  2123. return `订单变更退票中 (${name}处理中)`;
  2124. } else if (pro == 9 && status == 2) {
  2125. return `订单变更退票中 (${name}处理中)`;
  2126. } else if (pro == 10 && status == 2) {
  2127. return `订单变更退票中 (${name}处理中)`;
  2128. } else if (status == 4) {
  2129. return "订单变更已完成";
  2130. } else if (pro >= 8 && status == 6) {
  2131. return "待上传附件(营销员处理中)";
  2132. } else {
  2133. return str + names + num;
  2134. }
  2135. },
  2136. getContractChangeStatus: function (e) {
  2137. if (e || e == 0) {
  2138. let str = e.toString();
  2139. let theType = "";
  2140. contractChangeStatus.map(function (item) {
  2141. if (item.value == str) {
  2142. theType = item.key;
  2143. }
  2144. });
  2145. return theType;
  2146. }
  2147. },
  2148. // 咨询师以及咨询师经理审核内容显示
  2149. shenghePeo(name, status) {
  2150. if (status == 3) {
  2151. let str = "咨询师(";
  2152. str = str + name;
  2153. return str + ")审核中";
  2154. } else if (status == 4) {
  2155. let str = "咨询师经理(";
  2156. str = str + name;
  2157. return str + ")审核中";
  2158. }
  2159. },
  2160. moneyVerify(e) {
  2161. if (!/^\d{1,3}(,?\d{3})*(\.\d{1,6})?$/.test(e)) {
  2162. message.warning("输入金额不符合规范");
  2163. return true;
  2164. }
  2165. },
  2166. // 消息提醒函数接口
  2167. ShowModal(fn) {
  2168. let flag = true;
  2169. $.ajax({
  2170. method: "get",
  2171. dataType: "json",
  2172. crossDomain: false,
  2173. url: globalConfig.context + "/api/admin/notice/unreadCount",
  2174. data: {},
  2175. success: function (data) {
  2176. if (data.data != 0) {
  2177. fn.setState({
  2178. showModal: true,
  2179. });
  2180. } else {
  2181. fn.setState({
  2182. showModal: false,
  2183. });
  2184. }
  2185. },
  2186. });
  2187. // return flag
  2188. },
  2189. getType(e) {
  2190. if (e || e == 0) {
  2191. let str = e.toString();
  2192. let theType = "";
  2193. typeList.map(function (item) {
  2194. if (item.value == str) {
  2195. theType = item.key;
  2196. }
  2197. });
  2198. return theType;
  2199. }
  2200. },
  2201. changeColor(e) {
  2202. return (
  2203. <span style={{ color: "red", fontWeight: 900, fontSize: 16 }}>{e}</span>
  2204. );
  2205. },
  2206. //
  2207. getProjectName(e) {
  2208. let arr = projectStatusList.filter(v => {
  2209. return v.value === e
  2210. });
  2211. if (arr.length) {
  2212. return arr[0].value == 29 ? <Tag color="#FF0000">{arr[0].label}</Tag> : <span>{arr[0].label}</span>
  2213. }
  2214. return '';
  2215. },
  2216. // 详情--满意度调查
  2217. getFormRetrieve(e, showColor = true) {
  2218. let arr = formRetrieveList.filter(v => {
  2219. return v.value === e
  2220. });
  2221. if (arr.length) {
  2222. return <span style={{ color: showColor && arr[0].color }}>{arr[0].label}</span>
  2223. }
  2224. return '';
  2225. },
  2226. // 列表--满意度调查
  2227. getFormRetrieves(e, i) {
  2228. let str1 = ["未发送", "已发送,未回收", "已回收", "其他"][e]
  2229. let str2 = ""
  2230. if (e == 2) {
  2231. str2 = i == 0
  2232. ? "(非常满意)" : i == 1
  2233. ? "(满意)" : i == 2
  2234. ? "(一般)" : i == 3 && "(不满意)"
  2235. }
  2236. return str1 + str2;
  2237. },
  2238. download(fileName, deleteLv = true) {
  2239. window.open(globalConfig.context + `${'/open/download?fileName=' + fileName + '&delete=' + deleteLv}`);
  2240. },
  2241. getClockState(id, journal = false) {
  2242. let arr = journal ? clockJournalState.filter(v => v.id === id) : clockState.filter(v => v.id === id);
  2243. if (arr.length > 0) {
  2244. return arr[0];
  2245. } else {
  2246. return {};
  2247. }
  2248. },
  2249. // 处理级别层数
  2250. getBarLevel: function (val) {
  2251. let arr = []
  2252. if (!val) {
  2253. arr = ["", "", "", "", ""]
  2254. } else {
  2255. arr = val.split(',')
  2256. }
  2257. let leg = 5 - arr.length
  2258. if (arr.length < 5) {
  2259. for (var i = 0; i < leg; i++) {
  2260. arr.push("")
  2261. }
  2262. }
  2263. return arr
  2264. },
  2265. // 树状数据处理 num需要显示的最低lvl从0开始 默认全部显示
  2266. newTreeData(treeData, num = 6) {
  2267. let newData = [];
  2268. treeData.map(item => {
  2269. let treeObj = item;
  2270. treeObj.children = (item.children && item.lvl < num) ? obj.newTreeData(item.children, num) : [];
  2271. newData.push(treeObj)
  2272. })
  2273. return newData
  2274. },
  2275. // 获取巴权限
  2276. getRole: function (e) {
  2277. if (e || e == 0) {
  2278. let arr = e.split(',')
  2279. let theType = [];
  2280. for (var i = 0; i < roleList.length; i++) {
  2281. for (var j = 0; j < arr.length; j++) {
  2282. if (roleList[i].value == arr[j]) {
  2283. theType.push(roleList[i].key)
  2284. }
  2285. }
  2286. }
  2287. return theType.toString();
  2288. }
  2289. },
  2290. // 项目状态
  2291. // 项目暂停类型 0暂停 1重启
  2292. // 项目暂停状态 0发起 1通过 2拒绝
  2293. getStopStatus(type, status) {
  2294. let str = ""
  2295. str = type == 0 ? "暂停" : "重启"
  2296. if (status == 0) {
  2297. return <span>{"项目" + str + "待审核"}</span>
  2298. } else if (status == 1) {
  2299. return <span style={{ color: "green" }}>{"项目已" + str}</span>
  2300. } else if (status == 2) {
  2301. return <span style={{ color: "red" }}>{"项目" + str + "拒绝"}</span>
  2302. }
  2303. },
  2304. //
  2305. stopStatus(type, status) {
  2306. if (type == 0) {
  2307. if (status == 0) {
  2308. return <span style={{ color: "red" }}>暂停待审核</span>
  2309. } else if (status == 1) {
  2310. return <span style={{ color: "red" }}>项目已暂停,需重启</span>
  2311. } else if (status == 2) {
  2312. return <span style={{ color: "red" }}>暂停被驳回,重新申请暂停</span>
  2313. }
  2314. } else if (type == 1) {
  2315. if (status == 0) {
  2316. return <span style={{ color: "red" }}>重启待审核</span>
  2317. } else if (status == 1) {
  2318. return <span style={{ color: "red" }}>项目已重启</span>
  2319. } else if (status == 2) {
  2320. return <span style={{ color: "red" }}>重启被驳回,重新申请重启</span>
  2321. }
  2322. }
  2323. },
  2324. // 获取报销申请类型
  2325. getAccountName(type, other = "其他") {
  2326. let theType = "";
  2327. accountType.map(function (item) {
  2328. if (item.value == type) {
  2329. theType = item.label;
  2330. if (item.value == 0) {
  2331. theType = "其他(" + other + ")"
  2332. }
  2333. }
  2334. });
  2335. return theType;
  2336. },
  2337. getSecondaryAccountName(type, other = "其他") {
  2338. let theType = "";
  2339. typeLists.map(function (item) {
  2340. if (item.value == type) {
  2341. theType = item.label;
  2342. if (item.value == 0) {
  2343. theType = "其他(" + other + ")"
  2344. }
  2345. }
  2346. });
  2347. return theType;
  2348. },
  2349. // 获取交通工具类型
  2350. getVehicleName(type, other = "其他") {
  2351. let theType = "";
  2352. vehiclelist.map(function (item) {
  2353. if (item.value == type) {
  2354. theType = item.label;
  2355. if (item.value == 0) {
  2356. theType = "其他(" + other + ")"
  2357. }
  2358. }
  2359. });
  2360. return theType;
  2361. },
  2362. // 获取报销费用类型
  2363. getTypeName(type, other = "其他") {
  2364. let theType = "";
  2365. typeLists.map(function (item) {
  2366. if (item.value == type) {
  2367. theType = item.label;
  2368. if (item.value == 0) {
  2369. theType = "其他(" + other + ")"
  2370. }
  2371. }
  2372. });
  2373. return theType;
  2374. },
  2375. // 解决小数求和问题
  2376. commonAdd(number1, number2) {
  2377. let result = 0;
  2378. if (Number.isInteger(number1) && Number.isInteger(number2)) {
  2379. result = number1 + number2;
  2380. } else {
  2381. //
  2382. const number1Array = (number1).toString().split('.');
  2383. const number2Array = (number2).toString().split('.');
  2384. Number.isInteger(number1) && number1Array.push("0")
  2385. Number.isInteger(number2) && number2Array.push("0")
  2386. //最大的除数位数
  2387. let maxBit = 1;
  2388. if (number1Array[1].length >= number2Array[1].length) {
  2389. maxBit = number1Array[1].length + 1;
  2390. } else {
  2391. maxBit = number2Array[1].length + 1;
  2392. }
  2393. const divisor = parseInt('1'.padEnd(maxBit, 0));
  2394. result = (number1 * divisor + number2 * divisor) / divisor;
  2395. }
  2396. return result;
  2397. },
  2398. /** 数字金额大写转换(可以处理整数,小数,负数) */
  2399. dealBigMoney(n) {
  2400. var fraction = ['角', '分'];
  2401. var digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];
  2402. var unit = [['元', '万', '亿'], ['', '拾', '佰', '仟']];
  2403. var head = n < 0 ? '欠' : '';
  2404. n = Math.abs(n);
  2405. var s = '';
  2406. for (var i = 0; i < fraction.length; i++) {
  2407. s += (digit[Math.floor(n * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, '');
  2408. }
  2409. s = s || '整';
  2410. n = Math.floor(n);
  2411. for (var i = 0; i < unit[0].length && n > 0; i++) {
  2412. var p = '';
  2413. for (var j = 0; j < unit[1].length && n > 0; j++) {
  2414. p = digit[n % 10] + unit[1][j] + p;
  2415. n = Math.floor(n / 10);
  2416. }
  2417. s = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + s;
  2418. }
  2419. return head + s.replace(/(零.)*零元/, '元').replace(/(零.)+/g, '零').replace(/^整$/, '零元整');
  2420. },
  2421. getToday(status) {
  2422. // status 1 今日 2 昨日 3 近7日 4 近15日 5 近30日
  2423. let list = []
  2424. let startTime = "";
  2425. let endTime = moment().format("YYYY-MM-DD");
  2426. if (status == 1) {
  2427. startTime = moment().format("YYYY-MM-DD");
  2428. } else if (status == 2) {
  2429. startTime = moment().subtract(1, 'days').format("YYYY-MM-DD");
  2430. endTime = moment().subtract(1, 'days').format("YYYY-MM-DD");
  2431. } else if (status == 3) {
  2432. startTime = moment().subtract(7, 'days').format("YYYY-MM-DD");
  2433. } else if (status == 4) {
  2434. startTime = moment().subtract(15, 'days').format("YYYY-MM-DD");
  2435. } else if (status == 5) {
  2436. startTime = moment().subtract(30, 'days').format("YYYY-MM-DD");
  2437. }
  2438. list.push(startTime, endTime)
  2439. return list
  2440. },
  2441. // 特批类型
  2442. getApprovedType: function (e, other, s = 0) {
  2443. if (!!e && e.length > 0) {
  2444. let theType = "";
  2445. for (var i = 0; i < e.length; i++) {
  2446. let item = Number(e[i])
  2447. for (var j = 0; j < approvalOptions.length; j++) {
  2448. if (item == approvalOptions[j].value && item != 0) {
  2449. theType = theType + (theType ? "," : "") + approvalOptions[j].label
  2450. } else if (item == approvalOptions[j].value && item == 0) {
  2451. theType = theType + (theType ? "," : "") + `其他(${other})`
  2452. }
  2453. }
  2454. }
  2455. if (s == 1) {
  2456. return !!theType ? ("(" + theType + ")") : theType
  2457. } else {
  2458. return theType;
  2459. }
  2460. }
  2461. },
  2462. compare: function (a, b) {
  2463. if (a === 0 || b === 0) {
  2464. return a === 0 ? 1 : -1;
  2465. }
  2466. return a - b;
  2467. },
  2468. // 数组重组
  2469. getNewArray: function (array, key) {
  2470. let arr = []
  2471. if (array && array.length > 0) {
  2472. array.forEach(e => {
  2473. arr.push(e[key])
  2474. });
  2475. }
  2476. return arr
  2477. },
  2478. };
  2479. module.exports = obj