gc_mobile 1.0.8 → 1.0.9
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/example/dd/App.vue +3 -2
- package/libs/main.js +423 -419
- package/libs/main.umd.cjs +4 -4
- package/package.json +1 -1
- package/src/index.js +3 -3
- package/src/lib/utils.js +17 -0
package/example/dd/App.vue
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
import mobile from "../../libs/main";
|
|
2
|
+
import mobile,{utils} from "../../libs/main";
|
|
3
3
|
import signature from "gc_rsa/src/lib/signature";
|
|
4
4
|
|
|
5
5
|
import Request from "luch-request";
|
|
@@ -14,7 +14,8 @@ http.interceptors.request.use(config=>{
|
|
|
14
14
|
return config
|
|
15
15
|
})
|
|
16
16
|
export default {
|
|
17
|
-
onLaunch: async function () {
|
|
17
|
+
onLaunch: async function () {
|
|
18
|
+
console.log("set", utils.setNavigationBarTitle({ title: "新标题" }));
|
|
18
19
|
const gg = await mobile({
|
|
19
20
|
appCode: "GC-MOBILE",
|
|
20
21
|
apiPrefix: "prod",
|