dfs-page-config 0.4.82 → 0.4.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dfs-page-config.js +55 -13
- package/dist/dfs-page-config.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/dfs-page-config.js
CHANGED
|
@@ -105550,25 +105550,67 @@ const FabricHangTag = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_re
|
|
|
105550
105550
|
FabricHangTag.install = (k) => k.component(FabricHangTag.name, FabricHangTag);
|
|
105551
105551
|
AgTable.install = (k) => k.component(AgTable.name, AgTable);
|
|
105552
105552
|
let timer = null, jsAndCssThreshold = 2e3, apiThreshold = 3e3;
|
|
105553
|
+
const PERFORMANCE_SERVER_URL = location.origin + ":12000/api/performance";
|
|
105554
|
+
function reportPerformanceData(k) {
|
|
105555
|
+
try {
|
|
105556
|
+
const L = encodeURIComponent(JSON.stringify({
|
|
105557
|
+
url: window.location.href,
|
|
105558
|
+
timestamp: Date.now(),
|
|
105559
|
+
...k
|
|
105560
|
+
})), ie = new Image();
|
|
105561
|
+
ie.src = `${PERFORMANCE_SERVER_URL}?data=${L}`, ie.style.display = "none", ie.onload = () => {
|
|
105562
|
+
console.log("性能数据上报成功"), document.body.removeChild(ie);
|
|
105563
|
+
}, ie.onerror = (ae) => {
|
|
105564
|
+
console.error("性能数据上报失败", ae), document.body.removeChild(ie);
|
|
105565
|
+
}, document.body.appendChild(ie);
|
|
105566
|
+
} catch (L) {
|
|
105567
|
+
console.error("上报性能数据失败:", L);
|
|
105568
|
+
}
|
|
105569
|
+
}
|
|
105553
105570
|
const analyzeResourceLoadTime = () => {
|
|
105554
105571
|
if (!window.performance || !window.performance.getEntriesByType) {
|
|
105555
105572
|
console.warn("Performance API不可用,无法分析资源加载时间");
|
|
105556
105573
|
return;
|
|
105557
105574
|
}
|
|
105558
105575
|
const k = window.performance.getEntriesByType("resource"), L = [], ie = [], ae = [], pe = [];
|
|
105559
|
-
|
|
105560
|
-
|
|
105561
|
-
const
|
|
105562
|
-
|
|
105563
|
-
}), L.length > 0 && (console.log(`检测到${L.length}个JS资源加载时间超过${jsAndCssThreshold}ms:`), L.forEach((
|
|
105564
|
-
console.log(`- JS: ${
|
|
105565
|
-
})), ie.length > 0 && (console.log(`检测到${ie.length}个CSS资源加载时间超过${jsAndCssThreshold}ms:`), ie.forEach((
|
|
105566
|
-
console.log(`- CSS: ${
|
|
105567
|
-
})), pe.length > 0 && (console.log(`检测到${pe.length}个图片资源加载时间超过${jsAndCssThreshold}ms:`), pe.forEach((
|
|
105568
|
-
console.log(`- 图片: ${
|
|
105569
|
-
})), ae.length > 0 && (console.log(`检测到${ae.length}个API请求时间超过${apiThreshold}ms:`), ae.forEach((
|
|
105570
|
-
console.log(`- API: ${
|
|
105571
|
-
})), {
|
|
105576
|
+
if (k.filter((xe) => !xe.isReport).forEach((xe) => {
|
|
105577
|
+
xe.isReport = !0;
|
|
105578
|
+
const Oe = xe.name.toLowerCase();
|
|
105579
|
+
Oe.endsWith(".css") || xe.initiatorType === "css" || xe.initiatorType === "link" ? xe.duration > jsAndCssThreshold && ie.push(xe) : Oe.endsWith(".js") || xe.initiatorType === "script" ? xe.duration > jsAndCssThreshold && L.push(xe) : xe.initiatorType === "img" ? xe.duration > jsAndCssThreshold && pe.push(xe) : (xe.initiatorType === "xmlhttprequest" || xe.initiatorType === "fetch") && xe.duration > apiThreshold && ae.push(xe);
|
|
105580
|
+
}), L.length > 0 && (console.log(`检测到${L.length}个JS资源加载时间超过${jsAndCssThreshold}ms:`), L.forEach((xe) => {
|
|
105581
|
+
console.log(`- JS: ${xe.name}: ${xe.duration.toFixed(2)}ms`);
|
|
105582
|
+
})), ie.length > 0 && (console.log(`检测到${ie.length}个CSS资源加载时间超过${jsAndCssThreshold}ms:`), ie.forEach((xe) => {
|
|
105583
|
+
console.log(`- CSS: ${xe.name}: ${xe.duration.toFixed(2)}ms`);
|
|
105584
|
+
})), pe.length > 0 && (console.log(`检测到${pe.length}个图片资源加载时间超过${jsAndCssThreshold}ms:`), pe.forEach((xe) => {
|
|
105585
|
+
console.log(`- 图片: ${xe.name}: ${xe.duration.toFixed(2)}ms`);
|
|
105586
|
+
})), ae.length > 0 && (console.log(`检测到${ae.length}个API请求时间超过${apiThreshold}ms:`), ae.forEach((xe) => {
|
|
105587
|
+
console.log(`- API: ${xe.name}: ${xe.duration.toFixed(2)}ms`);
|
|
105588
|
+
})), L.length > 0 || ie.length > 0 || ae.length > 0 || pe.length > 0) {
|
|
105589
|
+
const xe = {
|
|
105590
|
+
jsResources: L.map((Oe) => ({
|
|
105591
|
+
name: Oe.name,
|
|
105592
|
+
duration: Oe.duration,
|
|
105593
|
+
initiatorType: Oe.initiatorType
|
|
105594
|
+
})),
|
|
105595
|
+
cssResources: ie.map((Oe) => ({
|
|
105596
|
+
name: Oe.name,
|
|
105597
|
+
duration: Oe.duration,
|
|
105598
|
+
initiatorType: Oe.initiatorType
|
|
105599
|
+
})),
|
|
105600
|
+
apiResources: ae.map((Oe) => ({
|
|
105601
|
+
name: Oe.name,
|
|
105602
|
+
duration: Oe.duration,
|
|
105603
|
+
initiatorType: Oe.initiatorType
|
|
105604
|
+
})),
|
|
105605
|
+
imgResources: pe.map((Oe) => ({
|
|
105606
|
+
name: Oe.name,
|
|
105607
|
+
duration: Oe.duration,
|
|
105608
|
+
initiatorType: Oe.initiatorType
|
|
105609
|
+
}))
|
|
105610
|
+
};
|
|
105611
|
+
console.log(xe), reportPerformanceData(xe);
|
|
105612
|
+
}
|
|
105613
|
+
return {
|
|
105572
105614
|
jsResources: L,
|
|
105573
105615
|
cssResources: ie,
|
|
105574
105616
|
apiResources: ae,
|
|
@@ -2006,4 +2006,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
2006
2006
|
@font-face {
|
|
2007
2007
|
font-family: 'CircularXX-Medium';
|
|
2008
2008
|
src: url(${CircularXXMedium});
|
|
2009
|
-
`,document.head.appendChild(dr)}return{fabricHangTagNewRef:ae,printCountRef:pe,...vue.toRefs(_e),show:xe,close:Ie,print:Ne,confirm,setOffset:jt,setDirection:tr,confirmDirection:or,showDialog:er,closeDialog:ar}}}),FabricHangTag_vue_vue_type_style_index_0_scoped_e8a5bb25_lang="",_withScopeId=k=>(vue.pushScopeId("data-v-e8a5bb25"),k=k(),vue.popScopeId(),k),_hoisted_1={style:{height:"max-content",display:"block"},class:"el-upload-list--picture-card"},_hoisted_2=_withScopeId(()=>vue.createElementVNode("span",{class:"point"},null,-1)),_hoisted_3={class:"el-upload-list__item-actions",style:{"z-index":"2","border-radius":"10px"}},_hoisted_4={class:"print-ele",ref:"printEle",style:{width:"192px",height:"288px",padding:"5px 10px","line-height":"9pt","font-family":"CircularXX-Regular",display:"flex","flex-direction":"column","justify-content":"flex-end"}},_hoisted_5=["innerHTML"],_hoisted_6={key:0,style:{height:"6pt"}},_hoisted_7=["innerHTML"],_hoisted_8={key:1,style:{height:"8pt"}},_hoisted_9={style:{margin:"8px 0"}},_hoisted_10=_withScopeId(()=>vue.createElementVNode("span",{style:{margin:"0 5px","font-size":"6px"}},"●",-1)),_hoisted_11=["innerHTML"],_hoisted_12={key:3,style:{height:"8pt"}},_hoisted_13={id:"barcode",style:{width:"100px"}},_hoisted_14={style:{position:"absolute",bottom:"22px",right:"30px"}},_hoisted_15={class:"dialog-footer"},_hoisted_16={class:"dialog-footer"};function _sfc_render(k,L,ie,ae,pe,_e){var tr,or,er;const xe=vue.resolveComponent("ZoomIn"),Oe=ElIcon,Ie=__unplugin_components_1,Ne=ElRadioButton,Ue=ElRadioGroup,Et=ElButton,qe=ElInputNumber,Dt=ElFormItem,$e=ElForm,kt=ElDialog,jt=ElRadio;return vue.openBlock(),vue.createElementBlock(vue.Fragment,null,[vue.withDirectives(vue.createElementVNode("div",{class:vue.normalizeClass([k.zoomIn?"zoom-in":""]),onClick:L[3]||(L[3]=(...ar)=>k.close&&k.close(...ar))},[vue.createElementVNode("div",{onClick:L[2]||(L[2]=vue.withModifiers(()=>{},["stop"])),class:"container",style:{width:"max-content",background:"#e0e0e1",padding:"40px 10px 10px",color:"#000","font-size":"7pt","line-height":"7pt",display:"flex","flex-direction":"column","justify-content":"flex-end","border-radius":"10px",position:"relative","user-select":"none","word-break":"break-word"}},[vue.createElementVNode("div",_hoisted_1,[_hoisted_2,vue.createElementVNode("span",_hoisted_3,[vue.createVNode(Oe,{onClick:L[0]||(L[0]=ar=>k.zoomIn=!0),style:{cursor:"pointer"}},{default:vue.withCtx(()=>[vue.createVNode(xe)]),_:1})]),vue.withDirectives(vue.createVNode(Ie,{ref:"fabricHangTagNewRef",data:k.data},null,8,["data"]),[[vue.vShow,k.printType=="new"]]),vue.withDirectives(vue.createElementVNode("div",_hoisted_4,[vue.createElementVNode("div",null,[vue.createElementVNode("p",{style:{"font-size":"17px","font-family":"CircularXX-Medium","margin-bottom":"5px","line-height":"20px"},innerHTML:(tr=k.data.fabricSeries||k.data.name)==null?void 0:tr.replace(/\n/g,"</br>")},null,8,_hoisted_5),k.data.friendlyReminder?vue.createCommentVNode("",!0):(vue.openBlock(),vue.createElementBlock("p",_hoisted_6)),vue.createElementVNode("p",{style:{margin:"5px 0"},innerHTML:(or=k.data.fabricIntroduction)==null?void 0:or.replace(/\n/g,"</br>")},null,8,_hoisted_7),k.data.friendlyReminder?vue.createCommentVNode("",!0):(vue.openBlock(),vue.createElementBlock("p",_hoisted_8)),vue.createElementVNode("ul",_hoisted_9,[(vue.openBlock(!0),vue.createElementBlock(vue.Fragment,null,vue.renderList(k.data.fabricFeatureDescList,ar=>(vue.openBlock(),vue.createElementBlock("li",{key:ar,style:{margin:"1pt 0",display:"flex","align-items":"center"}},[_hoisted_10,vue.createTextVNode(" "+vue.toDisplayString(ar),1)]))),128))]),k.data.friendlyReminder?(vue.openBlock(),vue.createElementBlock("p",{key:2,style:{margin:"3pt 0"},innerHTML:(er=k.data.friendlyReminder)==null?void 0:er.replace(/\n/g,"</br>")},null,8,_hoisted_11)):(vue.openBlock(),vue.createElementBlock("p",_hoisted_12)),vue.withDirectives((vue.openBlock(),vue.createElementBlock("svg",_hoisted_13,null,512)),[[vue.vShow,k.data.barCodeId]]),vue.createElementVNode("span",_hoisted_14,vue.toDisplayString(k.data.code),1)])],512),[[vue.vShow,k.printType=="old"]])]),vue.createVNode(Ue,{modelValue:k.printType,"onUpdate:modelValue":L[1]||(L[1]=ar=>k.printType=ar),size:"small",style:{display:"flex","justify-content":"center",position:"absolute",top:"8px",left:"-2px","z-index":"3",transform:"scale(0.8)"}},{default:vue.withCtx(()=>[vue.createVNode(Ne,{label:"new"},{default:vue.withCtx(()=>[vue.createTextVNode("新版")]),_:1}),vue.createVNode(Ne,{label:"old"},{default:vue.withCtx(()=>[vue.createTextVNode("旧版")]),_:1})]),_:1},8,["modelValue"]),k.showPrintButton?(vue.openBlock(),vue.createBlock(Et,{key:0,class:"print-button",onClick:vue.withModifiers(k.showDialog,["stop"]),size:"small"},{default:vue.withCtx(()=>[vue.createTextVNode("打印")]),_:1},8,["onClick"])):vue.createCommentVNode("",!0)])],2),[[vue.vShow,k.isShow]]),vue.createVNode(kt,{title:"打印数量",modelValue:k.dialogState,"onUpdate:modelValue":L[6]||(L[6]=ar=>k.dialogState=ar),width:"350px",center:"","close-on-click-modal":!1,onClose:k.closeDialog},{footer:vue.withCtx(()=>[vue.createElementVNode("span",_hoisted_15,[vue.createVNode(Et,{onClick:L[5]||(L[5]=ar=>k.dialogState=!1)},{default:vue.withCtx(()=>[vue.createTextVNode("取 消")]),_:1}),vue.createVNode(Et,{type:"primary",onClick:k.print},{default:vue.withCtx(()=>[vue.createTextVNode("确认打印")]),_:1},8,["onClick"])])]),default:vue.withCtx(()=>[vue.createVNode($e,{"label-width":"20px"},{default:vue.withCtx(()=>[vue.createVNode(Dt,{label:" ",style:{"margin-bottom":"0"}},{default:vue.withCtx(()=>[vue.createVNode(qe,{ref:"printCountRef",modelValue:k.printCount,"onUpdate:modelValue":L[4]||(L[4]=ar=>k.printCount=ar),min:1,precision:0,controls:!1,placeholder:"请输入打印数量",style:{width:"100%"}},null,8,["modelValue"])]),_:1}),vue.createVNode(Dt,{label:" "},{default:vue.withCtx(()=>[vue.createVNode(Et,{onClick:k.setOffset,link:"",size:"small",style:{color:"#409eff"}},{default:vue.withCtx(()=>[vue.createTextVNode("设置横向偏移")]),_:1},8,["onClick"]),vue.createVNode(Et,{onClick:k.setDirection,link:"",size:"small",style:{color:"#409eff"}},{default:vue.withCtx(()=>[vue.createTextVNode("设置标签方向")]),_:1},8,["onClick"])]),_:1})]),_:1})]),_:1},8,["modelValue","onClose"]),vue.createVNode(kt,{title:"设置标签方向",modelValue:k.directionDialogVisible,"onUpdate:modelValue":L[9]||(L[9]=ar=>k.directionDialogVisible=ar),width:"350px",center:"","close-on-click-modal":!1},{footer:vue.withCtx(()=>[vue.createElementVNode("span",_hoisted_16,[vue.createVNode(Et,{onClick:L[8]||(L[8]=ar=>k.directionDialogVisible=!1)},{default:vue.withCtx(()=>[vue.createTextVNode("取 消")]),_:1}),vue.createVNode(Et,{type:"primary",onClick:k.confirmDirection},{default:vue.withCtx(()=>[vue.createTextVNode("确 定")]),_:1},8,["onClick"])])]),default:vue.withCtx(()=>[vue.createVNode(Ue,{modelValue:k.direction,"onUpdate:modelValue":L[7]||(L[7]=ar=>k.direction=ar),style:{display:"flex","justify-content":"center",height:"74px"}},{default:vue.withCtx(()=>[vue.createVNode(jt,{label:"1"},{default:vue.withCtx(()=>[vue.createTextVNode("纵向")]),_:1}),vue.createVNode(jt,{label:"2"},{default:vue.withCtx(()=>[vue.createTextVNode("横向")]),_:1})]),_:1},8,["modelValue"])]),_:1},8,["modelValue"])],64)}const FabricHangTag=_export_sfc(_sfc_main,[["render",_sfc_render],["__scopeId","data-v-e8a5bb25"]]);FabricHangTag.install=k=>k.component(FabricHangTag.name,FabricHangTag),AgTable.install=k=>k.component(AgTable.name,AgTable);let timer=null,jsAndCssThreshold=2e3,apiThreshold=3e3;const analyzeResourceLoadTime=()=>{if(!window.performance||!window.performance.getEntriesByType){console.warn("Performance API不可用,无法分析资源加载时间");return}const k=window.performance.getEntriesByType("resource"),L=[],ie=[],ae=[],pe=[];return k.filter(_e=>!_e.isReport).forEach(_e=>{_e.isReport=!0;const xe=_e.name.toLowerCase();xe.endsWith(".css")||_e.initiatorType==="css"||_e.initiatorType==="link"?_e.duration>jsAndCssThreshold&&ie.push(_e):xe.endsWith(".js")||_e.initiatorType==="script"?_e.duration>jsAndCssThreshold&&L.push(_e):_e.initiatorType==="img"?_e.duration>jsAndCssThreshold&&pe.push(_e):(_e.initiatorType==="xmlhttprequest"||_e.initiatorType==="fetch")&&_e.duration>apiThreshold&&ae.push(_e)}),L.length>0&&(console.log(`检测到${L.length}个JS资源加载时间超过${jsAndCssThreshold}ms:`),L.forEach(_e=>{console.log(`- JS: ${_e.name}: ${_e.duration.toFixed(2)}ms`)})),ie.length>0&&(console.log(`检测到${ie.length}个CSS资源加载时间超过${jsAndCssThreshold}ms:`),ie.forEach(_e=>{console.log(`- CSS: ${_e.name}: ${_e.duration.toFixed(2)}ms`)})),pe.length>0&&(console.log(`检测到${pe.length}个图片资源加载时间超过${jsAndCssThreshold}ms:`),pe.forEach(_e=>{console.log(`- 图片: ${_e.name}: ${_e.duration.toFixed(2)}ms`)})),ae.length>0&&(console.log(`检测到${ae.length}个API请求时间超过${apiThreshold}ms:`),ae.forEach(_e=>{console.log(`- API: ${_e.name}: ${_e.duration.toFixed(2)}ms`)})),{jsResources:L,cssResources:ie,apiResources:ae,imgResources:pe}};service.interceptors.request.use(k=>(clearTimeout(timer),timer=setTimeout(()=>{analyzeResourceLoadTime()},5e3),k),k=>Promise.reject(k.data));const initPerformanceMonitor=(k=1e3,L=3e3)=>{jsAndCssThreshold=k,apiThreshold=L,window.addEventListener("load",()=>{clearTimeout(timer),timer=setTimeout(()=>{analyzeResourceLoadTime()},5e3)})},index=(k,L)=>{["getters","_actions"].forEach(ae=>{Object.keys(store[ae]).forEach(pe=>{L.store[ae][pe]=store[ae][pe]})}),store.commit("saveUrl",L.baseUrl),store.commit("saveLocale",L.locale),store.commit("saveEnv",L.env),L.store.state._CONFIG_DATA=store.state._CONFIG_DATA,L.store.state._BASE_URL=L.baseUrl,store._mutations.setLoading=L.store._mutations.setLoading,install(k),k.component("DfsPageConfig",Page);const ie=()=>({t:ae=>ae});k.config.globalProperties.useI18n=L.useI18n||ie};initPerformanceMonitor(1e3,3e3),exports.AgTable=AgTable,exports.CellSelect=_sfc_main$2,exports.Dialog=Dialog,exports.EleTable=EleTable,exports.FabricHangTag=FabricHangTag,exports.Form=Form,exports.Upload=Upload,exports.UploadComp=UploadComp,exports.default=index,exports.handleProxy=handleProxy,Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|
|
2009
|
+
`,document.head.appendChild(dr)}return{fabricHangTagNewRef:ae,printCountRef:pe,...vue.toRefs(_e),show:xe,close:Ie,print:Ne,confirm,setOffset:jt,setDirection:tr,confirmDirection:or,showDialog:er,closeDialog:ar}}}),FabricHangTag_vue_vue_type_style_index_0_scoped_e8a5bb25_lang="",_withScopeId=k=>(vue.pushScopeId("data-v-e8a5bb25"),k=k(),vue.popScopeId(),k),_hoisted_1={style:{height:"max-content",display:"block"},class:"el-upload-list--picture-card"},_hoisted_2=_withScopeId(()=>vue.createElementVNode("span",{class:"point"},null,-1)),_hoisted_3={class:"el-upload-list__item-actions",style:{"z-index":"2","border-radius":"10px"}},_hoisted_4={class:"print-ele",ref:"printEle",style:{width:"192px",height:"288px",padding:"5px 10px","line-height":"9pt","font-family":"CircularXX-Regular",display:"flex","flex-direction":"column","justify-content":"flex-end"}},_hoisted_5=["innerHTML"],_hoisted_6={key:0,style:{height:"6pt"}},_hoisted_7=["innerHTML"],_hoisted_8={key:1,style:{height:"8pt"}},_hoisted_9={style:{margin:"8px 0"}},_hoisted_10=_withScopeId(()=>vue.createElementVNode("span",{style:{margin:"0 5px","font-size":"6px"}},"●",-1)),_hoisted_11=["innerHTML"],_hoisted_12={key:3,style:{height:"8pt"}},_hoisted_13={id:"barcode",style:{width:"100px"}},_hoisted_14={style:{position:"absolute",bottom:"22px",right:"30px"}},_hoisted_15={class:"dialog-footer"},_hoisted_16={class:"dialog-footer"};function _sfc_render(k,L,ie,ae,pe,_e){var tr,or,er;const xe=vue.resolveComponent("ZoomIn"),Oe=ElIcon,Ie=__unplugin_components_1,Ne=ElRadioButton,Ue=ElRadioGroup,Et=ElButton,qe=ElInputNumber,Dt=ElFormItem,$e=ElForm,kt=ElDialog,jt=ElRadio;return vue.openBlock(),vue.createElementBlock(vue.Fragment,null,[vue.withDirectives(vue.createElementVNode("div",{class:vue.normalizeClass([k.zoomIn?"zoom-in":""]),onClick:L[3]||(L[3]=(...ar)=>k.close&&k.close(...ar))},[vue.createElementVNode("div",{onClick:L[2]||(L[2]=vue.withModifiers(()=>{},["stop"])),class:"container",style:{width:"max-content",background:"#e0e0e1",padding:"40px 10px 10px",color:"#000","font-size":"7pt","line-height":"7pt",display:"flex","flex-direction":"column","justify-content":"flex-end","border-radius":"10px",position:"relative","user-select":"none","word-break":"break-word"}},[vue.createElementVNode("div",_hoisted_1,[_hoisted_2,vue.createElementVNode("span",_hoisted_3,[vue.createVNode(Oe,{onClick:L[0]||(L[0]=ar=>k.zoomIn=!0),style:{cursor:"pointer"}},{default:vue.withCtx(()=>[vue.createVNode(xe)]),_:1})]),vue.withDirectives(vue.createVNode(Ie,{ref:"fabricHangTagNewRef",data:k.data},null,8,["data"]),[[vue.vShow,k.printType=="new"]]),vue.withDirectives(vue.createElementVNode("div",_hoisted_4,[vue.createElementVNode("div",null,[vue.createElementVNode("p",{style:{"font-size":"17px","font-family":"CircularXX-Medium","margin-bottom":"5px","line-height":"20px"},innerHTML:(tr=k.data.fabricSeries||k.data.name)==null?void 0:tr.replace(/\n/g,"</br>")},null,8,_hoisted_5),k.data.friendlyReminder?vue.createCommentVNode("",!0):(vue.openBlock(),vue.createElementBlock("p",_hoisted_6)),vue.createElementVNode("p",{style:{margin:"5px 0"},innerHTML:(or=k.data.fabricIntroduction)==null?void 0:or.replace(/\n/g,"</br>")},null,8,_hoisted_7),k.data.friendlyReminder?vue.createCommentVNode("",!0):(vue.openBlock(),vue.createElementBlock("p",_hoisted_8)),vue.createElementVNode("ul",_hoisted_9,[(vue.openBlock(!0),vue.createElementBlock(vue.Fragment,null,vue.renderList(k.data.fabricFeatureDescList,ar=>(vue.openBlock(),vue.createElementBlock("li",{key:ar,style:{margin:"1pt 0",display:"flex","align-items":"center"}},[_hoisted_10,vue.createTextVNode(" "+vue.toDisplayString(ar),1)]))),128))]),k.data.friendlyReminder?(vue.openBlock(),vue.createElementBlock("p",{key:2,style:{margin:"3pt 0"},innerHTML:(er=k.data.friendlyReminder)==null?void 0:er.replace(/\n/g,"</br>")},null,8,_hoisted_11)):(vue.openBlock(),vue.createElementBlock("p",_hoisted_12)),vue.withDirectives((vue.openBlock(),vue.createElementBlock("svg",_hoisted_13,null,512)),[[vue.vShow,k.data.barCodeId]]),vue.createElementVNode("span",_hoisted_14,vue.toDisplayString(k.data.code),1)])],512),[[vue.vShow,k.printType=="old"]])]),vue.createVNode(Ue,{modelValue:k.printType,"onUpdate:modelValue":L[1]||(L[1]=ar=>k.printType=ar),size:"small",style:{display:"flex","justify-content":"center",position:"absolute",top:"8px",left:"-2px","z-index":"3",transform:"scale(0.8)"}},{default:vue.withCtx(()=>[vue.createVNode(Ne,{label:"new"},{default:vue.withCtx(()=>[vue.createTextVNode("新版")]),_:1}),vue.createVNode(Ne,{label:"old"},{default:vue.withCtx(()=>[vue.createTextVNode("旧版")]),_:1})]),_:1},8,["modelValue"]),k.showPrintButton?(vue.openBlock(),vue.createBlock(Et,{key:0,class:"print-button",onClick:vue.withModifiers(k.showDialog,["stop"]),size:"small"},{default:vue.withCtx(()=>[vue.createTextVNode("打印")]),_:1},8,["onClick"])):vue.createCommentVNode("",!0)])],2),[[vue.vShow,k.isShow]]),vue.createVNode(kt,{title:"打印数量",modelValue:k.dialogState,"onUpdate:modelValue":L[6]||(L[6]=ar=>k.dialogState=ar),width:"350px",center:"","close-on-click-modal":!1,onClose:k.closeDialog},{footer:vue.withCtx(()=>[vue.createElementVNode("span",_hoisted_15,[vue.createVNode(Et,{onClick:L[5]||(L[5]=ar=>k.dialogState=!1)},{default:vue.withCtx(()=>[vue.createTextVNode("取 消")]),_:1}),vue.createVNode(Et,{type:"primary",onClick:k.print},{default:vue.withCtx(()=>[vue.createTextVNode("确认打印")]),_:1},8,["onClick"])])]),default:vue.withCtx(()=>[vue.createVNode($e,{"label-width":"20px"},{default:vue.withCtx(()=>[vue.createVNode(Dt,{label:" ",style:{"margin-bottom":"0"}},{default:vue.withCtx(()=>[vue.createVNode(qe,{ref:"printCountRef",modelValue:k.printCount,"onUpdate:modelValue":L[4]||(L[4]=ar=>k.printCount=ar),min:1,precision:0,controls:!1,placeholder:"请输入打印数量",style:{width:"100%"}},null,8,["modelValue"])]),_:1}),vue.createVNode(Dt,{label:" "},{default:vue.withCtx(()=>[vue.createVNode(Et,{onClick:k.setOffset,link:"",size:"small",style:{color:"#409eff"}},{default:vue.withCtx(()=>[vue.createTextVNode("设置横向偏移")]),_:1},8,["onClick"]),vue.createVNode(Et,{onClick:k.setDirection,link:"",size:"small",style:{color:"#409eff"}},{default:vue.withCtx(()=>[vue.createTextVNode("设置标签方向")]),_:1},8,["onClick"])]),_:1})]),_:1})]),_:1},8,["modelValue","onClose"]),vue.createVNode(kt,{title:"设置标签方向",modelValue:k.directionDialogVisible,"onUpdate:modelValue":L[9]||(L[9]=ar=>k.directionDialogVisible=ar),width:"350px",center:"","close-on-click-modal":!1},{footer:vue.withCtx(()=>[vue.createElementVNode("span",_hoisted_16,[vue.createVNode(Et,{onClick:L[8]||(L[8]=ar=>k.directionDialogVisible=!1)},{default:vue.withCtx(()=>[vue.createTextVNode("取 消")]),_:1}),vue.createVNode(Et,{type:"primary",onClick:k.confirmDirection},{default:vue.withCtx(()=>[vue.createTextVNode("确 定")]),_:1},8,["onClick"])])]),default:vue.withCtx(()=>[vue.createVNode(Ue,{modelValue:k.direction,"onUpdate:modelValue":L[7]||(L[7]=ar=>k.direction=ar),style:{display:"flex","justify-content":"center",height:"74px"}},{default:vue.withCtx(()=>[vue.createVNode(jt,{label:"1"},{default:vue.withCtx(()=>[vue.createTextVNode("纵向")]),_:1}),vue.createVNode(jt,{label:"2"},{default:vue.withCtx(()=>[vue.createTextVNode("横向")]),_:1})]),_:1},8,["modelValue"])]),_:1},8,["modelValue"])],64)}const FabricHangTag=_export_sfc(_sfc_main,[["render",_sfc_render],["__scopeId","data-v-e8a5bb25"]]);FabricHangTag.install=k=>k.component(FabricHangTag.name,FabricHangTag),AgTable.install=k=>k.component(AgTable.name,AgTable);let timer=null,jsAndCssThreshold=2e3,apiThreshold=3e3;const PERFORMANCE_SERVER_URL=location.origin+":12000/api/performance";function reportPerformanceData(k){try{const L=encodeURIComponent(JSON.stringify({url:window.location.href,timestamp:Date.now(),...k})),ie=new Image;ie.src=`${PERFORMANCE_SERVER_URL}?data=${L}`,ie.style.display="none",ie.onload=()=>{console.log("性能数据上报成功"),document.body.removeChild(ie)},ie.onerror=ae=>{console.error("性能数据上报失败",ae),document.body.removeChild(ie)},document.body.appendChild(ie)}catch(L){console.error("上报性能数据失败:",L)}}const analyzeResourceLoadTime=()=>{if(!window.performance||!window.performance.getEntriesByType){console.warn("Performance API不可用,无法分析资源加载时间");return}const k=window.performance.getEntriesByType("resource"),L=[],ie=[],ae=[],pe=[];if(k.filter(xe=>!xe.isReport).forEach(xe=>{xe.isReport=!0;const Oe=xe.name.toLowerCase();Oe.endsWith(".css")||xe.initiatorType==="css"||xe.initiatorType==="link"?xe.duration>jsAndCssThreshold&&ie.push(xe):Oe.endsWith(".js")||xe.initiatorType==="script"?xe.duration>jsAndCssThreshold&&L.push(xe):xe.initiatorType==="img"?xe.duration>jsAndCssThreshold&&pe.push(xe):(xe.initiatorType==="xmlhttprequest"||xe.initiatorType==="fetch")&&xe.duration>apiThreshold&&ae.push(xe)}),L.length>0&&(console.log(`检测到${L.length}个JS资源加载时间超过${jsAndCssThreshold}ms:`),L.forEach(xe=>{console.log(`- JS: ${xe.name}: ${xe.duration.toFixed(2)}ms`)})),ie.length>0&&(console.log(`检测到${ie.length}个CSS资源加载时间超过${jsAndCssThreshold}ms:`),ie.forEach(xe=>{console.log(`- CSS: ${xe.name}: ${xe.duration.toFixed(2)}ms`)})),pe.length>0&&(console.log(`检测到${pe.length}个图片资源加载时间超过${jsAndCssThreshold}ms:`),pe.forEach(xe=>{console.log(`- 图片: ${xe.name}: ${xe.duration.toFixed(2)}ms`)})),ae.length>0&&(console.log(`检测到${ae.length}个API请求时间超过${apiThreshold}ms:`),ae.forEach(xe=>{console.log(`- API: ${xe.name}: ${xe.duration.toFixed(2)}ms`)})),L.length>0||ie.length>0||ae.length>0||pe.length>0){const xe={jsResources:L.map(Oe=>({name:Oe.name,duration:Oe.duration,initiatorType:Oe.initiatorType})),cssResources:ie.map(Oe=>({name:Oe.name,duration:Oe.duration,initiatorType:Oe.initiatorType})),apiResources:ae.map(Oe=>({name:Oe.name,duration:Oe.duration,initiatorType:Oe.initiatorType})),imgResources:pe.map(Oe=>({name:Oe.name,duration:Oe.duration,initiatorType:Oe.initiatorType}))};console.log(xe),reportPerformanceData(xe)}return{jsResources:L,cssResources:ie,apiResources:ae,imgResources:pe}};service.interceptors.request.use(k=>(clearTimeout(timer),timer=setTimeout(()=>{analyzeResourceLoadTime()},5e3),k),k=>Promise.reject(k.data));const initPerformanceMonitor=(k=1e3,L=3e3)=>{jsAndCssThreshold=k,apiThreshold=L,window.addEventListener("load",()=>{clearTimeout(timer),timer=setTimeout(()=>{analyzeResourceLoadTime()},5e3)})},index=(k,L)=>{["getters","_actions"].forEach(ae=>{Object.keys(store[ae]).forEach(pe=>{L.store[ae][pe]=store[ae][pe]})}),store.commit("saveUrl",L.baseUrl),store.commit("saveLocale",L.locale),store.commit("saveEnv",L.env),L.store.state._CONFIG_DATA=store.state._CONFIG_DATA,L.store.state._BASE_URL=L.baseUrl,store._mutations.setLoading=L.store._mutations.setLoading,install(k),k.component("DfsPageConfig",Page);const ie=()=>({t:ae=>ae});k.config.globalProperties.useI18n=L.useI18n||ie};initPerformanceMonitor(1e3,3e3),exports.AgTable=AgTable,exports.CellSelect=_sfc_main$2,exports.Dialog=Dialog,exports.EleTable=EleTable,exports.FabricHangTag=FabricHangTag,exports.Form=Form,exports.Upload=Upload,exports.UploadComp=UploadComp,exports.default=index,exports.handleProxy=handleProxy,Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|