look-ui 1.2.12 → 1.2.14
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/dist/look-ui.common.js +2 -2
- package/dist/look-ui.css +1 -1
- package/dist/look-ui.umd.js +2 -2
- package/dist/look-ui.umd.min.js +2 -2
- package/package.json +1 -1
- package/utils/api.js +2 -1
package/package.json
CHANGED
package/utils/api.js
CHANGED
|
@@ -28,9 +28,10 @@ export const searchPersonal = function (url, data, ticket) {
|
|
|
28
28
|
});
|
|
29
29
|
};
|
|
30
30
|
|
|
31
|
-
export const searchUnit = function (url, data) {
|
|
31
|
+
export const searchUnit = function (url, data, ticket) {
|
|
32
32
|
return request({
|
|
33
33
|
url: `${url}/api/archive/search/unit`,
|
|
34
|
+
headers: { 'Accesstoken': ticket },
|
|
34
35
|
method: 'post',
|
|
35
36
|
data
|
|
36
37
|
});
|