Compare commits

..

14 Commits

@ -20,6 +20,7 @@ SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for banner
-- ----------------------------
----
DROP TABLE IF EXISTS `banner`;
CREATE TABLE `banner` (
`id` int(11) NOT NULL AUTO_INCREMENT,

@ -15,4 +15,4 @@ app.use("/api",router);
app.listen(3001,() =>{
console.log("服务器运行在3001端口上");
})
})//123

@ -1,5 +1,5 @@
/**
* 存储接口地址
* 定义存储接口地址
*/
module.exports = {
baseUrl:"http://iwenwiki.com:3001", // 公共地址

@ -1,12 +1,12 @@
// app.js
App({
onLaunch() {
// 展示本地存储能力 6
// 展示本地存储能力
const logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 登录
// 定义登录
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId

@ -1,6 +1,5 @@
const { getCart,delGoodsCart } = require("../../api/index.js")
Page({
//111111
/**
* 页面的初始数据

@ -1,5 +1,5 @@
const { getLogin } = require("../../api/index.js")
//1231344
Page({
data: {
userInfo: {},

Loading…
Cancel
Save