ocpview-plus 1.0.16 → 1.0.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ocpview-plus",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "title": "ocpviewPlus",
5
5
  "description": "A high quality Service UI components Library with Vue.js",
6
6
  "homepage": "",
@@ -39,7 +39,7 @@ export default {
39
39
  showAsyncImportExport:false,
40
40
  showBillContPrintMode:false,
41
41
  showPrintMode:false,
42
- billprintModeUrl:'/mall-sysconf-vue/#/billdataprint?modulecode={modulecode}&dataid={dataid}&mktcode={mktcode}&token={token}',
42
+ billprintModeUrl:'/widgetmodelv3/#/bill-print?modulecode={modulecode}&dataid={dataid}&mktcode={mktcode}&token={token}',
43
43
  printModeUrl:'',
44
44
  eventObject:['valueChanged','setDataBefore','searchBefore','cellbeginedit','importSuccess','addRowBefore','indexMethod','delRowBefore','delRowAfter','onSelectionChange','formatValue','updateCellConfig','overrideSearchParam','overrideData','refurbishCheck','onSingleChange','onSetRowCheck','onSelect','onSelectCancel','onSelectionChange','customSummary','customImgPath','onDelTag','onSearch','onAppend','filterData','onAddTag','getDictData','setLabel','setImportUrl','onLinkTo','newSaveFormBefore','setQueryConfig','setNodeClass','setTreeNodeIcon','rowClassName','customSummaryGroup','disabledDate'],
45
45
  layoutTypeList:['ListDetails','ListDetailsV2','BillListDetails']
@@ -4,7 +4,7 @@
4
4
  <Modal title="附件" v-model="showDetailAppendix" :width="appendixCurrentWidth" :footer-hide="true">
5
5
  <AppendixBoxs v-if="detalAppendixFlag" ref="detailappendix" :config="billDetailAppendixConfig" @doAction="doAction"/>
6
6
  </Modal>
7
- <Modal title="模版打印" v-model="showPrintMode" :width="appendixCurrentWidth" :footer-hide="true" :fullscreen="true">
7
+ <Modal title="模版打印" v-model="showPrintMode" :width="appendixCurrentWidth" :footer-hide="true" :fullscreen="true" class-name="print-bill-panel-modal">
8
8
  <iframe ref="iframetemplate" v-if="printModeReset" :src="printModeUrl" width="100%" height="100%" allowtransparency="true" frameborder="0" ></iframe>
9
9
  </Modal>
10
10
  <BillAsyncImport v-if="importReset" ref="billAsyncImport" :config="billAsyncImportConfig" />
@@ -31,3 +31,11 @@ export default {
31
31
  },
32
32
  };
33
33
  </script>
34
+ <style lang="less">
35
+ .print-bill-panel-modal{
36
+ .ivu-modal-body{
37
+ padding: 0px!important;
38
+ overflow: hidden!important;
39
+ }
40
+ }
41
+ </style>