| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573 |
- <template>
- <div>
-
- <header>
- <el-button type="primary" @click="onBZ">班组维护</el-button>
- <el-button type="primary" @click="onzhicheng" >制程检验</el-button>
- <el-button type="primary" @click="onDel">删除</el-button>
- <el-button type="primary" @click="onxuncha">管理巡查</el-button>
- <el-button type="primary" @click="ondianjian">设备点检</el-button>
- <el-button type="primary" @click="onyinban">印版领退</el-button>
- <!-- <el-button type="primary" @click="onstatus" >设置机台状态</el-button> -->
- <el-button type="primary" @click="oncomplaints" >客诉记录</el-button>
- <el-button type="primary" @click="onClear" >换型清场</el-button>
- <!-- <el-button type="primary" @click="onClear2" >换型清场</el-button> -->
- </header>
- <el-container>
- <el-aside width="200px">
- <div class="JKWTree-tree">
- <h3 >设备运行跟踪</h3>
- <el-tree :data="treeData" :props="defaultProps" @node-click="handleNodeClick"></el-tree>
- </div>
- </el-aside>
- <el-container>
- <el-main>
-
-
- <div class="button-container" v-if="showbutton" style="height: 50%;width: 100%; flex: 1; border: 0px magenta solid; margin: 0; padding: 0;">
- <button v-for="(item, index) in machineData" :key="index" class="custom-button" @click="handleButtonClick(item.设备编号)">
- <img :src="`/src/assets/${item.状态}.png`" :alt="altText" style="max-width: 100%; height: auto;"/>
- <span style="margin-top: 8px;">{{ item.设备编号 + ' - ' + item.设备名称 }}</span>
- </button>
- </div>
-
- <div class="gva-search-box" v-if="JTMCOn" style="overflow: hidden; padding: 0; display: flex;">
- <div style="flex: 1; border: 0px magenta solid; margin: 0; padding: 0;">
- <el-row :gutter="20">
- <el-col :span="24">
- <el-form-item label="工单编号" prop="name">
- <el-row :gutter="20">
- <el-col :span="6">
- <el-input v-model="formData.工单编号" disabled :clearable="true" />
- </el-col>
- <el-col :span="18">
- <el-input v-model="formData.产品名称" disabled :clearable="true" />
- </el-col>
- </el-row>
-
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="印件编号" prop="id">
- <el-input v-model="formData.印件编号" disabled :clearable="true" />
- </el-form-item>
- </el-col>
- <el-col :span="17">
- <el-form-item label="工序名称" prop="name">
- <el-input v-model="formData.工序名称" disabled :clearable="true" />
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="20">
- <el-col :span="4">
- <el-form-item label="班组成员" prop="id">
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="1">
-
- <el-col :span="4">
- <el-input v-model="formData.sczl_bh1" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_bh2" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_bh3" disabled :clearable="true" />
- </el-col>
-
- <el-col :span="4">
- <el-input v-model="formData.sczl_bh4" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_bh5" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_bh6" disabled :clearable="true" />
- </el-col>
- </el-row>
-
- <el-row :gutter="1">
-
- <el-col :span="4">
- <el-input v-model="formData.sczl_name1" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_name2" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_name3" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_name4" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_name5" disabled :clearable="true" />
- </el-col>
- <el-col :span="4">
- <el-input v-model="formData.sczl_name6" disabled :clearable="true" />
- </el-col>
- </el-row>
-
- </div>
-
- <div style="flex: 1; border: 0px lawngreen solid; margin: 0; padding: 0; overflow: hidden;">
- <el-table
- tooltip-effect="dark"
- :data="selectData"
- row-key="ID"
- highlight-current-row="true"
- border
- style="width:100%;height: 30vh;"
- @row-dblclick="handleSelectClick"
- >
- <el-table-column
- prop="process"
- label="印件及工序"
- width="340"
- />
- <el-table-column
- prop="completed"
- label="已完成板数"
- width="150"
- />
- </el-table>
- </div>
-
- </div>
- <div v-if="JTMCOn" class="gva-table-box" >
- <div class="gva-btn-list">
- </div>
- <el-tabs v-model="activName" type="card" @tab-click="handleClick">
-
- <el-tab-pane label="设备作业清单" @click="showTable('印件资料')" name="first">
- <el-table ref="multipleTable"
- :show-overflow-tooltip="true"
- highlight-current-row="true"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- @row-click="yjupdateCompanyFunc"
- style="width: 100%;height: 330px" border tooltip-effect="dark" :data="sbzyData" row-key="ID" @selection-change="handleSelectionChange">
- <!-- <el-table-column type="selection" width="55" />-->
- <!-- <el-table-column align="left" label="选择" prop="bh" width="80"/> -->
- <el-table-column align="left" sortable label="工单编号|质量信息" prop="工单编号|质量信息" width="145" />
- <el-table-column align="left" sortable label="印件资料" prop="印件资料" width="240" />
- <el-table-column align="left" sortable label="工序名称" prop="工序名称" width="100" />
- <el-table-column align="left" sortable label="计划产量/已完成" prop="计划产量/已完成" width="130"/>
- <el-table-column align="left" sortable label="装版时数" prop="装版时数" width="85"/>
- <el-table-column align="left" sortable label="工序产能" prop="工序产能" width="85"/>
- <el-table-column align="left" sortable label="计划工时" prop="计划工时" width="85"/>
- <el-table-column align="left" sortable label="计划生产时段" prop="计划生产时段" width="210" />
- <el-table-column align="left" sortable label="排产备注" prop="排产备注" width="100" />
- <el-table-column align="left" sortable label="产品名称" prop="产品名称" width="240" />
- </el-table>
- </el-tab-pane>
-
- <el-tab-pane label="班组人员及分配比例" @click="showTable('工艺资料')" name="second">
- <el-table ref="multipleTable"
- highlight-current-row="true"
- :show-overflow-tooltip="true"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- @row-dblclick="gyupdateCompanyFunc"
- :row-class-name="rowClassStyle"
- style="width: 100%;height: 400px" border tooltip-effect="dark" :data="FPData" row-key="ID" @selection-change="handleSelectionChange"
- @row-click="clickybupdate">
- <!-- <el-table-column type="selection" width="55" />-->
- <!-- <el-table-column align="left" label="选择" prop="方案" width="70"/> -->
- <el-table-column align="left" sortable label="班组号" prop="班组号" width="70" />
- <el-table-column align="left" sortable label="组员1" prop="0" width="200" />
- <el-table-column align="left" sortable label="组员2" prop="1" width="200" />
- <el-table-column align="left" sortable label="组员3" prop="2" width="200" />
- <el-table-column align="left" sortable label="组员4" prop="3" width="200" />
- <el-table-column align="left" sortable label="组员5" prop="4" width="200" />
- <el-table-column align="left" sortable label="组员6" prop="5" width="70" />
- <el-table-column align="left" sortable label="组员7" prop="6" width="70" />
- <el-table-column align="left" sortable label="组员8" prop="7" width="70" />
- <el-table-column align="left" sortable label="组员9" prop="8" width="70" />
- <el-table-column align="left" sortable label="组员10" prop="9_正品版" width="70" />
- </el-table>
- </el-tab-pane>
-
- <el-tab-pane label="当班产量明细" @click="showTable('印版资料')" name="third">
- <el-table ref="multipleTable"
- highlight-current-row="true"
- :show-overflow-tooltip="true"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- @row-dblclick="ybupdateCompanyFunc"
- style="width: 100%;height: 400px" border tooltip-effect="dark" :data="CLMXData" row-key="ID" @selection-change="handleSelectionChange"
- >
- <!-- <el-table-column type="selection" width="55" />-->
- <el-table-column align="left" sortable label="生产时段" prop="生产时间段" width="180"/>
- <el-table-column align="left" sortable label="工单编号" prop="工单编号" width="85" />
- <el-table-column align="left" sortable label="产品名称" prop="产品名称" width="150" />
- <el-table-column align="left" sortable label="印件及工序" prop="印件及工序" width="320"/>
- <el-table-column align="left" sortable label="标牌号" prop="标牌号" width="80"/>
- <el-table-column align="left" sortable label="产量" prop="产量" width="100"/>
- <el-table-column align="left" sortable label="制程废品" prop="制程废品" width="100" />
- <el-table-column align="left" sortable label="制程次品" prop="制程次品" width="100" />
- <el-table-column align="left" sortable label="前工序废" prop="前工序废" width="100" />
- <el-table-column align="left" sortable label="来料异常" prop="来料异常" width="100"/>
- <el-table-column align="left" sortable label="装版工时" prop="装版工时" width="100" />
- <el-table-column align="left" sortable label="保养工时" prop="保养工时" width="100" />
- <el-table-column align="left" sortable label="打样工时" prop="打样工时" width="100"/>
- <el-table-column align="left" sortable label="异常停机工时" prop="异常停机工时" width="120"/>
- <el-table-column align="left" sortable label="通电工时" prop="通电工时" width="100"/>
- <el-table-column align="left" sortable label="码开始行" prop="码开始行" width="100" />
- <el-table-column align="left" sortable label="码结束行" prop="码结束行" width="100" />
- <el-table-column align="left" sortable label="码包" prop="码包" width="100" />
- <el-table-column align="left" sortable label="主电表" prop="主电表" width="100"/>
- <el-table-column align="left" sortable label="辅电表" prop="辅电表" width="100" />
- <el-table-column align="left" sortable label="色度数" prop="色度数" width="100" />
- </el-table>
- </el-tab-pane>
-
- <el-tab-pane label="检验记录" @click="showTable('技术资料附件')" name="fourth">
- <el-table ref="multipleTable"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- :show-overflow-tooltip="true"
- highlight-current-row="true"
- style="width: 100%;height: 400px" border tooltip-effect="dark" :data="JYData" row-key="ID" @selection-change="handleSelectionChange">
- <!-- <el-table-column type="selection" width="55" />-->
- <el-table-column align="left" sortable label="工单编号" prop="工单编号" width="85"/>
- <el-table-column align="left" sortable label="印件号" prop="印件号" width="70" />
- <el-table-column align="left" sortable label="工序名称" prop="工序名称" width="85" />
- <el-table-column align="left" sortable label="检验项目" prop="检验项目" width="85"/>
- <el-table-column
- v-for="time in columnNames"
- :key="time"
- :label="time"
- :prop="time"
- align="center"
- width="80"
- ></el-table-column>
- </el-table>
- </el-tab-pane>
-
- </el-tabs>
- </div>
-
- <el-dialog v-model="detailShow" style="width: 1000px" lock-scroll :before-close="closeDetailShow" title="机台班组维护" destroy-on-close>
- <el-table ref="multipleTable"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- :show-overflow-tooltip="true"
- highlight-current-row="true" @row-click="BZhandle"
- style="width: 100%;height: 250px;margin-top: 0px;" border tooltip-effect="dark"
- :data="bzData" row-key="ID" @selection-change="BZSelectionChange">
- <!-- <el-table-column type="selection" width="55" /> -->
- <el-table-column align="left" label="机台" prop="JTMC" width="70"/>
- <el-table-column align="left" label="班组" prop="班组号" width="60"/>
- <el-table-column align="left" label="组员1" prop="0" width="195"/>
- <el-table-column align="left" label="组员2" prop="1" width="195"/>
- <el-table-column align="left" label="组员3" prop="2" width="195"/>
- <el-table-column align="left" label="组员4" prop="3" width="195"/>
- <el-table-column align="left" label="组员5" prop="4" width="70"/>
- <el-table-column align="left" label="组员6" prop="5" width="70"/>
- <el-table-column align="left" label="组员7" prop="6" width="70"/>
- <el-table-column align="left" label="组员8" prop="7" width="70"/>
- <el-table-column align="left" label="组员9" prop="8" width="70"/>
- <el-table-column align="left" label="特殊组员" prop="9" width="85"/>
- <el-table-column align="left" label="UNIQID" prop="ID" width="75"/>
- </el-table>
-
-
-
-
- <el-row :gutter="20">
- <el-col :span="10">
- <el-form-item label="机台编号" prop="id">
- <el-select v-model="selectedOption" placeholder="请选择">
- <el-option
- v-for="item in dropdownOptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-form-item label="班组编号" prop="id">
- <el-input v-model="BZMC" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
- <div style="display: flex;">
- <div class="groupbox float-div" style="height: 17vh; width: 800px;">
- <span class="grouptitle">组员及分配比例</span>
- <el-row :gutter="10" style="margin-top: 0px; height: 5vh;">
- <el-col :span="2">
- <span></span>
- </el-col>
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
-
- </el-col>
- <el-col :span="3">
-
- </el-col>
- <el-col :span="3">
- <el-form-item label="特殊组员" prop="id">
-
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="10" style="margin-top: 0px;">
- <!-- <el-col :span="1">
- <span></span>
- </el-col> -->
-
-
-
-
-
-
-
- <el-col :span="3">
- <el-input v-model="formDatas.code1" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.code2" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.code3" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.code4" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.code5" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.code6" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.code7" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.code8" :clearable="true" placeholder="" />
- </el-col>
- <!-- <el-col :span="2">
- <el-input v-model="formData.name" :clearable="true" placeholder="瞿春生" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="percentage" :clearable="true" placeholder="11.0" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="打包废纸" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="是" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="ZI00401" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="瞿春生" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col> -->
- </el-row>
- <el-row :gutter="10" style="margin-top: 1px;">
- <!-- <el-col :span="2">
- <span></span>
- </el-col> -->
- <el-col :span="3">
- <el-input v-model="formDatas.name1" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.name2" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.name3" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.name4" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.name5" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.name6" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.name7" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.name8" :clearable="true" placeholder="" />
- </el-col>
- <!-- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="是" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="ZI00401" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="瞿春生" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col> -->
- </el-row>
- <el-row :gutter="10" style="margin-top: 1px;">
- <!-- <el-col :span="2">
- <span></span>
- </el-col> -->
- <el-col :span="3">
- <el-input v-model="formDatas.percentage1" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.percentage2" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.percentage3" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.percentage4" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.percentage5" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.percentage6" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.percentage5" :clearable="true" placeholder="" />
- </el-col>
- <el-col :span="3">
- <el-input v-model="formDatas.percentage6" :clearable="true" placeholder="" />
- </el-col>
- <!-- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="是" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="ZI00401" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="瞿春生" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formData.qczl_NumDesc" :clearable="true" placeholder="11.0" />
- </el-col> -->
- </el-row>
- </div>
- <div style="height: 17vh; width: 100px;margin-top: 30px;">
- <el-button type="text"></el-button>
- <!-- <el-button style="margin-bottom: 5px;" @click="" >新增</el-button> -->
- <el-button style="margin-bottom: 5px;" @click="selectBz" >更新当前班组</el-button>
- <!-- <el-button @click="delBz" >删除当前班组</el-button> -->
- </div>
- </div>
- </el-dialog>
- <el-dialog
- v-model="dianjianVisible"
- title="设备点检记录"
- destroy-on-close
- width="1300px"
- style="height: 80%;"
- >
- <el-row :gutter="24">
- <el-col :span="3">
- <el-form-item label="设备编号" prop="id">
- <el-input v-model="formData.JTMC" :clearable="true" />
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-row>
- <el-col>
- <el-input v-model="formData.产品名称" :clearable="true" />
- </el-col>
- </el-row>
- </el-col>
- </el-row>
-
- <div style="display: flex;">
- <div style="flex: 0.1;">
- <el-aside width="200px" style="margin: 0;">
- <div class="JKWTree-tree" style="height: 100%; border-right: 1px solid #ebeef5;">
- <el-tree :data="dianjiantreeData" :props="defaultProps" highlight-current="true"
- @node-click="dianjianNodeClick" @node-dblclick="handleNodeDoubleClick"></el-tree>
- </div>
- </el-aside>
- </div>
- <div style="flex: 1; margin: 0;">
- <el-table
- tooltip-effect="dark"
- :data="dianjianselectData"
- row-key="ID"
- highlight-current-row="true"
- :show-overflow-tooltip="true"
- border @row-click="dianjianhandle"
- style="width:100%; height:400px;"
- @row-dblclick="handleSelectClick"
- :row-class-name="rowClassName"
- >
- <el-table-column
- prop="检验项目"
- label="检验项目"
- width="300"
- />
- <el-table-column
- prop="点检方法"
- label="点检方法"
- width="180"
- />
- <el-table-column
- v-slot="scope"
- label="正常"
- width="80"
- >
-
- <el-checkbox v-model="scope.row.zc" @change="zcClick(scope.row)"></el-checkbox>
-
- </el-table-column>
- <el-table-column
- v-slot="scope"
- label="异常"
- width="80"
- >
- <el-checkbox v-model="scope.row.yc" @change="ycClick(scope.row)"></el-checkbox>
- </el-table-column>
- <el-table-column
- label="备注说明"
- width="180"
- >
- </el-table-column>
- <el-table-column
- v-slot="scope"
- label="不检测"
- width="80"
- >
- <el-checkbox v-model="scope.row.notjc" @change="notjcClick(scope.row)"></el-checkbox>
- </el-table-column>
- </el-table>
- <el-row :gutter="20">
- <el-col :span="20">
- <el-input v-model="pandingfangfa" style="height: 50px;" :clearable="true" />
- </el-col>
- </el-row>
- </div>
- </div>
- </el-dialog>
-
- <el-dialog
- v-model="yinbanVisible"
- title="选择"
- destroy-on-close
- width="1300px"
- style="height: 110%;"
- >
- <el-row :gutter="24">
- <el-col :span="4">
- <el-form-item label="工单编号" prop="id">
- <el-input v-model="formData.工单编号" :clearable="true" />
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item prop="id">
- <el-input v-model="formData.productCode" :clearable="true" />
- </el-form-item>
- </el-col>
- <el-col :span="14">
- <el-form-item prop="id">
- <el-input v-model="formData.产品名称" :clearable="true" />
- </el-form-item>
- </el-col>
- </el-row>
-
- <div style="display: flex;">
- <div style="flex: 1;">
- <el-aside width="250px" style="margin: 0;">
- <div class="JKWTree-tree" style="height: 100%; border-right: 1px solid #ebeef5;">
- <el-tree :data="yinbantreeData" :props="defaultProps" highlight-current="true"
- @node-click="yinbanNodeClick" @node-dblclick="handleNodeDoubleClick"></el-tree>
- </div>
- </el-aside>
- </div>
- <div style="flex: 1; margin: 0;">
- <el-table
- tooltip-effect="dark"
- :data="yinbanselectData"
- row-key="ID"
- highlight-current-row="true"
- border @row-click="dianjianhandle"
- style="width:1000px; height:400px;"
- @row-dblclick="handleSelectClick"
- :row-class-name="rowClassName"
- >
- <el-table-column
- prop="存货编码"
- label="存货编码"
- width="180"
- />
- <el-table-column
- prop="存货名称"
- label="存货名称"
- width="180"
- />
-
- <el-table-column
- prop="印版名称"
- label="印版名称"
- width="180"
- />
- <el-table-column
- prop="供方批号"
- label="供方批号"
- width="180"
- />
- <el-table-column
- prop="制造日期"
- label="制造日期"
- width="180"
- />
-
- <el-table-column
- prop="印数"
- label="印数"
- width="180"
- />
- <el-table-column
- prop="印版类别"
- label="印版类别"
- width="180"
- />
- <el-table-column
- prop="客户编号"
- label="客户编号"
- width="180"
- />
-
- <el-table-column
- prop="客户名称"
- label="客户名称"
- width="180"
- />
- <el-table-column
- prop="产品编号"
- label="产品编号"
- width="180"
- />
- <el-table-column
- prop="产品名称"
- label="产品名称"
- width="180"
- />
-
- <el-table-column
- prop="点检方法"
- label="备注说明"
- width="180"
- />
- <el-table-column
- prop="点检方法"
- label="备注说明"
- width="180"
- />
-
- </el-table>
- </div>
- </div>
- </el-dialog>
-
- <el-dialog
- v-model="xunchaVisible"
- title="管理人员现场巡查记录"
- destroy-on-close
- width="1300px"
- style="height: 65%;"
- >
-
-
- <div style="display: flex;">
- <div style="flex: 1;">
- <el-aside width="250px" style="margin: 0;">
- <div class="JKWTree-tree" style="height: 100%; border-right: 1px solid #ebeef5;">
- <el-tree :data="xunchatreeData" :props="defaultProps" highlight-current="true"
- @node-click="xunchaNodeClick"></el-tree>
- </div>
- </el-aside>
- </div>
- <div style="flex: 1; margin: 0;">
- <el-table
- tooltip-effect="dark"
- :data="xunchaselectData"
- row-key="ID"
- highlight-current-row="true"
- border @row-click="dianjianhandle"
- style="width:1000px; height:400px;"
- @row-dblclick="handleSelectClick"
- :row-class-name="rowClassName"
- :show-overflow-tooltip="true"
- >
- <el-table-column
- prop="工单编号"
- label="工序编号"
- width="85"
- />
- <el-table-column
- prop="印件号"
- label="印件号"
- width="70"
- />
-
- <el-table-column
- prop="工序名称"
- label="工序名称"
- width="180"
- />
- <el-table-column
- prop="流程单号"
- label="流程单号"
- width="85"
- />
- <el-table-column
- prop="设备编号"
- label="设备编号"
- width="85"
- />
-
- <el-table-column
- prop="班组编号"
- label="班组编号"
- width="85"
- />
- <el-table-column
- prop="检验备注"
- label="检验备注"
- width="85"
- />
- <el-table-column
- prop="现场管理人员"
- label="现场管理人员"
- width="145"
- />
- <el-table-column
- prop="提交时间"
- label="提交时间"
- width="160"
- />
- <el-table-column
- prop="开工时间"
- label="开工时间"
- width="160"
- />
- <el-table-column
- prop="分钟差数"
- label="分钟差数"
- width="85"
- />
- <el-table-column
- prop="归属时段"
- label="归属时段"
- width="160"
- />
- </el-table>
- </div>
- </div>
- <template #footer>
- <div class="dialog-footer">
- <!-- <el-button @click="closeDialog">关 闭</el-button> -->
- <!-- <el-button type="primary" @click="xunjianerDialog">提 交</el-button> -->
- </div>
- </template>
- </el-dialog>
-
-
- <el-dialog
- v-model="zhichengVisible"
- title="制程检验记录"
- destroy-on-close
- width="1100px"
- style="height: 78%;"
- >
- <el-row :gutter="24" style="margin-top=0px; margin-bottom: 1px;">
- <el-col :span="4" style="margin-top=0px; margin-bottom: 0px;">
- <el-form-item label="工单编号" prop="id" style="margin-top=0px; margin-bottom: 0px;">
- <el-input v-model="xunchaData.order" :clearable="true" placeholder="" style="margin-top=0px; margin-bottom: 0px;"/>
- </el-form-item>
- </el-col>
-
- <el-col :span="9" style="margin-top=0px; margin-bottom: 0px;">
- <el-row style="margin-top=0px; margin-bottom: 0px;">
- <el-col style="margin-top=0px; margin-bottom: 0px;">
- <el-input v-model="xunchaData.product_name" :clearable="true" placeholder="" style="margin-top=0px; margin-bottom: 0px;"/>
- </el-col>
- </el-row>
- </el-col>
- <el-col :span="4" style="margin-top=0px; margin-bottom: 0px;">
- <el-form-item label="流程单" prop="id" style="margin-top=0px; margin-bottom: 0px;">
- <el-input v-model="xunchaData.lcdh" :clearable="true" placeholder="" style="margin-top=0px; margin-bottom: 0px;"/>
- </el-form-item>
- </el-col>
-
- </el-row>
-
- <el-row :gutter="24" style="margin-top=0px; margin-bottom: 1px;">
- <el-col :span="3" style="margin-top=0px; margin-bottom: 0px;">
- <el-form-item label="印件编号" prop="id" style="margin-top=0px; margin-bottom: 0px;">
- <el-input v-model="xunchaData.yjno" :clearable="true" placeholder="" style="margin-top=0px; margin-bottom: 0px;"/>
- </el-form-item>
- </el-col>
- <el-col :span="10" style="margin-top=0px; margin-bottom: 0px;">
- <el-row style="margin-top=0px; margin-bottom: 0px;">
- <el-col style="margin-top=0px; margin-bottom: 0px;">
- <el-input v-model="xunchaData.gxmc" :clearable="true" placeholder="" style="margin-top=0px; margin-bottom: 0px;"/>
- </el-col>
- </el-row>
- </el-col>
- </el-row>
-
- <div style="display: flex;">
- <div style="flex: 0.1;">
- <el-aside width="180px" style="margin: 0;">
- <div class="JKWTree-tree" style="height: 100%; border-right: 1px solid #ebeef5;">
- <el-tree :data="zhichengtreeData" :props="defaultProps" highlight-current="true"
- @node-click="zhichengNodeClick"></el-tree>
- </div>
- </el-aside>
- </div>
- <div v-if="zhichengstatus" style="flex: 0; margin: 0;">
- <el-tabs v-model="activNames" type="card" @tab-click="handleClick">
- <el-tab-pane label="指标检验" @click="showTable('指标检验')" name="first">
- <el-table
- tooltip-effect="dark"
- :data="zhibiaoselectData"
- row-key="ID"
- highlight-current-row="true"
- :show-overflow-tooltip="true"
- border @row-click="dianjianhandle"
- style="width:100%; height:310px;"
- @row-dblclick="handleSelectClick"
- :row-class-name="rowClassName"
- >
- <el-table-column
- prop="检验项目"
- label="检验项目"
- width="270"
- />
- <el-table-column
- v-slot="scope"
- label="不检测"
- width="70"
- >
- <el-checkbox v-model="scope.row.notjc" @click="notjcClick(scope.row)"></el-checkbox>
- </el-table-column>
- <el-table-column
- v-slot="scope"
- label="合格"
- width="60"
- >
-
- <el-checkbox v-model="scope.row.zc" @click="zcClick(scope.row)"></el-checkbox>
-
- </el-table-column>
- <el-table-column
- v-slot="scope"
- label="不合格"
- width="70"
- >
- <el-checkbox v-model="scope.row.yc" @click="ycClick(scope.row)"></el-checkbox>
- </el-table-column>
- <el-table-column
- prop="检测方法"
- label="检测方法"
- width="90"
- />
- <el-table-column
- prop="检验频率"
- label="检验频率"
- width="150"
- />
- <el-table-column
- prop="相关标准"
- label="相关标准"
- width="180"
- />
- </el-table>
- </el-tab-pane>
-
- <el-tab-pane label="附加检验记录" @click="showTable('附加检验记录')" name="second">
- <el-table
- tooltip-effect="dark"
- :data="fujiaselectData"
- row-key="ID"
- highlight-current-row="true"
- :show-overflow-tooltip="true"
- border @row-click="dianjianhandle"
- style="width:100%; height:320px;"
- @row-dblclick="handleSelectClick"
- :row-class-name="rowClassName"
- >
- <el-table-column
- v-slot="scope"
- label="不检测"
- width="75"
- >
- <el-checkbox v-model="scope.row.notjc"></el-checkbox>
- </el-table-column>
- <el-table-column
- prop="缺陷备注"
- label="缺陷及记录"
- width="720"
- />
- <el-table-column
- prop="编号"
- label="编号"
- width="80"
- />
- </el-table>
- </el-tab-pane>
- </el-tabs>
- </div>
- </div>
- <template #footer>
- <div v-if="zhichengstatus" class="dialog-footer">
- <el-button @click="closezhichengDialog">关 闭</el-button>
- <el-button type="primary" @click="zhichengDialog">提 交</el-button>
- </div>
- </template>
- </el-dialog>
-
-
- <div v-if="dateOn" >
-
- <el-tabs v-model="activName" type="card" @tab-click="handleClick">
- <el-tab-pane label="当日上报产量" @click="showTable('工艺资料')" name="first">
- <el-table ref="multipleTable"
- :show-overflow-tooltip="true"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }" @row-click="getUid"
- highlight-current-row="true" @row-dblclick="gytableDatadoubleClick"
- style="width: 100%;height: 400px" border tooltip-effect="dark" :data="gytableData" row-key="ID" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" />
- <!-- <el-table-column align="left" label="选择" prop="工单编号" width="100"/> -->
- <el-table-column align="left" label="产品名称" prop="产品名称" width="200"/>
- <el-table-column align="left" label="工序" prop="工序" width="100"/>
- <el-table-column align="left" label="备注" prop="备注" width="100"/>
- <el-table-column align="left" label="产量" prop="产量" width="70"/>
- <el-table-column align="left" label="千件工价" prop="千件工价" width="85"/>
- <el-table-column align="left" label="日定额" prop="日定额" width="85"/>
- <el-table-column align="left" label="补产标准" prop="补产标准" width="85"/>
- <el-table-column align="left" label="难度系数" prop="难度系数" width="85"/>
- <el-table-column align="left" label="印刷方式" prop="印刷方式" width="85"/>
- <el-table-column align="left" label="组员1" prop="组员1" width="170" />
- <el-table-column align="left" label="组员2" prop="组员2" width="170" />
- <el-table-column align="left" label="组员3" prop="组员3" width="170" />
- <el-table-column align="left" label="组员4" prop="组员4" width="170" />
- <el-table-column align="left" label="组员5" prop="组员5" width="70" />
- <el-table-column align="left" label="组员6" prop="组员6" width="70" />
- <el-table-column align="left" label="组员7" prop="组员7" width="70" />
- <el-table-column align="left" label="组员8" prop="组员8" width="70" />
- <el-table-column align="left" label="组员9" prop="组员9" width="70" />
- <el-table-column align="left" label="组员10" prop="组员10" width="70" />
- <el-table-column align="left" label="制程废品" prop="制程废品" width="85" />
- <el-table-column align="left" label="制程次品" prop="制程次品" width="85" />
- <el-table-column align="left" label="前工序废" prop="前工序废" width="85" />
- <el-table-column align="left" label="来料异常" prop="来料异常" width="85"/>
- <el-table-column align="left" label="装版工时" prop="装版工时" width="85" />
- <el-table-column align="left" label="保养工时" prop="保养工时" width="85" />
- <el-table-column align="left" label="打样工时" prop="打样工时" width="85"/>
- <el-table-column align="left" label="异常总工时" prop="异常总工时" width="85"/>
- <el-table-column align="left" label="异常补时" prop="异常补时" width="85"/>
- <el-table-column align="left" label="异常类型" prop="异常类型" width="110"/>
- <el-table-column align="left" label="通电工时" prop="通电工时" width="85"/>
- <el-table-column align="left" label="码开始行" prop="码开始行" width="85" />
- <el-table-column align="left" label="码结束行" prop="码结束行" width="85" />
- <el-table-column align="left" label="码包" prop="码包" width="70" />
- <el-table-column align="left" label="主电表" prop="主电表" width="70"/>
- <el-table-column align="left" label="辅电表" prop="辅电表" width="70" />
- <el-table-column align="left" label="色度数" prop="色度数" width="70" />
- <el-table-column align="left" label="用户" prop="用户" width="210" />
- <el-table-column align="left" label="更新时间" prop="更新时间" width="160" />
- </el-table>
- </el-tab-pane>
-
- <el-tab-pane label="当日制程检验记录" @click="showTable('印件资料')" name="second">
- <el-table ref="multipleTable"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- :show-overflow-tooltip="true"
- highlight-current-row="true"
- style="width: 100%;height: 400px" border tooltip-effect="dark" :data="drzcDatas" row-key="ID" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" />
- <el-table-column align="left" label="工单编号" prop="工单编号" width="85"/>
- <el-table-column align="left" label="印件号" prop="印件号" width="70" />
- <el-table-column align="left" label="工序名称" prop="工序名称" width="85" />
- <el-table-column align="left" label="检验项目" prop="检验项目" width="85"/>
- <el-table-column
- v-for="time in columnNames"
- :key="time"
- :label="time"
- :prop="time"
- align="center"
- width="80"
- ></el-table-column>
- </el-table>
- </el-tab-pane>
- </el-tabs>
- </div>
- <el-dialog v-model="complaintsShow" style="width: 1000px" lock-scroll :before-close="closecomplaintsShow" title="=客诉记录" destroy-on-close>
- <el-table ref="multipleTable"
- :row-style="{ height: '20px' }"
- :cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
- :header-cell-style="{ padding: '0px' }"
- :show-overflow-tooltip="true"
- highlight-current-row="true" @row-click="complaintshandle"
- style="width: 100%;height: 250px;margin-top: 0px;" border tooltip-effect="dark"
- :data="complaintsData" row-key="ID" @selection-change="complaintsSelectionChange">
- <!-- <el-table-column type="selection" width="55" /> -->
- <el-table-column align="left" label="产品编号" prop="产品编号" width="120"/>
- <el-table-column align="left" label="产品名称" prop="产品名称" width="200"/>
- <el-table-column align="left" label="客诉日期" prop="客诉日期" width="120"/>
- <el-table-column align="left" label="客诉单号" prop="客诉单号" width="120"/>
- <el-table-column align="left" label="客诉方式" prop="客诉方式" width="100"/>
- <el-table-column align="left" label="订单编号" prop="订单编号" width="100"/>
- <el-table-column align="left" label="缺陷关键字" prop="缺陷关键字" width="140"/>
- <el-table-column align="left" label="客诉性质" prop="客诉性质" width="100"/>
- <el-table-column align="left" label="主要责任部门" prop="主要责任部门" width="140"/>
- <el-table-column align="left" label="次要责任部门" prop="次要责任部门" width="140"/>
- </el-table>
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="客户编号" prop="id">
- <el-input v-model="selectedRowData.客户编号" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- <el-col :span="15">
- <el-form-item label="客户名称" prop="id">
- <el-input v-model="selectedRowData.客户名称" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
-
-
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="客诉单号" prop="id">
- <el-input v-model="selectedRowData.客诉单号" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="客诉日期" prop="id">
- <el-input v-model="selectedRowData.客诉日期" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="方式" prop="id">
- <el-input v-model="selectedRowData.客诉方式" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="批次号" prop="id">
- <el-input v-model="selectedRowData.订单编号" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
-
-
- <el-row :gutter="20">
- <el-col :span="20">
- <el-form-item label="反馈问题" prop="id">
- <el-input v-model="selectedRowData.客诉描述" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="20">
- <el-col :span="20">
- <el-form-item label="缺陷关键字" prop="id">
- <el-input v-model="selectedRowData.缺陷关键字" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="20">
- <el-col :span="5">
- <el-form-item label="性质" prop="id">
- <el-input v-model="selectedRowData.客诉性质" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="扣分" prop="id">
- <el-input v-model="selectedRowData.扣分" :clearable="true" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
- <div style="display: flex;">
-
-
- </div>
- </el-dialog>
-
-
- <el-dialog
- v-model="huanxingVisible"
- title="换型清场"
- destroy-on-close
- width="145vh"
- style="height: 78vh;"
- >
- <div style="display: flex;">
- <div style="flex: 0.1;">
- <el-aside width="26vh" style="margin: 0;">
- <div class="JKWTree-tree" style="height: 60vh; border-right: 1px solid #ebeef5;">
- <el-tree :data="huanxingtreeData" :props="defaultProps" highlight-current="true"
- @node-click="huanxingNodeClick"></el-tree>
- </div>
- </el-aside>
- </div>
- <div v-if="huanxingstatus" style="flex: 0; margin: 0;">
- <el-tabs v-model="activNames" type="card" @tab-click="handleClick">
- <el-tab-pane label="换型清场明细信息" @click="showTable('换型清场明细信息')" name="first">
- <div style="width:110vh">
- <el-descriptions :column="9" border>
- <el-descriptions-item :span="9">
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="6" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="日期:" prop="id" style="margin-top=0px; margin-bottom: 0px;">
- <el-input v-model="huanxingData.日期" placeholder="" style="margin-top=0px; margin-bottom: 0px;"/>
- </el-form-item>
- </el-col>
- <el-col :span="2" style="margin-bottom: 0px;margin-top: 0px;">
-
- </el-col>
- <el-col :span="6" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="机台编号:" prop="id" style="margin-top=0px; margin-bottom: 0px;">
- <el-input v-model="huanxingData.机台编号" placeholder="" style="margin-top=0px; margin-bottom: 0px;"/>
- </el-form-item>
- </el-col>
- <el-col :span="1" style="margin-bottom: 0px;margin-top: 0px;">
-
- </el-col>
- <el-col :span="6" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="班组:" prop="id" style="margin-top=0px; margin-bottom: 0px;">
- <el-input v-model="huanxingData.班组" placeholder="" style="margin-top=0px; margin-bottom: 0px;"/>
- </el-form-item>
- </el-col>
- </el-row>
- </el-descriptions-item>
- <el-descriptions-item label="清场原因 从" :span="9">
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="8" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="工单编号:" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.工单编号A" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- <el-col :span="16" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="印件名称:" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.印件名称A" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="印件工序:" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.印件工序A" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- <el-col :span="6" style="margin-bottom: 0px;margin-top: 0px;">
- </el-col>
- <el-col :span="6" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="码包号" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.码包号A" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- </el-row>
- </el-descriptions-item>
- <el-descriptions-item label="清场原因 到" :span="9">
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="8" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="工单编号:" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.工单编号B" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- <el-col :span="16" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="印件名称:" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.印件名称B" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="印件工序:" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.印件工序B" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- <el-col :span="6" style="margin-bottom: 0px;margin-top: 0px;">
- </el-col>
- <el-col :span="6" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="码包号" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.码包B" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- </el-row>
- </el-descriptions-item>
- <el-descriptions-item label="清场确认项目" :span="9">
-
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="菲林_标样_签样品_留样品" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-checkbox v-model="huanxingData.项目1"></el-checkbox>
- </el-form-item>
- </el-col>
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="版材_纸张_电化铝_油墨" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-checkbox v-model="huanxingData.项目2"></el-checkbox>
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="过版纸_废品_次品" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-checkbox v-model="huanxingData.项目3"></el-checkbox>
- </el-form-item>
- </el-col>
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="半成品_成品_零头" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-checkbox v-model="huanxingData.项目4"></el-checkbox>
- </el-form-item>
- </el-col>
- </el-row>
-
-
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="操作台桌面_抽屉_地面" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-checkbox v-model="huanxingData.项目5"></el-checkbox>
- </el-form-item>
- </el-col>
- </el-row>
-
-
- </el-descriptions-item>
- <el-descriptions-item label="清场确认人" :span="9">
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="机长签字" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.机长" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="24" style="margin-bottom: 0px;margin-top: 0px;">
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="带班主管签字" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.班长" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- <el-col :span="12" style="margin-bottom: 0px;margin-top: 0px;">
- <el-form-item label="质量巡查员签字" prop="id" style="margin-bottom: 0px;margin-top: 0px;">
- <el-input v-model="huanxingData.质量巡查员" placeholder="" style="margin-bottom: 0px;margin-top: 0px;"/>
- </el-form-item>
- </el-col>
- </el-row>
- </el-descriptions-item>
- </el-descriptions>
- </div>
-
- </el-tab-pane>
-
- <el-tab-pane label="当前设备换型记录" @click="showTable('当前设备换型记录')" name="second">
- <el-table
- tooltip-effect="dark"
- :data="huanxingselectData"
- row-key="ID"
- highlight-current-row="true"
- :show-overflow-tooltip="true"
- border @row-click="dianjianhandle"
- style="width:115vh; height:50vh;"
- @row-dblclick="handleSelectClick"
- :row-class-name="rowClassName"
- >
- <el-table-column
- prop="日期"
- label="日期"
- width="160"
- />
- <el-table-column
- prop="机台编号"
- label="机台编号"
- width="90"
- />
- <el-table-column
- prop="班组"
- label="班组"
- width="70"
- />
- <el-table-column
- prop="工单编号A"
- label="工单编号A"
- width="95"
- />
- <el-table-column
- prop="印件名称A"
- label="印件名称A"
- width="130"
- />
- <el-table-column
- prop="印件工序A"
- label="印件工序A"
- width="150"
- />
- <el-table-column
- prop="码包号A"
- label="码包号A"
- width="80"
- />
- <el-table-column
- prop="工单编号B"
- label="工单编号B"
- width="100"
- />
- <el-table-column
- prop="印件名称B"
- label="印件名称B"
- width="100"
- />
- <el-table-column
- prop="印件工序B"
- label="印件工序B"
- width="150"
- />
- <el-table-column
- prop="码包号B"
- label="码包号B"
- width="80"
- />
- <el-table-column
- prop="清场项目A"
- label="菲林_标样_签样品_留样品"
- width="190"
- />
- <el-table-column
- prop="清场项目B"
- label="版材_纸张_电化铝_油墨"
- width="190"
- />
- <el-table-column
- prop="清场项目C"
- label="过版纸_废品_次品"
- width="170"
- />
- <el-table-column
- prop="清场项目D"
- label="半成品_成品_零头"
- width="170"
- />
- <el-table-column
- prop="清场项目E"
- label="操作台桌面_抽屉_地面"
- width="180"
- />
- <el-table-column
- prop="机长"
- label="机长"
- width="80"
- />
- <el-table-column
- prop="班长"
- label="带班长"
- width="80"
- />
- <el-table-column
- prop="质量巡查员"
- label="质量巡查员"
- width="100"
- />
- <el-table-column
- prop="创建时间"
- label="创建时间"
- width="120"
- />
- <el-table-column
- prop="UNIQID"
- label="UNIQID"
- width="80"
- />
- </el-table>
- </el-tab-pane>
- </el-tabs>
- </div>
- </div>
- </el-dialog>
-
- <el-dialog
- v-model="chanliangVisible"
- title="查改"
- destroy-on-close
- width="60%"
- style="height: 110vh;"
- :before-close="closechanliangVisible"
- >
- <el-row :gutter="24">
- <el-col :span="6">
- <el-form-item label="工单编号:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.工单编号" id="工单编号" @blur="getCPMCsubmit()" @keydown="ent1($event)" :clearable="true" />
- </el-form-item>
- </el-col>
- <el-col :span="18">
- <el-form-item label="产品名称:" prop="perTenThousand" class="mab" label-width="150">
- <el-input v-model="formdata3.value.cpmc" id="产品名称" @keydown="ent1($event)" :clearable="true" />
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="24">
- <el-col :span="6">
- <el-form-item label="印件号:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.yjno" id="印件号" @focus="yjnoHandleFocus()" @blur="getYJMCsubmit()" @keydown="ent1($event)" :clearable="true" />
- </el-form-item>
- </el-col>
- <el-col :span="18">
- <el-form-item label="印件名称:" prop="perTenThousand" class="mab" label-width="150">
- <el-input v-model="formdata3.value.cpmc" id="印件名称" @keydown="ent1($event)" :clearable="true" />
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="24">
- <el-col :span="14">
- <el-form-item label="工序名称:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.gxmc" id="工序名称" @focus="gxmcHandleFocus()" @blur="getGXsubmit()" @keydown="ent1($event)" :clearable="true" style="width: 350px;" />
- <el-input v-model="formdata3.value.gxh" id="工序号" :readonly=true :clearable="true" style="width: 50px; margin-left: 10px;" />
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-form-item label="工艺名称:" prop="perTenThousand" class="mab">
- <el-input v-model="formdata3.value.gymc" id="工艺名称" @keydown="ent1($event)" :readonly=true :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="24">
- <el-col :span="6">
- <el-form-item label="日期:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.rq" id="日期" @keydown="ent1($event)" @blur="getJtbhsubmit()" :clearable="true" style="width: 100px;" />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="机器:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.sczl_jtbh" id="机器" @keydown="ent1($event)" @blur="getJtbhsubmit()" :clearable="true" style="width: 100px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5" style="margin-top=0px; margin-bottom: 1px;">
- <el-form-item label="流程单号" prop="id" style="margin-top=0px; margin-bottom: 1px;">
- <el-input v-model="formdata3.value.num" id="流程单号" style="margin-top=0px; margin-bottom: 1px;" @keydown="ent1($event)" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
-
-
-
- <el-row :gutter="24">
- <el-col :span="6">
- <el-form-item label="墨色:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.色度数" id="墨色" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="加工联数:" prop="flatFeed" class="mab" >
- <el-input v-model="formdata3.value.联数" id="加工联数" @keydown="ent1($event)" :clearable="true" style="width: 100px; margin-right: 30px;" />
-
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="产量:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.产量" id="产量" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="制程废品:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value制程废品" id="制程废品" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- </el-row>
-
-
- <el-row :gutter="24">
- <el-col :span="4">
- <el-form-item label="制程次品:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.制程次品" id="制程次品" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="4">
- <el-form-item label="前工序废:" prop="flatFeed" class="mab" >
- <el-input v-model="formdata3.value.前工序废" id="前工序废" @keydown="ent1($event)" :clearable="true" style="width: 100px; margin-right: 30px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="来料异常:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.来料异常" id="来料异常" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-form-item label="换型类型:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.换型类型" id="换型类型" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- </el-row>
-
-
- <el-row :gutter="30">
- <el-col :span="5">
- <el-form-item label="装版总工时:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.装版总工时" id="装版总工时" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="装版补产工时:" prop="flatFeed" class="mab" >
- <el-input v-model="formdata3.value.装版补产工时" id="装版补产工时" @keydown="ent1($event)" :clearable="true" style="width: 100px; margin-right: 30px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="打样总工时:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.打样总工时" id="打样总工时" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="打样补产工时:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.打样补产工时" id="打样补产工时" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="4">
- <el-form-item label="保养工时:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.保养工时" id="保养工时" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- </el-row>
-
-
- <el-row :gutter="24">
- <el-col :span="6">
- <el-form-item label="异常总工时:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.异常总工时" id="异常总工时" style="margin-top=0px; margin-bottom: 1px;" @keydown="ent1($event)" placeholder="" />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="异常类型:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.异常类型" id="异常类型" @keydown="ent1($event)" @blur="getJtbhsubmit()" :clearable="true" style="width: 100px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5" style="margin-top=0px; margin-bottom: 1px;">
- <el-form-item label="异常补贴工时" prop="id" style="margin-top=0px; margin-bottom: 1px;">
- <el-input v-model="formdata3.value.异常补时" id="异常补贴工时" style="margin-top=0px; margin-bottom: 1px;" @keydown="ent1($event)" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
-
-
- <el-row :gutter="24">
- <el-col :span="8">
- <el-form-item label="通电时间:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.通电时间" id="通电时间" @keydown="ent1($event)" :clearable="true" style="width: 100px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5" style="margin-top=0px; margin-bottom: 1px;">
- <el-form-item label="定额代号" prop="id" style="margin-top=0px; margin-bottom: 1px;">
- <el-input v-model="formdata3.value.dedh" id="定额代号" style="margin-top=0px; margin-bottom: 1px;" @keydown="ent1($event)" placeholder="" />
- </el-form-item>
- </el-col>
- </el-row>
-
-
- <el-row :gutter="24">
- <el-col :span="4">
- <el-form-item label="码开始行:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.码开始行" id="码开始行" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="4">
- <el-form-item label="码结束行:" prop="flatFeed" class="mab" >
- <el-input v-model="formdata3.value.码结束行" id="码结束行" @keydown="ent1($event)" :clearable="true" style="width: 100px; margin-right: 30px;" />
- </el-form-item>
- </el-col>
- <el-col :span="5">
- <el-form-item label="主电表:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.主电表" id="主电表" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- <el-col :span="10">
- <el-form-item label="辅电表:" prop="flatFeed" class="mab">
- <el-input v-model="formdata3.value.辅电表" id="辅电表" @keydown="ent1($event)" :clearable="true" style="width: 200px;" />
- </el-form-item>
- </el-col>
- </el-row>
- <div style="display: flex;">
- <div style="width: 131vh;">组员及分配比例</div>
- <div style="width: 13vh;">特殊组员</div>
- <div>拉料人员</div>
- </div>
-
-
- <el-row :gutter="10" style="margin-top: 1vh;">
- <el-col :span="2">
- <el-input v-model="formdata3.value.bzdh" id="bzdh" @keydown="ent($event, '辅电表', 'bzdh', 'bh1')" placeholder="ZI00401" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员1['编号']" id="bh1" @keydown="ent($event, 'bzdh', 'bh1', 'bh2')" @keyup.enter.native="getygsubmit($event, '1')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员2['编号']" id="bh2" @keydown="ent($event, 'bh1', 'bh2', 'bh3')" @keyup.enter.native="getygsubmit($event, '2')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员3['编号']" id="bh3" @keydown="ent($event, 'bh2', 'bh3', 'bh4')" @keyup.enter.native="getygsubmit($event, '3')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员4['编号']" id="bh4" @keydown="ent($event, 'bh3', 'bh4', 'bh5')" @keyup.enter.native="getygsubmit($event, '4')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员5['编号']" id="bh5" @keydown="ent($event, 'bh4', 'bh5', 'bh6')" @keyup.enter.native="getygsubmit($event, '5')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员6['编号']" id="bh6" @keydown="ent($event, 'bh5', 'bh6', 'bh7')" @keyup.enter.native="getygsubmit($event, '6')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员7['编号']" id="bh7" @keydown="ent($event, 'bh6', 'bh7', 'bh8')" @keyup.enter.native="getygsubmit($event, '7')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员8['编号']" id="bh8" @keydown="ent($event, 'bh7', 'bh8', 'bh9')" @keyup.enter.native="getygsubmit($event, '8')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员9['编号']" id="bh9" @keydown="ent($event, 'bh8', 'bh9', 'bh10')" @keyup.enter.native="getygsubmit($event, '9')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员10['编号']" id="bh10" @keydown="ent($event, 'bh9', 'bh10', 'bh11')" @keyup.enter.native="getygsubmit($event, '10')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.拉料['编号']" @keydown="ent($event, 'bh10', 'bh11', 'name1')" @keyup.enter.native="getygsubmit($event, '11')" placeholder="" />
- </el-col>
- </el-row>
-
-
-
- <el-row :gutter="10" style="margin-top: 10px;">
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员1['姓名']" id="name1" @keydown="ent($event, 'bh11', 'name1', 'name2')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员2['姓名']" id="name2" @keydown="ent($event, 'name1', 'name2', 'name3')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员3['姓名']" id="name3" @keydown="ent($event, 'name2', 'name3', 'name4')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员4['姓名']" id="name4" @keydown="ent($event, 'name3', 'name4', 'name5')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员5['姓名']" id="name5" @keydown="ent($event, 'name4', 'name5', 'name6')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员6['姓名']" id="name6" @keydown="ent($event, 'name5', 'name6', 'name7')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员7['姓名']" id="name7" @keydown="ent($event, 'name6', 'name7', 'name8')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员8['姓名']" id="name8" @keydown="ent($event, 'name7', 'name8', 'name9')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员9['姓名']" id="name9" @keydown="ent($event, 'name8', 'name9', 'name10')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员10['姓名']" id="name10" @keydown="ent($event, 'name9', 'name10', 'name11')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.拉料['姓名']" id="name11" @keydown="ent($event, 'name10', 'name11', 'rate1')" placeholder="" />
- </el-col>
- </el-row>
-
- <el-row :gutter="10" style="margin-top: 10px;">
- <el-col :span="2">
-
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员1['比例']" id="rate1" @keydown="ent($event, 'name11', 'rate1', 'rate2')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员2['比例']" id="rate2" @keydown="ent($event, 'rate1', 'rate2', 'rate3')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员3['比例']" id="rate3" @keydown="ent($event, 'rate2', 'rate3', 'rate4')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员4['比例']" id="rate4" @keydown="ent($event, 'rate3', 'rate4', 'rate5')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员5['比例']" id="rate5" @keydown="ent($event, 'rate4', 'rate5', 'rate6')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员6['比例']" id="rate6" @keydown="ent($event, 'rate5', 'rate6', 'rate7')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员7['比例']" id="rate7" @keydown="ent($event, 'rate6', 'rate7', 'rate8')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员8['比例']" id="rate8" @keydown="ent($event, 'rate7', 'rate8', 'rate9')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员9['比例']" id="rate9" @keydown="ent($event, 'rate8', 'rate9', 'rate10')" placeholder="" />
- </el-col>
- <el-col :span="2">
- <el-input v-model="formdata3.value.组员10['比例']" id="rate10" @keydown="ent($event, 'rate9', 'rate10', '工单编号')" placeholder="" />
- </el-col>
- <el-col :span="2">
- </el-col>
- </el-row>
-
-
- <!-- </el-scrollbar> -->
- <template #footer>
- <div class="dialog-footer">
- <el-button @click="closeDialog">取 消</el-button>
- <el-button type="primary" @click="chanliangenterDialog">确 定</el-button>
- </div>
- </template>
- </el-dialog>
-
-
- <el-dialog v-model="MachineVisible" :before-close="closeMachineVisible" :title="type === '0' ? '新增' : '机台状态显示'"
- destroy-on-close width="80%" style="height: 100%;">
- <div class="button-container">
- <button v-for="(item, index) in machineData" :key="index" class="custom-button" @click="handleButtonClick(item.设备编号)">
- <img :src="`/src/assets/${item.状态}.png`" :alt="altText" style="max-width: 100%; height: auto;"/>
- <span style="margin-top: 8px;">{{ item.设备编号 + ' - ' + item.设备名称 }}</span>
- </button>
- </div>
- </el-dialog>
-
- <Shebeizhuangtai
- v-if="dialogSbyxgl"
- v-model="dialogSbyxgl"
- :title="titinfo"
- :formData="formData"
- />
-
- </el-main>
- </el-container>
- </el-container>
- </div>
- </template>
- <script setup>
- import {
- createCompany,
- deleteCompany,
- deleteCompanyByIds,
- updateCompany,
- findCompany,
- getCompanyList
- } from '@/api/company'
- import {
- facilityTab,
- facilitychanLiang,
- facilityInspect,
- facilityProduction,
- facilityTeam,
- facilityMachineList,
- facilitySpotCheckItem,
- facilityInspectionItem,
- reportProduceInfo,
- reportName,
- reportInfo,
- reportMachineMac,
- facilityWorklist,
- setProcessStatus,
- submitDailyProduction,
- facilityDetail,
- inspectionRecord,
- getYg,
- facilityProcedure,
- facilityPrintGetTab,
- facilityPrintDetail,
- ProcessInspectionRecordsItem,
- MachineDetailList,
- ComplaintRecord,
- remodelGetTab,
- ModelChangeRecord,
- MachineChanliangDetail,
- chanliangEdit,
- productionGdmc,
- productionYjmc,
- ChanliangDel
- } from '@/api/jixiaoguanli/jitairibaobiao'
- import {
- FieldInspectionRecord
- } from "@/api/mes/job";
- import Shebeizhuangtai from '@/view/performance/09-workOrderVerification/componets/shebeizhuangtai.vue'
- // 全量引入格式化工具 请按需保留
- import { getDictFunc, formatDate, formatBoolean, filterDict, ReturnArrImg, onDownloadFile } from '@/utils/format'
- import { ElMessage, ElMessageBox } from 'element-plus'
- import { ref, reactive } from 'vue'
- defineOptions({
- name: 'Company'
- })
- const gytableData = ref([])
- const drzcDatas =ref([])
- const detailData = reactive([])
- const treeData=ref([])
- const yinbantreeData=ref([])
- let dianjiantreeData;
- let JTMC=ref()
- let date=ref()
- let titinfo=ref()
- let JTMCOn=ref()
- let showbutton=ref()
- let dateOn=ref()
- const activName = ref('first')
- let productCode=ref()
- const sbzyData = reactive([])
- const FPData = reactive([])
- const CLMXData = reactive([])
- let JYData = reactive([])
- const selectData = ref([])
- const handleNodeClick = (nodeData,node) => {
- //存放当前节点的nodeId
- if (nodeData.level === 1) {
- console.log(node.label); // 第一级节点
- CJMC.value=node.label
- showbutton.value=true
- JTMCOn.value=false
- dateOn.value=false
- MachinelList()
- // MachineVisible.value=true
- } else if (nodeData.level === 2) {
- console.log(node.label); // 第二级节点
- JTMC=node.label.split("-")[0]
- JTMCOn.value=true
- dateOn.value=false
- showbutton.value=false
- FacilityProduction()
- FacilityWorklist()
- // FacilityTeam(JTMC)
- // console.log('123')
- // console.log(JTMC)
- } else if (nodeData.level === 3) {
- JTMC=nodeData.machineName.split("-")[0]
- JTMCOn.value=false
- dateOn.value=true
- date=node.label
- gytableData.value=[]
- drzcDatas.value=[]
- columnNames=[]
- drzcData=[]
- showbutton.value=false
- FacilityInspect()
- FacilitychanLiang()
-
- // FacilityTeam(JTMC)
- // InspectionRecord()
- // FacilityDetail()
- console.log(node.label); // 第三级节点
- }
- }
- const MachineVisible = ref(false)
- const machineData = reactive([])
- const MachinelList = async () => {
- const response = await MachineDetailList({workshop:CJMC.value});
- if (response.code === 0) {
- machineData.splice(0, machineData.length, ...response.data);
- console.log(machineData)
- // return require(`@/assets/${machineData.状态}.png`);
- // MachineVisible.value=true
- }
- }
- //设置机台状态
- function handleButtonClick(deviceId) {
- console.log(deviceId);
- MachineVisible.value=false
- // dialogSbyxgl.value=true
- JTMC=deviceId.split("-")[0]
- // JTMCOn.value=true
- // dateOn.value=false
- console.log(JTMC)
- GetdialogSbyxgl()
-
- // GetdialogSbyxgl(deviceId)
-
- }
- const GetdialogSbyxgl = async () => {
- const response = await facilityProduction({machine:JTMC});
- if (response.code === 0) {
- console.log(response)
- // 填充formData对象的基本字段
- // formData.value.工单编号 = response.data.工单编号;
- // formData.value.印件编号 = response.data.印件号;
- // formData.value.工序名称 = response.data.工序名称;
- // formData.value.产品名称 = response.data.产品名称;
- // formData.value.班组 = response.data.班组编号;
- formData.value.工单编号 = response.data.工单编号;
- formData.value.印件号 = response.data.印件号;
- formData.value.工序号 = response.data.工序名称.substring(0,2);
- formData.value.工序名称 = response.data.工序名称;
- formData.value.产品名称 = response.data.产品名称;
- formData.value.班组Id=response.data.班组Id
- formData.value.machine=JTMC
- formData.value.状态=response.data.状态
- let time = new Date();
- time.setDate(time.getDate() - 0); // 今天的前N天的日期,N自定义
- titinfo = `${time.getFullYear()}-${time.getMonth() + 1}-${time.getDate()}`;
- titinfo+='【'+JTMC+response.data.工单编号+response.data.产品名称+'】'+response.data.工序名称
- let sczl_bhkey=''
- let sczl_namekey=''
- if (response.data.班组成员) {
- for (let i = 0; i < Math.min(Object.keys(response.data.班组成员).length, 6); i++) {
- sczl_bhkey=`sczl_bh${i+1}`
- sczl_namekey=`sczl_name${i+1}`
- formData.value[sczl_bhkey] = response.data.班组成员[i]['编号'];
- formData.value[sczl_namekey] = response.data.班组成员[i]['姓名'];
- console.log(response.data.班组成员[i]['编号'])
- classbz.value[i]=response.data.班组成员[i]['编号']
- }
- }
- formData.value.class=classbz.value.join(',')
- console.log(formData.value.class)
- formData.value.JTMC=JTMC
- const responses = await MachineDetailList({workshop:'胶印车间'});
- if(responses.code===0){
- responses.data.map(item=>{
- if(item.设备编号==JTMC){
- formData.value.status=item.状态
- }
- })
- }
- // console.log(formData.value.工单编号)
-
- }
- FacilityWorklist()
- onstatus()
- }
- // const getImagePath = async (machineData.状态) => {
- // return require(`@/assets/${status}.png`);
- // }
- const classbz=ref([])
- const GDBH=ref()
- //当前生产订单
- const FacilityProduction = async () => {
- const response = await facilityProduction({machine:JTMC});
- if (response.code === 0) {
- console.log(response)
- // 填充formData对象的基本字段
- // formData.value.工单编号 = response.data.工单编号;
- // formData.value.印件编号 = response.data.印件号;
- // formData.value.工序名称 = response.data.工序名称;
- // formData.value.产品名称 = response.data.产品名称;
- // formData.value.班组 = response.data.班组编号;
- formData.value.工单编号 = response.data.工单编号;
- formData.value.印件号 = response.data.印件号;
- formData.value.工序号 = response.data.工序名称.substring(0,2);
- formData.value.工序名称 = response.data.工序名称;
- formData.value.产品名称 = response.data.产品名称;
- formData.value.班组Id=response.data.班组Id
- formData.value.machine=JTMC
- formData.value.状态=response.data.状态
-
- let sczl_bhkey=''
- let sczl_namekey=''
- if (response.data.班组成员) {
- for (let i = 0; i < Math.min(Object.keys(response.data.班组成员).length, 6); i++) {
- sczl_bhkey=`sczl_bh${i+1}`
- sczl_namekey=`sczl_name${i+1}`
- formData.value[sczl_bhkey] = response.data.班组成员[i]['编号'];
- formData.value[sczl_namekey] = response.data.班组成员[i]['姓名'];
- console.log(response.data.班组成员[i]['编号'])
- classbz.value[i]=response.data.班组成员[i]['编号']
- }
- }
- formData.value.class=classbz.value.join(',')
- console.log(formData.value.class)
- formData.value.JTMC=JTMC
- const responses = await MachineDetailList({workshop:'胶印车间'});
- if(responses.code===0){
- responses.data.map(item=>{
- if(item.设备编号==JTMC){
- formData.value.status=item.状态
- }
- })
- }
- // console.log(formData.value.工单编号)
-
- }
- // getTableData()
- }
- let CJMC=ref()
- //设备工作清单
- const FacilityWorklist = async () => {
- const response = await facilityWorklist({machine:JTMC});
- if (response.code === 0) {
- console.log(response)
- sbzyData.splice(0, sbzyData.length, ...response.data);
- const res = await facilityProcedure({ Gd_gdbh: sbzyData[0]['工单编号|质量信息'].substring(0, 7) })
- formData.value.productCode= response.data[0]['产品代号']
- console.log(res)
- if (res.code === 0) {
- selectData.value = res.data
- }
- console.log('22222222')
- FacilityTeam(JTMC)
- }
- }
- //检验记录
- const InspectionRecord = async () => {
- console.log(formData.value.班组)
- const response = await inspectionRecord({machine:JTMC,Gd_gdbh:formData.value.工单编号,team:BZMC.value});
- // const response = await inspectionRecord({machine:'JY01#',Gd_gdbh:'2311114',team:'A班'});
- // const response = await inspectionRecord({machine:'JY01#',Gd_gdbh:'2312191',team:'A班'});
- console.log(response)
- if(response.code==0){
- // 提取 inspectiontime 作为列名
- // Extract inspectiontime as columnNames
- columnNames = response.data.inspectiontime;
- // Populate drzcData with row data
- for (const key in response.data) {
- if (key !== 'inspectiontime') {
- const item = response.data[key];
- const rowData = {
- '工单编号': item['工单编号'],
- '印件号': item['印件号'],
- '工序名称': item['工序名称'],
- '检验项目': item['检验项目']
- };
- // Initialize time columns with '—'
- columnNames.forEach(time => {
- rowData[time] = '';
- });
- // Split inspectresult and fill the corresponding time columns
- const results = item['inspectresult'].split(',');
- results.forEach(result => {
- if (columnNames.includes(result)) {
- rowData[result] = '√';
- }else{rowData[result] = ''}
- });
- // Add the row data to drzcData
- JYData.push(rowData);
- }
- }
- console.log(JYData);
- }
- }
- //当班产量明细
- const FacilityDetail = async () => {
- console.log('123123')
- console.log(JTMC)
- console.log('123123')
- console.log(formData.value.工单编号)
- console.log('123123')
- console.log(formData.value.班组)
- formData.value.production_now=0
- formData.value.production_all=0
- // const response = await facilityDetail({ machine: JTMC, Gd_gdbh: formData.value.工单编号, team: formData.value.班组 });
- const response = await facilityDetail({ machine: JTMC, Gd_gdbh: formData.value.工单编号, team: BZMC.value });
- // const response = await facilityDetail({ machine: JTMC, Gd_gdbh: '2311114', team:'A班' });
- if (response.code === 0) {
- console.log('123123')
- console.log(response);
- CLMXData.splice(0, CLMXData.length, ...Object.values(response.data));
- formData.value.production_now=response.data[0].产量
- formData.value.production_all=response.data.total.产量
- }
- };
- //员工编号回车事件
- const getygsubmit = (event, inputName) => {
- console.log(inputName)
-
- let combinedString = 'sczl_bh' + inputName;
- console.log(combinedString)
- // let variableName = 'sczl_gdbh'+inputName;
- let variableValue = eval('formdata3.value.' + combinedString);
- console.log(variableValue)
- GetYg(variableValue,inputName)
- }
- //获取员工信息
- const GetYg = async (value,inputName) => {
- const response = await getYg({sczl_bh:value});
- console.log(response)
- if (response.code === 0) {
- console.log(response.data.ygxm)
- let Bname = 'sczl_name' + inputName;
- formData3.value[Bname]=response.data.ygxm
- // console.log(formData.value[Bname])
- }
- }
- // 验证规则
- const rule = reactive({
- })
- const searchRule = reactive({
- createdAt: [
- { validator: (rule, value, callback) => {
- if (searchInfo.value.startCreatedAt && !searchInfo.value.endCreatedAt) {
- callback(new Error('请填写结束日期'))
- } else if (!searchInfo.value.startCreatedAt && searchInfo.value.endCreatedAt) {
- callback(new Error('请填写开始日期'))
- } else if (searchInfo.value.startCreatedAt && searchInfo.value.endCreatedAt && (searchInfo.value.startCreatedAt.getTime() === searchInfo.value.endCreatedAt.getTime() || searchInfo.value.startCreatedAt.getTime() > searchInfo.value.endCreatedAt.getTime())) {
- callback(new Error('开始日期应当早于结束日期'))
- } else {
- callback()
- }
- }, trigger: 'change' }
- ],
- })
- const elFormRef = ref()
- const elSearchFormRef = ref()
- // =========== 表格控制部分 ===========
- const page = ref(1)
- const total = ref(0)
- const pageSize = ref(10)
- const tableData = ref([])
- const searchInfo = ref({})
- const xunchaVisible = ref(false)
- const xunchatreeData=ref([{label: '现场巡查记录',} ])
- // 重置
- const onReset = () => {
- searchInfo.value = {}
- getTableData()
- }
- // 搜索
- const onSubmit = () => {
- elSearchFormRef.value?.validate(async(valid) => {
- if (!valid) return
- page.value = 1
- pageSize.value = 10
- getTableData()
- })
- }
- // 分页
- const handleSizeChange = (val) => {
- pageSize.value = val
- getTableData()
- }
- // 修改页面容量
- const handleCurrentChange = (val) => {
- page.value = val
- getTableData()
- }
- const getTableData = async () => {
- const response = await facilityTab();
- if (response.code === 0 && response.data) {
- const workshops = response.data; // 车间数据
- // 在推送新项之前将 treeData 重置为空数组
- treeData.value = []; // 使用 .value 访问响应式引用的值
- for (const workshopName in workshops) {
- const workshopNode = {
- label: workshopName,
- children: [],
- level: 1 // 添加层级属性
- };
- const machines = workshops[workshopName]; // 车间下的机器
- for (const machineName in machines) {
- const machineNode = {
- label: machineName,
- children: [],
- level: 2, // 添加层级属性
- parentNode: workshopNode
- };
-
- // Now that machineNode is initialized, you can refer to it
- const childrenNodes = machines[machineName].map(dateTime => {
- const dateOnly = dateTime.split(' ')[0];
- return {
- label: dateOnly,
- machineName:machineName,
- level: 3, // 添加层级属性
- parentNode: machineNode
- };
- });
-
- // Assign the childrenNodes to the machineNode's children property
- machineNode.children = childrenNodes;
-
- // Finally, push the machineNode to the workshopNode's children array
- workshopNode.children.push(machineNode);
- }
- // 将 workshopNode 推送到响应式 treeData 数组
- treeData.value.push(workshopNode);
- }
- }
- };
- // 查询
- const getTableList = async() => {
- const table = await getCompanyList({ page: page.value, pageSize: pageSize.value, ...searchInfo.value })
- if (table.code === 0) {
- tableData.value = table.data.list
- total.value = table.data.total
- page.value = table.data.page
- pageSize.value = table.data.pageSize
- }
- }
- getTableData()
- //删除
- function onDel() {
- Chanliangdel()
- }
- // 日产量上报删除
- const Chanliangdel = async() => {
-
- const res = await ChanliangDel({ UniqId:uid.value})
- if (res.code === 0) {
- ElMessage({
- type: 'success',
- message: '成功'
- })
- FacilitychanLiang()
- }else{
- ElMessage({
- type: 'success',
- message: '失败'
- })
- }
- }
- //制程检验
- const zhichengstatus=ref(false)
- const xunchaData = ref([]);
- const zhichengVisible = ref(false)
- const zhichengtreeData=ref([{
- label: '首件与过程确认'
- },{
- label: '机台检验'
- },{
- label: 'IPQC检验'
- }])
- const onzhicheng = async () => {
- zhichengstatus.value=false
- xunchaData.value=[]
- const response = await reportProduceInfo({machine:JTMC.split("#")[0]});
- if (response.code === 0) {
- xunchaData.value.order=response.data.order
- xunchaData.value.yjno=response.data.yjno
- xunchaData.value.product_name=response.data.product_name
- xunchaData.value.gxmc=response.data.gxmc
- xunchaData.value.lcdh=0
- xunchaData.value.sczl_bh=''
- xunchaData.value.sczl_name=''
- xunchaData.value.remark=''
- zhichengVisible.value = true;
- }
- }
- const category =ref()
- const zhibiaoselectData=ref([])
- const fujiaselectData=ref([])
- const zhichengNodeClick = (node, check) => {
- if(node.label){
- zhichengstatus.value=true
- category.value=node.label
- processInspectionRecordsItem()
- }
- };
- const processInspectionRecordsItem = async (value) => {
- const response = await ProcessInspectionRecordsItem({ process: xunchaData.value.gxmc });
- if (response.code === 0) {
- zhibiaoselectData.value=response.data.首件.指标检验.map(item=>{
- item.notjc=true;
- item.zc=false;
- item.yc=false;
- item.remark=''
- item.category=category.value
- item.workOrder=xunchaData.value.order
- item.yjno=xunchaData.value.yjno
- item.flow=xunchaData.value.lcdh
- item.team=BZMC.value
- item.machine=JTMC.split("#")[0]
- return item
- })
- fujiaselectData.value=response.data.首件.附加.map(item=>{
- item.notjc=true;
- item.workOrder=xunchaData.value.order
- item.yjno=xunchaData.value.yjno
- item.flow=xunchaData.value.lcdh
- item.machine=JTMC.split("#")[0]
- return item
- })
-
- }
- };
- //设置机台状态
- const dialogSbyxgl=ref(false)
- function onstatus() {
- dialogSbyxgl.value=true
- SetMachineStatus()
- // ReportProduceInfo()
- }
- //设置机台状态
- const SetMachineStatus = async () => {
- // const response = await setMachineStatus({
- // machine:'JY03',
- // gy_name:'02-胶印〖白、黑、哑油【预干】、NT光油',
- // order:'2311114',
- // yjno:'1',
- // class:'ZM00545,ZM01351,ZM01170',
- // status:'维修',
- // production_now:'',
- // production_all:'',
- // });
- // if (response.code === 0) {
- // }
- }
- //客诉记录
- const complaintsShow = ref(false)
- const complaintsData = reactive([])
- function oncomplaints() {
- Complaints()
-
- }
- // 客诉记录表格填充
- const Complaints = async() => {
- // console.log(sbzyData[0].产品代号)
- // console.log(sbzyData[0].产品代号)
- // console.log(sbzyData[0].产品代号)
- // const res = await ComplaintRecord({productCode :cpcode.value})
- if(finishedcode.value==null){
- ElMessage({
- type: 'error',
- message: '请先选择产品',
- })
- return
- }
- const res = await ComplaintRecord({productCode :finishedcode.value})
- if (res.code === 0) {
- if(res.data==null){
- ElMessage({
- type: 'error',
- message: '此产品暂无客诉记录',
- })
- }else{
- complaintsData.splice(0, complaintsData.length, ...res.data);
- console.log(complaintsData);
- console.log(complaintsData[0].产品编号)
- selectedRowData.value=complaintsData[0]
- console.log(selectedRowData)
- complaintsShow.value=true
- }
-
- }
- }
- const selectedRowData = ref({
- })
- //客诉表格单击
- const complaintshandle = (val, row) => {
- console.log(val)
- selectedRowData.value=val
- };
- //换型清场
- const huanxingVisible = ref(false)
- const huanxingtreeData=ref([])
- const huanxingselectData = ref([])
- const huanxingstatus=ref(false)
- const activNames=ref('first')
- function onClear() {
- huanxingVisible.value=true
- RemodelGetTab()
- }
- function onClear2() {
- console.log(formData.value.工单编号)
- console.log(BZMC)
- }
- const RemodelGetTab = async() => {
- const response = await remodelGetTab()
- let arr=[]
- if (response.code === 0) {
- for(let key in response.data){
- if(response.data[key][0]){
- let children =[]
- for (let i = 0; i < response.data[key].length; i++) {
- children.push({label:response.data[key][i],machine:key})
- }
- arr.push({
- label:key,
- children:children
- })
- console.log(response.data[key].length)
- }else{
- arr.push({label:key})
- }
- }
- huanxingtreeData.value=arr
- }
- }
- const huanxingNodeClick = (node) => {
- //存放当前节点的nodeId
- //存放当前节点的nodeId
- if(node.machine){
- // console.log(node.label.split('/')[1])
- huanxingstatus.value=true
- remodelDetail(node.label.split('/')[1])
- modelChangeRecord(node.machine)
- }else{
- console.log('2')
- }
- }
- const remodelDetail = async (val) => {
- const response = await RemodelDetail({UniqId:val});
- if (response.code === 0) {
- huanxingData.value=response.data
- if(response.data.项目1==1){
- huanxingData.value.项目1=true
- }else{
- huanxingData.value.项目1=false
- }
- if(response.data.项目2==1){
- huanxingData.value.项目2=true
- }else{
- huanxingData.value.项目2=false
- }
- if(response.data.项目3==1){
- huanxingData.value.项目3=true
- }else{
- huanxingData.value.项目3=false
- }
- if(response.data.项目4==1){
- huanxingData.value.项目4=true
- }else{
- huanxingData.value.项目4=false
- }
- if(response.data.项目5==1){
- huanxingData.value.项目5=true
- }else{
- huanxingData.value.项目5=false
- }
- }
- }
- const modelChangeRecord = async (val) => {
- const response = await ModelChangeRecord({machine:val});
- if (response.code === 0) {
- huanxingselectData.value=response.data
- }
- }
- import { nextTick } from 'vue';
- //设备点检
- function ondianjian() {
- getSpotCheckItem(JTMC).then(treeData => {
- if (treeData) {
- // 如果获取成功,treeData 就是我们需要的树形结构数据
- dianjiantreeData = treeData;
- console.log('222');
- console.log(dianjiantreeData);
- // 使用 nextTick 来确保在更新 dianjianVisible 后立即刷新视图
- nextTick(() => {
- dianjianVisible.value = true;
- });
- // 这里可以处理treeData,例如将其赋值给某个状态管理变量或者用于渲染界面
- } else {
- // 如果获取失败,则treeData为null
- console.log('获取巡检项目树形结构数据失败');
- }
- });
-
- }
- const onyinban = async() => {
- console.log(formData.value.productCodes)
- const res = await facilityPrintGetTab({productCode:formData.value.productCode})
- if(res.code===0){
- yinbantreeData.value=[{
- label:'产品印版库',
- children:res.data.map(item=>({
- label:item.印版分类,
- code:item.编号
- }))
- }]
- console.log(res.data.map(item=>({
- label:item.印版分类,
- code:item.编号
- })))
- yinbanVisible.value = true;
- }
- }
- const onxuncha = async() => {
- xunchaVisible.value=true
- }
- //获取设备点检->检验项目
- // const FacilityInspectionItem = async (value) => {
- // try {
- // // 调用接口获取巡检项目数据
- // const response = await facilityInspectionItem({ unitName: value });
- // // 检查接口返回的状态码
- // if (response.code === 0) {
- // dianjianselectData.splice(0, dianjianselectData.length, ...response.data.map(item=>{
- // item.notjc=true;
- // item.zc=false;
- // item.yc=false;
- // return item
- // }))
- // console.log(dianjianselectData)
- // }
- // } catch (error) {
- // // 捕获并打印异常
- // console.error("获取巡检项目数据出错:" + error);
- // return null;
- // }
- // };
- //获取设备点检->检验项目
- const FacilityInspectionItem = async (value) => {
- try {
- // 调用接口获取巡检项目数据
- const response = await facilityInspectionItem({ unitName: value ,machine:JTMC.split("#")[0]});
- // 检查接口返回的状态码
- if (response.code === 0) {
- console.log(response)
- dianjianselectData.splice(0, dianjianselectData.length, ...response.data.map(item=>{
- item.notjc=true;
- item.zc=false;
- item.yc=false;
- item.remark=''
- item.unitName=value
- item.team=BZMC.value
- item.machine=JTMC
- return item
- }))
- }
- } catch (error) {
- // 捕获并打印异常
- console.error("获取巡检项目数据出错:" + error);
- return null;
- }
- };
- //机台印版领用->右侧详情
- const facilityPrintDetailItem = async (value) => {
- try {
- // 调用接口获取巡检项目数据
- // const response = await facilityPrintDetail({ workOrder: formData.value.工单编号,code:value,productCode:productCode.value });
- const response = await facilityPrintDetail({ workOrder: formData.value.工单编号,code:value,productCode:formData.value.productCode });
- // 检查接口返回的状态码
- if (response.code === 0) {
- console.log(response)
- yinbanselectData.value=response.data
- }
- } catch (error) {
- // 捕获并打印异常
- console.error("获取数据出错:" + error);
- return null;
- }
- };
- //树形结构单机
- const dianjianselectData = reactive([])
- const yinbanselectData = ref([])
- const xunchaselectData = ref([])
- const dianjianNodeClick = (node, check, nodeData) => {
- if (node.children && node.children.length > 0) {
- // 点击的是父节点,且有子节点
- // 执行相应的父节点单击事件处理逻辑
- // 这里可以添加你想要的处理逻辑,比如展开/折叠节点等
- } else {
- // 点击的是子节点,或者没有子节点
- // 执行相应的子节点单击事件处理逻辑
- console.log(node.label)
- console.log(JTMC.split("#")[0])
- // FacilityInspectionItem({unitName:node.label ,machine:JTMC.split("#")[0]})
-
- FacilityInspectionItem(node.label,)
-
- }
- };
- const yinbanNodeClick = (node, check, nodeData) => {
- if (node.children && node.children.length > 0) {
- // 点击的是父节点,且有子节点
- // 执行相应的父节点单击事件处理逻辑
- // 这里可以添加你想要的处理逻辑,比如展开/折叠节点等
- } else {
- // 点击的是子节点,或者没有子节点
- // 执行相应的子节点单击事件处理逻辑
- facilityPrintDetailItem(node.code)
- // console.log()
-
- }
- };
- const xunchaNodeClick = (node, check, nodeData) => {
- if(node){
- fieldInspectionRecord()
- }
- }
- const fieldInspectionRecord = async () => {
- let time = new Date();
- time.setDate(time.getDate() - 0); // 今天的前N天的日期,N自定义
- time= `${time.getFullYear()}-${time.getMonth() + 1}-${time.getDate()}`;
- console.log(time+' 08:30:00')
- const response = await FieldInspectionRecord({ workOrder: formData.value.工单编号,team:BZMC.value,start:time+' 08:30:00' });
- if (response.code === 0) {
- xunchaselectData.value=response.data
- }
- }
- let pandingfangfa=ref()
- //检验项目单击
- const dianjianhandle = (val, row) => {
- try {
- pandingfangfa.value = val.判定标准;
- } catch (error) {
- console.error('An error occurred:', error);
- }
- };
- const notjcClick = (val) => {
- try {
- if(val.notjc==false){
- val.zc=true
- }else{
- val.zc=false
- val.yc==false
- }
- } catch (error) {
- console.error('An error occurred:', error);
- }
- };
- const zcClick = (val) => {
- try {
- if(val.zc==false){
- val.zc=true
- }else{
- val.zc=false
- val.yc==false
- }
- } catch (error) {
- console.error('An error occurred:', error);
- }
- };
- const ycClick = (val) => {
- try {
- if(val.yc==false){
- val.zc=true
- }else{
- val.zc=false
- val.notjc==false
- }
- } catch (error) {
- console.error('An error occurred:', error);
- }
- };
- const rowClassName = (row, column) => {
- try {
- if (row.unchecked) {
- return 'row-yellow';
- }
- return '';
- } catch (error) {
- console.error('An error occurred:', error);
- return '';
- }
- };
- // 异步函数,用于获取指定设备的巡检项目,并且将结果格式化为树形结构数据
- const getSpotCheckItem = async (machineName) => {
- try {
- // 调用接口获取巡检项目数据
- const response = await facilitySpotCheckItem({ machine: machineName });
- // 检查接口返回的状态码
- if (response.code === 0) {
- // 构建树形结构数据
- const childrenData = Object.entries(response.data).map(([id, label]) => {
- return {
- id, // 子节点的唯一标识
- label, // 子节点的标签
- children: [] // 初始化子节点数组
- };
- });
- // 创建包含父节点的树形结构数据
- const treeData = [{
- id: machineName, // 父节点的唯一标识
- label: machineName, // 父节点的标签
- children: childrenData // 子节点数据
- }];
- // 返回构建好的树形结构数据
- return treeData;
- } else {
- // 如果接口返回的状态码不是0,打印错误信息
- console.error("接口返回错误:" + response.msg);
- return null;
- }
- } catch (error) {
- // 捕获并打印异常
- console.error("获取巡检项目数据出错:" + error);
- return null;
- }
- };
- // 班组人员及分配比例
- const FacilityTeam = async (value) => {
- const response = await facilityTeam({ machine: value });
- if (response.code === 0) {
- // formData.value.班组 = response.data[0]['班组号'];
- BZMC.value=response.data[0]['班组号']
- // if(response.data[0][2]){
- // // console.log(response.data[0][2].split(' '));
- // for (let i = 1; i <= 3; i++) {
- // const sczl_bh = `sczl_bh${i}`;
- // const sczl_name = `sczl_name${i}`;
- // formData.value[sczl_bh] = response.data[0][i-1].split(' ')[0];
- // formData.value[sczl_name] = response.data[0][i-1].split(' ')[1];
-
- // }
- // }
- // if(response.data[0][0]){
- // // console.log(response.data[0][2].split(' '));
- // for (let i = 1; i <= 1; i++) {
- // const sczl_bh = `sczl_bh${i}`;
- // const sczl_name = `sczl_name${i}`;
- // formData.value[sczl_bh] = response.data[0][i-1].split(' ')[0];
- // formData.value[sczl_name] = response.data[0][i-1].split(' ')[1];
-
- // }
- // }
- // if(response.data[0][1]){
- // // console.log(response.data[0][2].split(' '));
- // for (let i = 1; i <= 2; i++) {
- // const sczl_bh = `sczl_bh${i}`;
- // const sczl_name = `sczl_name${i}`;
- // formData.value[sczl_bh] = response.data[0][i-1].split(' ')[0];
- // formData.value[sczl_name] = response.data[0][i-1].split(' ')[1];
-
- // }
- // }
- // if(response.data[0][3]){
- // // console.log(response.data[0][2].split(' '));
- // for (let i = 1; i <= 4; i++) {
- // const sczl_bh = `sczl_bh${i}`;
- // const sczl_name = `sczl_name${i}`;
- // formData.value[sczl_bh] = response.data[0][i-1].split(' ')[0];
- // formData.value[sczl_name] = response.data[0][i-1].split(' ')[1];
-
- // }
- // }
- InspectionRecord()
- FacilityDetail()
- // 清空 bzData 数组
- bzData.splice(0, bzData.length);
- // 遍历接口返回的数据,并给每个对象添加 JTMC 属性
- const updatedData = response.data.map(item => {
- return { ...item, JTMC: value }; // 添加 JTMC 属性
- });
- // 将更新后的数据添加到 bzData 数组
- bzData.push(...updatedData);
- FPData.push(...updatedData)
- return 1
- }
- };
- //班组维护
- function onBZ() {
- FacilityTeam(JTMC)
- fetchData()
- detailShow.value=true
- console.log('2222')
- }
- const currentBz ={}
- const selectBz = async() => {
- if(currentBz.value){
- BZMC.value=currentBz.value.班组号
- let sczl_bhkey=''
- let sczl_namekey=''
- if (currentBz.value) {
- for (let i = 1; i <= 6; i++) {
- sczl_bhkey=`sczl_bh${i}`
- sczl_namekey=`sczl_name${i}`
- formData.value[sczl_bhkey] = '';
- formData.value[sczl_namekey] = '';
- }
- for (let i = 1; i <= Math.min(Object.keys(currentBz.value).length-4, 6); i++) {
- sczl_bhkey=`sczl_bh${i}`
- sczl_namekey=`sczl_name${i}`
- console.log(currentBz.value[i-1].split(' '))
- formData.value[sczl_bhkey] = currentBz.value[i-1].split(' ')[0];
- formData.value[sczl_namekey] = currentBz.value[i-1].split(' ')[1];
- classbz.value[i-1]=currentBz.value[i-1].split(' ')[0]
- }
- formData.value.class=classbz.value.join(',')
- }
- currentBz.value={}
- }
- }
- // 下拉框选项数据
- const dropdownOptions = ref([]);
- // 选中的选项
- const selectedOption = ref('');
- // 获取接口数据并转换为下拉框需要的格式
- const fetchData = async () => {
- try {
- // Simulate API call
- const response = await facilityMachineList();
- if (response.code === 0) {
- // Transform data format
- const options = response.data.map((item) => ({
- label: item,
- value: item
- }));
- dropdownOptions.value = options;
- // Default to selecting the first option
- const defaultOption = options.find(option => option.value === JTMC);
- if (defaultOption) {
- selectedOption.value = defaultOption.value;
- } else if (options.length > 0) {
- // 如果 myDefaultValue 不在选项中,选择第一个选项
- selectedOption.value = options[0].value;
- }
- }
- } catch (error) {
- console.error('Error fetching data:', error);
- // Handle the error appropriately
- }
- };
- // formData
- let BZMC=ref()
- let lastCellValue=ref()
- let parts =reactive([])
- // 自动化生成的字典(可能为空)以及字段
- const formData= ref({
- 工单编号:'',
- 印件编号:'',
- 工序名称:'',
- 产品名称:'',
- sczl_bh1:'',
- sczl_bh2:'',
- sczl_bh3:'',
- sczl_bh4:'',
- sczl_bh5:'',
- sczl_bh6:'',
- sczl_bh7:'',
- sczl_bh8:'',
- sczl_bh9:'',
- sczl_bh10:'',
- sczl_name1:'',
- sczl_name2:'',
- sczl_name3:'',
- sczl_name4:'',
- sczl_name5:'',
- sczl_name6:'',
- sczl_name7:'',
- sczl_name8:'',
- sczl_name9:'',
- sczl_name10:'',
- })
- const formDatasData= reactive([])
- const formDatas = ref({
- code1:'',
- code2:'',
- code3:'',
- code4:'',
- code5:'',
- code6:'',
- code7:'',
- code8:'',
- code9:'',
- code10:'',
- name1:'',
- name2:'',
- name3:'',
- name4:'',
- name5L:'',
- name6:'',
- name7:'',
- name8:'',
- name9:'',
- name10:'',
- percentage1:'',
- percentage2:'',
- percentage3:'',
- percentage4:'',
- percentage5:'',
- percentage6:'',
- percentage7:'',
- percentage8:'',
- percentage9:'',
- percentage10:'',
- })
- //班组单击
- const BZhandle = (val, row) => {
- formDatas.value = {};
- for (const key in val) {
- if (val[key] === 0) {
- break;
- }
- const parts = val[key].split(/[\s()]+/);
- const code = parts[0];
- const name = parts[1];
- const percentage = parts[2];
- // 根据索引填充不同的字段
- const index = parseInt(key) + 1; // 索引从1开始
- formDatas.value['code' + index] = code;
- formDatas.value['name' + index] = name;
- formDatas.value['percentage' + index] = percentage;
- }
- };
- const chanliangVisible = ref(false)
- const formdata3=reactive([])
- function gytableDatadoubleClick(row, column, event) {
- console.log(row)
- MachineChanliang(row.UniqId)
-
- }
- const uid=ref()
- function getUid(row, column, event) {
- uid.value=row.UniqId
- console.log(uid)
- }
- //获取详细信息
- const MachineChanliang = async(value) => {
- const response = await MachineChanliangDetail({UniqId:value});
- if (response.code === 0) {
- console.log(response)
- chanliangVisible.value=true
- formdata3.value=response.data
- const pattern = /-(.*?)〖(.*?)$/;
- const matches = formdata3.value.gxmc.match(pattern);
- formdata3.value.gymc=matches[1]
- formdata3.value.sczl_jtbh=JTMC
- formdata3.value.rq=date
- console.log(formdata3.value.拉料['姓名'])
- }
- }
- const yjnoArr = ref([0])
- const gxmc = ref('')
- //工单编号回车事件
- const getCPMCsubmit = () => {
- if(formdata3.value.工单编号!=''){
- productionGdmc({gdbh:formdata3.value.工单编号}).then(response=>{
- if (response.code === 0) {
- formdata3.value.cpmc = response.data.Gd_cpmc
- yjnoArr.value = response.data.yjno;
-
- document.getElementById('产品名称').style.color = 'red';
- }else{
- formdata3.value.工单编号 = '';
- formdata3.value.cpmc = '';
- gxmc.value = '';
- document.getElementById('产品名称').style.color = 'black';
- }
- });
- }else{
- ElMessage({
- type: 'error',
- message: '请注意, 工单编号输入空置, 除非有特殊需要!'
- })
-
- gxmc.value = '';
- document.getElementById('产品名称').style.color = 'black';
- }
- }
- const yjnoHandleFocus = () =>{
- if(yjnoArr.value[0] == 0){
- formdata3.value.yjno = 1;
- }else{
- formdata3.value.yjno = yjnoArr.value[0];
- }
- }
-
- //印件号失去焦点事件
- const getYJMCsubmit = () => {
- if(formdata3.value.工单编号!='' && formdata3.value.yjno!=''){
- //获取印件名称
- productionYjmc({gdbh:formdata3.value.工单编号,yjno:formdata3.value.yjno}).then(response=>{
- if (response.code === 0) {
- formdata3.value.yjmc = response.data.yj_yjmc
- gxmc.value = response.data.gxmc
- formdata3.value.gxmc = gxmc.value.sczl_gxmc;
- setColorReadonly('印件名称')
-
- }else{
- ElMessage({
- type: 'error',
- message: '印件编号不存在, 将恢复默认值, 请仔细确认数据准确性!'
- })
- formdata3.value.yjno = yjnoArr.value[0];
- formdata3.value.yjmc = '';
- gxmc.value = '';
- }
- });
- }else{
- ElMessage({
- type: 'error',
- message: '印件编号不存在, 将恢复默认值, 请仔细确认数据准确性!'
- })
- formdata3.value.yjno = yjnoArr.value[0];
- formdata3.value.yjmc = '';
- gxmc.value = '';
- }
- }
- //工序名称获得焦点事件
- const gxmcHandleFocus = () =>{
- if(gxmc.value != ''){
- formdata3.value.gxmc = gxmc.value.sczl_gxmc;
- }else{
- formdata3.value.gxmc = '';
- }
- }
- //工序失去焦点事件
- const getGXsubmit = () => {
- setColorReadonly('工序号')
- setColorReadonly('工艺名称')
-
- //弹出选择
- productionGx({gdbh:formdata3.value.工单编号,yjno:formdata3.value.yjno}).then(response=>{
- if (response.code === 0) {
- selectData.splice(0, selectData.length, ...response.data)
- GXVisible.value=true
- // nextTick(()=>{
- // console.log(tableRef)
- // console.log(selectData)
- // tableRef.value.setCurrentRow(selectData[0]);
- // tableRef.value.focus();
- // });
- }
- })
- }
-
-
- //追加字体颜色和不可输入
- const setColorReadonly = (id) => {
- const newInput = document.getElementById(id)
- newInput.style.color = 'red';
- newInput.setAttribute('readonly', true);
- }
-
- //追加字体颜色和可输入
- const unsetColorReadonly = (id) => {
- const newInput = document.getElementById(id)
- newInput.style.color = 'black';
- newInput.removeAttribute('readonly');
- }
- //日报表修改弹窗确定
- const chanliangenterDialog = async () => {
- SubmitDailyProduction()
- }
- //日报表上传
- const SubmitDailyProduction = async () => {
-
- const restoredData = {
- // sczl_gdbh:formData3.value.工单编号,
- // sczl_yjno:formData3.value.yjno,
- // sczl_gxh:formData3.value.gxh,
- // sczl_gxmc: formData3.value.gxmc,
- // sczl_bzdh: formData3.value.sczl_bzdh,
- // sczl_bh1: formdata3.value.组员1['编号'],
- // sczl_bh2: formdata3.value.组员2['编号'],
- // sczl_bh3: formdata3.value.组员3['编号'],
- // sczl_bh4: formdata3.value.组员4['编号'],
- // sczl_bh5: formdata3.value.组员5['编号'],
- // sczl_bh6: formdata3.value.组员6['编号'],
- // sczl_bh7: formdata3.value.组员7['编号'],
- // sczl_bh8: formdata3.value.组员8['编号'],
- // sczl_bh9: formdata3.value.组员9['编号'],
- // sczl_bh10: formdata3.value.组员10['编号'],
- // sczl_bh98:formdata3.value.组员1['编号'],
- // sczl_rate1: formData3.value.sczl_rate1,
- // sczl_rate2: formData3.value.sczl_rate2,
- // sczl_rate3: formData3.value.sczl_rate3,
- // sczl_rate4: formData3.value.sczl_rate4,
- // sczl_rate5: formData3.value.sczl_rate5,
- // sczl_rate6: formData3.value.sczl_rate6,
- // sczl_rate7: formData3.value.sczl_rate7,
- // sczl_rate8: formData3.value.sczl_rate8,
- // sczl_rate9: formData3.value.sczl_rate9,
- // sczl_rate10: formData3.value.sczl_rate10,
- // sczl_jtbh: formData3.value.sczl_jtbh,
- sczl_rq: formdata3.value.日期,
- sczl_num: formdata3.value.sczl_num,
- // sczl_rq: formData3.value.sczl_rq,
- sczl_cl: formdata3.value.产量,
- sczl_zcfp: formdata3.value.制程废品,
- sczl_zccp: formdata3.value.制程次品,
- sczl_前工序废: formdata3.value.前工序废,
- sczl_来料少数: formdata3.value.来料异常,
- sczl_ls: formdata3.value.联数,
- sczl_ms: formdata3.value.色度数,
- sczl_装版总工时: formdata3.value.sczl_装版总工时,
- sczl_打样总工时: formdata3.value.打样总工时,
- sczl_设备运行工时: formdata3.value.sczl_设备运行工时,
- 码包: formdata3.value.码包,
- 辅电表: formdata3.value.辅电表,
- sczl_bh98: formdata3.value.拉料['编号'],
- UniqId: formdata3.value.UniqId,
- // bom: formData3.value.formattedArray
- }
- console.log(restoredData)
- // console.log(formData3.value.formattedArray)
- const response = await chanliangEdit(restoredData);
- console.log(response)
- if (response.code === 0) {
- ElMessage({
- type: 'success',
- message: '成功'
- })
- FacilitychanLiang()
- FacilityDetail()
- chanliangVisible.value=false
- }
- }
- const ent1 = (event) => {
- const inputs = document.getElementsByTagName('input');
- const currentIndex = Array.from(inputs).indexOf(event.target);
-
- if (event.keyCode === 13 || event.keyCode === 40) { // Enter 或向下箭头
- for (let i = currentIndex + 1; i < inputs.length; i++) {
- if (!inputs[i].readOnly) {
- nextTick(()=>{
- inputs[i].focus();
- inputs[i].select();
- })
- break;
- }
- }
- } else if (event.keyCode === 38) { // 向上箭头
- for (let i = currentIndex - 1; i >= 0; i--) {
- if (!inputs[i].readOnly) {
- nextTick(()=>{
- inputs[i].focus();
- inputs[i].select();
- })
- break;
- }
- }
- } else if (event.keyCode === 8) { // 删除箭头
- if (event.target.selectionStart === 0) {
- for (let i = currentIndex - 1; i >= 0; i--) {
- if (!inputs[i].readOnly) {
- nextTick(()=>{
- inputs[i].focus();
- inputs[i].setSelectionRange(0, 0);
- })
- break;
- }
- }
- }
- } else if (event.keyCode === 37) { // 向左箭头
- if (event.target.selectionStart === 0) {
- for (let i = currentIndex - 1; i >= 0; i--) {
- if (!inputs[i].readOnly) {
- nextTick(()=>{
- inputs[i].focus();
- inputs[i].select();
- })
- break;
- }
- }
- }
- } else if (event.keyCode === 39) { // 向右箭头
- if (event.target.selectionStart === event.target.value.length) {
- for (let i = currentIndex + 1; i < inputs.length; i++) {
- if (!inputs[i].readOnly) {
- nextTick(()=>{
- inputs[i].focus();
- inputs[i].select();
- })
- break;
- }
- }
- }
- }
- }
- // ============== 表格控制部分结束 ===============
- // 获取需要的字典 可能为空 按需保留
- const setOptions = async () =>{
- }
- // 获取需要的字典 可能为空 按需保留
- setOptions()
- // 多选数据
- const multipleSelection = ref([])
- // 多选
- const handleSelectionChange = (val) => {
- multipleSelection.value = val
- console.log(val)
- }
- // 删除行
- const deleteRow = (row) => {
- ElMessageBox.confirm('确定要删除吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- deleteCompanyFunc(row)
- })
- }
- // 批量删除控制标记
- const deleteVisible = ref(false)
- // 多选删除
- const onDelete = async() => {
- const ids = []
- if (multipleSelection.value.length === 0) {
- ElMessage({
- type: 'warning',
- message: '请选择要删除的数据'
- })
- return
- }
- multipleSelection.value &&
- multipleSelection.value.map(item => {
- ids.push(item.ID)
- })
- const res = await deleteCompanyByIds({ ids })
- if (res.code === 0) {
- ElMessage({
- type: 'success',
- message: '删除成功'
- })
- if (tableData.value.length === ids.length && page.value > 1) {
- page.value--
- }
- deleteVisible.value = false
- getTableData()
- }
- }
- // 行为控制标记(弹窗内部需要增还是改)
- const type = ref('')
- // 更新行
- const updateCompanyFunc = async(row) => {
- const res = await findCompany({ ID: row.ID })
- type.value = 'update'
- if (res.code === 0) {
- formData.value = res.data.recompany
- dialogFormVisible.value = true
- }
- }
- const cpcode=ref('')
- const finishedcode=ref()
- const yjupdateCompanyFunc = async(row) => {
- const res = await facilityProcedure({ Gd_gdbh: row['工单编号|质量信息'].substring(0, 7) })
- console.log(res)
- if (res.code === 0) {
- selectData.value = res.data
- }
- console.log(row)
- cpcode.value=row.产品代号
- console.log(cpcode)
- // console.log(row.产品代号)
- finishedcode.value=row.产品代号
- console.log(finishedcode.value)
- }
- // 删除行
- const deleteCompanyFunc = async (row) => {
- const res = await deleteCompany({ ID: row.ID })
- if (res.code === 0) {
- ElMessage({
- type: 'success',
- message: '删除成功'
- })
- if (tableData.value.length === 1 && page.value > 1) {
- page.value--
- }
- getTableData()
- }
- }
- // 弹窗控制标记
- const dialogFormVisible = ref(false)
- const dianjianVisible = ref(false)
- const yinbanVisible = ref(false)
- // 查看详情控制标记
- const detailShow = ref(false)
- const bzData = reactive([])
- // 打开详情弹窗
- const openDetailShow = () => {
- detailShow.value = true
- }
- // 打开详情
- const getDetails = async (row) => {
- // 打开弹窗
- const res = await findCompany({ ID: row.ID })
- if (res.code === 0) {
- formData.value = res.data.recompany
- openDetailShow()
- }
- }
- // 关闭详情弹窗
- const closeDetailShow = () => {
- detailShow.value = false
- }
- // 打开弹窗
- const openDialog = () => {
- // type.value = 'create'
- console.log('222')
- FacilityInspect()
- FacilitychanLiang()
- dialogFormVisible.value = true
- }
- let drzcData=[]
- let columnNames=[]
- //当日制程检验记录
- const FacilityInspect = async () => {
- const response = await facilityInspect({machine:JTMC,date:date});
- console.log(response)
- if(response.code==0){
- // 提取 inspectiontime 作为列名
- // Extract inspectiontime as columnNames
- columnNames = response.data.InspectionTime;
- // Populate drzcData with row data
- for (const key in response.data.row[0]) {
- if (key !== 'InspectionTime') {
- const item = response.data.row[0][key];
- const rowData = {
- '工单编号': item['工单编号'],
- '印件号': item['印件号'],
- '工序名称': item['工序名称'],
- '检验项目': item['检验项目']
- };
- // Initialize time columns with '—'
- columnNames.forEach(time => {
- rowData[time] = '';
- });
- // Split inspectresult and fill the corresponding time columns
- const results = item['time'].split(',');
- results.forEach(result => {
- if (columnNames.includes(result)) {
- rowData[result] = '√';
- }else{rowData[result] = ''}
- });
- // Add the row data to drzcData
- drzcData.push(rowData);
- }
- }
- drzcDatas.value=drzcData
- console.log(drzcData);
- }
- }
- const FacilitychanLiang = async () => {
- const response = await facilitychanLiang({machine:JTMC,date:date});
- if(response.code==0){
- delete response.data['totalA']
- delete response.data['totalB']
- gytableData.value=Object.values(response.data)
- }
- }
- // 关闭弹窗
- const closeDialog = () => {
- dialogFormVisible.value = false
- chanliangVisible.value=false
- formData.value = {
- address: '',
- image: '',
- name: '',
- }
- }
- // 弹窗确定
- const enterDialog = async () => {
- elFormRef.value?.validate( async (valid) => {
- if (!valid) return
- let res
- switch (type.value) {
- case 'create':
- res = await createCompany(formData.value)
- break
- case 'update':
- res = await updateCompany(formData.value)
- break
- default:
- res = await createCompany(formData.value)
- break
- }
- if (res.code === 0) {
- ElMessage({
- type: 'success',
- message: '创建/更改成功'
- })
- closeDialog()
- getTableData()
- }
- })
- }
- </script>
- <style>
- /* .button-container {
- display: flex;
- flex-wrap: wrap;
- } */
-
- .button-container {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start; /* Align buttons from left to right */
- }
-
- .custom-button {
- display: flex;
- flex-direction: column;
- align-items: center;
- text-align: center; /* Center the text horizontally */
- flex: 0 0 150px; /* Set the width of each button */
- height: 170px; /* Allow the height to adjust based on content */
- margin: 7px; /* Set spacing between buttons */
- }
-
- .custom-button img {
- max-width: 100%; /* Ensure the image doesn't exceed the button width */
- }
- .JKWTree-container {
- display: flex;
- }
- .JKWTree-tree {
- width: 300px;
- background-color: #fff;
- padding: 10px;
- margin-right: 20px;
- }
- .JKWTree-tree h3 {
- font-size: 15px;
- font-weight: 700;
- margin: 10px 0;
- }
- .JKWTree-content {
- flex: 1;
- }
- /* 选中某行时的背景色*/
- .el-table__body tr.current-row>td {
- background: #ff80ff !important;
- }
- .groupbox
- {margin:10px;
- width:500px;
- height:500px;
- border:thin solid black;
- padding:10px}
- .grouptitle
- {display:block;
- margin-top:-24px;
- margin-left:20px;
- width:150px;
- text-align:center;
- background-color:white}
- </style>
|