123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670 |
- function ribao_init() {
- $.ajax({
- url: '/wx/jsApiConfig',
- type: "get",
- data: {
- "url": location.href.split('#')[0]
- },
- success: function (data) {
- wx.config({
- debug: false,
- appId: data.data.appId,
- timestamp: data.data.timestamp,
- nonceStr: data.data.nonceStr,
- signature: data.data.signature,
- jsApiList: [
- // 所有要调用的 API 都要加到这个列表中
- 'getLocation'
- ]
- });
- wx.ready(function () {
- wx.checkJsApi({
- jsApiList: [
- 'getLocation'
- ],
- success: function (res) {
- // alert(JSON.stringify(res));
- // alert(JSON.stringify(res.checkResult.getLocation));
- if (res.checkResult.getLocation == false) {
- alert('你的微信版本太低,不支持微信JS接口,请升级到最新的微信版本!');
- return;
- }
- // 获取定位
- getLocation();
- }
- });
- wx.error(function (res) {
- alert("接口调取失败")
- });
- });
- },
- });
- //lingyun
- $('#btnRB').on('click', function () {
- window.location.href = "/yeweihui/home.html";
- });
- $("#js_input_gzzd").select({
- title: "选择工作驻地",
- items: [
- {
- title: "武汉市",
- value: "1",
- },
- {
- title: "宜昌市",
- value: "2",
- },
- {
- title: "当阳市",
- value: "3",
- },
- {
- title: "其它地点",
- value: "4",
- }]
- });
- $("#js_input_jrszd").select({
- title: "选择今晚住地",
- items: [
- {
- title: "武汉市",
- value: "1",
- }, {
- title: "宜昌市",
- value: "2",
- },
- {
- title: "当阳市",
- value: "3",
- },
- {
- title: "其它地点",
- value: "4",
- }]
- });
- $("#js_input_sf").select({
- title: "",
- items: [
- {
- title: "否",
- value: "0",
- },
- {
- title: "是",
- value: "1",
- }]
- });
- $("#js_input_cfd").select({
- title: "选择出发地",
- items: [
- {
- title: "武汉市",
- value: "1",
- }, {
- title: "宜昌市",
- value: "2",
- },
- {
- title: "当阳市",
- value: "3",
- },
- {
- title: "其它地点",
- value: "4",
- }]
- });
- $("#js_input_mdd").select({
- title: "选择目的地",
- items: [
- {
- title: "武汉市",
- value: "1",
- }, {
- title: "宜昌市",
- value: "2",
- },
- {
- title: "当阳市",
- value: "3",
- },
- {
- title: "其它地点",
- value: "4",
- }]
- });
- $("#js_input_cxfs").select({
- title: "选择出行方式",
- items: [
- {
- title: "长途汽车",
- value: "1",
- },
- {
- title: "火车",
- value: "2",
- },
- {
- title: "飞机",
- value: "3",
- },
- {
- title: "自驾",
- value: "4",
- }]
- });
- // $("#js_input_user_sex").val(getGreder(2)); //设置初始值
- $('#btnRB').on('click', function () {
- window.location.href = "/yeweihui/home.html";
- });
- $("#js_input_user_sex").select({
- title: "选择性别",
- items: [
- {
- title: "男",
- value: "1",
- },
- {
- title: "女",
- value: "2",
- }]
- });
- var userStatus = [
- {
- title: "无病史",
- value: 0,
- },
- {
- title: "心脑血管疾病(服用ARB)",
- value: 1,
- },
- {
- title: "心脑血管疾病(未服ARB)",
- value: 2,
- },
- {
- title: "呼吸系统病史",
- value: 3,
- },
- {
- title: "肿瘤病史",
- value: 4,
- },
- {
- title: "糖尿病史",
- value: 5,
- },
- {
- title: "服用过激素药物",
- value: 6,
- },
- {
- title: "妊娠期",
- value: 7,
- }
- ];
- // $("#js_input_user_status").select({
- // title: "选择基本状况",
- // multi: true,
- // items: userStatus,
- // // onOpen:function (e) {
- // // var target = $("#js_input_user_status");
- // // console.log(target.data().values,userFamilyStatusStr,userFamilyStatus)
- // // target.val(userFamilyStatusStr);
- // // target.data('values',userFamilyStatus);
- // // console.log(target.data().values,userFamilyStatusStr,userFamilyStatus)
- // // }
- // // onChange:function(e){
- // // var selectStr = e.values
- // // if(!selectStr){
- // // $("#js_input_user_status").select('update',{
- // // multi: true,
- // // })
- // // }else {
- // // if(selectStr.indexOf('0')>-1){
- // // $("#js_input_user_status").select('update',{
- // // multi: false,
- // // })
- // // }else {
- // // $("#js_input_user_status").select('update',{
- // // multi: true,
- // // })
- // // }
- // // }
- // // // var target = $("#js_input_user_status");
- // // // console.log(target.data().values,userFamilyStatusStr,userFamilyStatus)
- // // console.log(e)
- // // },
- // beforeClose:function (e) {
- // if(e){
- // if(e.indexOf('0')>-1 && e.length>1){
- // $.toast("无病史不能与其他项同时被选中", "text");
- // return false
- // }else {
- // return true
- // }
- // }
- // }
- //
- // });
- // $("#js_input_user_crov19").select({
- // title: "选择基本状况",
- // items: [
- // {
- // title: "无",
- // value: "0",
- // },
- // {
- // title: "确诊",
- // value: "1",
- // },
- // {
- // title: "疑似",
- // value: "2",
- // },
- // {
- // title: "有接触史",
- // value: "3",
- // },
- // {
- // title: "解除隔离",
- // value: "4",
- // },
- // ],
- // });
- $("#js_input_user_xinguan").select({
- title: "选择新冠情况",
- items: [
- {
- title: "无",
- value: "0",
- },
- {
- title: "确诊",
- value: "1",
- },
- {
- title: "疑似",
- value: "2",
- },
- {
- title: "解除隔离",
- value: "3",
- }]
- });
- $("#js_input_user_kesou").select({
- title: "选择咳嗽情况",
- items: [
- {
- title: "无",
- value: "0",
- },
- {
- title: "偶有短暂咳嗽",
- value: "1",
- },
- {
- title: "咳嗽轻度影响生活",
- value: "2",
- },
- {
- title: "咳嗽严重影响生活",
- value: "3",
- }]
- });
- $("#js_input_user_jirou").select({
- title: "选择肌肉情况",
- items: [
- {
- title: "无",
- value: "0",
- },
- {
- title: "按压有",
- value: "1",
- },
- {
- title: "偶尔",
- value: "2",
- },
- {
- title: "持续有",
- value: "3",
- }]
- });
- $("#js_input_user_huxi").select({
- title: "选择呼吸情况",
- items: [
- {
- title: "无",
- value: "0",
- },
- {
- title: "急走或上坡气短",
- value: "1",
- },
- {
- title: "气短而走路变慢",
- value: "2",
- },
- {
- title: "走路数分钟后气短",
- value: "3",
- },
- {
- title: "气短无法离开房间",
- value: "4",
- }]
- });
- $("#js_input_user_fali").select({
- title: "选择乏力情况",
- items: [
- {
- title: "无",
- value: "0",
- },
- {
- title: "体力劳动后不能恢复",
- value: "1",
- },
- {
- title: "轻体力活非常累",
- value: "2",
- },
- {
- title: "不能正常生活",
- value: "3",
- }]
- });
- $("#js_input_user_fuxie").select({
- title: "选择腹泻情况",
- items: [
- {
- title: "无",
- value: "0",
- },
- {
- title: "轻度腹泻(少于3次)",
- value: "1",
- },
- {
- title: "中度腹泻(4-6次)",
- value: "2",
- },
- {
- title: "重度腹泻(超过6次)",
- value: "3",
- }]
- });
- // $("#switchQuezhen").select({
- // title: "选择是否确诊",
- // items: [
- // {
- // title: "否",
- // value: "0",
- // },
- // {
- // title: "是",
- // value: "1",
- // }]
- // });
- $("#switchQuezhen").select({
- title: "选择症状",
- items: [
- {
- title: "无",
- value: "0",
- },
- {
- title: "新冠确诊",
- value: "1",
- },
- {
- title: "新冠疑似",
- value: "2",
- },
- {
- title: "密切接触者",
- value: "3",
- },
- {
- title: "解除观察",
- value: "4",
- }]
- });
- $("#switchDanjiangeli").select({
- title: "选择是否单间隔离",
- items: [
- {
- title: "否",
- value: "0",
- },
- {
- title: "是",
- value: "1",
- }]
- });
- //
- // updateSuspected({
- // userName : 'www',
- // grender : 2,
- // age : 34,
- // familyStatus : 1,
- // statusDesp : "",
- // medical:0,
- // singleRoom:1,
- // temperature:0,
- // cough:2,
- // muscle:1,
- // dyspnea:1,
- // fatigue:1,
- // diarrhea:2,
- // others:""
- // })
- //
- // var grender = $("#js_input_user_sex").attr("data-values") == undefined ? 0 : $("#js_input_user_sex").attr("data-values");
- // console.log("grender:" + grender)
- initRadioEvent()
- }
- function selectinput1(obj) {
- var grender = $("#js_input_gzzd").attr("data-values") == undefined ? 0 : $("#js_input_gzzd").attr("data-values");
- if (grender != 4) {//js_input_qtdd
- // $('#js_input_qtdd')[0].disabled == 'disabled'+
- +
- $("#js_input_qtdd").val("");
- } else {
- $('#js_input_qtdd').removeAttr("disabled")
- }
- }
- function selectinput2(obj) {
- var grender = $("#js_input_jrszd").attr("data-values") == undefined ? 0 : $("#js_input_jrszd").attr("data-values");
- if (grender != 4) {//js_input_qtdd
- // $('#js_input_qtdd')[0].disabled == 'disabled' js_input_jrszq
- $('#js_input_jrszq').attr("disabled", "disabled");
- $("#js_input_jrszq").val("");
- } else {
- $('#js_input_jrszq').removeAttr("disabled")
- }
- }
- function selectinput3(obj) {
- var grender = $("#js_input_cfd").attr("data-values") == undefined ? 0 : $("#js_input_cfd").attr("data-values");
- if (grender != 4) {
- $('#js_input_cfdq').attr("disabled", "disabled");
- $("#js_input_cfdq").val("");
- } else {
- $('#js_input_cfdq').removeAttr("disabled")
- }
- }
- function selectinput4(obj) {
- var grender = $("#js_input_mdd").attr("data-values") == undefined ? 0 : $("#js_input_mdd").attr("data-values");
- if (grender != 4) {
- $('#js_input_mddq').attr("disabled", "disabled");
- $("#js_input_mddq").val("");
- } else {
- $('#js_input_mddq').removeAttr("disabled")
- }
- }
- function selectinput5(obj) {
- var grender = $("#js_input_cxfs").attr("data-values") == undefined ? 0 : $("#js_input_cxfs").attr("data-values");
- if (grender == 4) {
- // $('#js_input_cxfsq').attr("disabled","disabled")
- } else {
- $('#js_input_cxfsq').removeAttr("disabled")
- }
- }
- var listcx = [];
- function selectinput6(obj) {
- var grender = $("#js_input_sf").attr("data-values") == undefined ? 3 : $("#js_input_sf").attr("data-values");
- if (grender == 0) {
- $('#none')[0].style.display = 'none';
- $("#js_input_cfd").val("");
- $("#js_input_cfd").attr("data-values", "");
- $("#js_input_mdd").val("");
- $("#js_input_mdd").attr("data-values", "");
- $("#js_input_cxfs").val("");
- $("#js_input_cxfs").attr("data-values", "");
- $('#js_input_cxfsq').val("");
- $('#js_input_cfdq').val("");
- $('#js_input_mddq').val("");
- listcx.splice(0, listcx.length);
- $('#tabtr').empty();
- } else if (grender == 1) {
- $('#none')[0].style.display = '';
- }
- }
- function resetTravelState(bool) {
- if (bool) {
- $('#none').hide('fast');
- $("#js_input_cfd").val("");
- $("#js_input_cfd").attr("data-values", "");
- $("#js_input_mdd").val("");
- $("#js_input_mdd").attr("data-values", "");
- $("#js_input_cxfs").val("");
- $("#js_input_cxfs").attr("data-values", "");
- $('#js_input_cxfsq').val("");
- $('#js_input_cfdq').val("");
- $('#js_input_mddq').val("");
- listcx.splice(0, listcx.length);
- $('#tabtr').empty();
- } else {
- $('#none').show('fast');
- }
- }
- //添加出行详情
- function insertlingyun() {
- // var sf = $("#js_input_sf").attr("data-values") == undefined ? 3 : $("#js_input_sf").attr("data-values");
- // if (sf == 0 || sf == 3) {
- // cantijiao = true;
- // $.alert("请选择是否出行");
- // return;
- // }
- if($("#js_input_cfd").attr("data-values") == undefined){
- cantijiao = true;
- $.alert("请选择出发地");
- return;
- }
- if($("#js_input_mdd").attr("data-values") == undefined){
- cantijiao = true;
- $.alert("请选择目的地");
- return;
- }
- if($("#js_input_cxfs").attr("data-values") == undefined){
- cantijiao = true;
- $.alert("请选择出行方式");
- return;
- }
- var person = new Object();
- var cxfs = $("#js_input_cxfs").attr("data-values") == undefined ? 0 : $("#js_input_cxfs").attr("data-values");
- var jrszd = $("#js_input_jrszd").attr("data-values") == undefined ? 0 : $("#js_input_jrszd").attr("data-values");
- var cfd = $("#js_input_cfd").attr("data-values") == undefined ? 0 : $("#js_input_cfd").attr("data-values");
- var mdd = $("#js_input_mdd").attr("data-values") == undefined ? 0 : $("#js_input_mdd").attr("data-values");
- var jrszq = $('#js_input_jrszq').val();
- var mddq = $('#js_input_mddq').val();
- var cfdq = $('#js_input_cfdq').val();
- // if (mdd != jrszd) {
- // cantijiao = true;
- // $.alert("目的地与今晚住地不一致");
- // return;
- // }
- // if (jrszq != mddq) {
- // cantijiao = true;
- // $.alert("目的地与今晚住地不一致");
- // return;
- // }
- if (cfd == 4 && mdd == 4) {
- if (mddq == cfdq) {
- cantijiao = true;
- $.alert("出发地与目的地不能一致");
- return;
- }
- } else if (cfd != 4 || mdd != 4) {
- if (cfd == mdd) {
- cantijiao = true;
- $.alert("出发地与目的地不能一致");
- return;
- }
- }
- var cxfsq = $('#js_input_cxfsq').val();
- for (var i = 0; i < listcx.length; i++) {
- if (listcx[i].tripTypeDesp == cxfsq && listcx[i].tripType == cxfs && listcx[i].startLocal == cfd && listcx[i].startLocalOther == cfdq && listcx[i].endLocal == mdd && listcx[i].endLocalOther == mddq) {
- cantijiao = true;
- $.alert("此行程已添加");
- return;
- }
- }
- if (cxfs != 4 && cxfs != 0) {
- var val = $('#js_input_cxfsq').val();
- if (val == "") {
- cantijiao = true;
- $.alert("请填写车次/航班/车牌");
- return;
- }
- person.tripTypeDesp = $('#js_input_cxfsq').val();
- if (cxfs == 1) {
- person.tripType = 1;
- person.tripTypeStr = "长途汽车"
- } else if (cxfs == 2) {
- person.tripType = 2;
- person.tripTypeStr = "火车";
- } else if (cxfs == 3) {
- person.tripType = 3;
- person.tripTypeStr = "飞机";
- }
- } else if (cxfs == 0) {
- cantijiao = true;
- $.alert("请选择出行方式");
- return;
- } else if (cxfs == 4) {
- var val6 = $('#js_input_cxfsq').val();
- if (val6 == "") {
- cantijiao = true;
- $.alert("请填写车次/航班/车牌");
- return;
- }
- person.tripTypeStr = "自驾";
- person.tripType = 4;
- person.tripTypeDesp = $('#js_input_cxfsq').val();
- }
- if (cfd == 4 && cfd != 0) {
- var val2 = $('#js_input_cfdq').val();
- if (val2 == "") {
- cantijiao = true;
- $.alert("请填写出发地");
- return;
- }
- person.startLocal = 4;
- person.startLocalOther = $('#js_input_cfdq').val();
- person.startLocalStr = "其它地点_" + $('#js_input_cfdq').val();
- } else if (cfd != 4 && cfd != 0) {
- if (cfd == 1) {
- person.startLocal = 1;
- person.startLocalStr = "武汉市";
- person.startLocalOther = $('#js_input_cfdq').val() == undefined ? "" : $('#js_input_cfdq').val();
- } else if (cfd == 2) {
- person.startLocal = 2;
- person.startLocalStr = "宜昌市";
- person.startLocalOther = $('#js_input_cfdq').val() == undefined ? "" : $('#js_input_cfdq').val();
- } else if (cfd == 3) {
- person.startLocal = 3;
- person.startLocalStr = "当阳市";
- person.startLocalOther = $('#js_input_cfdq').val() == undefined ? "" : $('#js_input_cfdq').val();
- }
- } else if (cfd == 0) {
- cantijiao = true;
- $.alert("请选择出发地");
- return;
- }
- if (mdd == 4 && mdd != 0) {
- var val3 = $('#js_input_mddq').val();
- if (val3 == "") {
- cantijiao = true;
- $.alert("请填写目的地");
- return;
- }
- person.endLocal = 4;
- person.endLocalOther = $('#js_input_mddq').val();
- person.endlocalStr = "其它地点_" + $('#js_input_mddq').val();
- } else if (mdd != 4 && mdd != 0) {
- if (mdd == 1) {
- person.endLocal = 1;
- person.endlocalStr = "武汉市";
- person.endLocalOther = $('#js_input_mddq').val() == undefined ? "" : $('#js_input_mddq').val();
- } else if (mdd == 2) {
- person.endLocal = 2;
- person.endlocalStr = "宜昌市";
- person.endLocalOther = $('#js_input_mddq').val() == undefined ? "" : $('#js_input_mddq').val();
- } else if (mdd == 3) {
- person.endLocal = 3;
- person.endlocalStr = "当阳市";
- person.endLocalOther = $('#js_input_mddq').val() == undefined ? "" : $('#js_input_mddq').val();
- }
- } else if (mdd == 0) {
- cantijiao = true;
- $.alert("请选择目的地");
- return;
- }
- listcx.push(person);
- // $.alert("添加成功");
- tab()
- }
- function tab() {
- var xxIds = [];
- var xxName = [
- "序号",
- "出发地",
- "目的地",
- "出行方式",
- "车次/航班/车牌",
- "操作"
- ];
- for (var i = 0; i < xxName.length; i++) {
- xxIds.push({
- name: xxName[i]
- });
- }
- $('#tabtr').empty();
- var html = "<tr style='background-color: #f8f8f8;'>";
- for (var i = 0; i < xxIds.length; i++) {
- // alert(xxIds[i].name);
- html += "<th>" + xxIds[i].name + "</th>";
- }
- html += "</tr>"
- for (var i = 0; i < listcx.length; i++) {//后端传过来的集合遍历
- if (i % 2 != 0) {
- html += "<tr style='background-color: #f8f8f8;'>";
- }
- else {
- html += "<tr>";
- }
- html += "<td style='text-align: center;'>" + (i + 1) + "</td>";
- // var isValue = false; //记录是否赋值
- html += "<td style='text-align: center;' >" + listcx[i].startLocalStr + " </td>";
- html += "<td style='text-align: center;' >" + listcx[i].endlocalStr + " </td>";
- html += "<td style='text-align: center;' >" + listcx[i].tripTypeStr + " </td>";
- html += "<td style='text-align: center;' >" + listcx[i].tripTypeDesp + " </td>";
- html += "<td style='text-align: center;' ><button value=" + i + " style='height:30px;padding:0 10px;background-color: red;text-align: center;' class='weui-btn weui-btn_mini weui-btn_primary' onclick='splice(this.value)'>" + "删除" + " </button></td>";
- html += "</tr>";
- $("#tabtr").html(html);
- }
- }
- function splice(obj) {
- listcx.splice(obj, 1);
- tab()
- }
- function changeReportBtnState(list) {
- console.log(list)
- if(!list){
- $('#btn_shangbao').css({
- display: 'none'
- })
- $('#btnAdd').css({
- display: 'block'
- })
- }else {
- if(list.length){
- $('#btn_shangbao').css({
- display: 'block'
- })
- $('#btnAdd').css({
- display: 'none'
- })
- }else {
- $('#btn_shangbao').css({
- display: 'none'
- })
- $('#btnAdd').css({
- display: 'block'
- })
- }
- }
- }
- //首次近日报告
- function ribaoInitialization(reportId) {
- if (reportId == null)
- reportId = 0;
- var userId = $("#userId").val();
- $.ajax({
- url: '/home/home/queryRibaoRefresh',
- data: {
- reportId: reportId,
- userCreate: userId
- },
- type: 'GET',
- success: function (data) {
- if (data.data == undefined || data.data == "") {
- $('#rb_family').empty();
- document.getElementById("btn_shangbao").style['background-color'] = "#D9D9D9";
- canSahngbao = false;
- changeReportBtnState(data.data)
- }
- else {
- if (data.data.length > 0) {
- hasData = true;
- changeReportBtnState(data.data)
- data.data.forEach(function (v) {
- ribao_cell(v);
- });
- }else {
- changeReportBtnState(data.data)
- }
- }
- },
- error: function () {
- }
- });
- }
- //刷新今日日报
- function ribao_refrash() {
- var userId = $("#userId").val();
- $.ajax({
- url: '/home/home/queryRibao',
- data: {
- userCreate: userId
- },
- type: 'GET',
- success: function (data) {
- if (data.data == undefined || data.data == "") {
- $('#rb_family').empty();
- document.getElementById("btn_shangbao").style['background-color'] = "#D9D9D9";
- changeReportBtnState(data.data)
- }
- else {
- $('#rb_family').empty();
- if (data.data.length > 0) {
- changeReportBtnState(data.data)
- hasData = true;
- data.data.forEach(function (v) {
- ribao_cell(v);
- });
- } else {
- changeReportBtnState(data.data)
- }
- }
- },
- error: function () {
- }
- });
- }
- function ribao_cell(v) {
- var userName = v.userName;
- var grender = getGreder(v.grender);
- var age = v.age;
- var familyStatus = "";
- // if (v.familyStatus != 0)
- // familyStatus = getFamilyStatus(v.familyStatus) + ";";
- var medical = "新冠肺炎:" + getMedical(v.medical) + ";<br/>";
- var isContact = "";
- if (v.isContact != 0)
- isContact = "家庭成员中有新冠肺炎疫情或有过病例接触史人员:" + getIsContact(v.isContact) + ";<br/>";
- var isSuspected = "";
- if (v.isSuspected != 0)
- isSuspected = "近期接触的家庭成员中有感冒、发热、咳嗽等症状:" + getIsContact(v.isContact) + ";<br/>";
- var isContactHistory = '';
- if(!isContact && !isSuspected){
- isContactHistory = "新冠肺炎接触史:无;<br/>";
- }
- var singleRoom = "";
- var uptownId = $("#uptownId").val();
- if (uptownId != xiaoquId && uptownId != ceshixiaoquId) {
- if (v.singleRoom != 0)
- singleRoom = "单间隔离:" + getSingleRoom(v.singleRoom) + ";<br/>";
- if (v.singleRoom == 0 && v.medical != 0)
- singleRoom = "单间隔离:" + getSingleRoom(v.singleRoom) + ";<br/>";
- }
- var tempTemperature = v.temperature>37.2?'异常,'+v.temperature+'度':'正常,37.2度以下';
- var temperature = "体温:" + tempTemperature + ";<br/>";
- var cough = "";
- if (v.cough != 0)
- cough = "咳嗽现象:" + getCough(v.cough) + ";<br/>";
- var muscle = "";
- if (v.muscle != 0)
- muscle = "肌肉酸痛:" + getMuscle(v.muscle) + ";<br/>";
- var dyspnea = "";
- if (v.dyspnea != 0)
- dyspnea = "呼吸困难:" + getDyspnea(v.dyspnea) + ";<br/>";
- var fatigue = "";
- if (v.fatigue != 0)
- fatigue = "乏力现象:" + getFatigue(v.fatigue) + ";<br/>";
- var diarrhea = "";
- if (v.diarrhea != 0)
- diarrhea = "腹泻现象:" + getDiarrhea(v.diarrhea) + ";<br/>";
- var others = "";
- if (v.others != "")
- others = "其他描述:" + v.others + ";<br/>";
- var scoreRezult = "";
- if (v.scoreRezult != 0)
- scoreRezult = "评估结果:" + getScoreRezult(v.scoreRezult, v.temperatureScore) + ";<br/>";
- var workLocal = "";
- var todayLocal = "";
- var isTrip = "";
- var tripDet = "";
- if (uptownId == xiaoquId || uptownId == ceshixiaoquId) {
- // if (v.workLocal != 0) {
- // if (v.workLocal < 4)
- // workLocal = "工作驻地:" + getLocal(v.workLocal) + ";";
- // else
- // workLocal = "工作驻地:其它地点_" + v.workLocalOther + ";";
- // }
- //
- // if (v.todayLocal != 0) {
- // if (v.todayLocal < 4)
- // todayLocal = "今晚住地:" + getLocal(v.todayLocal) + ";";
- // else
- // todayLocal = "今晚住地:其它地点_" + v.todayLocalOther + ";";
- // }
- if (v.isTrip != undefined)
- isTrip = "有无离开工作驻地:" + getIsTrip(v.isTrip) + ";<br/>"
- if (v.tripDet != undefined)
- tripDet = "出行详细:" + v.tripDet + ";<br/>"
- }
- // $('#rb_family').append($('<div class="weui-media-box weui-media-box_text" style="height: auto">\n' +
- // ' <h4 class="weui-media-box__title">' + userName + ' ' + grender + ' ' + age + ' <a style="color: #bc4246" onclick=\'deleteSuspected(' + JSON.stringify(v.suspectedId) + ')\'>删除</a>\n' +
- // ' <a style="color: #2a62bc" onclick=\'updateSuspected(' + JSON.stringify(v.suspectedId) + ')\'>修改上报</a></h4>\n' +
- // ' <div style="height: auto">' + familyStatus + medical + isContact + isSuspected + singleRoom + temperature + cough + muscle + dyspnea + fatigue + diarrhea + others + scoreRezult + workLocal + todayLocal + isTrip + tripDet + '</>\n' +
- // ' </div>\n' +
- // ' '));
- $('#rb_family').append($('<div class="weui-form-preview">\n' +
- ' <div class="weui-form-preview__hd">\n' +
- ' <label class="weui-form-preview__label">员工</label>\n' +
- ' <em class="weui-form-preview__value">'+userName + ' ' + grender + ' ' + age + ' ' +
- ' </em>\n' +
- ' </div>\n' +
- ' <div class="weui-form-preview__bd">\n' +
- ' <div class="weui-form-preview__item">\n' +
- ' <label class="weui-form-preview__label">基本情况</label>\n' +
- ' <span class="weui-form-preview__value" style="text-align: left;">'+ temperature + familyStatus + medical + singleRoom + cough + muscle + dyspnea + fatigue + diarrhea + others + isContactHistory + isContact + isSuspected + scoreRezult + workLocal + todayLocal + isTrip + tripDet+'</span>\n' +
- ' </div>\n' +
- ' </div>\n' +
- ' <div class="weui-form-preview__ft">\n' +
- ' <a class="weui-form-preview__btn weui-form-preview__btn_default" style="color: #bc4246" href="javascript:" onclick=\'deleteSuspected(' + JSON.stringify(v.suspectedId) + ')\'>删除</a>\n' +
- ' <button class="weui-form-preview__btn weui-form-preview__btn_primary" style="color:#2a62bc" href="javascript:" onclick=\'updateSuspected(' + JSON.stringify(v.suspectedId) + ')\'>修改上报</button>\n' +
- ' </div>\n' +
- '</div>'));
- }
- function ribao_add() {
- $('#btnAdd').on('click', function () {
- // userFamilyStatus = '';
- // userFamilyStatusStr = '';
- if ($('#ribao')[0].style.display == 'none') {
- $('#notOpenRibao').toggle();
- $('#ribao')[0].style.display = '';
- } else {
- $('#notOpenRibao')[0].style.display = '';
- $('#ribao')[0].style.display = 'none';
- }
- //基本情况
- // $("input[name='checkbox1']").removeAttr("checked");
- // $("input[name='checkbox2']").removeAttr("checked");
- // $("input[name='checkbox3']").removeAttr("checked");
- // $("input[name='checkbox4']").removeAttr("checked");
- // $("input[name='checkbox5']").removeAttr("checked");
- // $("input[name='checkbox6']").removeAttr("checked");
- // $("input[name='checkbox7']").removeAttr("checked");
- $("#js_input_user_sex").val('男');
- $("#js_input_user_sex").attr("data-values", 1);
- // $("#js_input_user_status").val('');
- // $("#js_input_user_status").attr("data-values", '');
- // $("#js_input_user_crov19").val('无');
- // $("#js_input_user_crov19").attr("data-values", 0);
- $("input[id='s18']").prop("checked", "checked");
- $("input[id='s28']").prop("checked", "checked");
- $("input[id='s38']").prop("checked", "checked");
- $("input[id='s40']").prop("checked", "checked");
- $("input[id='s50']").prop("checked", "checked");
- $("input[id='s60']").prop("checked", "checked");
- $("#switchQuezhen").val(getMedical(0));
- $("#switchQuezhen").attr("data-values", 0);
- $("#switchDanjiangeli").val(getSingleRoom(0));
- $("#switchDanjiangeli").attr("data-values", 0);
- $("#js_input_user_tiwen").val(36.5);
- $("#js_input_user_xinguan").val(getXinguan(0));
- $("#js_input_user_xinguan").attr("data-values", 0);
- $("#js_input_user_kesou").val(getCough(0));
- $("#js_input_user_kesou").attr("data-values", 0);
- $("#js_input_user_jirou").val(getMuscle(0));
- $("#js_input_user_jirou").attr("data-values", 0);
- $("#js_input_user_huxi").val(getDyspnea(0));
- $("#js_input_user_huxi").attr("data-values", 0);
- $("#js_input_user_fali").val(getFatigue(0));
- $("#js_input_user_fali").attr("data-values", 0);
- $("#js_input_user_fuxie").val(getDiarrhea(0));
- $("#js_input_user_fuxie").attr("data-values", 0);
- $("#shuruqita").val('');
- $("#js_input_sf").val(getIsTrip(0));
- $("#js_input_sf").attr("data-values", 0);
- $('#none')[0].style.display = 'none';
- $('#tabtr').empty();
- // $("#suspectedId").val("");
- // $("#js_input_gzzd").val("");
- // $("#js_input_jrszd").val("");
- // $('#js_input_mddq').attr("disabled","disabled");
- // $('#js_input_jrszq').attr("disabled","disabled");
- // $('#js_input_qtdd').attr("disabled","disabled");
- // $('#js_input_cfdq').attr("disabled","disabled");
- // var userId = $("#userId").val();
- // //获取用户家人
- // $.ajax({
- // url: '/home/selectAddSuspected',
- // get: "get",
- // data: {
- // "userCreate": userId
- // },
- // success: function (data) {
- // if (data != null || data != '') {
- // //存在
- // var suspected = data;
- // $("#js_input_user_sex").val(getGreder(suspected.grender));
- // $("#js_input_user_sex").attr("data-values", suspected.grender);
- // $("#js_input_user_name").val(suspected.userName);
- // $("#js_input_user_age").val(suspected.age);
- // //基本情况
- // if (suspected.familyStatus != "") {
- // var familyStatusList = suspected.familyStatus.split(",");
- // if (familyStatusList[0] == 1)
- // $("input[name='checkbox1']").prop("checked", "checked");
- // else
- // $("input[name='checkbox1']").removeAttr("checked");
- // if (familyStatusList[1] == 1)
- // $("input[name='checkbox2']").prop("checked", "checked");
- // else
- // $("input[name='checkbox2']").removeAttr("checked");
- // if (familyStatusList[2] == 1)
- // $("input[name='checkbox3']").prop("checked", "checked");
- // else
- // $("input[name='checkbox3']").removeAttr("checked");
- // if (familyStatusList[3] == 1)
- // $("input[name='checkbox4']").prop("checked", "checked");
- // else
- // $("input[name='checkbox4']").removeAttr("checked");
- // if (familyStatusList[4] == 1)
- // $("input[name='checkbox5']").prop("checked", "checked");
- // else
- // $("input[name='checkbox5']").removeAttr("checked");
- // if (familyStatusList[5] == 1)
- // $("input[name='checkbox6']").prop("checked", "checked");
- // else
- // $("input[name='checkbox6']").removeAttr("checked");
- // if (familyStatusList[6] == 1)
- // $("input[name='checkbox7']").prop("checked", "checked");
- // else
- // $("input[name='checkbox7']").removeAttr("checked");
- //
- // }
- //
- // $("#switchQuezhen").val(getMedical(suspected.medical));
- // $("#switchQuezhen").attr("data-values", suspected.medical);
- //
- // $("#switchDanjiangeli").val(getSingleRoom(suspected.singleRoom));
- // $("#switchDanjiangeli").attr("data-values", suspected.singleRoom);
- //
- // $("#js_input_user_tiwen").val(suspected.temperature);
- //
- // $("#js_input_user_kesou").val(getCough(suspected.cough));
- // $("#js_input_user_kesou").attr("data-values", suspected.cough);
- //
- // $("#js_input_user_jirou").val(getMuscle(suspected.muscle));
- // $("#js_input_user_jirou").attr("data-values", suspected.muscle);
- //
- // $("#js_input_user_huxi").val(getDyspnea(suspected.dyspnea));
- // $("#js_input_user_huxi").attr("data-values", suspected.dyspnea);
- //
- // $("#js_input_user_fali").val(getFatigue(suspected.fatigue));
- // $("#js_input_user_fali").attr("data-values", suspected.fatigue);
- //
- // $("#js_input_user_fuxie").val(getDiarrhea(suspected.diarrhea));
- // $("#js_input_user_fuxie").attr("data-values", suspected.diarrhea);
- //
- // $("#shuruqita").val(suspected.others);
- // $("#js_input_score_rezult").val(getScoreRezult(suspected.scoreRezult, suspected.temperatureScore));
- // $("#js_input_score_rezult_value").val(suspected.scoreRezult);
- // $("#js_input_temperature_score").val(suspected.temperatureScore);
- // $("#js_input_score_histroy").val(suspected.scoreHistroy);
- // $("#js_input_score").val(suspected.score);
- //
- // $("#js_input_sf").val(getIsTrip(0));
- // $("#js_input_sf").attr("data-values", 0);
- // $('#none')[0].style.display = 'none';
- // }
- // else {
- // //基本情况
- // $("input[name='checkbox1']").removeAttr("checked");
- // $("input[name='checkbox2']").removeAttr("checked");
- // $("input[name='checkbox3']").removeAttr("checked");
- // $("input[name='checkbox4']").removeAttr("checked");
- // $("input[name='checkbox5']").removeAttr("checked");
- // $("input[name='checkbox6']").removeAttr("checked");
- // $("input[name='checkbox7']").removeAttr("checked");
- //
- // $("#switchQuezhen").val(getMedical(0));
- // $("#switchQuezhen").attr("data-values", 0);
- //
- // $("#switchDanjiangeli").val(getSingleRoom(0));
- // $("#switchDanjiangeli").attr("data-values", 0);
- //
- // $("#js_input_user_tiwen").val(0);
- //
- // $("#js_input_user_kesou").val(getCough(0));
- // $("#js_input_user_kesou").attr("data-values", 0);
- //
- // $("#js_input_user_jirou").val(getMuscle(0));
- // $("#js_input_user_jirou").attr("data-values", 0);
- //
- // $("#js_input_user_huxi").val(getDyspnea(0));
- // $("#js_input_user_huxi").attr("data-values", 0);
- //
- // $("#js_input_user_fali").val(getFatigue(0));
- // $("#js_input_user_fali").attr("data-values", 0);
- //
- // $("#js_input_user_fuxie").val(getDiarrhea(0));
- // $("#js_input_user_fuxie").attr("data-values", 0);
- //
- //
- // // $("#js_input_cxfs").empty();
- // // $("#js_input_cfd").empty();
- // // $("#js_input_mdd").empty();
- // // $('#js_input_cxfsq').val("");
- // // $('#js_input_cfdq').val("");
- // // $('#js_input_mddq').val("");
- // // listcx.splice(0,listcx.length);
- // // $('#tabtr').empty();
- // // $("#js_input_qtdd").val("");
- // // $("#js_input_jrszq").val("");
- // // $("#js_input_sf").val("");
- // $("#js_input_sf").val(getIsTrip(0));
- // $("#js_input_sf").attr("data-values", 0);
- // $('#none')[0].style.display = 'none';
- // $('#tabtr').empty();
- // // $("#suspectedId").val("");
- // // $("#js_input_gzzd").val("");
- // // $("#js_input_jrszd").val("");
- // // $('#js_input_mddq').attr("disabled","disabled");
- // // $('#js_input_jrszq').attr("disabled","disabled");
- // // $('#js_input_qtdd').attr("disabled","disabled");
- // // $('#js_input_cfdq').attr("disabled","disabled");
- //
- // }
- // },
- // });
- getLocation()
- });
- }
- function tt() {
- alert($("input[name='radio']:checked").val())
- }
- function ribao_cancel() {
- $('#cancel').on('click', function () {
- listcx.splice(0, listcx.length);
- $('#tabtr').empty();
- $("#js_input_cfd").val("");
- $("#js_input_cfd").attr("data-values", "");
- $("#js_input_mdd").val("");
- $("#js_input_mdd").attr("data-values", "");
- $("#js_input_cxfs").val("");
- $("#js_input_cxfs").attr("data-values", "");
- $("#js_input_gzzd").val("");
- $("#js_input_gzzd").attr("data-values", "");
- $("#js_input_jrszd").val("");
- $("#js_input_jrszd").attr("data-values", "");
- $("#js_input_sf").val("");
- $("#js_input_sf").attr("data-values", "");
- $("#js_input_qtdd").val("");
- $("#js_input_jrszq").val("");
- $("#js_input_cfdq").val("");
- $("#js_input_mddq").val("");
- $("#js_input_cxfsq").val("");
- if ($('#ribao')[0].style.display == 'none') {
- $('#notOpenRibao').toggle();
- $('#ribao')[0].style.display = '';
- } else {
- $('#notOpenRibao')[0].style.display = '';
- $('#ribao')[0].style.display = 'none';
- }
- clearShow();
- });
- }
- function filterUserStatus(values) {
- if(!values) return []
- return values.split(',')
- }
- function ribaoCommit() {
- if (cantijiao == false) {
- return
- }
- cantijiao = false
- // //判断是否获取到定位
- var hrefs = location.href
- if(!/http:\/\/127\.0\.0\.1/.test(hrefs)){
- if (longitude == '' && latitude =='') {
- cantijiao = true;
- $.alert("请检查是否开启手机定位和微信定位");
- return;
- }
- }
- // if (autoLocal == '') {
- // cantijiao = true;
- // $.alert("请先设置微信获取当前位置");
- // return;
- // }
- //var sf = $("#js_input_sf").attr("data-values") == undefined ? 3 : $("#js_input_sf").attr("data-values");
- var sf = $("input[name=radio4]:checked").val()
- if (listcx.length == 0 && sf == 1) {
- cantijiao = true;
- $.alert("请添加出行信息");
- return;
- }
- var suspectedId = $("#suspectedId").val();
- var userId = $("#userId").val();
- var userName = $("#js_input_user_name").val();
- var grender = $("#js_input_user_sex").attr("data-values") == undefined ? 0 : $("#js_input_user_sex").attr("data-values");
- var age = $("#js_input_user_age").val();
- // var userStatus = filterUserStatus($("#js_input_user_status").data().values)
- var userStatus = []
- // //不能同时选择服用和未服用
- // if (userStatus.indexOf('1')>-1 && userStatus.indexOf('2')>-1) {
- // cantijiao = true;
- // $.alert("心脑血管不能同时选择服用和未服用");
- // return;
- // }
- // //男性不能选择妊娠期
- // if ($("#js_input_user_sex").attr("data-values") == 1 && userStatus.indexOf('7')>-1) {
- // cantijiao = true;
- // $.alert("男性不能选择妊娠期");
- // return;
- // }
- //家庭状态
- var familyStatus = "";
- if(!userStatus.length){
- familyStatus += '0,0,0,0,0,0,0'
- }else {
- if (userStatus.indexOf('1')>-1)
- familyStatus += "1";
- else
- familyStatus += "0";
- if (userStatus.indexOf('2')>-1)
- familyStatus += ",1";
- else
- familyStatus += ",0";
- if (userStatus.indexOf('3')>-1)
- familyStatus += ",1";
- else
- familyStatus += ",0";
- if (userStatus.indexOf('4')>-1)
- familyStatus += ",1";
- else
- familyStatus += ",0";
- if (userStatus.indexOf('5')>-1)
- familyStatus += ",1";
- else
- familyStatus += ",0";
- if (userStatus.indexOf('6')>-1)
- familyStatus += ",1";
- else
- familyStatus += ",0";
- if (userStatus.indexOf('7')>-1)
- familyStatus += ",1";
- else
- familyStatus += ",0";
- }
- // var medical = $("#js_input_user_crov19").data().values;
- var medical = $("input[name='radio']:checked").val();
- if (medical == undefined) {
- cantijiao = true;
- $.alert("请选择新冠肺炎");
- return;
- }
- var medicalState = $("#js_input_user_xinguan").data().values;
- if(medical == 1){
- if(medicalState == undefined){
- cantijiao = true;
- $.alert("请选择新冠现象");
- return;
- }
- }
- var isContact = $("input[name='radio1']:checked").val();
- if (isContact == undefined) {
- cantijiao = true;
- $.alert("请选择家庭成员中有新冠肺炎疫情或有过病例接触史人员");
- return;
- }
- var isSuspected = $("input[name='radio2']:checked").val();
- if (isSuspected == undefined) {
- isSuspected = true;
- $.alert("请选择近期接触的家庭成员中有感冒、发热、咳嗽等症状");
- return;
- }
- //var familyStatus = $("#js_input_user_status").attr("data-values") == undefined ? 0 : $("#js_input_user_status").attr("data-values");
- //var statusDesp = $("#jibenmiaoshu").val() == undefined ? "" : $("#jibenmiaoshu").val();
- var statusDesp = "";
- // var medical = $("#switchQuezhen").attr("data-values") == undefined ? 0 : $("#switchQuezhen").attr("data-values");
- var medicalzz = $("#switchQuezhen_zz").attr("data-values") == undefined ? 0 : $("#switchQuezhen_zz").attr("data-values");
- var singleRoom = $("#switchDanjiangeli").attr("data-values") == undefined ? 0 : $("#switchDanjiangeli").attr("data-values");
- var temperature = $("#js_input_user_tiwen").val() == "" ? 0 : $("#js_input_user_tiwen").val();
- var cough = $("#js_input_user_kesou").attr("data-values") == undefined ? 0 : $("#js_input_user_kesou").attr("data-values");
- var muscle = $("#js_input_user_jirou").attr("data-values") == undefined ? 0 : $("#js_input_user_jirou").attr("data-values");
- var dyspnea = $("#js_input_user_huxi").attr("data-values") == undefined ? 0 : $("#js_input_user_huxi").attr("data-values");
- var fatigue = $("#js_input_user_fali").attr("data-values") == undefined ? 0 : $("#js_input_user_fali").attr("data-values");
- var diarrhea = $("#js_input_user_fuxie").attr("data-values") == undefined ? 0 : $("#js_input_user_fuxie").attr("data-values");
- var others = $("#shuruqita").val() == undefined ? "" : $("#shuruqita").val();
- var scoreRezult = $("#js_input_score_rezult_value").val() == undefined ? "" : $("#js_input_score_rezult_value").val();
- var temperatureScore = $("#js_input_temperature_score").val() == undefined ? "" : $("#js_input_temperature_score").val();
- var scoreHistroy = $("#js_input_score_histroy").val() == undefined ? "" : $("#js_input_score_histroy").val();
- var score = $("#js_input_score").val() == undefined ? "" : $("#js_input_score").val();
- if (userName == undefined || userName == '') {
- cantijiao = true;
- $.alert("请填写姓名");
- return;
- }
- if (grender == 0) {
- cantijiao = true;
- $.alert("请填写性别");
- return;
- }
- if (age == undefined || age == '') {
- cantijiao = true;
- $.alert("请填写年龄");
- return;
- }
- if (age > 150 || age < 0) {
- cantijiao = true;
- $.alert("请填写正确的年龄");
- return;
- }
- if (temperature <= 0) {
- cantijiao = true;
- $.alert("请填写体温");
- return;
- }
- if (temperature > 50 || temperature < 30) {
- cantijiao = true;
- $.alert("请填写正确的体温");
- return;
- }
- if (temperature > 30 && temperature < 37.3) {
- $("#js_input_user_tiwen").hide();
- $("input[radio='s61']").removeAttr("checked");
- $("input[radio='s60']").prop("checked", "checked");
- }
- if(medical == 1 && medicalState == 0 && cough ==0 && muscle == 0 && dyspnea == 0 && fatigue == 0 && diarrhea == 0 && !others){
- $("input[id='s18']").prop("checked", "checked");
- $("input[id='s19']").removeAttr('checked');
- var ids = ['js_input_user_xinguan_view','js_input_user_kesou_view','js_input_user_jirou_view','js_input_user_huxi_view','js_input_user_fali_view','js_input_user_fuxie_view','shuruqita_view']
- ids.forEach(iv=>{
- $('#'+iv).hide()
- })
- medical = $("input[name='radio']:checked").val()
- }
- //如果是凌云
- var uptownId = $("#uptownId").val();
- if (uptownId == xiaoquId || uptownId == ceshixiaoquId) {
- //lingyun
- var gzzd = $("#js_input_gzzd").attr("data-values") == undefined ? 0 : $("#js_input_gzzd").attr("data-values");
- var qtdd = $("#js_input_qtdd").val();
- var workLocal = 0;
- var workLocalOther = "";
- // if (gzzd == 0) {
- // cantijiao = true;
- // $.alert("请选择工作驻地");
- // return;
- // } else if (gzzd == 4 && qtdd == "") {
- // cantijiao = true;
- // $.alert("请填写工作驻地");
- // return;
- // } else if (gzzd != 0 && gzzd != 4) {
- // if (gzzd == 1) {
- // workLocal = 1;
- // } else if (gzzd == 2) {
- // workLocal = 2;
- // } else if (gzzd == 3) {
- // workLocal = 3;
- // }
- // } else if (gzzd == 4 && qtdd != "") {
- // workLocal = 4;
- // workLocalOther = qtdd;
- // }
- //var listcx = [];
- //var person=new Object();
- var jrszd = $("#js_input_jrszd").attr("data-values") == undefined ? 0 : $("#js_input_jrszd").attr("data-values");
- var jrszq = $("#js_input_jrszq").val();
- var todyLocal = 0;
- var todyLocalOther = "";
- // if (jrszd == 0) {
- // cantijiao = true;
- // $.alert("请检查是否开启手机定位和微信定位");
- // //$.alert("请选择今晚住地");
- // return;
- // } else if (jrszd == 4 && jrszq == "") {
- // cantijiao = true;
- // $.alert("请检查是否开启手机定位和微信定位");
- // //$.alert("请填写今晚住地");
- // return;
- // } else if (jrszd != 0 && jrszd != 4) {
- // if (jrszd == 1) {
- // todyLocal = 1;
- // } else if (jrszd == 2) {
- // todyLocal = 2;
- // } else if (jrszd == 3) {
- // todyLocal = 3;
- // }
- // } else if (jrszd == 4 && jrszq != "") {
- // todyLocal = 4;
- // todyLocalOther = jrszq;
- // }
- //var sf = $("#js_input_sf").attr("data-values") == undefined ? 3 : $("#js_input_sf").attr("data-values");
- //var sf = $("input[name=radio4]:checked").val()
- var isTrip = $("input[name=radio4]:checked").val();
- // if (sf == 1) {
- // cantijiao = true;
- // $.alert("请选择是否出行");
- // return;
- // } else {
- // isTrip = sf;
- // }
- } else {
- workLocal = 0;
- workLocalOther = "";
- todyLocal = 0;
- todyLocalOther = "";
- isTrip = 0;
- listcx = [];
- }
- var pdata = {
- "suspectedId": suspectedId,
- "userCreate": userId,
- "userName": userName,
- "grender": grender,
- "age": age,
- "familyStatus": familyStatus,
- "statusDesp": statusDesp,
- "medical": medical,
- "medicalState": medicalState,
- "singleRoom": singleRoom,
- "temperature": temperature,
- "cough": cough,
- "muscle": muscle,
- "dyspnea": dyspnea,
- "fatigue": fatigue,
- "diarrhea": diarrhea,
- "others": others,
- "scoreRezult": scoreRezult,
- "temperatureScore": temperatureScore,
- "scoreHistroy": scoreHistroy,
- "score": score,
- "isContact": isContact,
- "isSuspected": isSuspected,
- "workLocal": workLocal,
- "workLocalOther": workLocalOther,
- "todayLocal": todyLocal,
- "todayLocalOther": todyLocalOther,
- "autoLocal": autoLocal,
- "autoAddr": autoAddr,
- "isTrip": isTrip,
- "tripDet": listcx,
- };
- //loading
- var tempTimes = $.toast.prototype.defaults.duration
- $.toast.prototype.defaults.duration = 0
- $.toast("处理中...", 'loading');
- $.ajax({
- url: '/home/addRibaoTrip',
- type: "post",
- contentType: "application/json; charset=utf-8",
- data: JSON.stringify(pdata),
- success: function (data) {
- $.toast.prototype.defaults.duration = tempTimes
- console.log('data:', data.msgReport);
- if (data == {} || data == '' || data == null || data == undefined) {
- $.toast("数据提交失败,请重新提交!", 'forbidden');
- cantijiao = true;
- return;
- }
- if (data.reportId == null || data.reportId == undefined || data.reportId <= 0) {
- $.toast("数据提交失败,请重新提交!", 'forbidden');
- cantijiao = true;
- return;
- }
- if (data.msgReport == "2") {
- cantijiao = true;
- $.toast("家人姓名不能重复,如果重复,可以带上称呼");
- return;
- }
- if (data.msgReport == "4") {
- cantijiao = true;
- $.toast("是否出行,请如实填写!");
- return;
- }
- if ($('#ribao')[0].style.display == 'none') {
- $('#notOpenRibao').toggle();
- $('#ribao')[0].style.display = '';
- } else {
- $('#notOpenRibao')[0].style.display = '';
- $('#ribao')[0].style.display = 'none';
- }
- cantijiao = true
- $('#ribao_jinrijujian').empty();
- $('#ribao_jinrijujian').append(data.safetyNum);
- //修改
- var uptownId = $("#uptownId").val();
- //是凌云
- if (uptownId == xiaoquId || uptownId == ceshixiaoquId) {
- if (suspectedId > 0) {
- var date = new Date();
- var Y = date.getFullYear() + '-';
- var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
- var D = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate()) + ' ';
- var h = (date.getHours() < 10 ? '0' + (date.getHours()) : date.getHours()) + ':';
- var m = (date.getMinutes() < 10 ? '0' + (date.getMinutes()) : date.getMinutes()) + ':';
- var s = (date.getSeconds() < 10 ? '0' + (date.getSeconds()) : date.getSeconds());
- var time = Y + M + D + h + m + s;
- canSahngbao = false;
- document.getElementById("btn_shangbao").style['background-color'] = "#D9D9D9";
- document.getElementById("txt_shangbao").style['color'] = "#0bb20c";
- document.getElementById("txt_shangbaotime").style['color'] = "#0bb20c";
- $('#txt_shangbao').empty();
- $('#txt_shangbao').append("今日已上报");
- $('#txt_shangbaotime').empty();
- $('#txt_shangbaotime').append("上报时间:" + time);
- }
- else {
- canSahngbao = true;
- document.getElementById("btn_shangbao").style['background-color'] = "#0bb20c";
- document.getElementById("txt_shangbao").style['color'] = "red";
- $('#txt_shangbao').empty();
- $('#txt_shangbao').append("今日未上报");
- $('#txt_shangbaotime').empty();
- }
- }
- else {
- canSahngbao = true;
- document.getElementById("btn_shangbao").style['background-color'] = "#0bb20c";
- document.getElementById("txt_shangbao").style['color'] = "red";
- $('#txt_shangbao').empty();
- $('#txt_shangbao').append("今日未上报");
- $('#txt_shangbaotime').empty();
- // $.toast("请点击上报");
- }
- $.toast("操作成功");
- ribao_refrash();
- clearShow();
- },
- });
- }
- function deleteSuspected(suspectedId) {
- $.confirm({
- title: '是否确定删除上报信息?',
- onOK: function () {
- $.ajax({
- url: '/home/deleteSuspected',
- type: "post",
- data: {
- "suspectedId": suspectedId
- },
- success: function (data) {
- $('#ribao_jinrijujian').empty();
- $('#ribao_jinrijujian').append(data.safetyNum);
- //今日未上报
- canSahngbao = true;
- document.getElementById("btn_shangbao").style['background-color'] = "#0bb20c";
- document.getElementById("txt_shangbao").style['color'] = "red";
- $('#txt_shangbao').empty();
- $('#txt_shangbao').append("今日未上报");
- $('#txt_shangbaotime').empty();
- $('#ribao_famliy').empty();
- ribao_refrash();
- clearShow();
- $.toast("删除后请重新添加上报");
- },
- });
- },
- onCancel: function () {
- }
- });
- }
- //重新填报
- function goReport() {
- $("#suspectedId").val("");
- if ($('#ribao')[0].style.display == 'none') {
- $('#notOpenRibao').toggle();
- $('#ribao')[0].style.display = '';
- } else {
- $('#notOpenRibao')[0].style.display = '';
- $('#ribao')[0].style.display = 'none';
- }
- }
- //修改上报
- function updateSuspected(suspectedId) {
- userFamilyStatus = ''
- userFamilyStatusStr = ''
- //病情
- var ids = ['js_input_user_tiwen','js_input_user_xinguan_view','js_input_user_kesou_view','js_input_user_jirou_view','js_input_user_huxi_view','js_input_user_fali_view','js_input_user_fuxie_view','shuruqita_view'];
- //接触史
- var ids2 = ['isContactView','isSuspectedView'];
- $("#suspectedId").val("");
- if ($('#ribao')[0].style.display == 'none') {
- $('#notOpenRibao').toggle();
- $('#ribao')[0].style.display = '';
- } else {
- $('#notOpenRibao')[0].style.display = '';
- $('#ribao')[0].style.display = 'none';
- }
- $.ajax({
- url: '/home/selectSuspected',
- get: "get",
- data: {
- "suspectedId": suspectedId
- },
- success: function (data) {
- // console.log(data);
- if (data) {
- // 获取定位
- getLocation();
- var suspected = data;
- $("#suspectedId").val(suspected.suspectedId);
- $("#js_input_user_sex").val(getGreder(suspected.grender));
- $("#js_input_user_sex").attr("data-values", suspected.grender);
- $("#js_input_user_name").val(suspected.userName);
- $("#js_input_user_age").val(suspected.age);
- //基本情况
- // if (suspected.familyStatus != "") {
- // var familyStatusList = suspected.familyStatus.split(",");
- // if (familyStatusList[0] == 1)
- // $("input[name='checkbox1']").prop("checked", "checked");
- // else
- // $("input[name='checkbox1']").removeAttr("checked");
- // if (familyStatusList[1] == 1)
- // $("input[name='checkbox2']").prop("checked", "checked");
- // else
- // $("input[name='checkbox2']").removeAttr("checked");
- // if (familyStatusList[2] == 1)
- // $("input[name='checkbox3']").prop("checked", "checked");
- // else
- // $("input[name='checkbox3']").removeAttr("checked");
- // if (familyStatusList[3] == 1)
- // $("input[name='checkbox4']").prop("checked", "checked");
- // else
- // $("input[name='checkbox4']").removeAttr("checked");
- // if (familyStatusList[4] == 1)
- // $("input[name='checkbox5']").prop("checked", "checked");
- // else
- // $("input[name='checkbox5']").removeAttr("checked");
- // if (familyStatusList[5] == 1)
- // $("input[name='checkbox6']").prop("checked", "checked");
- // else
- // $("input[name='checkbox6']").removeAttr("checked");
- // if (familyStatusList[6] == 1)
- // $("input[name='checkbox7']").prop("checked", "checked");
- // else
- // $("input[name='checkbox7']").removeAttr("checked");
- //
- // }
- // userFamilyStatus = formatUserStatus(suspected.familyStatus)
- // userFamilyStatusStr = getFamilyStatus(suspected.familyStatus)
- // $("#js_input_user_status").val(userFamilyStatusStr);
- // $("#js_input_user_status").attr("data-values", formatUserStatus(suspected.familyStatus));
- // $("#js_input_user_status").data("values", userFamilyStatus);
- // $("#jibenmiaoshu").val(suspected.statusDesp);
- if (suspected.medical == 0)
- $("input[id='s18']").prop("checked", "checked");
- if (suspected.medical == 1){
- $("input[id='s19']").prop("checked", "checked");
- ids.forEach(v=>{
- $('#'+v).show('fast')
- })
- }
- // if (suspected.medical == 2)
- // $("input[id='s20']").prop("checked", "checked");
- // if (suspected.medical == 3)
- // $("input[id='s21']").prop("checked", "checked");
- // if (suspected.medical == 4)
- // $("input[id='s22']").prop("checked", "checked");
- // $("#js_input_user_crov19").val(crov19States[suspected.medical].title);
- // $("#js_input_user_crov19").attr("data-values", suspected.medical);
- if (suspected.isContact == 0)
- $("input[id='s28']").prop("checked", "checked");
- if (suspected.isContact == 1)
- $("input[id='s29']").prop("checked", "checked");
- if (suspected.isSuspected == 0)
- $("input[id='s38']").prop("checked", "checked");
- if (suspected.isSuspected == 1)
- $("input[id='s39']").prop("checked", "checked");
- if (suspected.isContact == 0 && suspected.isSuspected == 0)
- $("input[id='s40']").prop("checked", "checked");
- if (suspected.isContact == 1 || suspected.isSuspected == 1){
- $("input[id='s41']").prop("checked", "checked");
- ids2.forEach(v=>{
- $('#'+v).show('fast')
- })
- }
- if(suspected.isTrip == 0){
- $("input[id='s50']").prop("checked", "checked");
- }else {
- $("input[id='s51']").prop("checked", "checked");
- }
- if(suspected.temperature > 37.2){
- $("input[id='s61']").prop("checked", "checked");
- $("#js_input_user_tiwen").show();
- }else {
- $("input[id='s60']").prop("checked", "checked");
- $("#js_input_user_tiwen").hide();
- }
- // $("#switchQuezhen").val(getMedical(suspected.medical));
- // $("#switchQuezhen").attr("data-values", suspected.medical);
- $("#switchDanjiangeli").val(getSingleRoom(suspected.singleRoom));
- $("#switchDanjiangeli").attr("data-values", suspected.singleRoom);
- $("#js_input_user_tiwen").val(suspected.temperature||36.5);
- $("#js_input_user_xinguan").val(getXinguan(suspected.medicalState||0));
- $("#js_input_user_xinguan").attr("data-values", suspected.medicalState||0);
- $("#js_input_user_kesou").val(getCough(suspected.cough));
- $("#js_input_user_kesou").attr("data-values", suspected.cough);
- $("#js_input_user_jirou").val(getMuscle(suspected.muscle));
- $("#js_input_user_jirou").attr("data-values", suspected.muscle);
- $("#js_input_user_huxi").val(getDyspnea(suspected.dyspnea));
- $("#js_input_user_huxi").attr("data-values", suspected.dyspnea);
- $("#js_input_user_fali").val(getFatigue(suspected.fatigue));
- $("#js_input_user_fali").attr("data-values", suspected.fatigue);
- $("#js_input_user_fuxie").val(getDiarrhea(suspected.diarrhea));
- $("#js_input_user_fuxie").attr("data-values", suspected.diarrhea);
- $("#shuruqita").val(suspected.others);
- $("#js_input_score_rezult").val(getScoreRezult(suspected.scoreRezult, suspected.temperatureScore));
- $("#js_input_score_rezult_value").val(suspected.scoreRezult);
- $("#js_input_temperature_score").val(suspected.temperatureScore);
- $("#js_input_score_histroy").val(suspected.scoreHistroy);
- $("#js_input_score").val(suspected.score);
- //工作驻地
- $("#js_input_gzzd").val(getLocal(suspected.workLocal));
- $("#js_input_gzzd").attr("data-values", suspected.workLocal);
- if (suspected.workLocal != 4) {
- $('#js_input_qtdd').attr("disabled", "disabled");
- $("#js_input_qtdd").val("");
- } else {
- $('#js_input_qtdd').removeAttr("disabled")
- }
- $("#js_input_qtdd").val(suspected.workLocalOther);
- //今晚驻地
- $("#js_input_jrszd").val(getLocal(suspected.todayLocal));
- $("#js_input_jrszd").attr("data-values", suspected.todayLocal);
- if (suspected.todayLocal != 4) {
- $('#js_input_jrszq').attr("disabled", "disabled");
- $("#js_input_jrszq").val("");
- }
- else {
- $('#js_input_jrszq').removeAttr("disabled")
- }
- $("#js_input_jrszq").val(suspected.todayLocalOther);
- //是否出行
- // $("#js_input_sf").val(getIsTrip(suspected.isTrip));
- // $("#js_input_sf").attr("data-values", suspected.isTrip);
- if (suspected.isTrip == 0){
- $('#none').hide('fast')
- }else {
- $('#none').show('fast')
- }
- //详细
- $.ajax({
- url: '/home/selectTripSuspected',
- get: "get",
- data: {
- "suspectedId": suspectedId
- },
- success: function (data) {
- if (data.data.length != 0) {
- }
- listcx.splice(0, listcx.length);
- $('#tabtr').empty();
- var person;
- // var xxIds = [];
- // var xxName = [
- // "序号",
- // "出发地",
- // "目的地",
- // "出行方式",
- // "车次/航班/车牌",
- // "操作"
- // ];
- // for (var i = 0; i < xxName.length; i++) {
- // xxIds.push({
- // name: xxName[i]
- // });
- // }
- // $('#tabtr').empty();
- // var html = "<tr style='background-color: #f8f8f8;'>";
- // for (var i = 0; i < xxIds.length; i++) {
- // html += "<th>" + xxIds[i].name + "</th>";
- // }
- // html += "</tr>"
- data.data.forEach(function (v) {
- {
- person = new Object();
- person.startLocal = v.startLocal;
- person.startLocalOther = v.startLocalOther;
- person.endLocal = v.endLocal;
- person.endLocalOther = v.endLocalOther;
- person.tripType = v.tripType;
- person.startLocalStr = getLocalOther(v.startLocal, v.startLocalOther);
- person.endlocalStr = getLocalOther(v.endLocal, v.endLocalOther);
- person.tripTypeStr = getTripType(v.tripType);
- person.tripTypeDesp = v.tripTypeDesp;
- listcx.push(person);
- // html += "<tr>";
- // html += "<td style='text-align: center;'>" + v.sort + "</td>";
- // html += "<td style='text-align: center;' >" + getLocalOther(v.startLocal, v.startLocalOther) + " </td>";
- // html += "<td style='text-align: center;' >" + getLocalOther(v.endLocal, v.endLocalOther) + " </td>";
- // html += "<td style='text-align: center;' >" + getTripType(v.tripType) + " </td>";
- // html += "<td style='text-align: center;' >" + v.tripTypeDesp + " </td>";
- // html += "<td style='text-align: center;' ><button value=" + i + " style='height:5vh;background-color: red;text-align: center; with:60%' class='weui-btn weui-btn_mini weui-btn_primary' onclick='splice(this.value)'>" + "删除" + " </button></td>";
- // html += "</tr>";
- // $("#tabtr").html(html);
- }
- });
- tab();
- },
- });
- }
- },
- });
- }
- function addReport() {
- if (!canSahngbao) {
- return;
- }
- var userId = $("#userId").val();
- $.ajax({
- url: '/home/addReport',
- type: "post",
- data: {
- "userCreate": userId,
- },
- success: function (data) {
- $.toast(data.msg)
- var date = new Date();
- var Y = date.getFullYear() + '-';
- var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
- var D = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate()) + ' ';
- var h = (date.getHours() < 10 ? '0' + (date.getHours()) : date.getHours()) + ':';
- var m = (date.getMinutes() < 10 ? '0' + (date.getMinutes()) : date.getMinutes()) + ':';
- var s = (date.getSeconds() < 10 ? '0' + (date.getSeconds()) : date.getSeconds());
- var time = Y + M + D + h + m + s;
- if (data.msg == "操作成功") {
- canSahngbao = false;
- document.getElementById("btn_shangbao").style['background-color'] = "#D9D9D9";
- document.getElementById("txt_shangbao").style['color'] = "#0bb20c";
- document.getElementById("txt_shangbaotime").style['color'] = "#0bb20c";
- $('#txt_shangbao').empty();
- $('#txt_shangbao').append("今日已上报");
- $('#txt_shangbaotime').empty();
- $('#txt_shangbaotime').append("上报时间:" + time);
- }
- },
- });
- }
- $("#my-input-ribao").calendar({
- dateFormat: 'yyyy-mm-dd',
- inputReadOnly: false,
- onChange: function (p, values, displayValues) {
- var reportDate = values.toString();
- var userId = $("#userId").val();
- $.ajax({
- url: '/home/home/queryRibaoReportDate',
- data: {
- "userCreate": userId,
- "reportDate": reportDate,
- },
- type: 'GET',
- success: function (data) {
- if (data.data == undefined || data.data == "") {
- $('#ribao_famliy').empty();
- }
- else {
- if (data.data.length > 0) {
- $('#ribao_famliy').empty();
- data.data.forEach(function (v) {
- helpValue1(v);
- });
- } else {
- }
- }
- },
- error: function () {
- }
- });
- }
- });
- function helpValue1(v) {
- var userName = v.userName + ":";
- var grender = getGreder(v.grender);
- var age = v.age;
- var familyStatus = "";
- // if (v.familyStatus != 0)
- // familyStatus = "基本状况:" + getFamilyStatus(v.familyStatus) + ";";
- var medical = "新冠肺炎:" + getMedical(v.medical) + ";<br/>";
- var isContact = "";
- if (v.isContact != 0)
- isContact = "家庭成员中有新冠肺炎疫情或有过病例接触史人员:" + getIsContact(v.isContact) + ";<br/>";
- var isSuspected = "";
- if (v.isSuspected != 0)
- isSuspected = "近期接触的家庭成员中有感冒、发热、咳嗽等症状:" + getIsContact(v.isContact) + ";<br/>";
- var isContactHistory = '';
- if(!isContact && !isSuspected){
- isContactHistory = "新冠肺炎接触史:无;<br/>";
- }
- var singleRoom = "";
- var uptownId = $("#uptownId").val();
- if (uptownId != xiaoquId && uptownId != ceshixiaoquId) {
- if (v.singleRoom != 0)
- singleRoom = "单间隔离:" + getSingleRoom(v.singleRoom) + ";<br/>";
- if (v.singleRoom == 0 && v.medical != 0)
- singleRoom = "单间隔离:" + getSingleRoom(v.singleRoom) + ";<br/>";
- }
- var tempTemperature = v.temperature>37.2?'异常,'+v.temperature+'度':'正常,37.2度以下';
- var temperature = "体温:" + tempTemperature + ";<br/>";
- var cough = "";
- if (v.cough != 0)
- cough = "咳嗽现象:" + getCough(v.cough) + ";<br/>";
- var muscle = "";
- if (v.muscle != 0)
- muscle = "肌肉酸痛:" + getMuscle(v.muscle) + ";<br/>";
- var dyspnea = "";
- if (v.dyspnea != 0)
- dyspnea = "呼吸困难:" + getDyspnea(v.dyspnea) + ";<br/>";
- var fatigue = "";
- if (v.fatigue != 0)
- fatigue = "乏力现象:" + getFatigue(v.fatigue) + ";<br/>";
- var diarrhea = "";
- if (v.diarrhea != 0)
- diarrhea = "腹泻现象:" + getDiarrhea(v.diarrhea) + ";<br/>";
- var others = "";
- if (v.others != "")
- others = "其他描述:" + v.others + ";<br/>";
- var scoreRezult = "";
- if (v.scoreRezult != 0)
- scoreRezult = "评估结果:" + getScoreRezult(v.scoreRezult, v.temperatureScore) + ";<br/>";
- var workLocal = "";
- var todayLocal = "";
- var isTrip = "";
- var tripDet = "";
- var uptownId = $("#uptownId").val();
- if (uptownId == xiaoquId || uptownId == ceshixiaoquId) {
- // if (v.workLocal != 0) {
- // if (v.workLocal < 4)
- // workLocal = "工作驻地:" + getLocal(v.workLocal) + ";";
- // else
- // workLocal = "工作驻地:其它地点_" + v.workLocalOther + ";";
- // }
- //
- // if (v.todayLocal != 0) {
- // if (v.todayLocal < 4)
- // todayLocal = "今晚住地:" + getLocal(v.todayLocal) + ";";
- // else
- // todayLocal = "今晚住地:其它地点_" + v.todayLocalOther + ";";
- // }
- if (v.isTrip != undefined)
- isTrip = "有无离开工作驻地:" + getIsTrip(v.isTrip) + ";<br/>"
- if (v.tripDet != undefined)
- tripDet = "出行详细:" + v.tripDet + ";<br/>"
- }
- $('#ribao_famliy').append($('<div class="weui-media-box weui-media-box_text" style="height: auto">\n' +
- ' <h4 class="weui-media-box__title">' + userName + ' ' + grender + ' ' + age + '</h4>\n' +
- ' <div style="height: auto">' + temperature + familyStatus + medical + singleRoom + cough + muscle + dyspnea + fatigue + diarrhea + others + isContactHistory +isContact + isSuspected + scoreRezult + workLocal + todayLocal + isTrip + tripDet + '</div>\n' +
- ' </div>\n' +
- ' '));
- }
- function getGreder(greder) {
- if (greder == 1)
- return "男";
- else if (greder == 2)
- return "女";
- return "";
- }
- function getFamilyStatus(familyStatus) {
- var familyStatusList = familyStatus.split(",");
- console.log(familyStatusList)
- var familyStatusString = "";
- if (familyStatus == '0,0,0,0,0,0,0'){
- familyStatusString += "无病史";
- return familyStatusString
- } else {
- if (familyStatusList[0] == 1)
- familyStatusString += "心脑血管疾病(服用ARB),";
- if (familyStatusList[1] == 1)
- familyStatusString += "心脑血管疾病(未服ARB),";
- if (familyStatusList[2] == 1)
- familyStatusString += "呼吸系统病史,";
- if (familyStatusList[3] == 1)
- familyStatusString += "肿瘤病史,";
- if (familyStatusList[4] == 1)
- familyStatusString += "糖尿病史,";
- if (familyStatusList[5] == 1)
- familyStatusString += "服用过激素药物,";
- if (familyStatusList[6] == 1)
- familyStatusString += "妊娠期,";
- }
- return familyStatusString.substring(0, familyStatusString.length - 1);
- }
- function formatUserStatus(str) {
- var statusList = str.split(',');
- console.log(statusList)
- var resultStr = '';
- for(var i = 0;i<statusList.length;i++){
- if(statusList[i] == 1){
- resultStr += i+','
- }
- }
- if(resultStr){
- var tempArr = resultStr.split(',')
- tempArr.pop()
- resultStr = tempArr.join(',')
- }else {
- resultStr = '0'
- }
- console.log(resultStr)
- return resultStr
- }
- function getXinguan(cough) {
- if (cough == 0)
- return "无";
- else if (cough == 1)
- return "确诊";
- else if (cough == 2)
- return "疑似";
- else if (cough == 3)
- return "解除隔离";
- return "";
- }
- function getCough(cough) {
- if (cough == 0)
- return "无";
- else if (cough == 1)
- return "偶尔短暂咳嗽";
- else if (cough == 2)
- return "咳嗽轻度影响生活";
- else if (cough == 3)
- return "咳嗽严重影响生活";
- return "";
- }
- function getMuscle(muscle) {
- if (muscle == 0)
- return "无";
- else if (muscle == 1)
- return "按压有";
- else if (muscle == 2)
- return "偶尔";
- else if (muscle == 3)
- return "持续有";
- return "";
- }
- function getDyspnea(dyspnea) {
- if (dyspnea == 0)
- return "无";
- else if (dyspnea == 1)
- return "急走或上坡气短";
- else if (dyspnea == 2)
- return "气短而走路变慢";
- else if (dyspnea == 3)
- return "走路数分钟后气短";
- else if (dyspnea == 4)
- return "气短无法离开房间";
- return "";
- }
- function getFatigue(fatigue) {
- if (fatigue == 0)
- return "无";
- else if (fatigue == 1)
- return "体力劳动后不能恢复";
- else if (fatigue == 2)
- return "轻体力活非常累";
- else if (fatigue == 3)
- return "不能正常生活";
- return "";
- }
- function getMedical(medical) {
- if (medical == 0)
- return "无";
- else if (medical == 1)
- return "确诊";
- else if (medical == 2)
- return "疑似";
- else if (medical == 3)
- return "有接触史";
- else if (medical == 4)
- return "解除隔离";
- return "";
- }
- function getIsContact(isContact) {
- if (isContact == 0)
- return "否";
- else if (isContact == 1)
- return "是";
- return "";
- }
- function getSingleRoom(singleRoom) {
- if (singleRoom == 0)
- return "否";
- else if (singleRoom == 1)
- return "是";
- return "";
- }
- function getIsTrip(isTrip) {
- if (isTrip == 0)
- return "无";
- else if (isTrip == 1)
- return "有";
- return "";
- }
- function getLocal(local) {
- if (local == 0)
- return "";
- else if (local == 1)
- return "武汉市";
- else if (local == 2)
- return "宜昌市";
- else if (local == 3)
- return "当阳市";
- else if (local == 4)
- return "其它地点";
- return "";
- }
- function getLocalOther(local, localOther) {
- if (local == 0)
- return "";
- else if (local == 1)
- return "武汉市";
- else if (local == 2)
- return "宜昌市";
- else if (local == 3)
- return "当阳市";
- else if (local == 4)
- return "其它地点_" + localOther;
- return "";
- }
- function getTripType(tripType) {
- if (tripType == 0)
- return "";
- else if (tripType == 1)
- return "长途汽车";
- else if (tripType == 2)
- return "火车";
- else if (tripType == 3)
- return "飞机";
- else if (tripType == 4)
- return "自驾";
- return "";
- }
- function getDiarrhea(diarrhea) {
- if (diarrhea == 0)
- return "无";
- else if (diarrhea == 1)
- return "轻度腹泻(少于3次)";
- else if (diarrhea == 2)
- return "中度腹泻(4-6次)";
- else if (diarrhea == 3)
- return "重度腹泻(超过6次)";
- return "";
- }
- function clearShow() {
- console.log("qingkong")
- //病情
- var ids = ['js_input_user_tiwen','js_input_user_xinguan_view','js_input_user_kesou_view','js_input_user_jirou_view','js_input_user_huxi_view','js_input_user_fali_view','js_input_user_fuxie_view','shuruqita_view'];
- ids.forEach(iv=>{
- $('#'+iv).hide()
- })
- //接触史
- var ids2 = ['isContactView','isSuspectedView'];
- ids2.forEach(iv=>{
- $('#'+iv).hide()
- })
- $("#suspectedId").val("");
- $("#js_input_user_name").val("");
- $("#js_input_user_age").val("");
- $("#js_input_user_sex").val('男');
- $("#js_input_user_sex").attr("data-values", 1);
- $("#switchQuezhen").attr("data-values", "");
- $("#switchQuezhen_zz").val("");
- $("#switchQuezhen_zz").attr("data-values", "");
- $("#switchDanjiangeli").val("");
- $("#switchDanjiangeli").attr("data-values", "");
- $("#js_input_user_tiwen").val("");
- $("#js_input_user_xinguan").val("");
- $("#js_input_user_xinguan").attr("data-values", "");
- $("#js_input_user_kesou").val("");
- $("#js_input_user_kesou").attr("data-values", "");
- $("#js_input_user_jirou").val("");
- $("#js_input_user_jirou").attr("data-values", "");
- $("#js_input_user_huxi").val("");
- $("#js_input_user_huxi").attr("data-values", "");
- $("#js_input_user_fali").val("");
- $("#js_input_user_fali").attr("data-values", "");
- $("#js_input_user_fuxie").val("");
- $("#js_input_user_fuxie").attr("data-values", "");
- $("#shuruqita").val("");
- $("#js_input_score_rezult").val("");
- $("#js_input_score_rezult_value").val("");
- $("#js_input_temperature_score").val("");
- $("#js_input_score_histroy").val("");
- $("#js_input_score").val("");
- //出行
- $("#js_input_gzzd").val("");
- $("#js_input_gzzd").attr("data-values", "");
- $("#js_input_qtdd").val("");
- $("#js_input_jrszd").val("");
- $("#js_input_jrszd").attr("data-values", "");
- $("#js_input_jrszq").val("");
- $("#js_input_sf").val(getIsTrip(0));
- $("#js_input_sf").attr("data-values", 0);
- $('#none').hide();
- $("input[id='s18']").removeAttr("checked");
- $("input[id='s19']").removeAttr("checked");
- // $("input[id='s20']").removeAttr("checked");
- // $("input[id='s21']").removeAttr("checked");
- // $("input[id='s22']").removeAttr("checked");
- // $("#js_input_user_status").val('');
- // $("#js_input_user_status").attr("data-values", '');
- // $("#js_input_user_crov19").val('无');
- // $("#js_input_user_crov19").attr("data-values", '0');
- $("input[id='s28']").removeAttr("checked");
- $("input[id='s29']").removeAttr("checked");
- $("input[id='s38']").removeAttr("checked");
- $("input[id='s39']").removeAttr("checked");
- $("input[id='s40']").removeAttr("checked");
- $("input[id='s41']").removeAttr("checked");
- $("input[id='s50']").removeAttr("checked");
- $("input[id='s51']").removeAttr("checked");
- $("input[id='s60']").removeAttr("checked");
- $("input[id='s61']").removeAttr("checked");
- resetTravelState(true)
- }
- //健康评估
- $('#ribao_score').on('click', function () {
- var suspectedId = $("#suspectedId").val();
- var userId = $("#userId").val();
- var userName = $("#js_input_user_name").val();
- var medical = $("input[name='radio']:checked").val() == undefined ? 0 : $("input[name='radio']:checked").val();
- var medicalzz = $("#switchQuezhen_zz").attr("data-values") == undefined ? 0 : $("#switchQuezhen_zz").attr("data-values");
- var temperature = $("#js_input_user_tiwen").val() == "" ? 0 : $("#js_input_user_tiwen").val();
- var cough = $("#js_input_user_kesou").attr("data-values") == undefined ? 0 : $("#js_input_user_kesou").attr("data-values");
- var muscle = $("#js_input_user_jirou").attr("data-values") == undefined ? 0 : $("#js_input_user_jirou").attr("data-values");
- var dyspnea = $("#js_input_user_huxi").attr("data-values") == undefined ? 0 : $("#js_input_user_huxi").attr("data-values");
- var fatigue = $("#js_input_user_fali").attr("data-values") == undefined ? 0 : $("#js_input_user_fali").attr("data-values");
- var diarrhea = $("#js_input_user_fuxie").attr("data-values") == undefined ? 0 : $("#js_input_user_fuxie").attr("data-values");
- if (userName == undefined || userName == '') {
- $.alert("请填写姓名");
- return;
- }
- if (temperature <= 0) {
- $.alert("请填写体温");
- return;
- }
- if (temperature > 50 || temperature < 30) {
- $.alert("请填写正确的体温");
- return;
- }
- $.ajax({
- url: '/home/addScore',
- type: "post",
- data: {
- "userName": userName,
- "suspectedId": suspectedId,
- "userCreate": userId,
- "medical": medical,
- "temperature": temperature,
- "cough": cough,
- "muscle": muscle,
- "dyspnea": dyspnea,
- "fatigue": fatigue,
- "diarrhea": diarrhea,
- },
- success: function (data) {
- if (data == undefined) {
- $('#js_input_score_rezult').empty();
- $('#js_input_score_rezult_value').empty();
- $('#js_input_temperature_score').empty();
- $('#js_input_score_histroy').empty();
- $('#js_input_score').empty();
- }
- else {
- $('#js_input_score_rezult').empty();
- $('#js_input_temperature_score').empty();
- $('#js_input_score_histroy').empty();
- $('#js_input_score').empty();
- var ScoreRezult = getScoreRezult(data.scoreRezult, data.temperatureScore);
- $("#js_input_score_rezult").val(ScoreRezult);
- $("#js_input_score_rezult_value").val(data.scoreRezult);
- $("#js_input_temperature_score").val(data.temperatureScore);
- $("#js_input_score_histroy").val(data.scoreHistory);
- $("#js_input_score").val(data.score);
- }
- },
- });
- });
- function getScoreRezult(scoreRezult, temperatureScore) {
- if (scoreRezult == 0)
- return "未评估";
- else if (scoreRezult == 1) {
- if (temperatureScore > 1)
- return "正常,间隔时间服用退烧药,多休息,多喝水";
- else
- return "正常";
- }
- else if (scoreRezult == 2) {
- if (temperatureScore > 1)
- return "注意观察,间隔时间服用退烧药,多休息,多喝水";
- else
- return "注意观察";
- }
- else if (scoreRezult == 3)
- return "联系社区医生(或者在线问诊)";
- else if (scoreRezult == 4)
- return "尽快就诊";
- return "";
- }
- //2020-06-16
- function initRadioEvent() {
- //各选择器
- var selects = [
- 'js_input_gzzd',
- 'js_input_jrszd',
- 'js_input_sf',
- 'js_input_cfd',
- 'js_input_mdd',
- 'js_input_cxfs',
- 'js_input_user_sex',
- 'js_input_user_xinguan',
- 'js_input_user_jirou',
- 'js_input_user_kesou',
- 'js_input_user_huxi',
- 'js_input_user_fali',
- 'js_input_user_fuxie'
- ];
- //病情
- var ids = ['js_input_user_xinguan_view','js_input_user_kesou_view','js_input_user_jirou_view','js_input_user_huxi_view','js_input_user_fali_view','js_input_user_fuxie_view','shuruqita_view']
- ids.forEach(iv=>{
- $('#'+iv).hide()
- })
- $('input[name="radio"]').on('change',function () {
- selects.forEach(v=>{
- $('#'+v).select("close")
- })
- var state = this.value
- ids.forEach(v=>{
- if(state == 1){
- $('#'+v).show('fast')
- }else {
- //reset
- $("#switchQuezhen").val(getMedical(0));
- $("#switchQuezhen").attr("data-values", 0);
- $("#switchDanjiangeli").val(getSingleRoom(0));
- $("#switchDanjiangeli").attr("data-values", 0);
- $("#js_input_user_xinguan").val(getXinguan(0));
- $("#js_input_user_xinguan").attr("data-values", 0);
- $("#js_input_user_kesou").val(getCough(0));
- $("#js_input_user_kesou").attr("data-values", 0);
- $("#js_input_user_jirou").val(getMuscle(0));
- $("#js_input_user_jirou").attr("data-values", 0);
- $("#js_input_user_huxi").val(getDyspnea(0));
- $("#js_input_user_huxi").attr("data-values", 0);
- $("#js_input_user_fali").val(getFatigue(0));
- $("#js_input_user_fali").attr("data-values", 0);
- $("#js_input_user_fuxie").val(getDiarrhea(0));
- $("#js_input_user_fuxie").attr("data-values", 0);
- $("#shuruqita").val('');
- $('#'+v).hide('fast')
- }
- })
- })
- //接触史
- var ids2 = ['isContactView','isSuspectedView'];
- ids2.forEach(iv=>{
- $('#'+iv).hide()
- })
- $('input[name="radio3"]').on('change',function () {
- selects.forEach(v=>{
- $('#'+v).select("close")
- })
- var state = this.value
- ids2.forEach(v=>{
- if(state == 1){
- $("input[id='s28']").removeAttr("checked");
- $("input[id='s38']").removeAttr("checked");
- $("input[id='s29']").prop("checked", "checked");
- $("input[id='s39']").prop("checked", "checked");
- $('#'+v).show('fast')
- }else {
- $("input[id='s28']").prop("checked", "checked");
- $("input[id='s29']").removeAttr("checked");
- $("input[id='s38']").prop("checked", "checked");
- $("input[id='s39']").removeAttr("checked");
- $('#'+v).hide('fast')
- }
- })
- })
- $('input[name="radio1"]').on('click',function () {
- var state = this.value
- if(state == 0 && $('input[name="radio2"]:checked').val() == 0){
- $("input[id='s41']").removeAttr("checked");
- $("input[id='s40']").prop("checked", "checked");
- ids2.forEach(iv=>{
- $('#'+iv).hide('fast')
- })
- }
- })
- $('input[name="radio2"]').on('click',function () {
- var state = this.value
- if(state == 0 && $('input[name="radio1"]:checked').val() == 0){
- $("input[id='s41']").removeAttr("checked");
- $("input[id='s40']").prop("checked", "checked");
- ids2.forEach(iv=>{
- $('#'+iv).hide('fast')
- })
- }
- })
- //出行
- $('input[name="radio4"]').on('change',function () {
- var state = this.value
- resetTravelState(state == 0)
- })
- //体温
- $('input[name="radio5"]').on('change',function () {
- var state = this.value
- resetTiwen(state == 0)
- })
- }
- function resetTiwen(bool) {
- if(bool){
- $("#js_input_user_tiwen").hide('fast');
- $("#js_input_user_tiwen").val(36.5);
- }else {
- $("#js_input_user_tiwen").show('fast');
- $("#js_input_user_tiwen").val('');
- }
- }
|