| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281 |
- <template>
- <el-container>
- <el-main>
- <form method="POST" :model="workData" action="{:U('NewBarCodeNew/add_bach')}" style="margin-bottom:50px;" id="form">
- <input name="userid" id="userid" value="{$session_config[uid]}" type="hidden">
- <fieldset class="newlabel">
- <legend style="width:auto;margin-left:20px;">标记参数</legend>
- <table width="100%" border="1">
- <caption>标签序列配置</caption>
- <tr>
- <th style="width:40%;"><span>字段</span> </th>
- <th><span>值</span></th>
- </tr>
- <tr >
- <td><span>生产批次号</span></td>
- <td><input name="Gd_gdbh" type="text" v-model="workData.Gd_gdbh" @input="propertyChange" class="required" style="width: 380px;height: 30px;"></td>
- </tr>
- <tr v-if="dan">
- <td><span>纸张名称</span></td>
- <td>
- <select style="width: 380px;height: 30px;">
- <option v-for="option in selectedPaper">
- {{ option.bom_物料名称 }}
- </option>
- </select>
- </td>
- </tr>
- <tr v-if="shuang">
- <td><span>纸张名称</span></td>
- <td>
- <select @change="selectpPaper" style="width: 380px;height: 30px;">
- <option v-for="option in selectedPaper" :value="option.bom_计划用量">
- {{ option.bom_物料名称 }}
- </option>
- </select>
- </td>
- </tr>
- <tr >
- <td><span style="color: red">码包</span></td>
- <td><input name="mabao" type="text" v-model="workData.mabao" style="width: 380px;height: 30px;" placeholder="利群(新版)专用,不是利群(新版)不要填"></td>
- </tr>
- <tr v-if="shuang" class="peijian">
- <td><span style="color: red">配件名称</span></td>
- <td>
- <select name="peijian" @change="selectPeijian" style="width: 380px;height: 30px; color: red" >
- <option v-for="option in selectedPeijian" :value="option.id">
- {{ option.peijian_name }}
- </option>
- </select>
- </td>
- </tr>
- <tr>
- <td><span>单个流程包含的件数</span></td>
- <td><input name="tldx" type="text" v-model="workData.tldx" value="3000" class="required" style="width: 380px;height: 30px;"></td>
- </tr>
- <tr>
- <td><span>总投纸数</span></td>
- <td>
- <input name="num" v-model="workData.num" value="" style="width: 380px;height: 30px;">
- </td>
- </tr>
- <tr>
- <td><span>总流程</span></td>
- <td><input name="liucheng_total" type="number" v-model="workData.liucheng_total" value="" class="required" style="width: 380px;height: 30px;"></td>
- </tr>
- <tr>
- <td><span>版本号标识</span></td>
- <td><input name="version" type="text" v-model="workData.version" class="required" style="width: 380px;height: 30px;"></td>
- </tr>
- <tr>
- <td><span>起始流程号</span></td>
- <td><input name="start_liucheng" type="text" v-model="workData.start_liucheng" value="1" class="required" style="width: 380px;height: 30px;"></td>
- </tr>
- <tr>
- <td><span>本次打印流程数量</span></td>
- <td><input name="liucheng_num" type="text" v-model="workData.liucheng_num" value="1" class="required" style="width: 380px;height: 30px;"></td>
- </tr>
- <tr>
- <td>
- <span>备注</span></td>
- <td>
- <input name="remark" type="text" v-model="workData.remark" style="width: 380px;height: 30px;"></td>
- </tr>
- <tr>
- <td>
- <span>左右偏移量</span></td>
- <td>
- <input name="x_offset" type="number" v-model="workData.x_offset" value="0" style="width: 380px;height: 30px;"></td>
- </tr>
- <tr>
- <td>
- <span>上下偏移量</span></td>
- <td>
- <input name="y_offset" type="number" v-model="workData.y_offset" value="0" style="width: 380px;height: 30px;"></td>
- </tr>
- </table>
- </fieldset>
- <div id="liucheng">
- <fieldset class="newlabel">
- <table width="100%" border="1" class="new_craft" id="new_craft">
- <caption>工艺</caption>
- <tr>
- <td width="40%">上次<span style="color: red">{{department}}</span>工艺更新时间:<span style="color: red">{{update}}</span></td>
- <td>
- <input type="button" style="margin-left: 1px;" value="增加工艺" @click="addInput"/>
- </td>
- </tr>
- <tr v-for="(item,index) in gyData">
- <td></td>
- <td><input type="text" v-model="item.gy"></td>
- </tr>
- </table>
- </fieldset>
- </div>
- <div style="position:fixed;bottom:0;width:100%;height:50px;line-height:50px;">
- <button type='button' onsubmit='return false' class="submitbtn" @click="sendClick" id="send">打印</button>
- </div>
- </form>
- </el-main>
- </el-container>
- </template>
- <script setup>
- import {
- getDocumentData,
- getDocumentHistory,
- saveDocumentData,
- getDocumentInfo
- } from '@/api/mes/job'
- import { getDictFunc, formatDate, formatBoolean, filterDict, ReturnArrImg, onDownloadFile } from '@/utils/format'
- import { ElMessage, ElMessageBox } from 'element-plus'
- import { ref, reactive } from 'vue'
- import {hiprint} from "vue-plugin-hiprint";
- const workData = ref({
- Gd_gdbh:'',
- maobao:'',
- mabao:'',
- peijian:'',
- tldx:3000,
- num:'',
- liucheng_total:'',
- version:'',
- start_liucheng:1,
- liucheng_num:1,
- remark:'',
- x_offset:0,
- y_offset:0
- })
- const department = ref()
- const dan = ref(true)
- const shuang = ref(false)
- const update = ref()
- const data = ref()
- const peijian = ref(0)
- const gyData = ref([])
- const selectedPaper = ref([])
- const selectedPeijian = ref([])
- const datas = ref([])
- const propertyChange = () => {
- if(workData.value.Gd_gdbh.length!==7){
- shuang.value=false
- selectedPaper.value=[]
- selectedPeijian.value=[]
- gyData.value=[]
- workData.value.tldx=3000
- workData.value.start_liucheng=1
- workData.value.liucheng_num=1
- workData.value.x_offset=0
- workData.value.y_offset=0
- department.value=null
- department.value=null
- return false;
- }else{
- const getDocument = async() => {
- const getDocumentDatas = await getDocumentData({order:workData.value.Gd_gdbh})
- if (getDocumentDatas.code === 0) {
- workData.value.version=getDocumentDatas.data.paper[0].产品版本号;
- workData.value.peijian=getDocumentDatas.data.paper;
- console.log(selectedPaper.value)
- if(getDocumentDatas.data.num>1){
- dan.value=false
- shuang.value=true
- console.log(getDocumentDatas.data.paper.length)
- selectedPaper.value=getDocumentDatas.data.paper
- selectedPeijian.value=getDocumentDatas.data.peijian
- }else{
- dan.value=true
- shuang.value=false
- selectedPaper.value=getDocumentDatas.data.paper
- workData.value.product=getDocumentDatas.data.paper[0].bom_物料名称;
- }
- workData.value.num=getDocumentDatas.data.paper[0].bom_计划用量;
- if(getDocumentDatas.data.peijian){
- peijian.value=getDocumentDatas.data.peijian[0]['id']
- const getHistory = async() => {
- const getDocumentHistorys = await getDocumentHistory({
- order:workData.value.Gd_gdbh,
- peijian:getDocumentDatas.data.peijian[0]['id']})
- if (getDocumentHistorys.code === 0) {
- department.value=getDocumentHistorys.data.department
- update.value=getDocumentHistorys.data.update
- gyData.value=getDocumentHistorys.data.data.map((item)=>({
- gy:item
- }))
- }
- }
- getHistory()
- }
- }
- }
- getDocument()
- }
- }
- const addInput = () => {
- gyData.value.push({gy:''})
- }
- const sendClick = () => {
- saveDocument()
- }
- const saveDocument = async() => {
- datas.value=[]
- gyData.value.map((item)=>{
- if(item.gy==''){
- }else{
- datas.value.push(item.gy)
- }
- })
- // datas.value = gyData.value.map((item)=>(item.gy))
- data.value= datas.value.join(",")
- const saveDocumentDatas = await saveDocumentData({order:workData.value.Gd_gdbh,data:`${data.value},`,peijian:peijian.value})
- if (saveDocumentDatas.code === 0) {
- getDocument()
- }
- }
- const getDocument = async() => {
- console.log(111111)
- const getDocumentInfos = await getDocumentInfo({
- order:workData.value.Gd_gdbh,
- mabao:workData.value.mabao,
- version:workData.value.version,
- start_liucheng:workData.value.start_liucheng,
- tldx:workData.value.tldx,
- remark:workData.value.remark,
- string:data.value,
- num:workData.value.num
- })
- if (getDocumentInfos.code === 0) {
- const data = getDocumentInfos.data
- for (let i = workData.value.start_liucheng; i <= workData.value.liucheng_total; i++) {
- const printdata = {
- "scpch": getDocumentInfos.data[0].Gd_gdbh,
- "xsddh": getDocumentInfos.data[0].销售订单号.split(' ')[1],
- "mbh": getDocumentInfos.data[0].mabao,
- "lcdh": `${workData.value.liucheng_total}-${i}`,
- "qrcode": `${getDocumentInfos.data[0].Gd_gdbh}-${workData.value.liucheng_total}-${i}`,
- "gdsm": getDocumentInfos.data[0].technique_sequence,
- "cpmc": getDocumentInfos.data[0].Gd_cpmc,
- "ztzs": workData.value.num,
- // "gjh": getDocumentInfos.data[0].version,
- 'table': getDocumentInfos.data.gy_data.map(item=>({
- gxmc:item
- }))
- }
- hiprintTemplate.print2(printdata);
- // hiprintTemplate.toPdf(printdata,'流程单');
- }
- // const printdata = {
- // "scpch": "123456",
- // "xsddh": "123456",
- // "mbh": "123456",
- // "lcdh": "123456",
- // "gdsm": "123456",
- // "cpmc": "111",
- // "ztzs": "222",
- // "gjh": "333",
- // 'table': getDocumentInfos.data.gy_data.map(item=>({
- // gxmc:item
- // }))
- // }
- // hiprintTemplate.print(printdata);
- console.log(getDocumentInfos.data)
- }
- }
- const selectpPaper = (event) => {
- workData.value.num=event.target.value
- }
- const selectPeijian = async(event) => {
- peijian.value=event.target.value
- const getDocumentHistoryss = await getDocumentHistory({
- order:workData.value.Gd_gdbh,
- peijian:event.target.value})
- console.log(getDocumentHistoryss)
- if (getDocumentHistoryss.code === 0) {
- department.value=getDocumentHistoryss.data.department
- update.value=getDocumentHistoryss.data.update
- if(getDocumentHistoryss.data.data[0]){
- gyData.value=getDocumentHistoryss.data.data.map((item)=>({
- gy:item
- }))
- }else{
- gyData.value=[]
- }
- }
- }
- //在使用中的不带边框的模板
- const jsondata1= {
- "panels": [
- {
- "index": 0,
- "name": 1,
- "paperType": "A4",
- "height": 297,
- "width": 210,
- "paperHeader": 192,
- "paperFooter": 822,
- "printElements": [
- {
- "options": {
- "left": 519,
- "top": 12,
- "height": 65,
- "width": 65,
- "textType": "qrcode",
- "title": "qrcode",
- "right": 584.75,
- "bottom": 77,
- "vCenter": 552.25,
- "hCenter": 44.5,
- "field": "qrcode",
- "coordinateSync": false,
- "widthHeightSync": false,
- "qrCodeLevel": 0
- },
- "printElementType": {
- "title": "qrcode",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 241.5,
- "top": 27,
- "height": 20,
- "width": 103,
- "title": "流程单",
- "right": 344.5,
- "bottom": 47,
- "vCenter": 293,
- "hCenter": 37,
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 21.75,
- "fontWeight": "900",
- "letterSpacing": 12,
- "textAlign": "center",
- "qrCodeLevel": 0,
- "field": "lcd1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 31,
- "top": 40,
- "height": 9.75,
- "width": 133,
- "title": "文本",
- "right": 159.5,
- "bottom": 42.75,
- "vCenter": 100,
- "hCenter": 37.875,
- "coordinateSync": false,
- "widthHeightSync": false,
- "qrCodeLevel": 0,
- "field": "qr",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 61,
- "height": 36,
- "width": 58,
- "title": "生产批次号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "scpch1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 71,
- "top": 61,
- "height": 36,
- "width": 100,
- "title": "文本",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 127,
- "bottom": 96.75,
- "vCenter": 98,
- "hCenter": 78.75,
- "field": "scpch",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 97,
- "height": 36,
- "width": 58,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 68.9921875,
- "bottom": 133.74609375,
- "vCenter": 39.9921875,
- "hCenter": 115.74609375,
- "draggable": false,
- "field": "xsddh1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 71,
- "top": 97,
- "height": 36,
- "width": 100,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 127.24609375,
- "bottom": 130.74609375,
- "vCenter": 98.24609375,
- "hCenter": 112.74609375,
- "field": "xsddh",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 172,
- "top": 97,
- "height": 36,
- "width": 35,
- "title": "码包号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 206.5,
- "bottom": 133.5,
- "vCenter": 188,
- "hCenter": 115.5,
- "draggable": false,
- "field": "mbh1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 208,
- "top": 97,
- "height": 36,
- "width": 212,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 306.49609375,
- "bottom": 130.74609375,
- "vCenter": 256.49609375,
- "hCenter": 112.74609375,
- "field": "mbh",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 422,
- "top": 97,
- "height": 36,
- "width": 32,
- "title": "流程单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 456.25,
- "bottom": 134.25,
- "vCenter": 437.75,
- "hCenter": 116.25,
- "draggable": false,
- "field": "lcdh1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 455,
- "top": 97,
- "height": 36,
- "width": 130,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 582.5,
- "bottom": 133.5,
- "vCenter": 518.5,
- "hCenter": 115.5,
- "field": "lcdh",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 138,
- "height": 26,
- "width": 58,
- "title": "工单",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "bottom",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 71.5,
- "bottom": 163,
- "vCenter": 42.5,
- "hCenter": 150.5,
- "field": "gd1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 71,
- "top": 138,
- "height": 52,
- "width": 513,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 171.25,
- "bottom": 188.75,
- "vCenter": 121.25,
- "hCenter": 163.75,
- "field": "gdsm",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 164,
- "height": 26,
- "width": 58,
- "title": "说明",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 70.75,
- "bottom": 188.75,
- "vCenter": 41.75,
- "hCenter": 175.75,
- "field": "sm1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 196,
- "height": 28,
- "width": 76,
- "title": "产品名称",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 70.24609375,
- "bottom": 231.99609375,
- "vCenter": 41.24609375,
- "hCenter": 213.99609375,
- "draggable": false,
- "field": "cpmc1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 89,
- "top": 196,
- "height": 28,
- "width": 203,
- "title": "文本",
- "coordinateSync": false,
- "widthHeightSync": false,
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "right": 171.5,
- "bottom": 224.5,
- "vCenter": 130,
- "hCenter": 210.5,
- "field": "cpmc",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 291,
- "top": 196,
- "height": 28,
- "width": 59,
- "title": "总投纸数",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 349.25,
- "bottom": 224.5,
- "vCenter": 319.75,
- "hCenter": 210.5,
- "draggable": false,
- "field": "ztzs1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 350,
- "top": 196,
- "height": 28,
- "width": 90,
- "title": "产品名称",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 432.5,
- "bottom": 223.75,
- "vCenter": 391,
- "hCenter": 209.75,
- "field": "ztzs",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 440,
- "top": 196,
- "height": 28,
- "width": 50,
- "title": "规矩号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 497.24609375,
- "bottom": 223.24609375,
- "vCenter": 455.74609375,
- "hCenter": 209.24609375,
- "draggable": false,
- "field": "gjh1",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 490,
- "top": 196,
- "height": 28,
- "width": 94,
- "title": "产品名称",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 571.25,
- "bottom": 224.5,
- "vCenter": 529.75,
- "hCenter": 210.5,
- "field": "gjh",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 12,
- "top": 223.5,
- "height": 378,
- "width": 572,
- "autoCompletion": true,
- "right": 584.75,
- "bottom": 601.5,
- "vCenter": 298.75,
- "hCenter": 412.5,
- "field": "table",
- "coordinateSync": false,
- "widthHeightSync": false,
- "maxRows": 15,
- "textAlign": "center",
- "tableHeaderRowHeight": 22.5,
- "tableBodyRowHeight": 23.25,
- "tableBorder": "noBorder",
- "tableHeaderBorder": "noBorder",
- "tableHeaderCellBorder": "noBorder",
- "tableHeaderBackground": "#ffffff",
- "tableBodyRowBorder": "noBorder",
- "tableBodyCellBorder": "noBorder",
- "tableFooterBorder": "noBorder",
- "tableFooterCellBorder": "noBorder",
- "columns": [
- [
- {
- "width": 75.564678549134,
- "titleSync": false,
- "field": "gxmc",
- "checked": true,
- "columnId": "gxmc",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 28.65374282582224,
- "titleSync": false,
- "field": "rq",
- "checked": true,
- "columnId": "rq",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 30.691055236427328,
- "titleSync": false,
- "field": "sj",
- "checked": true,
- "columnId": "sj",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 46.073534173378626,
- "titleSync": false,
- "field": "hgps",
- "checked": true,
- "columnId": "hgps",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 45.90803945028349,
- "titleSync": false,
- "field": "cps",
- "checked": true,
- "columnId": "cps",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 39.283655266049266,
- "titleSync": false,
- "field": "fps",
- "checked": true,
- "columnId": "fps",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 34.03023853973766,
- "titleSync": false,
- "field": "bc",
- "checked": true,
- "columnId": "bc",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 32.58935487917185,
- "titleSync": false,
- "field": "jt",
- "checked": true,
- "columnId": "jt",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 42.96988913874766,
- "titleSync": false,
- "field": "czg",
- "checked": true,
- "columnId": "czg",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 102.76126350532134,
- "titleSync": false,
- "field": "yczlczxx",
- "checked": true,
- "columnId": "yczlczxx",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 39.91518563922935,
- "titleSync": false,
- "field": "lzg",
- "checked": true,
- "columnId": "lzg",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 53.559362796697215,
- "titleSync": false,
- "field": "fptj",
- "checked": true,
- "columnId": "fptj",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 85.25,
- "checked": false,
- "fixed": false,
- "rowspan": 1,
- "colspan": 1
- },
- {
- "width": 85.25,
- "checked": false,
- "fixed": false,
- "rowspan": 1,
- "colspan": 1
- }
- ]
- ]
- },
- "printElementType": {
- "title": "表格",
- "type": "table",
- "editable": true,
- "columnDisplayEditable": true,
- "columnDisplayIndexEditable": true,
- "columnTitleEditable": true,
- "columnResizable": true,
- "columnAlignEditable": true,
- "isEnableEditField": true,
- "isEnableContextMenu": true,
- "isEnableInsertRow": true,
- "isEnableDeleteRow": true,
- "isEnableInsertColumn": true,
- "isEnableDeleteColumn": true,
- "isEnableMergeCell": true
- }
- },
- // {
- // "options": {
- // "left": 13,
- // "top": 224,
- // "height": 9,
- // "width": 571,
- // "borderWidth": "0.75",
- // "draggable": false,
- // "coordinateSync": false,
- // "widthHeightSync": false
- // },
- // "printElementType": {
- // "title": "横线",
- // "type": "hline"
- // }
- // },
- {
- "options": {
- "left": 13,
- "top": 612,
- "height": 17,
- "width": 572,
- "title": "成品检验记录",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 585.25,
- "bottom": 629,
- "vCenter": 299.75,
- "hCenter": 620.5,
- "draggable": false,
- "field": "cpjyjl",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 121,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "时间",
- "right": 156.5,
- "bottom": 645.5,
- "vCenter": 139,
- "hCenter": 637,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 629,
- "height": 17,
- "width": 52,
- "title": "合格品数",
- "right": 185.75,
- "bottom": 645.5,
- "vCenter": 169.75,
- "hCenter": 637,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 208,
- "top": 629,
- "height": 17,
- "width": 38,
- "title": "废品数",
- "right": 243.5,
- "bottom": 645.5,
- "vCenter": 224.5,
- "hCenter": 637,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 246,
- "top": 629,
- "height": 17,
- "width": 101,
- "title": "AB类废品及倒查",
- "right": 276.5,
- "bottom": 646.25,
- "vCenter": 260.5,
- "hCenter": 637.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 347,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "工序",
- "right": 382.25,
- "bottom": 643.25,
- "vCenter": 364.75,
- "hCenter": 634.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 382,
- "top": 629,
- "height": 17,
- "width": 45,
- "title": "检验员",
- "right": 423,
- "bottom": 644,
- "vCenter": 400.5,
- "hCenter": 635.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 462,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "时间",
- "right": 362,
- "bottom": 648.5,
- "vCenter": 346,
- "hCenter": 640,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 497,
- "top": 629,
- "height": 17,
- "width": 52,
- "title": "合格品数",
- "right": 544.75,
- "bottom": 647,
- "vCenter": 518.75,
- "hCenter": 638.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 549,
- "top": 629,
- "height": 17,
- "width": 36,
- "title": "废品数",
- "right": 584,
- "bottom": 644.75,
- "vCenter": 565,
- "hCenter": 636.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 646,
- "height": 17,
- "width": 35,
- "title": "机检",
- "right": 45.5,
- "bottom": 661.25,
- "vCenter": 29.5,
- "hCenter": 652.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 663,
- "height": 17,
- "width": 572,
- "title": "机台废次品信息记录",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 139.75,
- "bottom": 677.75,
- "vCenter": 76.25,
- "hCenter": 669.25,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 680,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 67.5,
- "bottom": 693.25,
- "vCenter": 40.5,
- "hCenter": 685.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 67,
- "top": 680,
- "height": 128,
- "width": 89,
- "title": "废次品留样黏贴处",
- "right": 157.25,
- "bottom": 693.5,
- "vCenter": 112.75,
- "hCenter": 686.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 712,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 67.5,
- "bottom": 728.5,
- "vCenter": 40.5,
- "hCenter": 720.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 744,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 65.25,
- "bottom": 761.5,
- "vCenter": 38.25,
- "hCenter": 753.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 776,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 65.25,
- "bottom": 792.25,
- "vCenter": 38.25,
- "hCenter": 784.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "field": "gx",
- "hideTitle": true
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- }
- ],
- "paperNumberLeft": 565.5,
- "paperNumberTop": 819,
- "paperNumberDisabled": true,
- "paperNumberContinue": true,
- "backgroundColor": "#f1ebff",
- "overPrintOptions": {
- "content": "",
- "opacity": 0.7,
- "type": 1
- },
- "watermarkOptions": {
- "content": "",
- "fillStyle": "rgba(255, 255, 255, 1)",
- "fontSize": "36px",
- "rotate": 25,
- "width": 413,
- "height": 310,
- "timestamp": false,
- "format": "YYYY-MM-DD HH:mm"
- }
- }
- ]
- }
- //带边框的模板
- const jsondata = {
- "panels": [
- {
- "index": 0,
- "name": 1,
- "paperType": "A4",
- "height": 297,
- "width": 210,
- "paperHeader": 192,
- "paperFooter": 822,
- "printElements": [
- {
- "options": {
- "left": 519,
- "top": 12,
- "height": 65,
- "width": 65,
- "textType": "qrcode",
- "title": "qrcode",
- "right": 584.75,
- "bottom": 77,
- "vCenter": 552.25,
- "hCenter": 44.5,
- "field": "qrcode",
- "coordinateSync": false,
- "widthHeightSync": false,
- "qrCodeLevel": 0
- },
- "printElementType": {
- "title": "qrcode",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 241.5,
- "top": 27,
- "height": 20,
- "width": 103,
- "title": "流程单",
- "right": 344.5,
- "bottom": 47,
- "vCenter": 293,
- "hCenter": 37,
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 21.75,
- "fontWeight": "900",
- "letterSpacing": 12,
- "textAlign": "center",
- "qrCodeLevel": 0
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 31,
- "top": 40,
- "height": 9.75,
- "width": 133,
- "title": "表式号:QR/CP03.04.005-2021",
- "right": 159.5,
- "bottom": 42.75,
- "vCenter": 100,
- "hCenter": 37.875,
- "coordinateSync": false,
- "widthHeightSync": false,
- "qrCodeLevel": 0
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 61,
- "height": 36,
- "width": 58,
- "title": "生产批次号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 71,
- "top": 61,
- "height": 36,
- "width": 100,
- "title": "",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 127,
- "bottom": 96.75,
- "vCenter": 98,
- "hCenter": 78.75,
- "field": "scpch",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 97,
- "height": 36,
- "width": 58,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 68.9921875,
- "bottom": 133.74609375,
- "vCenter": 39.9921875,
- "hCenter": 115.74609375,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 71,
- "top": 97,
- "height": 36,
- "width": 100,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 127.24609375,
- "bottom": 130.74609375,
- "vCenter": 98.24609375,
- "hCenter": 112.74609375,
- "field": "xsddh",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 172,
- "top": 97,
- "height": 36,
- "width": 35,
- "title": "码包号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 206.5,
- "bottom": 133.5,
- "vCenter": 188,
- "hCenter": 115.5,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 208,
- "top": 97,
- "height": 36,
- "width": 212,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 306.49609375,
- "bottom": 130.74609375,
- "vCenter": 256.49609375,
- "hCenter": 112.74609375,
- "field": "mbh",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 422,
- "top": 97,
- "height": 36,
- "width": 32,
- "title": "流程单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "qrCodeLevel": 0,
- "right": 456.25,
- "bottom": 134.25,
- "vCenter": 437.75,
- "hCenter": 116.25,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 455,
- "top": 97,
- "height": 36,
- "width": 130,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 582.5,
- "bottom": 133.5,
- "vCenter": 518.5,
- "hCenter": 115.5,
- "field": "lcdh",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 138,
- "height": 26,
- "width": 58,
- "title": "工单",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "bottom",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "qrCodeLevel": 0,
- "right": 71.5,
- "bottom": 163,
- "vCenter": 42.5,
- "hCenter": 150.5
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 71,
- "top": 138,
- "height": 52,
- "width": 513,
- "title": "销售订单号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 171.25,
- "bottom": 188.75,
- "vCenter": 121.25,
- "hCenter": 163.75,
- "field": "gdsm",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 164,
- "height": 26,
- "width": 58,
- "title": "说明",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 70.75,
- "bottom": 188.75,
- "vCenter": 41.75,
- "hCenter": 175.75
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 196,
- "height": 28,
- "width": 76,
- "title": "产品名称",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 70.24609375,
- "bottom": 231.99609375,
- "vCenter": 41.24609375,
- "hCenter": 213.99609375,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 196,
- "height": 9,
- "width": 571,
- "borderWidth": "0.75",
- "draggable": false,
- "coordinateSync": false,
- "widthHeightSync": false
- },
- "printElementType": {
- "title": "横线",
- "type": "hline"
- }
- },
- {
- "options": {
- "left": 89,
- "top": 196,
- "height": 28,
- "width": 203,
- "title": "文本",
- "coordinateSync": false,
- "widthHeightSync": false,
- "textContentVerticalAlign": "middle",
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 171.5,
- "bottom": 224.5,
- "vCenter": 130,
- "hCenter": 210.5,
- "field": "cpmc",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 291,
- "top": 196,
- "height": 28,
- "width": 59,
- "title": "总投纸数",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 349.25,
- "bottom": 224.5,
- "vCenter": 319.75,
- "hCenter": 210.5,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 350,
- "top": 196,
- "height": 28,
- "width": 90,
- "title": "产品名称",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 432.5,
- "bottom": 223.75,
- "vCenter": 391,
- "hCenter": 209.75,
- "field": "ztzs",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 440,
- "top": 196,
- "height": 28,
- "width": 50,
- "title": "规矩号",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 497.24609375,
- "bottom": 223.24609375,
- "vCenter": 455.74609375,
- "hCenter": 209.24609375,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 490,
- "top": 196,
- "height": 28,
- "width": 94,
- "title": "产品名称",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 571.25,
- "bottom": 224.5,
- "vCenter": 529.75,
- "hCenter": 210.5,
- "field": "gjh",
- "hideTitle": true,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 224,
- "height": 9,
- "width": 571,
- "borderWidth": "0.75",
- "draggable": false,
- "coordinateSync": false,
- "widthHeightSync": false
- },
- "printElementType": {
- "title": "横线",
- "type": "hline"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 224,
- "height": 378,
- "width": 572,
- "autoCompletion": true,
- "right": 565.75,
- "bottom": 261,
- "vCenter": 290.75,
- "hCenter": 243,
- "field": "table",
- "coordinateSync": false,
- "widthHeightSync": false,
- "maxRows": 15,
- "textAlign": "center",
- "tableHeaderRowHeight": 22.5,
- "tableBodyRowHeight": 23.25,
- "columns": [
- [
- {
- "width": 75.564678549134,
- "title": "工序名称",
- "titleSync": false,
- "field": "gxmc",
- "checked": true,
- "columnId": "gxmc",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 28.653742825822242,
- "title": "日期",
- "titleSync": false,
- "field": "rq",
- "checked": true,
- "columnId": "rq",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 30.691055236427324,
- "title": "时间",
- "titleSync": false,
- "field": "sj",
- "checked": true,
- "columnId": "sj",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 48.573284173378624,
- "title": "合格品数",
- "titleSync": false,
- "field": "hgps",
- "checked": true,
- "columnId": "hgps",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 43.40828945028348,
- "title": "次品数",
- "titleSync": false,
- "field": "cps",
- "checked": true,
- "columnId": "cps",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 39.283655266049266,
- "title": "废品数",
- "titleSync": false,
- "field": "fps",
- "checked": true,
- "columnId": "fps",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 34.03023853973766,
- "title": "班次",
- "titleSync": false,
- "field": "bc",
- "checked": true,
- "columnId": "bc",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 32.58935487917185,
- "title": "机台",
- "titleSync": false,
- "field": "jt",
- "checked": true,
- "columnId": "jt",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 42.96988913874766,
- "title": "操作工",
- "titleSync": false,
- "field": "czg",
- "checked": true,
- "columnId": "czg",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 102.76126350532134,
- "title": "异常质量/操作信息",
- "titleSync": false,
- "field": "yczlczxx",
- "checked": true,
- "columnId": "yczlczxx",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 39.91518563922935,
- "title": "拉纸工",
- "titleSync": false,
- "field": "lzg",
- "checked": true,
- "columnId": "lzg",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 53.559362796697215,
- "title": "废品统计",
- "titleSync": false,
- "field": "fptj",
- "checked": true,
- "columnId": "fptj",
- "fixed": false,
- "rowspan": 1,
- "colspan": 1,
- "tableQRCodeLevel": 0,
- "tableSummaryTitle": true,
- "tableSummary": ""
- },
- {
- "width": 85.25,
- "checked": false,
- "fixed": false,
- "rowspan": 1,
- "colspan": 1
- },
- {
- "width": 85.25,
- "checked": false,
- "fixed": false,
- "rowspan": 1,
- "colspan": 1
- }
- ]
- ]
- },
- "printElementType": {
- "title": "表格",
- "type": "table",
- "editable": true,
- "columnDisplayEditable": true,
- "columnDisplayIndexEditable": true,
- "columnTitleEditable": true,
- "columnResizable": true,
- "columnAlignEditable": true,
- "isEnableEditField": true,
- "isEnableContextMenu": true,
- "isEnableInsertRow": true,
- "isEnableDeleteRow": true,
- "isEnableInsertColumn": true,
- "isEnableDeleteColumn": true,
- "isEnableMergeCell": true
- }
- },
- {
- "options": {
- "left": 13,
- "top": 612,
- "height": 17,
- "width": 572,
- "title": "成品检验记录",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 585.25,
- "bottom": 629,
- "vCenter": 299.75,
- "hCenter": 620.5,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "工序",
- "right": 45.5,
- "bottom": 647,
- "vCenter": 29.5,
- "hCenter": 638.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 48,
- "top": 629,
- "height": 17,
- "width": 38,
- "title": "机台号",
- "right": 85.25,
- "bottom": 645.5,
- "vCenter": 66.25,
- "hCenter": 637,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 86,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "日期",
- "right": 119,
- "bottom": 646.25,
- "vCenter": 101.5,
- "hCenter": 637.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 121,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "时间",
- "right": 156.5,
- "bottom": 645.5,
- "vCenter": 139,
- "hCenter": 637,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 629,
- "height": 17,
- "width": 52,
- "title": "合格品数",
- "right": 185.75,
- "bottom": 645.5,
- "vCenter": 169.75,
- "hCenter": 637,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 208,
- "top": 629,
- "height": 17,
- "width": 38,
- "title": "废品数",
- "right": 243.5,
- "bottom": 645.5,
- "vCenter": 224.5,
- "hCenter": 637,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 246,
- "top": 629,
- "height": 17,
- "width": 101,
- "title": "AB类废品及倒查",
- "right": 276.5,
- "bottom": 646.25,
- "vCenter": 260.5,
- "hCenter": 637.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 347,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "工序",
- "right": 382.25,
- "bottom": 643.25,
- "vCenter": 364.75,
- "hCenter": 634.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 382,
- "top": 629,
- "height": 17,
- "width": 45,
- "title": "检验员",
- "right": 423,
- "bottom": 644,
- "vCenter": 400.5,
- "hCenter": 635.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 427,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "日期",
- "right": 460.25,
- "bottom": 644,
- "vCenter": 442.75,
- "hCenter": 635.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 462,
- "top": 629,
- "height": 17,
- "width": 35,
- "title": "时间",
- "right": 362,
- "bottom": 648.5,
- "vCenter": 346,
- "hCenter": 640,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 497,
- "top": 629,
- "height": 17,
- "width": 52,
- "title": "合格品数",
- "right": 544.75,
- "bottom": 647,
- "vCenter": 518.75,
- "hCenter": 638.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 549,
- "top": 629,
- "height": 17,
- "width": 36,
- "title": "废品数",
- "right": 584,
- "bottom": 644.75,
- "vCenter": 565,
- "hCenter": 636.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 646,
- "height": 17,
- "width": 35,
- "title": "机检",
- "right": 45.5,
- "bottom": 661.25,
- "vCenter": 29.5,
- "hCenter": 652.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 48,
- "top": 646,
- "height": 17,
- "width": 38,
- "title": "机台号",
- "right": 86.75,
- "bottom": 665,
- "vCenter": 67.75,
- "hCenter": 656.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "jth",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 86,
- "top": 646,
- "height": 17,
- "width": 35,
- "title": "日期",
- "right": 118.25,
- "bottom": 662,
- "vCenter": 100.75,
- "hCenter": 653.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "rq",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 121,
- "top": 646,
- "height": 17,
- "width": 35,
- "title": "时间",
- "right": 153.5,
- "bottom": 663.5,
- "vCenter": 136,
- "hCenter": 655,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "sj",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 646,
- "height": 17,
- "width": 52,
- "title": "合格品数",
- "right": 205.75,
- "bottom": 660.5,
- "vCenter": 179.75,
- "hCenter": 652,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "hgps",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 208,
- "top": 646,
- "height": 17,
- "width": 38,
- "title": "废品数",
- "right": 242,
- "bottom": 660.5,
- "vCenter": 223,
- "hCenter": 652,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fps",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 246,
- "top": 646,
- "height": 17,
- "width": 101,
- "title": "AB类废品及倒查",
- "right": 277.25,
- "bottom": 662,
- "vCenter": 261.25,
- "hCenter": 653.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "ABlfpjdc",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 347,
- "top": 646,
- "height": 17,
- "width": 35,
- "title": "工序",
- "right": 381.5,
- "bottom": 662,
- "vCenter": 364,
- "hCenter": 653.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "gx",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 382,
- "top": 646,
- "height": 17,
- "width": 45,
- "title": "检验员",
- "right": 426,
- "bottom": 659.75,
- "vCenter": 403.5,
- "hCenter": 651.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "jyy",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 427,
- "top": 646,
- "height": 17,
- "width": 35,
- "title": "日期",
- "right": 459.5,
- "bottom": 659.75,
- "vCenter": 442,
- "hCenter": 651.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "rq",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 462,
- "top": 646,
- "height": 17,
- "width": 35,
- "title": "时间",
- "right": 493.25,
- "bottom": 664.25,
- "vCenter": 475.75,
- "hCenter": 655.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "sj",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 497,
- "top": 646,
- "height": 17,
- "width": 52,
- "title": "合格品数",
- "right": 547,
- "bottom": 662,
- "vCenter": 521,
- "hCenter": 653.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "hgps",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 549,
- "top": 646,
- "height": 17,
- "width": 36,
- "title": "废品数",
- "right": 582.5,
- "bottom": 661.25,
- "vCenter": 563.5,
- "hCenter": 652.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fps",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 663,
- "height": 17,
- "width": 572,
- "title": "机台废次品信息记录",
- "coordinateSync": false,
- "widthHeightSync": false,
- "fontSize": 12,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "lineHeight": 15,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "right": 139.75,
- "bottom": 677.75,
- "vCenter": 76.25,
- "hCenter": 669.25,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 680,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 67.5,
- "bottom": 693.25,
- "vCenter": 40.5,
- "hCenter": 685.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 67,
- "top": 680,
- "height": 128,
- "width": 89,
- "title": "废次品留样黏贴处",
- "right": 157.25,
- "bottom": 693.5,
- "vCenter": 112.75,
- "hCenter": 686.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 680,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 208.5,
- "bottom": 696.25,
- "vCenter": 181.5,
- "hCenter": 688.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 210,
- "top": 680,
- "height": 128,
- "width": 89,
- "title": "废次品留样黏贴处",
- "right": 297,
- "bottom": 809,
- "vCenter": 253.5,
- "hCenter": 802,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 299,
- "top": 680,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 353.25,
- "bottom": 693.25,
- "vCenter": 326.25,
- "hCenter": 685.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 353,
- "top": 680,
- "height": 128,
- "width": 89,
- "title": "废次品留样黏贴处",
- "right": 439.5,
- "bottom": 809,
- "vCenter": 396,
- "hCenter": 802,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 442,
- "top": 680,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 497.25,
- "bottom": 696.25,
- "vCenter": 470.25,
- "hCenter": 688.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 496,
- "top": 680,
- "height": 128,
- "width": 89,
- "title": "废次品留样黏贴处",
- "right": 564.25,
- "bottom": 807.5,
- "vCenter": 523.25,
- "hCenter": 800.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 696,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 67.5,
- "bottom": 711.25,
- "vCenter": 40.5,
- "hCenter": 703.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpgx",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 696,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 207.24609375,
- "bottom": 710.74609375,
- "vCenter": 180.24609375,
- "hCenter": 702.74609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpgx",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 299,
- "top": 696,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 352.5,
- "bottom": 709,
- "vCenter": 325.5,
- "hCenter": 701,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpgx",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 442,
- "top": 696,
- "height": 16,
- "width": 54,
- "title": "废次品工序",
- "right": 492.24609375,
- "bottom": 709.99609375,
- "vCenter": 465.24609375,
- "hCenter": 701.99609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpgx",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 712,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 67.5,
- "bottom": 728.5,
- "vCenter": 40.5,
- "hCenter": 720.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 712,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 209.49609375,
- "bottom": 725.74609375,
- "vCenter": 182.49609375,
- "hCenter": 717.74609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 299,
- "top": 712,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 348,
- "bottom": 439,
- "vCenter": 321,
- "hCenter": 431,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "draggable": false,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid"
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 442,
- "top": 712,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 498,
- "bottom": 727.75,
- "vCenter": 471,
- "hCenter": 719.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 728,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 66.75,
- "bottom": 745,
- "vCenter": 39.75,
- "hCenter": 737,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpyy",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 728,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 211.74609375,
- "bottom": 743.74609375,
- "vCenter": 184.74609375,
- "hCenter": 735.74609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpyy",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 299,
- "top": 728,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 353.49609375,
- "bottom": 744.49609375,
- "vCenter": 326.49609375,
- "hCenter": 736.49609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpyy",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 442,
- "top": 728,
- "height": 16,
- "width": 54,
- "title": "废次品原因",
- "right": 494.25,
- "bottom": 744.25,
- "vCenter": 467.25,
- "hCenter": 736.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpyy",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 744,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 65.25,
- "bottom": 761.5,
- "vCenter": 38.25,
- "hCenter": 753.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 744,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 209.49609375,
- "bottom": 759.49609375,
- "vCenter": 182.49609375,
- "hCenter": 751.49609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 299,
- "top": 744,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 350.25,
- "bottom": 758.5,
- "vCenter": 323.25,
- "hCenter": 750.5,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 442,
- "top": 744,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 495,
- "bottom": 759.25,
- "vCenter": 468,
- "hCenter": 751.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 760,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 66,
- "bottom": 778.75,
- "vCenter": 39,
- "hCenter": 770.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpsl",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 760,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 211.74609375,
- "bottom": 775.24609375,
- "vCenter": 184.74609375,
- "hCenter": 767.24609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpsl",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 299,
- "top": 760,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 354.75,
- "bottom": 778.75,
- "vCenter": 327.75,
- "hCenter": 770.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpsl",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 442,
- "top": 760,
- "height": 16,
- "width": 54,
- "title": "废次品数量",
- "right": 494.25,
- "bottom": 775,
- "vCenter": 467.25,
- "hCenter": 767,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "fcpsl",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 776,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 65.25,
- "bottom": 792.25,
- "vCenter": 38.25,
- "hCenter": 784.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 776,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 207.24609375,
- "bottom": 792.49609375,
- "vCenter": 180.24609375,
- "hCenter": 784.49609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 299,
- "top": 776,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 353.49609375,
- "bottom": 793.99609375,
- "vCenter": 326.49609375,
- "hCenter": 785.99609375,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 442,
- "top": 776,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 497.25,
- "bottom": 792.25,
- "vCenter": 470.25,
- "hCenter": 784.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 13,
- "top": 792,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 68.25,
- "bottom": 808.75,
- "vCenter": 41.25,
- "hCenter": 800.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "lph",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 156,
- "top": 792,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 209.25,
- "bottom": 808.75,
- "vCenter": 182.25,
- "hCenter": 800.75,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "lph",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 299,
- "top": 792,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 352.5,
- "bottom": 809.5,
- "vCenter": 325.5,
- "hCenter": 801.5,
- "field": "lph",
- "coordinateSync": false,
- "widthHeightSync": false,
- "hideTitle": true,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "qrCodeLevel": 0,
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- },
- {
- "options": {
- "left": 442,
- "top": 792,
- "height": 16,
- "width": 54,
- "title": "联拼号",
- "right": 495,
- "bottom": 807.25,
- "vCenter": 468,
- "hCenter": 799.25,
- "coordinateSync": false,
- "widthHeightSync": false,
- "textAlign": "center",
- "textContentVerticalAlign": "middle",
- "qrCodeLevel": 0,
- "field": "lph",
- "hideTitle": true,
- "borderLeft": "solid",
- "borderTop": "solid",
- "borderRight": "solid",
- "borderBottom": "solid",
- "draggable": false
- },
- "printElementType": {
- "title": "文本",
- "type": "text"
- }
- }
- ],
- "paperNumberLeft": 565.5,
- "paperNumberTop": 819,
- "paperNumberDisabled": true,
- "paperNumberContinue": true,
- "backgroundColor": "#ffffff",
- "overPrintOptions": {
- "content": "",
- "opacity": 0.7,
- "type": 1
- },
- "watermarkOptions": {
- "content": "",
- "fillStyle": "rgba(255, 255, 255, 1)",
- "fontSize": "36px",
- "rotate": 25,
- "width": 413,
- "height": 310,
- "timestamp": false,
- "format": "YYYY-MM-DD HH:mm"
- }
- }
- ]
- }
- hiprint.init()
- const hiprintTemplate = new hiprint.PrintTemplate({ template: jsondata1 })
- </script>
- <style>
- .newlabel{
- display: block;
- -webkit-margin-start: 2px;
- -webkit-margin-end: 2px;
- -webkit-padding-before: 0.35em;
- -webkit-padding-start: 0.75em;
- -webkit-padding-end: 0.75em;
- -webkit-padding-after: 0.625em;
- min-width: -webkit-min-content;
- border-width: 2px;
- border-style: groove;
- border-color: threedface;
- border-image: initial;
- width:870px;
- padding:10px;
- margin:10px;
- float: left;
- }
- .legend{
- display: block;
- -webkit-padding-start: 2px;
- -webkit-padding-end: 2px;
- border-width: initial;
- border-style: none;
- border-color: initial;
- border-image: initial;
- }
- #daima{
- display: block;
- border-width: 2px;
- border-style: groove;
- border-color: initial;
- border-image: initial;
- float: left;
- margin-left: 950px;
- margin-top: 18px;
- width: 550px;
- padding: 10px;
- position: fixed;
- }
- #daima table{
- }
- .firm ul,.product ul,.tag ul{
- width:100%;
- padding:10px;
- font-size:0;
- }
- .firm li,.product li,.tag li{
- font-size:12px;
- }
- .firm li:first-child ul li,.product li:first-child ul li,.tag li:first-child ul li{
- display:inline-block;
- width:33.3333%;
- height:20px;
- line-height:20px;
- }
- .firm input,.product input,.tag input{
- width:200px;
- padding:5px;
- }
- .tag select{
- width:198px;
- padding:5px;
- }
- .firm li ul:last-child li{
- width:580px;
- }
- .firm li ul:last-child li input{
- width:476px;
- }
- .newlabel table{
- margin-top:20px;
- min-height: 25px; line-height: 25px;border-collapse: collapse;
- }
- .newlabel caption{
- padding:5px 0;
- }
- .newlabel table,.newlabel table tr th,.newlabel table tr td { border:1px dashed #ddd;padding:5px;}
- #daima table,#daima table tr th,#daima table tr td { border:1px dashed #ddd;padding:5px;}
- #createcode{
- display:inline-block;
- width:100px;
- height:30px;
- line-height:30px;
- margin-left:290px;
- border-radius:10px;
- background:#0fa2f1;
- color:#fff;
- text-align:center;
- cursor: pointer;
- opacity:0.8;
- filter:80%;
- }
- .submitbtn{
- width:100px;
- height:30px;
- line-height:30px;
- background:#0fa2f1;
- margin-left:30%;
- text-align:center;
- outline:none;
- border:0;
- color:#fff;
- border-radius:10px;
- opacity:0.8;
- filter:80%;
- }
- .high{ color: red; }
- .msg{ font-size: 13px; }
- .onError{ color: red; }
- .onSuccess{ color: green; }
- </style>
|