This commit is contained in:
chen-xin-zhi 2025-02-07 10:07:22 +08:00
parent d4c6a1cfa4
commit df0b3cc4f8
14 changed files with 556 additions and 5 deletions

View File

@ -2,5 +2,6 @@ export const Url = 'http://localhost:9092/api' //后端接口文档
export const testUrl = 'http://123.249.108.160:8888/api' //自己组的服务器接口地址 export const testUrl = 'http://123.249.108.160:8888/api' //自己组的服务器接口地址
export const suiUrl = 'http://154.8.193.216:9092/api' //隋宇霏的接口地址 export const suiUrl = 'http://154.8.193.216:9092/api' //隋宇霏的接口地址
export const domain = 'https://www.carboner.cn/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

View File

@ -55,7 +55,12 @@
"urlCheck" : false, "urlCheck" : false,
"minified" : true "minified" : true
}, },
"usingComponents" : true "usingComponents" : true,
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序定位"
}
}
}, },
"vueVersion" : "3" "vueVersion" : "3"
} }

View File

@ -1,5 +1,12 @@
{ {
"pages": [ "pages": [
{
"path" : "pages/test/test",
"style" :
{
"navigationBarTitleText" : ""
}
},
{ {
"path" : "pages/home/home", "path" : "pages/home/home",
"style" : "style" :
@ -213,6 +220,16 @@
} }
} }
], ],
"plugins" : {
"logisticsPlugin" : {
"version": "2.3.0",
"provider": "wx9ad912bf20548d92"
},
"routePlan": {
"version": "1.0.19",
"provider": "wx50b5593e81dd937a"
}
},
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app", "navigationBarTitleText": "uni-app",

302
pages/test/test.vue Normal file
View 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>

View File

@ -1,4 +1,6 @@
"use strict"; "use strict";
const Url = "http://localhost:9092/api";
const testUrl = "http://123.249.108.160:8888/api"; const testUrl = "http://123.249.108.160:8888/api";
const baseUrl = testUrl; const baseUrl = Url;
exports.baseUrl = baseUrl; exports.baseUrl = baseUrl;
exports.testUrl = testUrl;

View File

@ -3,6 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const common_vendor = require("./common/vendor.js"); const common_vendor = require("./common/vendor.js");
const store_index = require("./store/index.js"); const store_index = require("./store/index.js");
if (!Math) { if (!Math) {
"./pages/test/test.js";
"./pages/home/home.js"; "./pages/home/home.js";
"./pages/store-home/main/main.js"; "./pages/store-home/main/main.js";
"./pages/mine/main/main.js"; "./pages/mine/main/main.js";

View File

@ -1,5 +1,6 @@
{ {
"pages": [ "pages": [
"pages/test/test",
"pages/home/home", "pages/home/home",
"pages/store-home/main/main", "pages/store-home/main/main",
"pages/mine/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": {} "usingComponents": {}
} }

View File

@ -17235,6 +17235,12 @@ function mitt(n2) {
} }; } };
} }
const pages = [ const pages = [
{
path: "pages/test/test",
style: {
navigationBarTitleText: ""
}
},
{ {
path: "pages/home/home", path: "pages/home/home",
style: { 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 = { const globalStyle = {
navigationBarTextStyle: "black", navigationBarTextStyle: "black",
navigationBarTitleText: "uni-app", navigationBarTitleText: "uni-app",
@ -17454,6 +17470,7 @@ const tabBar = {
}; };
const e = { const e = {
pages, pages,
plugins,
globalStyle, globalStyle,
tabBar tabBar
}; };

View 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);

View File

@ -0,0 +1,4 @@
{
"navigationBarTitleText": "",
"usingComponents": {}
}

View 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>

View File

View File

@ -18,7 +18,7 @@
} }
}, },
"compileType": "miniprogram", "compileType": "miniprogram",
"libVersion": "3.7.4", "libVersion": "3.7.3",
"appid": "wx61b63e27bddf4ea2", "appid": "wx61b63e27bddf4ea2",
"projectname": "FeiYi", "projectname": "FeiYi",
"condition": { "condition": {

View File

@ -7,6 +7,13 @@
"condition": { "condition": {
"miniprogram": { "miniprogram": {
"list": [ "list": [
{
"name": "pages/home/home",
"pathName": "pages/home/home",
"query": "",
"launchMode": "default",
"scene": null
},
{ {
"name": "pages/mine/Contact/Contact", "name": "pages/mine/Contact/Contact",
"pathName": "pages/mine/Contact/Contact", "pathName": "pages/mine/Contact/Contact",