custom-vxe-table 2.2.1 → 2.2.3
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/lib/index.common.js +4 -4
- package/lib/index.umd.js +4 -4
- package/lib/index.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/index.common.js
CHANGED
|
@@ -62919,8 +62919,8 @@ axios_default.a.interceptors.request.use(function (config) {
|
|
|
62919
62919
|
var user = utils_storage.getO("user");
|
|
62920
62920
|
|
|
62921
62921
|
if (user) {
|
|
62922
|
-
params.
|
|
62923
|
-
params.
|
|
62922
|
+
params.companyguid = user.companyguid;
|
|
62923
|
+
params.usercode = user.usercode;
|
|
62924
62924
|
}
|
|
62925
62925
|
|
|
62926
62926
|
config.data = params;
|
|
@@ -63029,12 +63029,12 @@ function getTableData(data) {
|
|
|
63029
63029
|
var user = utils_storage.getO("user");
|
|
63030
63030
|
|
|
63031
63031
|
if (user) {
|
|
63032
|
-
data.reqParams.push({
|
|
63032
|
+
data.reqParams.params.push({
|
|
63033
63033
|
key: "companyGuid",
|
|
63034
63034
|
value: user.companyGuid,
|
|
63035
63035
|
op: "eq"
|
|
63036
63036
|
});
|
|
63037
|
-
data.reqParams.push({
|
|
63037
|
+
data.reqParams.params.push({
|
|
63038
63038
|
key: "userCode",
|
|
63039
63039
|
value: user.userCode,
|
|
63040
63040
|
op: "eq"
|
package/lib/index.umd.js
CHANGED
|
@@ -62928,8 +62928,8 @@ axios_default.a.interceptors.request.use(function (config) {
|
|
|
62928
62928
|
var user = utils_storage.getO("user");
|
|
62929
62929
|
|
|
62930
62930
|
if (user) {
|
|
62931
|
-
params.
|
|
62932
|
-
params.
|
|
62931
|
+
params.companyguid = user.companyguid;
|
|
62932
|
+
params.usercode = user.usercode;
|
|
62933
62933
|
}
|
|
62934
62934
|
|
|
62935
62935
|
config.data = params;
|
|
@@ -63038,12 +63038,12 @@ function getTableData(data) {
|
|
|
63038
63038
|
var user = utils_storage.getO("user");
|
|
63039
63039
|
|
|
63040
63040
|
if (user) {
|
|
63041
|
-
data.reqParams.push({
|
|
63041
|
+
data.reqParams.params.push({
|
|
63042
63042
|
key: "companyGuid",
|
|
63043
63043
|
value: user.companyGuid,
|
|
63044
63044
|
op: "eq"
|
|
63045
63045
|
});
|
|
63046
|
-
data.reqParams.push({
|
|
63046
|
+
data.reqParams.params.push({
|
|
63047
63047
|
key: "userCode",
|
|
63048
63048
|
value: user.userCode,
|
|
63049
63049
|
op: "eq"
|