Compare commits

...

14 Commits

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

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

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

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

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

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

Loading…
Cancel
Save