jjj
This commit is contained in:
parent
d4c6a1cfa4
commit
df0b3cc4f8
|
@ -2,5 +2,6 @@ export const Url = 'http://localhost:9092/api' //后端接口文档
|
|||
export const testUrl = 'http://123.249.108.160:8888/api' //自己组的服务器接口地址
|
||||
export const suiUrl = 'http://154.8.193.216:9092/api' //隋宇霏的接口地址
|
||||
export const domain = 'https://www.carboner.cn/api'
|
||||
export const myIp = 'http://8.130.119.119:9092/api'
|
||||
|
||||
export const baseUrl = testUrl
|
||||
export const baseUrl = Url
|
|
@ -14,7 +14,7 @@
|
|||
"alwaysShowBeforeRender" : true,
|
||||
"waiting" : true,
|
||||
"autoclose" : true,
|
||||
"delay" : 0
|
||||
"delay" : 0
|
||||
},
|
||||
"modules" : {},
|
||||
/* 模块配置 */
|
||||
|
@ -55,7 +55,12 @@
|
|||
"urlCheck" : false,
|
||||
"minified" : true
|
||||
},
|
||||
"usingComponents" : true
|
||||
"usingComponents" : true,
|
||||
"permission": {
|
||||
"scope.userLocation": {
|
||||
"desc": "你的位置信息将用于小程序定位"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vueVersion" : "3"
|
||||
}
|
||||
|
|
17
pages.json
17
pages.json
|
@ -1,5 +1,12 @@
|
|||
{
|
||||
"pages": [
|
||||
{
|
||||
"path" : "pages/test/test",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path" : "pages/home/home",
|
||||
"style" :
|
||||
|
@ -213,6 +220,16 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"plugins" : {
|
||||
"logisticsPlugin" : {
|
||||
"version": "2.3.0",
|
||||
"provider": "wx9ad912bf20548d92"
|
||||
},
|
||||
"routePlan": {
|
||||
"version": "1.0.19",
|
||||
"provider": "wx50b5593e81dd937a"
|
||||
}
|
||||
},
|
||||
"globalStyle": {
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationBarTitleText": "uni-app",
|
||||
|
|
302
pages/test/test.vue
Normal file
302
pages/test/test.vue
Normal file
|
@ -0,0 +1,302 @@
|
|||
<template>
|
||||
<view style="width: 100%; background-color: gold; text-align: center;">
|
||||
<text style="font-size: 50rpx;">先登录再查看物流</text>
|
||||
</view>
|
||||
<button @click="login" type="primary">登录</button>
|
||||
<button @click="toDelieverPage" type="primary">查看物流</button>
|
||||
<button @click="getToken" type="warn">获取token</button>
|
||||
<button @click="toDelieverPage2" type="warn">查看物流</button>
|
||||
<button @click="chooseAddress" type="primary">wx.chooseAddress</button>
|
||||
<button @click="chooseLocation" type="primary">wx.chooseLocation</button>
|
||||
<button @click="testMap" type="primary">导航到师大</button>
|
||||
<button @click="userLogin" type="primary">测试登录</button>
|
||||
<button @click="getWxLoginCode" type="warn">获取微信登录code</button>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- <button @click="getIdList" type="warn">获取运力id列表</button> -->
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { onLoad } from "@dcloudio/uni-app";
|
||||
import { onMounted } from "vue";
|
||||
import { baseUrl, testUrl } from "../../api/request";
|
||||
|
||||
let waybillToken = ''
|
||||
let access_token = ''
|
||||
|
||||
const getTime = () => {
|
||||
const now = new Date();
|
||||
const year = now.getFullYear();
|
||||
const month = ('0' + (now.getMonth() + 1)).slice(-2);
|
||||
const day = ('0' + now.getDate()).slice(-2);
|
||||
const hours = ('0' + now.getHours()).slice(-2);
|
||||
const minutes = ('0' + now.getMinutes()).slice(-2);
|
||||
const seconds = ('0' + now.getSeconds()).slice(-2);
|
||||
const formattedTime = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
|
||||
console.log(formattedTime)
|
||||
}
|
||||
|
||||
|
||||
const userLogin = () => {
|
||||
uni.request({
|
||||
url: testUrl + '/user/login',
|
||||
method: 'POST',
|
||||
data: {
|
||||
userAccount: 'feiyi',
|
||||
userPassword: 123456
|
||||
},
|
||||
success: (res) => {
|
||||
console.log(res)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// onMounted(() => {
|
||||
// var interval = setInterval(() => {
|
||||
// toDelieverPage()
|
||||
// if (waybillToken == null) {
|
||||
// getTime()
|
||||
// clearInterval(interval)
|
||||
// }
|
||||
// }, 5000)
|
||||
|
||||
// })
|
||||
|
||||
// onMounted(() => {
|
||||
// uni.request({
|
||||
// url: baseUrl + '/logistics/get/token',
|
||||
// method: 'GET',
|
||||
// header: {
|
||||
// 'cookie': wx.getStorageSync("cookie")
|
||||
// },
|
||||
// success: (res:any) => {
|
||||
// access_token = res.data.data.access_token
|
||||
// console.log(res.data)
|
||||
// }
|
||||
// })
|
||||
// })
|
||||
|
||||
const getWxLoginCode = () => {
|
||||
wx.login({
|
||||
success: (res) => {
|
||||
console.log(res.code)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
const testMap = () => {
|
||||
|
||||
wx.openLocation({
|
||||
latitude: 45.867741,
|
||||
longitude: 126.560037,
|
||||
name: '哈尔滨师范大学(松北校区)',
|
||||
address: '黑龙江省哈尔滨市呼兰区利民经济开发区师大路1号',
|
||||
success: (res) => {
|
||||
console.log(res)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
const map = () => {
|
||||
let plugin2 = requirePlugin('routePlan');
|
||||
let key = 'KJKBZ-477KC-7VX2S-AD5UK-RBBRZ-7IFFB'; //使用在腾讯位置服务申请的key
|
||||
let referer = '泠珑水月阁文化艺术工作室'; //调用插件的app的名称
|
||||
let endPoint = JSON.stringify({ //终点
|
||||
'name': '北京西站',
|
||||
'latitude': 39.894806,
|
||||
'longitude': 116.321592
|
||||
});
|
||||
wx.navigateTo({
|
||||
url: 'plugin://routePlan/index?key=' + key + '&referer=' + referer + '&endPoint=' + endPoint
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
const chooseAddress = () => {
|
||||
wx.chooseAddress({
|
||||
success: (res) => {
|
||||
console.log(res)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const chooseLocation = () => {
|
||||
wx.chooseLocation({
|
||||
latitude: 28.58,
|
||||
longitude: 121.48,
|
||||
success: (res) => {
|
||||
console.log(res)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
const getToken = () => {
|
||||
uni.request({
|
||||
url: 'https://api.weixin.qq.com/cgi-bin/token',
|
||||
method: 'GET',
|
||||
data: {
|
||||
grant_type: 'client_credential',
|
||||
appid: 'wx61b63e27bddf4ea2',
|
||||
secret: '5ef9e1f17acd8180afe2d80199fd466e'
|
||||
},
|
||||
success: (res) => {
|
||||
access_token = res.data.access_token
|
||||
console.log(access_token)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
const toDelieverPage3 = () => {
|
||||
uni.request({
|
||||
url: 'https://api.weixin.qq.com/cgi-bin/express/delivery/open_msg/follow_waybill?access_token=' + access_token,
|
||||
method: 'POST',
|
||||
data: {
|
||||
openid:"oydCP7TGAWUqN_d0g3y6bbQkbe2I",
|
||||
waybill_id:"YT8949374567344",
|
||||
receiver_phone:"123456566",
|
||||
goods_info:{
|
||||
detail_list:[
|
||||
{
|
||||
goods_name:"测试名字",
|
||||
goods_img_url:"https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FSnnMkwOn-1ab7a54755e0a23722c1b9dd0ae981c4.png"
|
||||
},
|
||||
{
|
||||
goods_name:"测试名字2",
|
||||
goods_img_url:"https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FSnnMkwOn-1ab7a54755e0a23722c1b9dd0ae981c4.png"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
success: (res) => {
|
||||
console.log(res.data)
|
||||
waybillToken = res.data.waybill_token
|
||||
plugin.openWaybillTracking({
|
||||
waybillToken: waybillToken
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
const toDelieverPage2 = () => {
|
||||
uni.request({
|
||||
url: 'https://api.weixin.qq.com/cgi-bin/express/delivery/open_msg/trace_waybill?access_token=' + access_token,
|
||||
method: 'POST',
|
||||
data: {
|
||||
openid:"oydCP7TGAWUqN_d0g3y6bbQkbe2I",
|
||||
waybill_id:"YT8949374567344",
|
||||
receiver_phone:"123456566",
|
||||
goods_info:{
|
||||
detail_list:[
|
||||
{
|
||||
goods_name:"测试名字",
|
||||
goods_img_url:"https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FSnnMkwOn-1ab7a54755e0a23722c1b9dd0ae981c4.png"
|
||||
},
|
||||
{
|
||||
goods_name:"测试名字2",
|
||||
goods_img_url:"https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FSnnMkwOn-1ab7a54755e0a23722c1b9dd0ae981c4.png"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
success: (res) => {
|
||||
console.log(res.data)
|
||||
waybillToken = res.data.waybill_token
|
||||
plugin.openWaybillTracking({
|
||||
waybillToken: waybillToken
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
var plugin = requirePlugin('logisticsPlugin')
|
||||
const toDelieverPage = () => {
|
||||
uni.request({
|
||||
url: baseUrl + '/logistics/get/info',
|
||||
method: 'POST',
|
||||
data: {
|
||||
id: 125125278
|
||||
},
|
||||
header: {
|
||||
'cookie': wx.getStorageSync("cookie")
|
||||
},
|
||||
success: (res) => {
|
||||
console.log(res.data.data)
|
||||
waybillToken = res.data.data.waybill_token
|
||||
plugin.openWaybillTracking({
|
||||
waybillToken: waybillToken
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
const getIdList = () => {
|
||||
uni.request({
|
||||
url: 'https://api.weixin.qq.com/cgi-bin/express/delivery/open_msg/get_delivery_list?access_token=' + access_token,
|
||||
method: 'POST',
|
||||
data: {
|
||||
|
||||
},
|
||||
success: (res) => {
|
||||
console.log(res.data)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
const login = () => {
|
||||
uni.login({
|
||||
provider: 'weixin', //使用微信登录
|
||||
success: function (loginRes) {
|
||||
if (loginRes.code !== null) {
|
||||
console.log("获取code:" + loginRes.code)
|
||||
loginUser(loginRes.code);
|
||||
} else {
|
||||
console.log("code为空");
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
//非遗
|
||||
const loginUser = async ( code ) =>{
|
||||
const res = await uni.request({
|
||||
url: baseUrl + '/user/login/wx_open',
|
||||
method: 'GET',
|
||||
data: {
|
||||
code: code
|
||||
}
|
||||
})
|
||||
console.log(res)
|
||||
console.log('loginUser后台返回的==>',res.header['Set-Cookie']);
|
||||
uni.removeStorageSync('cookie');
|
||||
uni.setStorageSync("cookie",res.header['Set-Cookie']); //保存setStorageSync到
|
||||
if(res.data.code == 1) {
|
||||
uni.showToast({
|
||||
title: '登录成功',
|
||||
duration: 2000 //提示两秒
|
||||
})
|
||||
uni.setStorageSync('userInfo',res.data.data);
|
||||
} else {
|
||||
uni.showToast({
|
||||
icon: 'error',
|
||||
title: "登录失败,请重试"
|
||||
})
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
4
unpackage/dist/dev/mp-weixin/api/request.js
vendored
4
unpackage/dist/dev/mp-weixin/api/request.js
vendored
|
@ -1,4 +1,6 @@
|
|||
"use strict";
|
||||
const Url = "http://localhost:9092/api";
|
||||
const testUrl = "http://123.249.108.160:8888/api";
|
||||
const baseUrl = testUrl;
|
||||
const baseUrl = Url;
|
||||
exports.baseUrl = baseUrl;
|
||||
exports.testUrl = testUrl;
|
||||
|
|
1
unpackage/dist/dev/mp-weixin/app.js
vendored
1
unpackage/dist/dev/mp-weixin/app.js
vendored
|
@ -3,6 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|||
const common_vendor = require("./common/vendor.js");
|
||||
const store_index = require("./store/index.js");
|
||||
if (!Math) {
|
||||
"./pages/test/test.js";
|
||||
"./pages/home/home.js";
|
||||
"./pages/store-home/main/main.js";
|
||||
"./pages/mine/main/main.js";
|
||||
|
|
16
unpackage/dist/dev/mp-weixin/app.json
vendored
16
unpackage/dist/dev/mp-weixin/app.json
vendored
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"pages": [
|
||||
"pages/test/test",
|
||||
"pages/home/home",
|
||||
"pages/store-home/main/main",
|
||||
"pages/mine/main/main",
|
||||
|
@ -62,5 +63,20 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"plugins": {
|
||||
"logisticsPlugin": {
|
||||
"version": "2.3.0",
|
||||
"provider": "wx9ad912bf20548d92"
|
||||
},
|
||||
"routePlan": {
|
||||
"version": "1.0.19",
|
||||
"provider": "wx50b5593e81dd937a"
|
||||
}
|
||||
},
|
||||
"permission": {
|
||||
"scope.userLocation": {
|
||||
"desc": "你的位置信息将用于小程序定位"
|
||||
}
|
||||
},
|
||||
"usingComponents": {}
|
||||
}
|
17
unpackage/dist/dev/mp-weixin/common/vendor.js
vendored
17
unpackage/dist/dev/mp-weixin/common/vendor.js
vendored
|
@ -17235,6 +17235,12 @@ function mitt(n2) {
|
|||
} };
|
||||
}
|
||||
const pages = [
|
||||
{
|
||||
path: "pages/test/test",
|
||||
style: {
|
||||
navigationBarTitleText: ""
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "pages/home/home",
|
||||
style: {
|
||||
|
@ -17418,6 +17424,16 @@ const pages = [
|
|||
}
|
||||
}
|
||||
];
|
||||
const plugins = {
|
||||
logisticsPlugin: {
|
||||
version: "2.3.0",
|
||||
provider: "wx9ad912bf20548d92"
|
||||
},
|
||||
routePlan: {
|
||||
version: "1.0.19",
|
||||
provider: "wx50b5593e81dd937a"
|
||||
}
|
||||
};
|
||||
const globalStyle = {
|
||||
navigationBarTextStyle: "black",
|
||||
navigationBarTitleText: "uni-app",
|
||||
|
@ -17454,6 +17470,7 @@ const tabBar = {
|
|||
};
|
||||
const e = {
|
||||
pages,
|
||||
plugins,
|
||||
globalStyle,
|
||||
tabBar
|
||||
};
|
||||
|
|
178
unpackage/dist/dev/mp-weixin/pages/test/test.js
vendored
Normal file
178
unpackage/dist/dev/mp-weixin/pages/test/test.js
vendored
Normal file
|
@ -0,0 +1,178 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const api_request = require("../../api/request.js");
|
||||
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
||||
__name: "test",
|
||||
setup(__props) {
|
||||
let waybillToken = "";
|
||||
let access_token = "";
|
||||
const userLogin = () => {
|
||||
common_vendor.index.request({
|
||||
url: api_request.testUrl + "/user/login",
|
||||
method: "POST",
|
||||
data: {
|
||||
userAccount: "feiyi",
|
||||
userPassword: 123456
|
||||
},
|
||||
success: (res) => {
|
||||
console.log(res);
|
||||
}
|
||||
});
|
||||
};
|
||||
const getWxLoginCode = () => {
|
||||
common_vendor.wx$1.login({
|
||||
success: (res) => {
|
||||
console.log(res.code);
|
||||
}
|
||||
});
|
||||
};
|
||||
const testMap = () => {
|
||||
common_vendor.wx$1.openLocation({
|
||||
latitude: 45.867741,
|
||||
longitude: 126.560037,
|
||||
name: "哈尔滨师范大学(松北校区)",
|
||||
address: "黑龙江省哈尔滨市呼兰区利民经济开发区师大路1号",
|
||||
success: (res) => {
|
||||
console.log(res);
|
||||
}
|
||||
});
|
||||
};
|
||||
const chooseAddress = () => {
|
||||
common_vendor.wx$1.chooseAddress({
|
||||
success: (res) => {
|
||||
console.log(res);
|
||||
}
|
||||
});
|
||||
};
|
||||
const chooseLocation = () => {
|
||||
common_vendor.wx$1.chooseLocation({
|
||||
latitude: 28.58,
|
||||
longitude: 121.48,
|
||||
success: (res) => {
|
||||
console.log(res);
|
||||
}
|
||||
});
|
||||
};
|
||||
const getToken = () => {
|
||||
common_vendor.index.request({
|
||||
url: "https://api.weixin.qq.com/cgi-bin/token",
|
||||
method: "GET",
|
||||
data: {
|
||||
grant_type: "client_credential",
|
||||
appid: "wx61b63e27bddf4ea2",
|
||||
secret: "5ef9e1f17acd8180afe2d80199fd466e"
|
||||
},
|
||||
success: (res) => {
|
||||
access_token = res.data.access_token;
|
||||
console.log(access_token);
|
||||
}
|
||||
});
|
||||
};
|
||||
const toDelieverPage2 = () => {
|
||||
common_vendor.index.request({
|
||||
url: "https://api.weixin.qq.com/cgi-bin/express/delivery/open_msg/trace_waybill?access_token=" + access_token,
|
||||
method: "POST",
|
||||
data: {
|
||||
openid: "oydCP7TGAWUqN_d0g3y6bbQkbe2I",
|
||||
waybill_id: "YT8949374567344",
|
||||
receiver_phone: "123456566",
|
||||
goods_info: {
|
||||
detail_list: [
|
||||
{
|
||||
goods_name: "测试名字",
|
||||
goods_img_url: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FSnnMkwOn-1ab7a54755e0a23722c1b9dd0ae981c4.png"
|
||||
},
|
||||
{
|
||||
goods_name: "测试名字2",
|
||||
goods_img_url: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FSnnMkwOn-1ab7a54755e0a23722c1b9dd0ae981c4.png"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
success: (res) => {
|
||||
console.log(res.data);
|
||||
waybillToken = res.data.waybill_token;
|
||||
plugin.openWaybillTracking({
|
||||
waybillToken
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
var plugin = requirePlugin("logisticsPlugin");
|
||||
const toDelieverPage = () => {
|
||||
common_vendor.index.request({
|
||||
url: api_request.baseUrl + "/logistics/get/info",
|
||||
method: "POST",
|
||||
data: {
|
||||
id: 125125278
|
||||
},
|
||||
header: {
|
||||
"cookie": common_vendor.wx$1.getStorageSync("cookie")
|
||||
},
|
||||
success: (res) => {
|
||||
console.log(res.data.data);
|
||||
waybillToken = res.data.data.waybill_token;
|
||||
plugin.openWaybillTracking({
|
||||
waybillToken
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
const login = () => {
|
||||
common_vendor.index.login({
|
||||
provider: "weixin",
|
||||
//使用微信登录
|
||||
success: function(loginRes) {
|
||||
if (loginRes.code !== null) {
|
||||
console.log("获取code:" + loginRes.code);
|
||||
loginUser(loginRes.code);
|
||||
} else {
|
||||
console.log("code为空");
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
const loginUser = async (code) => {
|
||||
const res = await common_vendor.index.request({
|
||||
url: api_request.baseUrl + "/user/login/wx_open",
|
||||
method: "GET",
|
||||
data: {
|
||||
code
|
||||
}
|
||||
});
|
||||
console.log(res);
|
||||
console.log("loginUser后台返回的==>", res.header["Set-Cookie"]);
|
||||
common_vendor.index.removeStorageSync("cookie");
|
||||
common_vendor.index.setStorageSync("cookie", res.header["Set-Cookie"]);
|
||||
if (res.data.code == 1) {
|
||||
common_vendor.index.showToast({
|
||||
title: "登录成功",
|
||||
duration: 2e3
|
||||
//提示两秒
|
||||
});
|
||||
common_vendor.index.setStorageSync("userInfo", res.data.data);
|
||||
} else {
|
||||
common_vendor.index.showToast({
|
||||
icon: "error",
|
||||
title: "登录失败,请重试"
|
||||
});
|
||||
return;
|
||||
}
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(login),
|
||||
b: common_vendor.o(toDelieverPage),
|
||||
c: common_vendor.o(getToken),
|
||||
d: common_vendor.o(toDelieverPage2),
|
||||
e: common_vendor.o(chooseAddress),
|
||||
f: common_vendor.o(chooseLocation),
|
||||
g: common_vendor.o(testMap),
|
||||
h: common_vendor.o(userLogin),
|
||||
i: common_vendor.o(getWxLoginCode)
|
||||
};
|
||||
};
|
||||
}
|
||||
});
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "D:/微信小程序/课设整合/匠承非遗小程序端/jiangchengfeiyi-xiaochengxu/pages/test/test.vue"]]);
|
||||
wx.createPage(MiniProgramPage);
|
4
unpackage/dist/dev/mp-weixin/pages/test/test.json
vendored
Normal file
4
unpackage/dist/dev/mp-weixin/pages/test/test.json
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
1
unpackage/dist/dev/mp-weixin/pages/test/test.wxml
vendored
Normal file
1
unpackage/dist/dev/mp-weixin/pages/test/test.wxml
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
<view style="width:100%;background-color:gold;text-align:center"><text style="font-size:50rpx">先登录再查看物流</text></view><button bindtap="{{a}}" type="primary">登录</button><button bindtap="{{b}}" type="primary">查看物流</button><button bindtap="{{c}}" type="warn">获取token</button><button bindtap="{{d}}" type="warn">查看物流</button><button bindtap="{{e}}" type="primary">wx.chooseAddress</button><button bindtap="{{f}}" type="primary">wx.chooseLocation</button><button bindtap="{{g}}" type="primary">导航到师大</button><button bindtap="{{h}}" type="primary">测试登录</button><button bindtap="{{i}}" type="warn">获取微信登录code</button>
|
0
unpackage/dist/dev/mp-weixin/pages/test/test.wxss
vendored
Normal file
0
unpackage/dist/dev/mp-weixin/pages/test/test.wxss
vendored
Normal file
|
@ -18,7 +18,7 @@
|
|||
}
|
||||
},
|
||||
"compileType": "miniprogram",
|
||||
"libVersion": "3.7.4",
|
||||
"libVersion": "3.7.3",
|
||||
"appid": "wx61b63e27bddf4ea2",
|
||||
"projectname": "FeiYi",
|
||||
"condition": {
|
||||
|
|
|
@ -7,6 +7,13 @@
|
|||
"condition": {
|
||||
"miniprogram": {
|
||||
"list": [
|
||||
{
|
||||
"name": "pages/home/home",
|
||||
"pathName": "pages/home/home",
|
||||
"query": "",
|
||||
"launchMode": "default",
|
||||
"scene": null
|
||||
},
|
||||
{
|
||||
"name": "pages/mine/Contact/Contact",
|
||||
"pathName": "pages/mine/Contact/Contact",
|
||||
|
|
Loading…
Reference in New Issue
Block a user