ocpview-plus 1.3.11 → 1.3.13

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.3.11",
3
+ "version": "1.3.13",
4
4
  "title": "ocpviewPlus",
5
5
  "description": "A high quality Service UI components Library with Vue.js",
6
6
  "homepage": "",
@@ -66,7 +66,7 @@ export default {
66
66
  bordered: true,
67
67
  disHover: false,
68
68
  showSubSpecialStyle: false,
69
- divStyle: 'padding:0 24px',
69
+ divStyle: 'padding:0px 0px 0px 24px',
70
70
  },
71
71
  btnReadOnly: false,
72
72
  showBtn: true,
@@ -227,6 +227,8 @@ export default {
227
227
  obj.username = this.getUserName();
228
228
  if (this.myConfig.notdelfile) {
229
229
  obj.modflag = 'I';
230
+ } else {
231
+ obj.modflag = 'N';
230
232
  }
231
233
  if (obj.scenetype === '4') {
232
234
  obj.idkey = this.idkey;
@@ -361,11 +363,11 @@ export default {
361
363
  return h('span', str);
362
364
  },
363
365
  downFile (params) {
364
- let downUrl = this.myConfig.downfile + params.row.filekey + "&ent_id=" + this.getEnt_id() + "&token=" + this.getToken();
366
+ let downUrl = this.myConfig.downfile + params.row.filekey + "&ent_id=" + this.getEnt_id() + "&token=" + this.getToken() + "&billno=" + this.billno;
365
367
  window.open(downUrl);
366
368
  },
367
369
  delCommon (filekey, notdelfile) {
368
- let delUrl = this.myConfig.delfile + filekey + "&ent_id=" + this.getEnt_id() + "&notdelfile=" + notdelfile + "&token=" + this.getToken();
370
+ let delUrl = this.myConfig.delfile + filekey + "&ent_id=" + this.getEnt_id() + "&notdelfile=Y&token=" + this.getToken() + "&billno=" + this.billno;
369
371
  $.ajax({
370
372
  type: 'GET',
371
373
  url: encodeURI(delUrl),