cloud-web-corejs 1.0.265 → 1.0.266
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
|
@@ -954,12 +954,15 @@ function getGrid(that, tableRef) {
|
|
|
954
954
|
},
|
|
955
955
|
exportAll(row) {
|
|
956
956
|
let cUUid = encodeURIComponent(row.uuid);
|
|
957
|
+
let ippaaapp = this.ippaaapp;
|
|
957
958
|
let fileName = row.title;
|
|
958
959
|
let fileUrl =
|
|
959
960
|
configUtil.baseUrl +
|
|
960
961
|
this.CURRENT_PREFIX +
|
|
961
962
|
"/excel/download?uuid=" +
|
|
962
|
-
cUUid
|
|
963
|
+
cUUid +
|
|
964
|
+
"&ippaaapp=" +
|
|
965
|
+
ippaaapp;
|
|
963
966
|
|
|
964
967
|
function downLoadFile2() {
|
|
965
968
|
let params = {
|