fmui-base 2.1.17 → 2.1.19
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/README.md
CHANGED
|
@@ -133,6 +133,8 @@ var ListItem = function (_React$Component) {
|
|
|
133
133
|
} else {
|
|
134
134
|
var fullUrl = window.location.href;
|
|
135
135
|
fullUrl = fullUrl.replace("clientType", "");
|
|
136
|
+
fullUrl = fullUrl.replace("thirdMenuType", "");
|
|
137
|
+
fullUrl = fullUrl.replace("clientAppType", "");
|
|
136
138
|
var mobilePath = module;
|
|
137
139
|
//projectPath = modules/mobileoffice
|
|
138
140
|
// 预算模块跳转特殊处理
|
|
@@ -151,11 +151,14 @@ var Page = function (_React$Component) {
|
|
|
151
151
|
// var nameObj = {};
|
|
152
152
|
$.ajax({
|
|
153
153
|
type: 'GET',
|
|
154
|
-
url: getLoginUserInfo().context + "/api/m/cmp/popuser/mobile/getSceneInfo
|
|
154
|
+
url: getLoginUserInfo().context + "/api/m/cmp/popuser/mobile/getSceneInfo",
|
|
155
155
|
data: {
|
|
156
156
|
popCode: popCode,
|
|
157
157
|
chooseObj: popObj
|
|
158
158
|
},
|
|
159
|
+
headers: {
|
|
160
|
+
'Authorization': 'Bearer ' + getLoginUserInfo().token
|
|
161
|
+
},
|
|
159
162
|
dataType: "json",
|
|
160
163
|
async: false,
|
|
161
164
|
success: function success(data) {
|
|
@@ -727,7 +730,7 @@ var Page = function (_React$Component) {
|
|
|
727
730
|
var fieldTable = this.props.fieldTable;
|
|
728
731
|
var fieldData = this.props.fieldData;
|
|
729
732
|
var token = this.state.token;
|
|
730
|
-
var url = t.state.context + "/api/m/cmp/popuser/mobile/getOfficePopuser?
|
|
733
|
+
var url = t.state.context + "/api/m/cmp/popuser/mobile/getOfficePopuser?" + "scopeTable=" + scopeTable + "&fieldTable=" + fieldTable + "&fieldData=" + fieldData + "&fieldDataValue=" + fieldDataValue;
|
|
731
734
|
//是否回显已删除的数据
|
|
732
735
|
var includeDel = this.props.includeDel;
|
|
733
736
|
if (includeDel != null && includeDel != undefined) {
|