processSheet.vue 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033
  1. <template>
  2. <el-container>
  3. <el-main>
  4. <form method="POST" :model="workData" action="{:U('NewBarCodeNew/add_bach')}" style="margin-bottom:50px;" id="form">
  5. <input name="userid" id="userid" value="{$session_config[uid]}" type="hidden">
  6. <fieldset class="newlabel">
  7. <legend style="width:auto;margin-left:20px;">标记参数</legend>
  8. <table width="100%" border="1">
  9. <caption>标签序列配置</caption>
  10. <tr>
  11. <th style="width:40%;"><span>字段</span> </th>
  12. <th><span>值</span></th>
  13. </tr>
  14. <tr >
  15. <td><span>生产批次号</span></td>
  16. <td><input name="Gd_gdbh" type="text" v-model="workData.Gd_gdbh" @input="propertyChange" class="required" style="width: 380px;height: 30px;"></td>
  17. </tr>
  18. <tr v-if="dan">
  19. <td><span>纸张名称</span></td>
  20. <td>
  21. <select style="width: 380px;height: 30px;">
  22. <option v-for="option in selectedPaper">
  23. {{ option.bom_物料名称 }}
  24. </option>
  25. </select>
  26. </td>
  27. </tr>
  28. <tr v-if="shuang">
  29. <td><span>纸张名称</span></td>
  30. <td>
  31. <select @change="selectpPaper" style="width: 380px;height: 30px;">
  32. <option v-for="option in selectedPaper" :value="option.bom_计划用量">
  33. {{ option.bom_物料名称 }}
  34. </option>
  35. </select>
  36. </td>
  37. </tr>
  38. <tr >
  39. <td><span style="color: red">码包</span></td>
  40. <td><input name="mabao" type="text" v-model="workData.mabao" style="width: 380px;height: 30px;" placeholder="利群(新版)专用,不是利群(新版)不要填"></td>
  41. </tr>
  42. <tr v-if="shuang" class="peijian">
  43. <td><span style="color: red">配件名称</span></td>
  44. <td>
  45. <select name="peijian" @change="selectPeijian" style="width: 380px;height: 30px; color: red" >
  46. <option v-for="option in selectedPeijian" :value="option.id">
  47. {{ option.peijian_name }}
  48. </option>
  49. </select>
  50. </td>
  51. </tr>
  52. <tr>
  53. <td><span>单个流程包含的件数</span></td>
  54. <td><input name="tldx" type="text" v-model="workData.tldx" value="3000" class="required" style="width: 380px;height: 30px;"></td>
  55. </tr>
  56. <tr>
  57. <td><span>总投纸数</span></td>
  58. <td>
  59. <input name="num" v-model="workData.num" value="" style="width: 380px;height: 30px;">
  60. </td>
  61. </tr>
  62. <tr>
  63. <td><span>总流程</span></td>
  64. <td><input name="liucheng_total" type="number" v-model="workData.liucheng_total" value="" class="required" style="width: 380px;height: 30px;"></td>
  65. </tr>
  66. <tr>
  67. <td><span>版本号标识</span></td>
  68. <td><input name="version" type="text" v-model="workData.version" class="required" style="width: 380px;height: 30px;"></td>
  69. </tr>
  70. <tr>
  71. <td><span>起始流程号</span></td>
  72. <td><input name="start_liucheng" type="text" v-model="workData.start_liucheng" value="1" class="required" style="width: 380px;height: 30px;"></td>
  73. </tr>
  74. <tr>
  75. <td><span>本次打印流程数量</span></td>
  76. <td><input name="liucheng_num" type="text" v-model="workData.liucheng_num" value="1" class="required" style="width: 380px;height: 30px;"></td>
  77. </tr>
  78. <tr>
  79. <td>
  80. <span>备注</span></td>
  81. <td>
  82. <input name="remark" type="text" v-model="workData.remark" style="width: 380px;height: 30px;"></td>
  83. </tr>
  84. <tr>
  85. <td>
  86. <span>左右偏移量</span></td>
  87. <td>
  88. <input name="x_offset" type="number" v-model="workData.x_offset" value="0" style="width: 380px;height: 30px;"></td>
  89. </tr>
  90. <tr>
  91. <td>
  92. <span>上下偏移量</span></td>
  93. <td>
  94. <input name="y_offset" type="number" v-model="workData.y_offset" value="0" style="width: 380px;height: 30px;"></td>
  95. </tr>
  96. </table>
  97. </fieldset>
  98. <div id="liucheng">
  99. <fieldset class="newlabel">
  100. <table width="100%" border="1" class="new_craft" id="new_craft">
  101. <caption>工艺</caption>
  102. <tr>
  103. <td width="40%">上次<span style="color: red">{{department}}</span>工艺更新时间:<span style="color: red">{{update}}</span></td>
  104. <td>
  105. <input type="button" style="margin-left: 1px;" value="增加工艺" @click="addInput"/>
  106. </td>
  107. </tr>
  108. <tr v-for="(item,index) in gyData">
  109. <td></td>
  110. <td><input type="text" v-model="item.gy"></td>
  111. </tr>
  112. </table>
  113. </fieldset>
  114. </div>
  115. <div style="position:fixed;bottom:0;width:100%;height:50px;line-height:50px;">
  116. <button type='button' onsubmit='return false' class="submitbtn" @click="sendClick" id="send">打印</button>
  117. </div>
  118. </form>
  119. </el-main>
  120. </el-container>
  121. </template>
  122. <script setup>
  123. import {
  124. getDocumentData,
  125. getDocumentHistory,
  126. saveDocumentData,
  127. getDocumentInfo
  128. } from '@/api/mes/job'
  129. import { getDictFunc, formatDate, formatBoolean, filterDict, ReturnArrImg, onDownloadFile } from '@/utils/format'
  130. import { ElMessage, ElMessageBox } from 'element-plus'
  131. import { ref, reactive } from 'vue'
  132. import {hiprint} from "vue-plugin-hiprint";
  133. const workData = ref({
  134. Gd_gdbh:'',
  135. maobao:'',
  136. mabao:'',
  137. peijian:'',
  138. tldx:3000,
  139. num:'',
  140. liucheng_total:'',
  141. version:'',
  142. start_liucheng:1,
  143. liucheng_num:1,
  144. remark:'',
  145. x_offset:0,
  146. y_offset:0
  147. })
  148. const department = ref()
  149. const dan = ref(true)
  150. const shuang = ref(false)
  151. const update = ref()
  152. const data = ref()
  153. const peijian = ref(0)
  154. const gyData = ref([])
  155. const selectedPaper = ref([])
  156. const selectedPeijian = ref([])
  157. const datas = ref([])
  158. const propertyChange = () => {
  159. if(workData.value.Gd_gdbh.length!==7){
  160. workData.value = {
  161. maobao:'',
  162. mabao:'',
  163. peijian:'',
  164. tldx:3000,
  165. num:'',
  166. liucheng_total:'',
  167. version:'',
  168. start_liucheng:1,
  169. liucheng_num:1,
  170. remark:'',
  171. x_offset:0,
  172. y_offset:0
  173. }
  174. shuang.value=false
  175. selectedPaper.value=[]
  176. selectedPeijian.value=[]
  177. gyData.value=[]
  178. workData.value.tldx=3000
  179. workData.value.start_liucheng=1
  180. workData.value.liucheng_num=1
  181. workData.value.x_offset=0
  182. workData.value.y_offset=0
  183. department.value=null
  184. department.value=null
  185. return false;
  186. }else{
  187. const getDocument = async() => {
  188. const getDocumentDatas = await getDocumentData({order:workData.value.Gd_gdbh})
  189. if (getDocumentDatas.code === 0) {
  190. workData.value.version=getDocumentDatas.data.paper[0].产品版本号;
  191. workData.value.peijian=getDocumentDatas.data.paper;
  192. console.log(selectedPaper.value)
  193. if(getDocumentDatas.data.num>1){
  194. dan.value=false
  195. shuang.value=true
  196. console.log(getDocumentDatas.data.paper.length)
  197. selectedPaper.value=getDocumentDatas.data.paper
  198. selectedPeijian.value=getDocumentDatas.data.peijian
  199. }else{
  200. dan.value=true
  201. shuang.value=false
  202. selectedPaper.value=getDocumentDatas.data.paper
  203. workData.value.product=getDocumentDatas.data.paper[0].bom_物料名称;
  204. }
  205. workData.value.num=getDocumentDatas.data.paper[0].bom_计划用量;
  206. if(getDocumentDatas.data.peijian){
  207. peijian.value=getDocumentDatas.data.peijian[0]['id']
  208. const getHistory = async() => {
  209. const getDocumentHistorys = await getDocumentHistory({
  210. order:workData.value.Gd_gdbh,
  211. peijian:getDocumentDatas.data.peijian[0]['id']})
  212. if (getDocumentHistorys.code === 0) {
  213. department.value=getDocumentHistorys.data.department
  214. update.value=getDocumentHistorys.data.update
  215. gyData.value=getDocumentHistorys.data.data.map((item)=>({
  216. gy:item
  217. }))
  218. }
  219. }
  220. getHistory()
  221. }
  222. }
  223. }
  224. getDocument()
  225. }
  226. }
  227. const addInput = () => {
  228. gyData.value.push({gy:''})
  229. }
  230. const sendClick = () => {
  231. saveDocument()
  232. }
  233. const saveDocument = async() => {
  234. datas.value = gyData.value.map((item)=>(item.gy))
  235. data.value= datas.value.join(",")
  236. const saveDocumentDatas = await saveDocumentData({order:workData.value.Gd_gdbh,data:data.value,peijian:peijian.value})
  237. if (saveDocumentDatas.code === 0) {
  238. getDocument()
  239. }
  240. }
  241. const getDocument = async() => {
  242. console.log(111111)
  243. const getDocumentInfos = await getDocumentInfo({
  244. order:workData.value.Gd_gdbh,
  245. mabao:workData.value.mabao,
  246. version:workData.value.version,
  247. start_liucheng:workData.value.start_liucheng,
  248. tldx:workData.value.tldx,
  249. remark:workData.value.remark,
  250. string:data.value,
  251. num:workData.value.num
  252. })
  253. if (getDocumentInfos.code === 0) {
  254. const data = getDocumentInfos.data
  255. for (let i = 0; i < Object.keys(data).length - 4; i++) {
  256. const printdata = {
  257. "scpch": getDocumentInfos.data[i].Gd_gdbh,
  258. "xsddh": getDocumentInfos.data[i].销售订单号.split(' ')[1],
  259. "mbh": getDocumentInfos.data[i].mabao,
  260. "lcdh": getDocumentInfos.data[i].liucheng_num,
  261. "gdsm": workData.value.remark,
  262. "cpmc": getDocumentInfos.data[i].Gd_cpmc,
  263. "ztzs": workData.value.num,
  264. "gjh": getDocumentInfos.data[i].version,
  265. 'table': getDocumentInfos.data.gy_data.map(item=>({
  266. gxmc:item
  267. }))
  268. }
  269. hiprintTemplate.print(printdata);
  270. }
  271. // const printdata = {
  272. // "scpch": "123456",
  273. // "xsddh": "123456",
  274. // "mbh": "123456",
  275. // "lcdh": "123456",
  276. // "gdsm": "123456",
  277. // "cpmc": "111",
  278. // "ztzs": "222",
  279. // "gjh": "333",
  280. // 'table': getDocumentInfos.data.gy_data.map(item=>({
  281. // gxmc:item
  282. // }))
  283. // }
  284. // hiprintTemplate.print(printdata);
  285. console.log(getDocumentInfos.data)
  286. }
  287. }
  288. const selectpPaper = (event) => {
  289. workData.value.num=event.target.value
  290. }
  291. const selectPeijian = async(event) => {
  292. peijian.value=event.target.value
  293. const getDocumentHistoryss = await getDocumentHistory({
  294. order:workData.value.Gd_gdbh,
  295. peijian:event.target.value})
  296. console.log(getDocumentHistoryss)
  297. if (getDocumentHistoryss.code === 0) {
  298. department.value=getDocumentHistoryss.data.department
  299. update.value=getDocumentHistoryss.data.update
  300. if(getDocumentHistoryss.data.data[0]){
  301. gyData.value=getDocumentHistoryss.data.data.map((item)=>({
  302. gy:item
  303. }))
  304. }else{
  305. gyData.value=[]
  306. }
  307. }
  308. }
  309. const jsondata = {
  310. "panels": [
  311. {
  312. "index": 0,
  313. "name": 1,
  314. "paperType": "A4",
  315. "height": 297,
  316. "width": 210,
  317. "paperHeader": 195,
  318. "paperFooter": 822,
  319. "printElements": [
  320. {
  321. "options": {
  322. "left": 519,
  323. "top": 12,
  324. "height": 65,
  325. "width": 65,
  326. "textType": "qrcode",
  327. "title": "qrcode",
  328. "right": 584.75,
  329. "bottom": 77,
  330. "vCenter": 552.25,
  331. "hCenter": 44.5,
  332. "coordinateSync": false,
  333. "widthHeightSync": false,
  334. "qrCodeLevel": 0
  335. },
  336. "printElementType": {
  337. "title": "qrcode",
  338. "type": "text"
  339. }
  340. },
  341. {
  342. "options": {
  343. "left": 241.5,
  344. "top": 27,
  345. "height": 20,
  346. "width": 103,
  347. "title": "流程单",
  348. "right": 344.5,
  349. "bottom": 47,
  350. "vCenter": 293,
  351. "hCenter": 37,
  352. "coordinateSync": false,
  353. "widthHeightSync": false,
  354. "fontSize": 21.75,
  355. "fontWeight": "900",
  356. "letterSpacing": 12,
  357. "textAlign": "center",
  358. "qrCodeLevel": 0
  359. },
  360. "printElementType": {
  361. "title": "文本",
  362. "type": "text"
  363. }
  364. },
  365. {
  366. "options": {
  367. "left": 31,
  368. "top": 40,
  369. "height": 9.75,
  370. "width": 133,
  371. "title": "表式号:QR/CP03.04.005-2021",
  372. "right": 159.5,
  373. "bottom": 42.75,
  374. "vCenter": 100,
  375. "hCenter": 37.875,
  376. "coordinateSync": false,
  377. "widthHeightSync": false,
  378. "qrCodeLevel": 0
  379. },
  380. "printElementType": {
  381. "title": "文本",
  382. "type": "text"
  383. }
  384. },
  385. {
  386. "options": {
  387. "left": 13,
  388. "top": 61,
  389. "height": 36,
  390. "width": 58,
  391. "title": "生产批次号",
  392. "coordinateSync": false,
  393. "widthHeightSync": false,
  394. "fontSize": 12,
  395. "textAlign": "center",
  396. "textContentVerticalAlign": "middle",
  397. "lineHeight": 15,
  398. "borderLeft": "solid",
  399. "borderTop": "solid",
  400. "borderRight": "solid",
  401. "borderBottom": "solid",
  402. "qrCodeLevel": 0,
  403. "draggable": false
  404. },
  405. "printElementType": {
  406. "title": "文本",
  407. "type": "text"
  408. }
  409. },
  410. {
  411. "options": {
  412. "left": 71,
  413. "top": 61,
  414. "height": 36,
  415. "width": 100,
  416. "title": "",
  417. "coordinateSync": false,
  418. "widthHeightSync": false,
  419. "fontSize": 12,
  420. "textAlign": "center",
  421. "textContentVerticalAlign": "middle",
  422. "lineHeight": 15,
  423. "borderLeft": "solid",
  424. "borderTop": "solid",
  425. "borderRight": "solid",
  426. "borderBottom": "solid",
  427. "qrCodeLevel": 0,
  428. "right": 127,
  429. "bottom": 96.75,
  430. "vCenter": 98,
  431. "hCenter": 78.75,
  432. "field": "scpch",
  433. "hideTitle": true,
  434. "draggable": false
  435. },
  436. "printElementType": {
  437. "title": "文本",
  438. "type": "text"
  439. }
  440. },
  441. {
  442. "options": {
  443. "left": 13,
  444. "top": 97,
  445. "height": 36,
  446. "width": 58,
  447. "title": "销售订单号",
  448. "coordinateSync": false,
  449. "widthHeightSync": false,
  450. "fontSize": 12,
  451. "textAlign": "center",
  452. "textContentVerticalAlign": "middle",
  453. "lineHeight": 15,
  454. "borderLeft": "solid",
  455. "borderTop": "solid",
  456. "borderRight": "solid",
  457. "borderBottom": "solid",
  458. "qrCodeLevel": 0,
  459. "right": 68.9921875,
  460. "bottom": 133.74609375,
  461. "vCenter": 39.9921875,
  462. "hCenter": 115.74609375,
  463. "draggable": false
  464. },
  465. "printElementType": {
  466. "title": "文本",
  467. "type": "text"
  468. }
  469. },
  470. {
  471. "options": {
  472. "left": 71,
  473. "top": 97,
  474. "height": 36,
  475. "width": 100,
  476. "title": "销售订单号",
  477. "coordinateSync": false,
  478. "widthHeightSync": false,
  479. "fontSize": 12,
  480. "textAlign": "center",
  481. "textContentVerticalAlign": "middle",
  482. "lineHeight": 15,
  483. "borderLeft": "solid",
  484. "borderTop": "solid",
  485. "borderRight": "solid",
  486. "borderBottom": "solid",
  487. "qrCodeLevel": 0,
  488. "right": 127.24609375,
  489. "bottom": 130.74609375,
  490. "vCenter": 98.24609375,
  491. "hCenter": 112.74609375,
  492. "field": "xsddh",
  493. "hideTitle": true,
  494. "draggable": false
  495. },
  496. "printElementType": {
  497. "title": "文本",
  498. "type": "text"
  499. }
  500. },
  501. {
  502. "options": {
  503. "left": 172,
  504. "top": 97,
  505. "height": 36,
  506. "width": 35,
  507. "title": "码包号",
  508. "coordinateSync": false,
  509. "widthHeightSync": false,
  510. "fontSize": 12,
  511. "textAlign": "center",
  512. "textContentVerticalAlign": "middle",
  513. "lineHeight": 15,
  514. "qrCodeLevel": 0,
  515. "right": 206.5,
  516. "bottom": 133.5,
  517. "vCenter": 188,
  518. "hCenter": 115.5,
  519. "draggable": false
  520. },
  521. "printElementType": {
  522. "title": "文本",
  523. "type": "text"
  524. }
  525. },
  526. {
  527. "options": {
  528. "left": 208,
  529. "top": 97,
  530. "height": 36,
  531. "width": 212,
  532. "title": "销售订单号",
  533. "coordinateSync": false,
  534. "widthHeightSync": false,
  535. "fontSize": 12,
  536. "textAlign": "center",
  537. "textContentVerticalAlign": "middle",
  538. "lineHeight": 15,
  539. "borderLeft": "solid",
  540. "borderTop": "solid",
  541. "borderRight": "solid",
  542. "borderBottom": "solid",
  543. "qrCodeLevel": 0,
  544. "right": 306.49609375,
  545. "bottom": 130.74609375,
  546. "vCenter": 256.49609375,
  547. "hCenter": 112.74609375,
  548. "field": "mbh",
  549. "hideTitle": true,
  550. "draggable": false
  551. },
  552. "printElementType": {
  553. "title": "文本",
  554. "type": "text"
  555. }
  556. },
  557. {
  558. "options": {
  559. "left": 422,
  560. "top": 97,
  561. "height": 36,
  562. "width": 32,
  563. "title": "流程单号",
  564. "coordinateSync": false,
  565. "widthHeightSync": false,
  566. "fontSize": 12,
  567. "textAlign": "center",
  568. "textContentVerticalAlign": "middle",
  569. "lineHeight": 15,
  570. "qrCodeLevel": 0,
  571. "right": 456.25,
  572. "bottom": 134.25,
  573. "vCenter": 437.75,
  574. "hCenter": 116.25,
  575. "draggable": false
  576. },
  577. "printElementType": {
  578. "title": "文本",
  579. "type": "text"
  580. }
  581. },
  582. {
  583. "options": {
  584. "left": 455,
  585. "top": 97,
  586. "height": 36,
  587. "width": 130,
  588. "title": "销售订单号",
  589. "coordinateSync": false,
  590. "widthHeightSync": false,
  591. "fontSize": 12,
  592. "textAlign": "center",
  593. "textContentVerticalAlign": "middle",
  594. "lineHeight": 15,
  595. "borderLeft": "solid",
  596. "borderTop": "solid",
  597. "borderRight": "solid",
  598. "borderBottom": "solid",
  599. "qrCodeLevel": 0,
  600. "right": 582.5,
  601. "bottom": 133.5,
  602. "vCenter": 518.5,
  603. "hCenter": 115.5,
  604. "field": "lcdh",
  605. "hideTitle": true,
  606. "draggable": false
  607. },
  608. "printElementType": {
  609. "title": "文本",
  610. "type": "text"
  611. }
  612. },
  613. {
  614. "options": {
  615. "left": 13,
  616. "top": 138,
  617. "height": 26,
  618. "width": 58,
  619. "title": "工单",
  620. "coordinateSync": false,
  621. "widthHeightSync": false,
  622. "fontSize": 12,
  623. "textAlign": "center",
  624. "textContentVerticalAlign": "bottom",
  625. "lineHeight": 15,
  626. "borderLeft": "solid",
  627. "borderTop": "solid",
  628. "borderRight": "solid",
  629. "qrCodeLevel": 0,
  630. "right": 71.5,
  631. "bottom": 163,
  632. "vCenter": 42.5,
  633. "hCenter": 150.5
  634. },
  635. "printElementType": {
  636. "title": "文本",
  637. "type": "text"
  638. }
  639. },
  640. {
  641. "options": {
  642. "left": 71,
  643. "top": 138,
  644. "height": 52,
  645. "width": 513,
  646. "title": "销售订单号",
  647. "coordinateSync": false,
  648. "widthHeightSync": false,
  649. "fontSize": 12,
  650. "textAlign": "center",
  651. "textContentVerticalAlign": "middle",
  652. "lineHeight": 15,
  653. "borderLeft": "solid",
  654. "borderTop": "solid",
  655. "borderRight": "solid",
  656. "borderBottom": "solid",
  657. "qrCodeLevel": 0,
  658. "right": 171.25,
  659. "bottom": 188.75,
  660. "vCenter": 121.25,
  661. "hCenter": 163.75,
  662. "field": "gdsm",
  663. "hideTitle": true,
  664. "draggable": false
  665. },
  666. "printElementType": {
  667. "title": "文本",
  668. "type": "text"
  669. }
  670. },
  671. {
  672. "options": {
  673. "left": 13,
  674. "top": 164,
  675. "height": 26,
  676. "width": 58,
  677. "title": "说明",
  678. "coordinateSync": false,
  679. "widthHeightSync": false,
  680. "fontSize": 12,
  681. "textAlign": "center",
  682. "lineHeight": 15,
  683. "borderLeft": "solid",
  684. "borderRight": "solid",
  685. "borderBottom": "solid",
  686. "qrCodeLevel": 0,
  687. "right": 70.75,
  688. "bottom": 188.75,
  689. "vCenter": 41.75,
  690. "hCenter": 175.75
  691. },
  692. "printElementType": {
  693. "title": "文本",
  694. "type": "text"
  695. }
  696. },
  697. {
  698. "options": {
  699. "left": 13,
  700. "top": 196,
  701. "height": 28,
  702. "width": 76,
  703. "title": "产品名称",
  704. "coordinateSync": false,
  705. "widthHeightSync": false,
  706. "fontSize": 12,
  707. "textAlign": "center",
  708. "textContentVerticalAlign": "middle",
  709. "lineHeight": 15,
  710. "borderLeft": "solid",
  711. "borderTop": "solid",
  712. "borderRight": "solid",
  713. "borderBottom": "solid",
  714. "qrCodeLevel": 0,
  715. "right": 70.24609375,
  716. "bottom": 231.99609375,
  717. "vCenter": 41.24609375,
  718. "hCenter": 213.99609375,
  719. "draggable": false
  720. },
  721. "printElementType": {
  722. "title": "文本",
  723. "type": "text"
  724. }
  725. },
  726. {
  727. "options": {
  728. "left": 89,
  729. "top": 196,
  730. "height": 28,
  731. "width": 203,
  732. "title": "产品名称",
  733. "coordinateSync": false,
  734. "widthHeightSync": false,
  735. "textContentVerticalAlign": "middle",
  736. "borderLeft": "solid",
  737. "borderTop": "solid",
  738. "borderRight": "solid",
  739. "borderBottom": "solid",
  740. "qrCodeLevel": 0,
  741. "right": 171.5,
  742. "bottom": 224.5,
  743. "vCenter": 130,
  744. "hCenter": 210.5,
  745. "field": "cpmc",
  746. "hideTitle": true,
  747. "draggable": false
  748. },
  749. "printElementType": {
  750. "title": "文本",
  751. "type": "text"
  752. }
  753. },
  754. {
  755. "options": {
  756. "left": 291,
  757. "top": 196,
  758. "height": 28,
  759. "width": 59,
  760. "title": "总投纸数",
  761. "coordinateSync": false,
  762. "widthHeightSync": false,
  763. "fontSize": 12,
  764. "textAlign": "center",
  765. "textContentVerticalAlign": "middle",
  766. "lineHeight": 15,
  767. "borderLeft": "solid",
  768. "borderTop": "solid",
  769. "borderRight": "solid",
  770. "borderBottom": "solid",
  771. "qrCodeLevel": 0,
  772. "right": 349.25,
  773. "bottom": 224.5,
  774. "vCenter": 319.75,
  775. "hCenter": 210.5,
  776. "draggable": false
  777. },
  778. "printElementType": {
  779. "title": "文本",
  780. "type": "text"
  781. }
  782. },
  783. {
  784. "options": {
  785. "left": 350,
  786. "top": 196,
  787. "height": 28,
  788. "width": 90,
  789. "title": "产品名称",
  790. "coordinateSync": false,
  791. "widthHeightSync": false,
  792. "fontSize": 12,
  793. "textAlign": "center",
  794. "textContentVerticalAlign": "middle",
  795. "lineHeight": 15,
  796. "borderLeft": "solid",
  797. "borderTop": "solid",
  798. "borderRight": "solid",
  799. "borderBottom": "solid",
  800. "qrCodeLevel": 0,
  801. "right": 432.5,
  802. "bottom": 223.75,
  803. "vCenter": 391,
  804. "hCenter": 209.75,
  805. "field": "ztzs",
  806. "hideTitle": true,
  807. "draggable": false
  808. },
  809. "printElementType": {
  810. "title": "文本",
  811. "type": "text"
  812. }
  813. },
  814. {
  815. "options": {
  816. "left": 440,
  817. "top": 196,
  818. "height": 28,
  819. "width": 50,
  820. "title": "规矩号",
  821. "coordinateSync": false,
  822. "widthHeightSync": false,
  823. "fontSize": 12,
  824. "textAlign": "center",
  825. "textContentVerticalAlign": "middle",
  826. "lineHeight": 15,
  827. "borderLeft": "solid",
  828. "borderTop": "solid",
  829. "borderRight": "solid",
  830. "borderBottom": "solid",
  831. "qrCodeLevel": 0,
  832. "right": 497.24609375,
  833. "bottom": 223.24609375,
  834. "vCenter": 455.74609375,
  835. "hCenter": 209.24609375,
  836. "draggable": false
  837. },
  838. "printElementType": {
  839. "title": "文本",
  840. "type": "text"
  841. }
  842. },
  843. {
  844. "options": {
  845. "left": 490,
  846. "top": 196,
  847. "height": 28,
  848. "width": 94,
  849. "title": "产品名称",
  850. "coordinateSync": false,
  851. "widthHeightSync": false,
  852. "fontSize": 12,
  853. "textAlign": "center",
  854. "textContentVerticalAlign": "middle",
  855. "lineHeight": 15,
  856. "borderLeft": "solid",
  857. "borderTop": "solid",
  858. "borderRight": "solid",
  859. "borderBottom": "solid",
  860. "qrCodeLevel": 0,
  861. "right": 571.25,
  862. "bottom": 224.5,
  863. "vCenter": 529.75,
  864. "hCenter": 210.5,
  865. "field": "gjh",
  866. "hideTitle": true,
  867. "draggable": false
  868. },
  869. "printElementType": {
  870. "title": "文本",
  871. "type": "text"
  872. }
  873. },
  874. {
  875. "options": {
  876. "left": 13,
  877. "top": 224,
  878. "height": 378,
  879. "width": 572,
  880. "autoCompletion": true,
  881. "right": 565.75,
  882. "bottom": 261,
  883. "vCenter": 290.75,
  884. "hCenter": 243,
  885. "field": "table",
  886. "coordinateSync": false,
  887. "widthHeightSync": false,
  888. "maxRows": 15,
  889. "textAlign": "center",
  890. "tableHeaderRowHeight": 22.5,
  891. "tableBodyRowHeight": 23.25,
  892. "columns": [
  893. [
  894. {
  895. "width": 75.564678549134,
  896. "title": "工序名称",
  897. "titleSync": false,
  898. "field": "gxmc",
  899. "checked": true,
  900. "columnId": "gxmc",
  901. "fixed": false,
  902. "rowspan": 1,
  903. "colspan": 1,
  904. "tableQRCodeLevel": 0,
  905. "tableSummaryTitle": true,
  906. "tableSummary": ""
  907. },
  908. {
  909. "width": 28.653742825822242,
  910. "title": "日期",
  911. "titleSync": false,
  912. "field": "rq",
  913. "checked": true,
  914. "columnId": "rq",
  915. "fixed": false,
  916. "rowspan": 1,
  917. "colspan": 1,
  918. "tableQRCodeLevel": 0,
  919. "tableSummaryTitle": true,
  920. "tableSummary": ""
  921. },
  922. {
  923. "width": 30.691055236427324,
  924. "title": "时间",
  925. "titleSync": false,
  926. "field": "sj",
  927. "checked": true,
  928. "columnId": "sj",
  929. "fixed": false,
  930. "rowspan": 1,
  931. "colspan": 1,
  932. "tableQRCodeLevel": 0,
  933. "tableSummaryTitle": true,
  934. "tableSummary": ""
  935. },
  936. {
  937. "width": 48.82303417337862,
  938. "title": "合格品数",
  939. "titleSync": false,
  940. "field": "hgps",
  941. "checked": true,
  942. "columnId": "hgps",
  943. "fixed": false,
  944. "rowspan": 1,
  945. "colspan": 1,
  946. "tableQRCodeLevel": 0,
  947. "tableSummaryTitle": true,
  948. "tableSummary": ""
  949. },
  950. {
  951. "width": 43.158539450283484,
  952. "title": "次品数",
  953. "titleSync": false,
  954. "field": "cps",
  955. "checked": true,
  956. "columnId": "cps",
  957. "fixed": false,
  958. "rowspan": 1,
  959. "colspan": 1,
  960. "tableQRCodeLevel": 0,
  961. "tableSummaryTitle": true,
  962. "tableSummary": ""
  963. },
  964. {
  965. "width": 39.283655266049266,
  966. "title": "废品数",
  967. "titleSync": false,
  968. "field": "fps",
  969. "checked": true,
  970. "columnId": "fps",
  971. "fixed": false,
  972. "rowspan": 1,
  973. "colspan": 1,
  974. "tableQRCodeLevel": 0,
  975. "tableSummaryTitle": true,
  976. "tableSummary": ""
  977. },
  978. {
  979. "width": 34.03023853973766,
  980. "title": "班次",
  981. "titleSync": false,
  982. "field": "bc",
  983. "checked": true,
  984. "columnId": "bc",
  985. "fixed": false,
  986. "rowspan": 1,
  987. "colspan": 1,
  988. "tableQRCodeLevel": 0,
  989. "tableSummaryTitle": true,
  990. "tableSummary": ""
  991. },
  992. {
  993. "width": 32.58935487917185,
  994. "title": "机台",
  995. "titleSync": false,
  996. "field": "jt",
  997. "checked": true,
  998. "columnId": "jt",
  999. "fixed": false,
  1000. "rowspan": 1,
  1001. "colspan": 1,
  1002. "tableQRCodeLevel": 0,
  1003. "tableSummaryTitle": true,
  1004. "tableSummary": ""
  1005. },
  1006. {
  1007. "width": 42.96988913874766,
  1008. "title": "操作工",
  1009. "titleSync": false,
  1010. "field": "czg",
  1011. "checked": true,
  1012. "columnId": "czg",
  1013. "fixed": false,
  1014. "rowspan": 1,
  1015. "colspan": 1,
  1016. "tableQRCodeLevel": 0,
  1017. "tableSummaryTitle": true,
  1018. "tableSummary": ""
  1019. },
  1020. {
  1021. "width": 102.76126350532134,
  1022. "title": "异常质量/操作信息",
  1023. "titleSync": false,
  1024. "field": "yczlczxx",
  1025. "checked": true,
  1026. "columnId": "yczlczxx",
  1027. "fixed": false,
  1028. "rowspan": 1,
  1029. "colspan": 1,
  1030. "tableQRCodeLevel": 0,
  1031. "tableSummaryTitle": true,
  1032. "tableSummary": ""
  1033. },
  1034. {
  1035. "width": 39.91518563922935,
  1036. "title": "拉纸工",
  1037. "titleSync": false,
  1038. "field": "lzg",
  1039. "checked": true,
  1040. "columnId": "lzg",
  1041. "fixed": false,
  1042. "rowspan": 1,
  1043. "colspan": 1,
  1044. "tableQRCodeLevel": 0,
  1045. "tableSummaryTitle": true,
  1046. "tableSummary": ""
  1047. },
  1048. {
  1049. "width": 53.559362796697215,
  1050. "title": "废品统计",
  1051. "titleSync": false,
  1052. "field": "fptj",
  1053. "checked": true,
  1054. "columnId": "fptj",
  1055. "fixed": false,
  1056. "rowspan": 1,
  1057. "colspan": 1,
  1058. "tableQRCodeLevel": 0,
  1059. "tableSummaryTitle": true,
  1060. "tableSummary": ""
  1061. },
  1062. {
  1063. "width": 85.25,
  1064. "checked": false,
  1065. "fixed": false,
  1066. "rowspan": 1,
  1067. "colspan": 1
  1068. },
  1069. {
  1070. "width": 85.25,
  1071. "checked": false,
  1072. "fixed": false,
  1073. "rowspan": 1,
  1074. "colspan": 1
  1075. }
  1076. ]
  1077. ]
  1078. },
  1079. "printElementType": {
  1080. "title": "表格",
  1081. "type": "table",
  1082. "editable": true,
  1083. "columnDisplayEditable": true,
  1084. "columnDisplayIndexEditable": true,
  1085. "columnTitleEditable": true,
  1086. "columnResizable": true,
  1087. "columnAlignEditable": true,
  1088. "isEnableEditField": true,
  1089. "isEnableContextMenu": true,
  1090. "isEnableInsertRow": true,
  1091. "isEnableDeleteRow": true,
  1092. "isEnableInsertColumn": true,
  1093. "isEnableDeleteColumn": true,
  1094. "isEnableMergeCell": true
  1095. }
  1096. },
  1097. {
  1098. "options": {
  1099. "left": 13,
  1100. "top": 612,
  1101. "height": 17,
  1102. "width": 572,
  1103. "title": "成品检验记录",
  1104. "coordinateSync": false,
  1105. "widthHeightSync": false,
  1106. "fontSize": 12,
  1107. "textAlign": "center",
  1108. "textContentVerticalAlign": "middle",
  1109. "lineHeight": 15,
  1110. "borderLeft": "solid",
  1111. "borderTop": "solid",
  1112. "borderRight": "solid",
  1113. "borderBottom": "solid",
  1114. "qrCodeLevel": 0,
  1115. "right": 585.25,
  1116. "bottom": 629,
  1117. "vCenter": 299.75,
  1118. "hCenter": 620.5,
  1119. "draggable": false
  1120. },
  1121. "printElementType": {
  1122. "title": "文本",
  1123. "type": "text"
  1124. }
  1125. },
  1126. {
  1127. "options": {
  1128. "left": 13,
  1129. "top": 629,
  1130. "height": 17,
  1131. "width": 35,
  1132. "title": "工序",
  1133. "right": 45.5,
  1134. "bottom": 647,
  1135. "vCenter": 29.5,
  1136. "hCenter": 638.5,
  1137. "coordinateSync": false,
  1138. "widthHeightSync": false,
  1139. "textAlign": "center",
  1140. "textContentVerticalAlign": "middle",
  1141. "qrCodeLevel": 0,
  1142. "borderLeft": "solid",
  1143. "borderTop": "solid",
  1144. "borderRight": "solid",
  1145. "borderBottom": "solid",
  1146. "draggable": false
  1147. },
  1148. "printElementType": {
  1149. "title": "文本",
  1150. "type": "text"
  1151. }
  1152. },
  1153. {
  1154. "options": {
  1155. "left": 48,
  1156. "top": 629,
  1157. "height": 17,
  1158. "width": 38,
  1159. "title": "机台号",
  1160. "right": 85.25,
  1161. "bottom": 645.5,
  1162. "vCenter": 66.25,
  1163. "hCenter": 637,
  1164. "coordinateSync": false,
  1165. "widthHeightSync": false,
  1166. "textAlign": "center",
  1167. "textContentVerticalAlign": "middle",
  1168. "qrCodeLevel": 0,
  1169. "borderLeft": "solid",
  1170. "borderTop": "solid",
  1171. "borderRight": "solid",
  1172. "borderBottom": "solid",
  1173. "draggable": false
  1174. },
  1175. "printElementType": {
  1176. "title": "文本",
  1177. "type": "text"
  1178. }
  1179. },
  1180. {
  1181. "options": {
  1182. "left": 86,
  1183. "top": 629,
  1184. "height": 17,
  1185. "width": 35,
  1186. "title": "日期",
  1187. "right": 119,
  1188. "bottom": 646.25,
  1189. "vCenter": 101.5,
  1190. "hCenter": 637.75,
  1191. "coordinateSync": false,
  1192. "widthHeightSync": false,
  1193. "textAlign": "center",
  1194. "textContentVerticalAlign": "middle",
  1195. "qrCodeLevel": 0,
  1196. "borderLeft": "solid",
  1197. "borderTop": "solid",
  1198. "borderRight": "solid",
  1199. "borderBottom": "solid",
  1200. "draggable": false
  1201. },
  1202. "printElementType": {
  1203. "title": "文本",
  1204. "type": "text"
  1205. }
  1206. },
  1207. {
  1208. "options": {
  1209. "left": 121,
  1210. "top": 629,
  1211. "height": 17,
  1212. "width": 35,
  1213. "title": "时间",
  1214. "right": 156.5,
  1215. "bottom": 645.5,
  1216. "vCenter": 139,
  1217. "hCenter": 637,
  1218. "coordinateSync": false,
  1219. "widthHeightSync": false,
  1220. "textAlign": "center",
  1221. "textContentVerticalAlign": "middle",
  1222. "qrCodeLevel": 0,
  1223. "borderLeft": "solid",
  1224. "borderTop": "solid",
  1225. "borderRight": "solid",
  1226. "borderBottom": "solid",
  1227. "draggable": false
  1228. },
  1229. "printElementType": {
  1230. "title": "文本",
  1231. "type": "text"
  1232. }
  1233. },
  1234. {
  1235. "options": {
  1236. "left": 156,
  1237. "top": 629,
  1238. "height": 17,
  1239. "width": 52,
  1240. "title": "合格品数",
  1241. "right": 185.75,
  1242. "bottom": 645.5,
  1243. "vCenter": 169.75,
  1244. "hCenter": 637,
  1245. "coordinateSync": false,
  1246. "widthHeightSync": false,
  1247. "textAlign": "center",
  1248. "textContentVerticalAlign": "middle",
  1249. "qrCodeLevel": 0,
  1250. "borderLeft": "solid",
  1251. "borderTop": "solid",
  1252. "borderRight": "solid",
  1253. "borderBottom": "solid",
  1254. "draggable": false
  1255. },
  1256. "printElementType": {
  1257. "title": "文本",
  1258. "type": "text"
  1259. }
  1260. },
  1261. {
  1262. "options": {
  1263. "left": 208,
  1264. "top": 629,
  1265. "height": 17,
  1266. "width": 38,
  1267. "title": "废品数",
  1268. "right": 243.5,
  1269. "bottom": 645.5,
  1270. "vCenter": 224.5,
  1271. "hCenter": 637,
  1272. "coordinateSync": false,
  1273. "widthHeightSync": false,
  1274. "textAlign": "center",
  1275. "textContentVerticalAlign": "middle",
  1276. "qrCodeLevel": 0,
  1277. "borderLeft": "solid",
  1278. "borderTop": "solid",
  1279. "borderRight": "solid",
  1280. "borderBottom": "solid",
  1281. "draggable": false
  1282. },
  1283. "printElementType": {
  1284. "title": "文本",
  1285. "type": "text"
  1286. }
  1287. },
  1288. {
  1289. "options": {
  1290. "left": 246,
  1291. "top": 629,
  1292. "height": 17,
  1293. "width": 101,
  1294. "title": "AB类废品及倒查",
  1295. "right": 276.5,
  1296. "bottom": 646.25,
  1297. "vCenter": 260.5,
  1298. "hCenter": 637.75,
  1299. "coordinateSync": false,
  1300. "widthHeightSync": false,
  1301. "textAlign": "center",
  1302. "textContentVerticalAlign": "middle",
  1303. "qrCodeLevel": 0,
  1304. "borderLeft": "solid",
  1305. "borderTop": "solid",
  1306. "borderRight": "solid",
  1307. "borderBottom": "solid",
  1308. "draggable": false
  1309. },
  1310. "printElementType": {
  1311. "title": "文本",
  1312. "type": "text"
  1313. }
  1314. },
  1315. {
  1316. "options": {
  1317. "left": 347,
  1318. "top": 629,
  1319. "height": 17,
  1320. "width": 35,
  1321. "title": "工序",
  1322. "right": 382.25,
  1323. "bottom": 643.25,
  1324. "vCenter": 364.75,
  1325. "hCenter": 634.75,
  1326. "coordinateSync": false,
  1327. "widthHeightSync": false,
  1328. "textAlign": "center",
  1329. "textContentVerticalAlign": "middle",
  1330. "qrCodeLevel": 0,
  1331. "borderLeft": "solid",
  1332. "borderTop": "solid",
  1333. "borderRight": "solid",
  1334. "borderBottom": "solid",
  1335. "draggable": false
  1336. },
  1337. "printElementType": {
  1338. "title": "文本",
  1339. "type": "text"
  1340. }
  1341. },
  1342. {
  1343. "options": {
  1344. "left": 382,
  1345. "top": 629,
  1346. "height": 17,
  1347. "width": 45,
  1348. "title": "检验员",
  1349. "right": 423,
  1350. "bottom": 644,
  1351. "vCenter": 400.5,
  1352. "hCenter": 635.5,
  1353. "coordinateSync": false,
  1354. "widthHeightSync": false,
  1355. "textAlign": "center",
  1356. "textContentVerticalAlign": "middle",
  1357. "qrCodeLevel": 0,
  1358. "borderLeft": "solid",
  1359. "borderTop": "solid",
  1360. "borderRight": "solid",
  1361. "borderBottom": "solid",
  1362. "draggable": false
  1363. },
  1364. "printElementType": {
  1365. "title": "文本",
  1366. "type": "text"
  1367. }
  1368. },
  1369. {
  1370. "options": {
  1371. "left": 427,
  1372. "top": 629,
  1373. "height": 17,
  1374. "width": 35,
  1375. "title": "日期",
  1376. "right": 460.25,
  1377. "bottom": 644,
  1378. "vCenter": 442.75,
  1379. "hCenter": 635.5,
  1380. "coordinateSync": false,
  1381. "widthHeightSync": false,
  1382. "textAlign": "center",
  1383. "textContentVerticalAlign": "middle",
  1384. "qrCodeLevel": 0,
  1385. "borderLeft": "solid",
  1386. "borderTop": "solid",
  1387. "borderRight": "solid",
  1388. "borderBottom": "solid",
  1389. "draggable": false
  1390. },
  1391. "printElementType": {
  1392. "title": "文本",
  1393. "type": "text"
  1394. }
  1395. },
  1396. {
  1397. "options": {
  1398. "left": 462,
  1399. "top": 629,
  1400. "height": 17,
  1401. "width": 35,
  1402. "title": "时间",
  1403. "right": 362,
  1404. "bottom": 648.5,
  1405. "vCenter": 346,
  1406. "hCenter": 640,
  1407. "coordinateSync": false,
  1408. "widthHeightSync": false,
  1409. "textAlign": "center",
  1410. "textContentVerticalAlign": "middle",
  1411. "qrCodeLevel": 0,
  1412. "borderLeft": "solid",
  1413. "borderTop": "solid",
  1414. "borderRight": "solid",
  1415. "borderBottom": "solid",
  1416. "draggable": false
  1417. },
  1418. "printElementType": {
  1419. "title": "文本",
  1420. "type": "text"
  1421. }
  1422. },
  1423. {
  1424. "options": {
  1425. "left": 497,
  1426. "top": 629,
  1427. "height": 17,
  1428. "width": 52,
  1429. "title": "合格品数",
  1430. "right": 544.75,
  1431. "bottom": 647,
  1432. "vCenter": 518.75,
  1433. "hCenter": 638.5,
  1434. "coordinateSync": false,
  1435. "widthHeightSync": false,
  1436. "textAlign": "center",
  1437. "textContentVerticalAlign": "middle",
  1438. "qrCodeLevel": 0,
  1439. "borderLeft": "solid",
  1440. "borderTop": "solid",
  1441. "borderRight": "solid",
  1442. "borderBottom": "solid",
  1443. "draggable": false
  1444. },
  1445. "printElementType": {
  1446. "title": "文本",
  1447. "type": "text"
  1448. }
  1449. },
  1450. {
  1451. "options": {
  1452. "left": 549,
  1453. "top": 629,
  1454. "height": 17,
  1455. "width": 36,
  1456. "title": "废品数",
  1457. "right": 584,
  1458. "bottom": 644.75,
  1459. "vCenter": 565,
  1460. "hCenter": 636.25,
  1461. "coordinateSync": false,
  1462. "widthHeightSync": false,
  1463. "textAlign": "center",
  1464. "textContentVerticalAlign": "middle",
  1465. "qrCodeLevel": 0,
  1466. "borderLeft": "solid",
  1467. "borderTop": "solid",
  1468. "borderRight": "solid",
  1469. "borderBottom": "solid",
  1470. "draggable": false
  1471. },
  1472. "printElementType": {
  1473. "title": "文本",
  1474. "type": "text"
  1475. }
  1476. },
  1477. {
  1478. "options": {
  1479. "left": 13,
  1480. "top": 646,
  1481. "height": 17,
  1482. "width": 35,
  1483. "title": "机检",
  1484. "right": 45.5,
  1485. "bottom": 661.25,
  1486. "vCenter": 29.5,
  1487. "hCenter": 652.75,
  1488. "coordinateSync": false,
  1489. "widthHeightSync": false,
  1490. "textAlign": "center",
  1491. "textContentVerticalAlign": "middle",
  1492. "qrCodeLevel": 0,
  1493. "borderLeft": "solid",
  1494. "borderTop": "solid",
  1495. "borderRight": "solid",
  1496. "borderBottom": "solid",
  1497. "draggable": false
  1498. },
  1499. "printElementType": {
  1500. "title": "文本",
  1501. "type": "text"
  1502. }
  1503. },
  1504. {
  1505. "options": {
  1506. "left": 48,
  1507. "top": 646,
  1508. "height": 17,
  1509. "width": 38,
  1510. "title": "机台号",
  1511. "right": 86.75,
  1512. "bottom": 665,
  1513. "vCenter": 67.75,
  1514. "hCenter": 656.5,
  1515. "coordinateSync": false,
  1516. "widthHeightSync": false,
  1517. "textAlign": "center",
  1518. "textContentVerticalAlign": "middle",
  1519. "qrCodeLevel": 0,
  1520. "field": "jth",
  1521. "hideTitle": true,
  1522. "borderLeft": "solid",
  1523. "borderTop": "solid",
  1524. "borderRight": "solid",
  1525. "borderBottom": "solid",
  1526. "draggable": false
  1527. },
  1528. "printElementType": {
  1529. "title": "文本",
  1530. "type": "text"
  1531. }
  1532. },
  1533. {
  1534. "options": {
  1535. "left": 86,
  1536. "top": 646,
  1537. "height": 17,
  1538. "width": 35,
  1539. "title": "日期",
  1540. "right": 118.25,
  1541. "bottom": 662,
  1542. "vCenter": 100.75,
  1543. "hCenter": 653.5,
  1544. "coordinateSync": false,
  1545. "widthHeightSync": false,
  1546. "textAlign": "center",
  1547. "textContentVerticalAlign": "middle",
  1548. "qrCodeLevel": 0,
  1549. "field": "rq",
  1550. "hideTitle": true,
  1551. "borderLeft": "solid",
  1552. "borderTop": "solid",
  1553. "borderRight": "solid",
  1554. "borderBottom": "solid",
  1555. "draggable": false
  1556. },
  1557. "printElementType": {
  1558. "title": "文本",
  1559. "type": "text"
  1560. }
  1561. },
  1562. {
  1563. "options": {
  1564. "left": 121,
  1565. "top": 646,
  1566. "height": 17,
  1567. "width": 35,
  1568. "title": "时间",
  1569. "right": 153.5,
  1570. "bottom": 663.5,
  1571. "vCenter": 136,
  1572. "hCenter": 655,
  1573. "coordinateSync": false,
  1574. "widthHeightSync": false,
  1575. "textAlign": "center",
  1576. "textContentVerticalAlign": "middle",
  1577. "qrCodeLevel": 0,
  1578. "field": "sj",
  1579. "hideTitle": true,
  1580. "borderLeft": "solid",
  1581. "borderTop": "solid",
  1582. "borderRight": "solid",
  1583. "borderBottom": "solid",
  1584. "draggable": false
  1585. },
  1586. "printElementType": {
  1587. "title": "文本",
  1588. "type": "text"
  1589. }
  1590. },
  1591. {
  1592. "options": {
  1593. "left": 156,
  1594. "top": 646,
  1595. "height": 17,
  1596. "width": 52,
  1597. "title": "合格品数",
  1598. "right": 205.75,
  1599. "bottom": 660.5,
  1600. "vCenter": 179.75,
  1601. "hCenter": 652,
  1602. "coordinateSync": false,
  1603. "widthHeightSync": false,
  1604. "textAlign": "center",
  1605. "textContentVerticalAlign": "middle",
  1606. "qrCodeLevel": 0,
  1607. "field": "hgps",
  1608. "hideTitle": true,
  1609. "borderLeft": "solid",
  1610. "borderTop": "solid",
  1611. "borderRight": "solid",
  1612. "borderBottom": "solid",
  1613. "draggable": false
  1614. },
  1615. "printElementType": {
  1616. "title": "文本",
  1617. "type": "text"
  1618. }
  1619. },
  1620. {
  1621. "options": {
  1622. "left": 208,
  1623. "top": 646,
  1624. "height": 17,
  1625. "width": 38,
  1626. "title": "废品数",
  1627. "right": 242,
  1628. "bottom": 660.5,
  1629. "vCenter": 223,
  1630. "hCenter": 652,
  1631. "coordinateSync": false,
  1632. "widthHeightSync": false,
  1633. "textAlign": "center",
  1634. "textContentVerticalAlign": "middle",
  1635. "qrCodeLevel": 0,
  1636. "field": "fps",
  1637. "hideTitle": true,
  1638. "borderLeft": "solid",
  1639. "borderTop": "solid",
  1640. "borderRight": "solid",
  1641. "borderBottom": "solid",
  1642. "draggable": false
  1643. },
  1644. "printElementType": {
  1645. "title": "文本",
  1646. "type": "text"
  1647. }
  1648. },
  1649. {
  1650. "options": {
  1651. "left": 246,
  1652. "top": 646,
  1653. "height": 17,
  1654. "width": 101,
  1655. "title": "AB类废品及倒查",
  1656. "right": 277.25,
  1657. "bottom": 662,
  1658. "vCenter": 261.25,
  1659. "hCenter": 653.5,
  1660. "coordinateSync": false,
  1661. "widthHeightSync": false,
  1662. "textAlign": "center",
  1663. "textContentVerticalAlign": "middle",
  1664. "qrCodeLevel": 0,
  1665. "field": "ABlfpjdc",
  1666. "hideTitle": true,
  1667. "borderLeft": "solid",
  1668. "borderTop": "solid",
  1669. "borderRight": "solid",
  1670. "borderBottom": "solid",
  1671. "draggable": false
  1672. },
  1673. "printElementType": {
  1674. "title": "文本",
  1675. "type": "text"
  1676. }
  1677. },
  1678. {
  1679. "options": {
  1680. "left": 347,
  1681. "top": 646,
  1682. "height": 17,
  1683. "width": 35,
  1684. "title": "工序",
  1685. "right": 381.5,
  1686. "bottom": 662,
  1687. "vCenter": 364,
  1688. "hCenter": 653.5,
  1689. "coordinateSync": false,
  1690. "widthHeightSync": false,
  1691. "textAlign": "center",
  1692. "textContentVerticalAlign": "middle",
  1693. "qrCodeLevel": 0,
  1694. "field": "gx",
  1695. "hideTitle": true,
  1696. "borderLeft": "solid",
  1697. "borderTop": "solid",
  1698. "borderRight": "solid",
  1699. "borderBottom": "solid",
  1700. "draggable": false
  1701. },
  1702. "printElementType": {
  1703. "title": "文本",
  1704. "type": "text"
  1705. }
  1706. },
  1707. {
  1708. "options": {
  1709. "left": 382,
  1710. "top": 646,
  1711. "height": 17,
  1712. "width": 45,
  1713. "title": "检验员",
  1714. "right": 426,
  1715. "bottom": 659.75,
  1716. "vCenter": 403.5,
  1717. "hCenter": 651.25,
  1718. "coordinateSync": false,
  1719. "widthHeightSync": false,
  1720. "textAlign": "center",
  1721. "textContentVerticalAlign": "middle",
  1722. "qrCodeLevel": 0,
  1723. "field": "jyy",
  1724. "hideTitle": true,
  1725. "borderLeft": "solid",
  1726. "borderTop": "solid",
  1727. "borderRight": "solid",
  1728. "borderBottom": "solid",
  1729. "draggable": false
  1730. },
  1731. "printElementType": {
  1732. "title": "文本",
  1733. "type": "text"
  1734. }
  1735. },
  1736. {
  1737. "options": {
  1738. "left": 427,
  1739. "top": 646,
  1740. "height": 17,
  1741. "width": 35,
  1742. "title": "日期",
  1743. "right": 459.5,
  1744. "bottom": 659.75,
  1745. "vCenter": 442,
  1746. "hCenter": 651.25,
  1747. "coordinateSync": false,
  1748. "widthHeightSync": false,
  1749. "textAlign": "center",
  1750. "textContentVerticalAlign": "middle",
  1751. "qrCodeLevel": 0,
  1752. "field": "rq",
  1753. "hideTitle": true,
  1754. "borderLeft": "solid",
  1755. "borderTop": "solid",
  1756. "borderRight": "solid",
  1757. "borderBottom": "solid",
  1758. "draggable": false
  1759. },
  1760. "printElementType": {
  1761. "title": "文本",
  1762. "type": "text"
  1763. }
  1764. },
  1765. {
  1766. "options": {
  1767. "left": 462,
  1768. "top": 646,
  1769. "height": 17,
  1770. "width": 35,
  1771. "title": "时间",
  1772. "right": 493.25,
  1773. "bottom": 664.25,
  1774. "vCenter": 475.75,
  1775. "hCenter": 655.75,
  1776. "coordinateSync": false,
  1777. "widthHeightSync": false,
  1778. "textAlign": "center",
  1779. "textContentVerticalAlign": "middle",
  1780. "qrCodeLevel": 0,
  1781. "field": "sj",
  1782. "hideTitle": true,
  1783. "borderLeft": "solid",
  1784. "borderTop": "solid",
  1785. "borderRight": "solid",
  1786. "borderBottom": "solid",
  1787. "draggable": false
  1788. },
  1789. "printElementType": {
  1790. "title": "文本",
  1791. "type": "text"
  1792. }
  1793. },
  1794. {
  1795. "options": {
  1796. "left": 497,
  1797. "top": 646,
  1798. "height": 17,
  1799. "width": 52,
  1800. "title": "合格品数",
  1801. "right": 547,
  1802. "bottom": 662,
  1803. "vCenter": 521,
  1804. "hCenter": 653.5,
  1805. "coordinateSync": false,
  1806. "widthHeightSync": false,
  1807. "textAlign": "center",
  1808. "textContentVerticalAlign": "middle",
  1809. "qrCodeLevel": 0,
  1810. "field": "hgps",
  1811. "hideTitle": true,
  1812. "borderLeft": "solid",
  1813. "borderTop": "solid",
  1814. "borderRight": "solid",
  1815. "borderBottom": "solid",
  1816. "draggable": false
  1817. },
  1818. "printElementType": {
  1819. "title": "文本",
  1820. "type": "text"
  1821. }
  1822. },
  1823. {
  1824. "options": {
  1825. "left": 549,
  1826. "top": 646,
  1827. "height": 17,
  1828. "width": 36,
  1829. "title": "废品数",
  1830. "right": 582.5,
  1831. "bottom": 661.25,
  1832. "vCenter": 563.5,
  1833. "hCenter": 652.75,
  1834. "coordinateSync": false,
  1835. "widthHeightSync": false,
  1836. "textAlign": "center",
  1837. "textContentVerticalAlign": "middle",
  1838. "qrCodeLevel": 0,
  1839. "field": "fps",
  1840. "hideTitle": true,
  1841. "borderLeft": "solid",
  1842. "borderTop": "solid",
  1843. "borderRight": "solid",
  1844. "borderBottom": "solid",
  1845. "draggable": false
  1846. },
  1847. "printElementType": {
  1848. "title": "文本",
  1849. "type": "text"
  1850. }
  1851. },
  1852. {
  1853. "options": {
  1854. "left": 13,
  1855. "top": 663,
  1856. "height": 17,
  1857. "width": 572,
  1858. "title": "机台废次品信息记录",
  1859. "coordinateSync": false,
  1860. "widthHeightSync": false,
  1861. "fontSize": 12,
  1862. "textAlign": "center",
  1863. "textContentVerticalAlign": "middle",
  1864. "lineHeight": 15,
  1865. "borderLeft": "solid",
  1866. "borderTop": "solid",
  1867. "borderRight": "solid",
  1868. "borderBottom": "solid",
  1869. "qrCodeLevel": 0,
  1870. "right": 139.75,
  1871. "bottom": 677.75,
  1872. "vCenter": 76.25,
  1873. "hCenter": 669.25,
  1874. "draggable": false
  1875. },
  1876. "printElementType": {
  1877. "title": "文本",
  1878. "type": "text"
  1879. }
  1880. },
  1881. {
  1882. "options": {
  1883. "left": 13,
  1884. "top": 680,
  1885. "height": 16,
  1886. "width": 54,
  1887. "title": "废次品工序",
  1888. "right": 67.5,
  1889. "bottom": 693.25,
  1890. "vCenter": 40.5,
  1891. "hCenter": 685.25,
  1892. "coordinateSync": false,
  1893. "widthHeightSync": false,
  1894. "textAlign": "center",
  1895. "textContentVerticalAlign": "middle",
  1896. "qrCodeLevel": 0,
  1897. "borderLeft": "solid",
  1898. "borderTop": "solid",
  1899. "borderRight": "solid",
  1900. "borderBottom": "solid",
  1901. "draggable": false
  1902. },
  1903. "printElementType": {
  1904. "title": "文本",
  1905. "type": "text"
  1906. }
  1907. },
  1908. {
  1909. "options": {
  1910. "left": 67,
  1911. "top": 680,
  1912. "height": 128,
  1913. "width": 89,
  1914. "title": "废次品留样黏贴处",
  1915. "right": 157.25,
  1916. "bottom": 693.5,
  1917. "vCenter": 112.75,
  1918. "hCenter": 686.5,
  1919. "coordinateSync": false,
  1920. "widthHeightSync": false,
  1921. "textAlign": "center",
  1922. "textContentVerticalAlign": "middle",
  1923. "qrCodeLevel": 0,
  1924. "borderLeft": "solid",
  1925. "borderTop": "solid",
  1926. "borderRight": "solid",
  1927. "borderBottom": "solid",
  1928. "draggable": false
  1929. },
  1930. "printElementType": {
  1931. "title": "文本",
  1932. "type": "text"
  1933. }
  1934. },
  1935. {
  1936. "options": {
  1937. "left": 156,
  1938. "top": 680,
  1939. "height": 16,
  1940. "width": 54,
  1941. "title": "废次品工序",
  1942. "right": 208.5,
  1943. "bottom": 696.25,
  1944. "vCenter": 181.5,
  1945. "hCenter": 688.25,
  1946. "coordinateSync": false,
  1947. "widthHeightSync": false,
  1948. "textAlign": "center",
  1949. "textContentVerticalAlign": "middle",
  1950. "qrCodeLevel": 0,
  1951. "borderLeft": "solid",
  1952. "borderTop": "solid",
  1953. "borderRight": "solid",
  1954. "borderBottom": "solid",
  1955. "draggable": false
  1956. },
  1957. "printElementType": {
  1958. "title": "文本",
  1959. "type": "text"
  1960. }
  1961. },
  1962. {
  1963. "options": {
  1964. "left": 210,
  1965. "top": 680,
  1966. "height": 128,
  1967. "width": 89,
  1968. "title": "废次品留样黏贴处",
  1969. "right": 297,
  1970. "bottom": 809,
  1971. "vCenter": 253.5,
  1972. "hCenter": 802,
  1973. "coordinateSync": false,
  1974. "widthHeightSync": false,
  1975. "textAlign": "center",
  1976. "textContentVerticalAlign": "middle",
  1977. "qrCodeLevel": 0,
  1978. "borderLeft": "solid",
  1979. "borderTop": "solid",
  1980. "borderRight": "solid",
  1981. "borderBottom": "solid",
  1982. "draggable": false
  1983. },
  1984. "printElementType": {
  1985. "title": "文本",
  1986. "type": "text"
  1987. }
  1988. },
  1989. {
  1990. "options": {
  1991. "left": 299,
  1992. "top": 680,
  1993. "height": 16,
  1994. "width": 54,
  1995. "title": "废次品工序",
  1996. "right": 353.25,
  1997. "bottom": 693.25,
  1998. "vCenter": 326.25,
  1999. "hCenter": 685.25,
  2000. "coordinateSync": false,
  2001. "widthHeightSync": false,
  2002. "textAlign": "center",
  2003. "textContentVerticalAlign": "middle",
  2004. "qrCodeLevel": 0,
  2005. "borderLeft": "solid",
  2006. "borderTop": "solid",
  2007. "borderRight": "solid",
  2008. "borderBottom": "solid",
  2009. "draggable": false
  2010. },
  2011. "printElementType": {
  2012. "title": "文本",
  2013. "type": "text"
  2014. }
  2015. },
  2016. {
  2017. "options": {
  2018. "left": 353,
  2019. "top": 680,
  2020. "height": 128,
  2021. "width": 89,
  2022. "title": "废次品留样黏贴处",
  2023. "right": 439.5,
  2024. "bottom": 809,
  2025. "vCenter": 396,
  2026. "hCenter": 802,
  2027. "coordinateSync": false,
  2028. "widthHeightSync": false,
  2029. "textAlign": "center",
  2030. "textContentVerticalAlign": "middle",
  2031. "qrCodeLevel": 0,
  2032. "borderLeft": "solid",
  2033. "borderTop": "solid",
  2034. "borderRight": "solid",
  2035. "borderBottom": "solid",
  2036. "draggable": false
  2037. },
  2038. "printElementType": {
  2039. "title": "文本",
  2040. "type": "text"
  2041. }
  2042. },
  2043. {
  2044. "options": {
  2045. "left": 442,
  2046. "top": 680,
  2047. "height": 16,
  2048. "width": 54,
  2049. "title": "废次品工序",
  2050. "right": 497.25,
  2051. "bottom": 696.25,
  2052. "vCenter": 470.25,
  2053. "hCenter": 688.25,
  2054. "coordinateSync": false,
  2055. "widthHeightSync": false,
  2056. "textAlign": "center",
  2057. "textContentVerticalAlign": "middle",
  2058. "qrCodeLevel": 0,
  2059. "borderLeft": "solid",
  2060. "borderTop": "solid",
  2061. "borderRight": "solid",
  2062. "borderBottom": "solid",
  2063. "draggable": false
  2064. },
  2065. "printElementType": {
  2066. "title": "文本",
  2067. "type": "text"
  2068. }
  2069. },
  2070. {
  2071. "options": {
  2072. "left": 496,
  2073. "top": 680,
  2074. "height": 128,
  2075. "width": 89,
  2076. "title": "废次品留样黏贴处",
  2077. "right": 564.25,
  2078. "bottom": 807.5,
  2079. "vCenter": 523.25,
  2080. "hCenter": 800.5,
  2081. "coordinateSync": false,
  2082. "widthHeightSync": false,
  2083. "textAlign": "center",
  2084. "textContentVerticalAlign": "middle",
  2085. "qrCodeLevel": 0,
  2086. "borderLeft": "solid",
  2087. "borderTop": "solid",
  2088. "borderRight": "solid",
  2089. "borderBottom": "solid",
  2090. "draggable": false
  2091. },
  2092. "printElementType": {
  2093. "title": "文本",
  2094. "type": "text"
  2095. }
  2096. },
  2097. {
  2098. "options": {
  2099. "left": 13,
  2100. "top": 696,
  2101. "height": 16,
  2102. "width": 54,
  2103. "title": "废次品工序",
  2104. "right": 67.5,
  2105. "bottom": 711.25,
  2106. "vCenter": 40.5,
  2107. "hCenter": 703.25,
  2108. "coordinateSync": false,
  2109. "widthHeightSync": false,
  2110. "textAlign": "center",
  2111. "textContentVerticalAlign": "middle",
  2112. "qrCodeLevel": 0,
  2113. "field": "fcpgx",
  2114. "hideTitle": true,
  2115. "borderLeft": "solid",
  2116. "borderTop": "solid",
  2117. "borderRight": "solid",
  2118. "borderBottom": "solid",
  2119. "draggable": false
  2120. },
  2121. "printElementType": {
  2122. "title": "文本",
  2123. "type": "text"
  2124. }
  2125. },
  2126. {
  2127. "options": {
  2128. "left": 156,
  2129. "top": 696,
  2130. "height": 16,
  2131. "width": 54,
  2132. "title": "废次品工序",
  2133. "right": 207.24609375,
  2134. "bottom": 710.74609375,
  2135. "vCenter": 180.24609375,
  2136. "hCenter": 702.74609375,
  2137. "coordinateSync": false,
  2138. "widthHeightSync": false,
  2139. "textAlign": "center",
  2140. "textContentVerticalAlign": "middle",
  2141. "qrCodeLevel": 0,
  2142. "field": "fcpgx",
  2143. "hideTitle": true,
  2144. "borderLeft": "solid",
  2145. "borderTop": "solid",
  2146. "borderRight": "solid",
  2147. "borderBottom": "solid",
  2148. "draggable": false
  2149. },
  2150. "printElementType": {
  2151. "title": "文本",
  2152. "type": "text"
  2153. }
  2154. },
  2155. {
  2156. "options": {
  2157. "left": 299,
  2158. "top": 696,
  2159. "height": 16,
  2160. "width": 54,
  2161. "title": "废次品工序",
  2162. "right": 352.5,
  2163. "bottom": 709,
  2164. "vCenter": 325.5,
  2165. "hCenter": 701,
  2166. "coordinateSync": false,
  2167. "widthHeightSync": false,
  2168. "textAlign": "center",
  2169. "textContentVerticalAlign": "middle",
  2170. "qrCodeLevel": 0,
  2171. "field": "fcpgx",
  2172. "hideTitle": true,
  2173. "borderLeft": "solid",
  2174. "borderTop": "solid",
  2175. "borderRight": "solid",
  2176. "borderBottom": "solid",
  2177. "draggable": false
  2178. },
  2179. "printElementType": {
  2180. "title": "文本",
  2181. "type": "text"
  2182. }
  2183. },
  2184. {
  2185. "options": {
  2186. "left": 442,
  2187. "top": 696,
  2188. "height": 16,
  2189. "width": 54,
  2190. "title": "废次品工序",
  2191. "right": 492.24609375,
  2192. "bottom": 709.99609375,
  2193. "vCenter": 465.24609375,
  2194. "hCenter": 701.99609375,
  2195. "coordinateSync": false,
  2196. "widthHeightSync": false,
  2197. "textAlign": "center",
  2198. "textContentVerticalAlign": "middle",
  2199. "qrCodeLevel": 0,
  2200. "field": "fcpgx",
  2201. "hideTitle": true,
  2202. "borderLeft": "solid",
  2203. "borderTop": "solid",
  2204. "borderRight": "solid",
  2205. "borderBottom": "solid",
  2206. "draggable": false
  2207. },
  2208. "printElementType": {
  2209. "title": "文本",
  2210. "type": "text"
  2211. }
  2212. },
  2213. {
  2214. "options": {
  2215. "left": 13,
  2216. "top": 712,
  2217. "height": 16,
  2218. "width": 54,
  2219. "title": "废次品原因",
  2220. "right": 67.5,
  2221. "bottom": 728.5,
  2222. "vCenter": 40.5,
  2223. "hCenter": 720.5,
  2224. "coordinateSync": false,
  2225. "widthHeightSync": false,
  2226. "textAlign": "center",
  2227. "textContentVerticalAlign": "middle",
  2228. "qrCodeLevel": 0,
  2229. "borderLeft": "solid",
  2230. "borderTop": "solid",
  2231. "borderRight": "solid",
  2232. "borderBottom": "solid",
  2233. "draggable": false
  2234. },
  2235. "printElementType": {
  2236. "title": "文本",
  2237. "type": "text"
  2238. }
  2239. },
  2240. {
  2241. "options": {
  2242. "left": 156,
  2243. "top": 712,
  2244. "height": 16,
  2245. "width": 54,
  2246. "title": "废次品原因",
  2247. "right": 209.49609375,
  2248. "bottom": 725.74609375,
  2249. "vCenter": 182.49609375,
  2250. "hCenter": 717.74609375,
  2251. "coordinateSync": false,
  2252. "widthHeightSync": false,
  2253. "textAlign": "center",
  2254. "textContentVerticalAlign": "middle",
  2255. "qrCodeLevel": 0,
  2256. "borderLeft": "solid",
  2257. "borderTop": "solid",
  2258. "borderRight": "solid",
  2259. "borderBottom": "solid",
  2260. "draggable": false
  2261. },
  2262. "printElementType": {
  2263. "title": "文本",
  2264. "type": "text"
  2265. }
  2266. },
  2267. {
  2268. "options": {
  2269. "left": 299,
  2270. "top": 712,
  2271. "height": 16,
  2272. "width": 54,
  2273. "title": "废次品原因",
  2274. "right": 348,
  2275. "bottom": 439,
  2276. "vCenter": 321,
  2277. "hCenter": 431,
  2278. "coordinateSync": false,
  2279. "widthHeightSync": false,
  2280. "textAlign": "center",
  2281. "textContentVerticalAlign": "middle",
  2282. "qrCodeLevel": 0,
  2283. "draggable": false,
  2284. "borderLeft": "solid",
  2285. "borderTop": "solid",
  2286. "borderRight": "solid",
  2287. "borderBottom": "solid"
  2288. },
  2289. "printElementType": {
  2290. "title": "文本",
  2291. "type": "text"
  2292. }
  2293. },
  2294. {
  2295. "options": {
  2296. "left": 442,
  2297. "top": 712,
  2298. "height": 16,
  2299. "width": 54,
  2300. "title": "废次品原因",
  2301. "right": 498,
  2302. "bottom": 727.75,
  2303. "vCenter": 471,
  2304. "hCenter": 719.75,
  2305. "coordinateSync": false,
  2306. "widthHeightSync": false,
  2307. "textAlign": "center",
  2308. "textContentVerticalAlign": "middle",
  2309. "qrCodeLevel": 0,
  2310. "borderLeft": "solid",
  2311. "borderTop": "solid",
  2312. "borderRight": "solid",
  2313. "borderBottom": "solid",
  2314. "draggable": false
  2315. },
  2316. "printElementType": {
  2317. "title": "文本",
  2318. "type": "text"
  2319. }
  2320. },
  2321. {
  2322. "options": {
  2323. "left": 13,
  2324. "top": 728,
  2325. "height": 16,
  2326. "width": 54,
  2327. "title": "废次品原因",
  2328. "right": 66.75,
  2329. "bottom": 745,
  2330. "vCenter": 39.75,
  2331. "hCenter": 737,
  2332. "coordinateSync": false,
  2333. "widthHeightSync": false,
  2334. "textAlign": "center",
  2335. "textContentVerticalAlign": "middle",
  2336. "qrCodeLevel": 0,
  2337. "field": "fcpyy",
  2338. "hideTitle": true,
  2339. "borderLeft": "solid",
  2340. "borderTop": "solid",
  2341. "borderRight": "solid",
  2342. "borderBottom": "solid",
  2343. "draggable": false
  2344. },
  2345. "printElementType": {
  2346. "title": "文本",
  2347. "type": "text"
  2348. }
  2349. },
  2350. {
  2351. "options": {
  2352. "left": 156,
  2353. "top": 728,
  2354. "height": 16,
  2355. "width": 54,
  2356. "title": "废次品原因",
  2357. "right": 211.74609375,
  2358. "bottom": 743.74609375,
  2359. "vCenter": 184.74609375,
  2360. "hCenter": 735.74609375,
  2361. "coordinateSync": false,
  2362. "widthHeightSync": false,
  2363. "textAlign": "center",
  2364. "textContentVerticalAlign": "middle",
  2365. "qrCodeLevel": 0,
  2366. "field": "fcpyy",
  2367. "hideTitle": true,
  2368. "borderLeft": "solid",
  2369. "borderTop": "solid",
  2370. "borderRight": "solid",
  2371. "borderBottom": "solid",
  2372. "draggable": false
  2373. },
  2374. "printElementType": {
  2375. "title": "文本",
  2376. "type": "text"
  2377. }
  2378. },
  2379. {
  2380. "options": {
  2381. "left": 299,
  2382. "top": 728,
  2383. "height": 16,
  2384. "width": 54,
  2385. "title": "废次品原因",
  2386. "right": 353.49609375,
  2387. "bottom": 744.49609375,
  2388. "vCenter": 326.49609375,
  2389. "hCenter": 736.49609375,
  2390. "coordinateSync": false,
  2391. "widthHeightSync": false,
  2392. "textAlign": "center",
  2393. "textContentVerticalAlign": "middle",
  2394. "qrCodeLevel": 0,
  2395. "field": "fcpyy",
  2396. "hideTitle": true,
  2397. "borderLeft": "solid",
  2398. "borderTop": "solid",
  2399. "borderRight": "solid",
  2400. "borderBottom": "solid",
  2401. "draggable": false
  2402. },
  2403. "printElementType": {
  2404. "title": "文本",
  2405. "type": "text"
  2406. }
  2407. },
  2408. {
  2409. "options": {
  2410. "left": 442,
  2411. "top": 728,
  2412. "height": 16,
  2413. "width": 54,
  2414. "title": "废次品原因",
  2415. "right": 494.25,
  2416. "bottom": 744.25,
  2417. "vCenter": 467.25,
  2418. "hCenter": 736.25,
  2419. "coordinateSync": false,
  2420. "widthHeightSync": false,
  2421. "textAlign": "center",
  2422. "textContentVerticalAlign": "middle",
  2423. "qrCodeLevel": 0,
  2424. "field": "fcpyy",
  2425. "hideTitle": true,
  2426. "borderLeft": "solid",
  2427. "borderTop": "solid",
  2428. "borderRight": "solid",
  2429. "borderBottom": "solid",
  2430. "draggable": false
  2431. },
  2432. "printElementType": {
  2433. "title": "文本",
  2434. "type": "text"
  2435. }
  2436. },
  2437. {
  2438. "options": {
  2439. "left": 13,
  2440. "top": 744,
  2441. "height": 16,
  2442. "width": 54,
  2443. "title": "废次品数量",
  2444. "right": 65.25,
  2445. "bottom": 761.5,
  2446. "vCenter": 38.25,
  2447. "hCenter": 753.5,
  2448. "coordinateSync": false,
  2449. "widthHeightSync": false,
  2450. "textAlign": "center",
  2451. "textContentVerticalAlign": "middle",
  2452. "qrCodeLevel": 0,
  2453. "borderLeft": "solid",
  2454. "borderTop": "solid",
  2455. "borderRight": "solid",
  2456. "borderBottom": "solid",
  2457. "draggable": false
  2458. },
  2459. "printElementType": {
  2460. "title": "文本",
  2461. "type": "text"
  2462. }
  2463. },
  2464. {
  2465. "options": {
  2466. "left": 156,
  2467. "top": 744,
  2468. "height": 16,
  2469. "width": 54,
  2470. "title": "废次品数量",
  2471. "right": 209.49609375,
  2472. "bottom": 759.49609375,
  2473. "vCenter": 182.49609375,
  2474. "hCenter": 751.49609375,
  2475. "coordinateSync": false,
  2476. "widthHeightSync": false,
  2477. "textAlign": "center",
  2478. "textContentVerticalAlign": "middle",
  2479. "qrCodeLevel": 0,
  2480. "borderLeft": "solid",
  2481. "borderTop": "solid",
  2482. "borderRight": "solid",
  2483. "borderBottom": "solid",
  2484. "draggable": false
  2485. },
  2486. "printElementType": {
  2487. "title": "文本",
  2488. "type": "text"
  2489. }
  2490. },
  2491. {
  2492. "options": {
  2493. "left": 299,
  2494. "top": 744,
  2495. "height": 16,
  2496. "width": 54,
  2497. "title": "废次品数量",
  2498. "right": 350.25,
  2499. "bottom": 758.5,
  2500. "vCenter": 323.25,
  2501. "hCenter": 750.5,
  2502. "coordinateSync": false,
  2503. "widthHeightSync": false,
  2504. "textAlign": "center",
  2505. "textContentVerticalAlign": "middle",
  2506. "qrCodeLevel": 0,
  2507. "borderLeft": "solid",
  2508. "borderTop": "solid",
  2509. "borderRight": "solid",
  2510. "borderBottom": "solid",
  2511. "draggable": false
  2512. },
  2513. "printElementType": {
  2514. "title": "文本",
  2515. "type": "text"
  2516. }
  2517. },
  2518. {
  2519. "options": {
  2520. "left": 442,
  2521. "top": 744,
  2522. "height": 16,
  2523. "width": 54,
  2524. "title": "废次品数量",
  2525. "right": 495,
  2526. "bottom": 759.25,
  2527. "vCenter": 468,
  2528. "hCenter": 751.25,
  2529. "coordinateSync": false,
  2530. "widthHeightSync": false,
  2531. "textAlign": "center",
  2532. "textContentVerticalAlign": "middle",
  2533. "qrCodeLevel": 0,
  2534. "borderLeft": "solid",
  2535. "borderTop": "solid",
  2536. "borderRight": "solid",
  2537. "borderBottom": "solid",
  2538. "draggable": false
  2539. },
  2540. "printElementType": {
  2541. "title": "文本",
  2542. "type": "text"
  2543. }
  2544. },
  2545. {
  2546. "options": {
  2547. "left": 13,
  2548. "top": 760,
  2549. "height": 16,
  2550. "width": 54,
  2551. "title": "废次品数量",
  2552. "right": 66,
  2553. "bottom": 778.75,
  2554. "vCenter": 39,
  2555. "hCenter": 770.75,
  2556. "coordinateSync": false,
  2557. "widthHeightSync": false,
  2558. "textAlign": "center",
  2559. "textContentVerticalAlign": "middle",
  2560. "qrCodeLevel": 0,
  2561. "field": "fcpsl",
  2562. "hideTitle": true,
  2563. "borderLeft": "solid",
  2564. "borderTop": "solid",
  2565. "borderRight": "solid",
  2566. "borderBottom": "solid",
  2567. "draggable": false
  2568. },
  2569. "printElementType": {
  2570. "title": "文本",
  2571. "type": "text"
  2572. }
  2573. },
  2574. {
  2575. "options": {
  2576. "left": 156,
  2577. "top": 760,
  2578. "height": 16,
  2579. "width": 54,
  2580. "title": "废次品数量",
  2581. "right": 211.74609375,
  2582. "bottom": 775.24609375,
  2583. "vCenter": 184.74609375,
  2584. "hCenter": 767.24609375,
  2585. "coordinateSync": false,
  2586. "widthHeightSync": false,
  2587. "textAlign": "center",
  2588. "textContentVerticalAlign": "middle",
  2589. "qrCodeLevel": 0,
  2590. "field": "fcpsl",
  2591. "hideTitle": true,
  2592. "borderLeft": "solid",
  2593. "borderTop": "solid",
  2594. "borderRight": "solid",
  2595. "borderBottom": "solid",
  2596. "draggable": false
  2597. },
  2598. "printElementType": {
  2599. "title": "文本",
  2600. "type": "text"
  2601. }
  2602. },
  2603. {
  2604. "options": {
  2605. "left": 299,
  2606. "top": 760,
  2607. "height": 16,
  2608. "width": 54,
  2609. "title": "废次品数量",
  2610. "right": 354.75,
  2611. "bottom": 778.75,
  2612. "vCenter": 327.75,
  2613. "hCenter": 770.75,
  2614. "coordinateSync": false,
  2615. "widthHeightSync": false,
  2616. "textAlign": "center",
  2617. "textContentVerticalAlign": "middle",
  2618. "qrCodeLevel": 0,
  2619. "field": "fcpsl",
  2620. "hideTitle": true,
  2621. "borderLeft": "solid",
  2622. "borderTop": "solid",
  2623. "borderRight": "solid",
  2624. "borderBottom": "solid",
  2625. "draggable": false
  2626. },
  2627. "printElementType": {
  2628. "title": "文本",
  2629. "type": "text"
  2630. }
  2631. },
  2632. {
  2633. "options": {
  2634. "left": 442,
  2635. "top": 760,
  2636. "height": 16,
  2637. "width": 54,
  2638. "title": "废次品数量",
  2639. "right": 494.25,
  2640. "bottom": 775,
  2641. "vCenter": 467.25,
  2642. "hCenter": 767,
  2643. "coordinateSync": false,
  2644. "widthHeightSync": false,
  2645. "textAlign": "center",
  2646. "textContentVerticalAlign": "middle",
  2647. "qrCodeLevel": 0,
  2648. "field": "fcpsl",
  2649. "hideTitle": true,
  2650. "borderLeft": "solid",
  2651. "borderTop": "solid",
  2652. "borderRight": "solid",
  2653. "borderBottom": "solid",
  2654. "draggable": false
  2655. },
  2656. "printElementType": {
  2657. "title": "文本",
  2658. "type": "text"
  2659. }
  2660. },
  2661. {
  2662. "options": {
  2663. "left": 13,
  2664. "top": 776,
  2665. "height": 16,
  2666. "width": 54,
  2667. "title": "联拼号",
  2668. "right": 65.25,
  2669. "bottom": 792.25,
  2670. "vCenter": 38.25,
  2671. "hCenter": 784.25,
  2672. "coordinateSync": false,
  2673. "widthHeightSync": false,
  2674. "textAlign": "center",
  2675. "textContentVerticalAlign": "middle",
  2676. "qrCodeLevel": 0,
  2677. "borderLeft": "solid",
  2678. "borderTop": "solid",
  2679. "borderRight": "solid",
  2680. "borderBottom": "solid",
  2681. "draggable": false
  2682. },
  2683. "printElementType": {
  2684. "title": "文本",
  2685. "type": "text"
  2686. }
  2687. },
  2688. {
  2689. "options": {
  2690. "left": 156,
  2691. "top": 776,
  2692. "height": 16,
  2693. "width": 54,
  2694. "title": "联拼号",
  2695. "right": 207.24609375,
  2696. "bottom": 792.49609375,
  2697. "vCenter": 180.24609375,
  2698. "hCenter": 784.49609375,
  2699. "coordinateSync": false,
  2700. "widthHeightSync": false,
  2701. "textAlign": "center",
  2702. "textContentVerticalAlign": "middle",
  2703. "qrCodeLevel": 0,
  2704. "borderLeft": "solid",
  2705. "borderTop": "solid",
  2706. "borderRight": "solid",
  2707. "borderBottom": "solid",
  2708. "draggable": false
  2709. },
  2710. "printElementType": {
  2711. "title": "文本",
  2712. "type": "text"
  2713. }
  2714. },
  2715. {
  2716. "options": {
  2717. "left": 299,
  2718. "top": 776,
  2719. "height": 16,
  2720. "width": 54,
  2721. "title": "联拼号",
  2722. "right": 353.49609375,
  2723. "bottom": 793.99609375,
  2724. "vCenter": 326.49609375,
  2725. "hCenter": 785.99609375,
  2726. "coordinateSync": false,
  2727. "widthHeightSync": false,
  2728. "textAlign": "center",
  2729. "textContentVerticalAlign": "middle",
  2730. "qrCodeLevel": 0,
  2731. "borderLeft": "solid",
  2732. "borderTop": "solid",
  2733. "borderRight": "solid",
  2734. "borderBottom": "solid",
  2735. "draggable": false
  2736. },
  2737. "printElementType": {
  2738. "title": "文本",
  2739. "type": "text"
  2740. }
  2741. },
  2742. {
  2743. "options": {
  2744. "left": 442,
  2745. "top": 776,
  2746. "height": 16,
  2747. "width": 54,
  2748. "title": "联拼号",
  2749. "right": 497.25,
  2750. "bottom": 792.25,
  2751. "vCenter": 470.25,
  2752. "hCenter": 784.25,
  2753. "coordinateSync": false,
  2754. "widthHeightSync": false,
  2755. "textAlign": "center",
  2756. "textContentVerticalAlign": "middle",
  2757. "qrCodeLevel": 0,
  2758. "borderLeft": "solid",
  2759. "borderTop": "solid",
  2760. "borderRight": "solid",
  2761. "borderBottom": "solid",
  2762. "draggable": false
  2763. },
  2764. "printElementType": {
  2765. "title": "文本",
  2766. "type": "text"
  2767. }
  2768. },
  2769. {
  2770. "options": {
  2771. "left": 13,
  2772. "top": 792,
  2773. "height": 16,
  2774. "width": 54,
  2775. "title": "联拼号",
  2776. "right": 68.25,
  2777. "bottom": 808.75,
  2778. "vCenter": 41.25,
  2779. "hCenter": 800.75,
  2780. "coordinateSync": false,
  2781. "widthHeightSync": false,
  2782. "textAlign": "center",
  2783. "textContentVerticalAlign": "middle",
  2784. "qrCodeLevel": 0,
  2785. "field": "lph",
  2786. "hideTitle": true,
  2787. "borderLeft": "solid",
  2788. "borderTop": "solid",
  2789. "borderRight": "solid",
  2790. "borderBottom": "solid",
  2791. "draggable": false
  2792. },
  2793. "printElementType": {
  2794. "title": "文本",
  2795. "type": "text"
  2796. }
  2797. },
  2798. {
  2799. "options": {
  2800. "left": 156,
  2801. "top": 792,
  2802. "height": 16,
  2803. "width": 54,
  2804. "title": "联拼号",
  2805. "right": 209.25,
  2806. "bottom": 808.75,
  2807. "vCenter": 182.25,
  2808. "hCenter": 800.75,
  2809. "coordinateSync": false,
  2810. "widthHeightSync": false,
  2811. "textAlign": "center",
  2812. "textContentVerticalAlign": "middle",
  2813. "qrCodeLevel": 0,
  2814. "field": "lph",
  2815. "hideTitle": true,
  2816. "borderLeft": "solid",
  2817. "borderTop": "solid",
  2818. "borderRight": "solid",
  2819. "borderBottom": "solid",
  2820. "draggable": false
  2821. },
  2822. "printElementType": {
  2823. "title": "文本",
  2824. "type": "text"
  2825. }
  2826. },
  2827. {
  2828. "options": {
  2829. "left": 299,
  2830. "top": 792,
  2831. "height": 16,
  2832. "width": 54,
  2833. "title": "联拼号",
  2834. "right": 352.5,
  2835. "bottom": 809.5,
  2836. "vCenter": 325.5,
  2837. "hCenter": 801.5,
  2838. "field": "lph",
  2839. "coordinateSync": false,
  2840. "widthHeightSync": false,
  2841. "hideTitle": true,
  2842. "textAlign": "center",
  2843. "textContentVerticalAlign": "middle",
  2844. "borderLeft": "solid",
  2845. "borderTop": "solid",
  2846. "borderRight": "solid",
  2847. "borderBottom": "solid",
  2848. "qrCodeLevel": 0,
  2849. "draggable": false
  2850. },
  2851. "printElementType": {
  2852. "title": "文本",
  2853. "type": "text"
  2854. }
  2855. },
  2856. {
  2857. "options": {
  2858. "left": 442,
  2859. "top": 792,
  2860. "height": 16,
  2861. "width": 54,
  2862. "title": "联拼号",
  2863. "right": 495,
  2864. "bottom": 807.25,
  2865. "vCenter": 468,
  2866. "hCenter": 799.25,
  2867. "coordinateSync": false,
  2868. "widthHeightSync": false,
  2869. "textAlign": "center",
  2870. "textContentVerticalAlign": "middle",
  2871. "qrCodeLevel": 0,
  2872. "field": "lph",
  2873. "hideTitle": true,
  2874. "borderLeft": "solid",
  2875. "borderTop": "solid",
  2876. "borderRight": "solid",
  2877. "borderBottom": "solid",
  2878. "draggable": false
  2879. },
  2880. "printElementType": {
  2881. "title": "文本",
  2882. "type": "text"
  2883. }
  2884. }
  2885. ],
  2886. "paperNumberLeft": 565.5,
  2887. "paperNumberTop": 819,
  2888. "paperNumberDisabled": true,
  2889. "paperNumberContinue": true,
  2890. "backgroundColor": "#ffffff",
  2891. "overPrintOptions": {
  2892. "content": "",
  2893. "opacity": 0.7,
  2894. "type": 1
  2895. },
  2896. "watermarkOptions": {
  2897. "content": "",
  2898. "fillStyle": "rgba(255, 255, 255, 1)",
  2899. "fontSize": "36px",
  2900. "rotate": 25,
  2901. "width": 413,
  2902. "height": 310,
  2903. "timestamp": false,
  2904. "format": "YYYY-MM-DD HH:mm"
  2905. }
  2906. }
  2907. ]
  2908. }
  2909. hiprint.init()
  2910. const hiprintTemplate = new hiprint.PrintTemplate({ template: jsondata })
  2911. </script>
  2912. <style>
  2913. .newlabel{
  2914. display: block;
  2915. -webkit-margin-start: 2px;
  2916. -webkit-margin-end: 2px;
  2917. -webkit-padding-before: 0.35em;
  2918. -webkit-padding-start: 0.75em;
  2919. -webkit-padding-end: 0.75em;
  2920. -webkit-padding-after: 0.625em;
  2921. min-width: -webkit-min-content;
  2922. border-width: 2px;
  2923. border-style: groove;
  2924. border-color: threedface;
  2925. border-image: initial;
  2926. width:870px;
  2927. padding:10px;
  2928. margin:10px;
  2929. float: left;
  2930. }
  2931. .legend{
  2932. display: block;
  2933. -webkit-padding-start: 2px;
  2934. -webkit-padding-end: 2px;
  2935. border-width: initial;
  2936. border-style: none;
  2937. border-color: initial;
  2938. border-image: initial;
  2939. }
  2940. #daima{
  2941. display: block;
  2942. border-width: 2px;
  2943. border-style: groove;
  2944. border-color: initial;
  2945. border-image: initial;
  2946. float: left;
  2947. margin-left: 950px;
  2948. margin-top: 18px;
  2949. width: 550px;
  2950. padding: 10px;
  2951. position: fixed;
  2952. }
  2953. #daima table{
  2954. }
  2955. .firm ul,.product ul,.tag ul{
  2956. width:100%;
  2957. padding:10px;
  2958. font-size:0;
  2959. }
  2960. .firm li,.product li,.tag li{
  2961. font-size:12px;
  2962. }
  2963. .firm li:first-child ul li,.product li:first-child ul li,.tag li:first-child ul li{
  2964. display:inline-block;
  2965. width:33.3333%;
  2966. height:20px;
  2967. line-height:20px;
  2968. }
  2969. .firm input,.product input,.tag input{
  2970. width:200px;
  2971. padding:5px;
  2972. }
  2973. .tag select{
  2974. width:198px;
  2975. padding:5px;
  2976. }
  2977. .firm li ul:last-child li{
  2978. width:580px;
  2979. }
  2980. .firm li ul:last-child li input{
  2981. width:476px;
  2982. }
  2983. .newlabel table{
  2984. margin-top:20px;
  2985. min-height: 25px; line-height: 25px;border-collapse: collapse;
  2986. }
  2987. .newlabel caption{
  2988. padding:5px 0;
  2989. }
  2990. .newlabel table,.newlabel table tr th,.newlabel table tr td { border:1px dashed #ddd;padding:5px;}
  2991. #daima table,#daima table tr th,#daima table tr td { border:1px dashed #ddd;padding:5px;}
  2992. #createcode{
  2993. display:inline-block;
  2994. width:100px;
  2995. height:30px;
  2996. line-height:30px;
  2997. margin-left:290px;
  2998. border-radius:10px;
  2999. background:#0fa2f1;
  3000. color:#fff;
  3001. text-align:center;
  3002. cursor: pointer;
  3003. opacity:0.8;
  3004. filter:80%;
  3005. }
  3006. .submitbtn{
  3007. width:100px;
  3008. height:30px;
  3009. line-height:30px;
  3010. background:#0fa2f1;
  3011. margin-left:30%;
  3012. text-align:center;
  3013. outline:none;
  3014. border:0;
  3015. color:#fff;
  3016. border-radius:10px;
  3017. opacity:0.8;
  3018. filter:80%;
  3019. }
  3020. .high{ color: red; }
  3021. .msg{ font-size: 13px; }
  3022. .onError{ color: red; }
  3023. .onSuccess{ color: green; }
  3024. </style>