Compare commits
No commits in common. 'lc_branch' and 'master' have entirely different histories.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,14 +0,0 @@
|
|||||||
# Windows
|
|
||||||
[Dd]esktop.ini
|
|
||||||
Thumbs.db
|
|
||||||
$RECYCLE.BIN/
|
|
||||||
|
|
||||||
# macOS
|
|
||||||
.DS_Store
|
|
||||||
.fseventsd
|
|
||||||
.Spotlight-V100
|
|
||||||
.TemporaryItems
|
|
||||||
.Trashes
|
|
||||||
|
|
||||||
# Node.js
|
|
||||||
node_modules/
|
|
@ -1,12 +0,0 @@
|
|||||||
# 云开发 quickstart
|
|
||||||
|
|
||||||
这是云开发的快速启动指引,其中演示了如何上手使用云开发的三大基础能力:
|
|
||||||
|
|
||||||
- 数据库:一个既可在小程序前端操作,也能在云函数中读写的 JSON 文档型数据库
|
|
||||||
- 文件存储:在小程序前端直接上传/下载云端文件,在云开发控制台可视化管理
|
|
||||||
- 云函数:在云端运行的代码,微信私有协议天然鉴权,开发者只需编写业务逻辑代码
|
|
||||||
|
|
||||||
## 参考文档
|
|
||||||
|
|
||||||
- [云开发文档](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/getting-started.html)
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
|||||||
const getOpenId = require('./getOpenId/index');
|
|
||||||
const getMiniProgramCode = require('./getMiniProgramCode/index');
|
|
||||||
const createCollection = require('./createCollection/index');
|
|
||||||
const selectRecord = require('./selectRecord/index');
|
|
||||||
const updateRecord = require('./updateRecord/index');
|
|
||||||
const sumRecord = require('./sumRecord/index');
|
|
||||||
|
|
||||||
|
|
||||||
// 云函数入口函数
|
|
||||||
exports.main = async (event, context) => {
|
|
||||||
switch (event.type) {
|
|
||||||
case 'getOpenId':
|
|
||||||
return await getOpenId.main(event, context);
|
|
||||||
case 'getMiniProgramCode':
|
|
||||||
return await getMiniProgramCode.main(event, context);
|
|
||||||
case 'createCollection':
|
|
||||||
return await createCollection.main(event, context);
|
|
||||||
case 'selectRecord':
|
|
||||||
return await selectRecord.main(event, context);
|
|
||||||
case 'updateRecord':
|
|
||||||
return await updateRecord.main(event, context);
|
|
||||||
case 'sumRecord':
|
|
||||||
return await sumRecord.main(event, context);
|
|
||||||
}
|
|
||||||
};
|
|
@ -1,39 +0,0 @@
|
|||||||
{
|
|
||||||
"pages": [
|
|
||||||
"pages/login/login",
|
|
||||||
"pages/index/index",
|
|
||||||
"pages/getOpenId/index",
|
|
||||||
"pages/getMiniProgramCode/index",
|
|
||||||
"pages/deployService/index",
|
|
||||||
"pages/createCollection/index",
|
|
||||||
"pages/uploadFile/index",
|
|
||||||
"pages/selectRecord/index",
|
|
||||||
"pages/updateRecord/index",
|
|
||||||
"pages/updateRecordResult/index",
|
|
||||||
"pages/updateRecordSuccess/index",
|
|
||||||
"pages/sumRecord/index",
|
|
||||||
"pages/sumRecordResult/index",
|
|
||||||
"pages/school/school",
|
|
||||||
"pages/canteen/canteen"
|
|
||||||
],
|
|
||||||
"window": {
|
|
||||||
"backgroundColor": "#F6F6F6",
|
|
||||||
"backgroundTextStyle": "light",
|
|
||||||
"navigationBarBackgroundColor": "#F6F6F6",
|
|
||||||
"navigationBarTitleText": "云开发 QuickStart",
|
|
||||||
"navigationBarTextStyle": "black"
|
|
||||||
},
|
|
||||||
"sitemapLocation": "sitemap.json",
|
|
||||||
"style": "v2",
|
|
||||||
"plugins": {
|
|
||||||
"routePlan":{
|
|
||||||
"version": "1.0.19",
|
|
||||||
"provider": "wx50b5593e81dd937a"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"permission": {
|
|
||||||
"scope.userLocation": {
|
|
||||||
"desc": "你的位置信息将用于小程序定位"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
/**app.wxss**/
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
background: initial;
|
|
||||||
}
|
|
||||||
|
|
||||||
button:focus{
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
button::after{
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
page {
|
|
||||||
background: #ffffff;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
@ -1,37 +0,0 @@
|
|||||||
// miniprogram/components/cloudTipModal/index.js
|
|
||||||
const { isMac } = require('../../envList.js');
|
|
||||||
|
|
||||||
Component({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
tipText: isMac ? 'sh ./uploadCloudFunction.sh' : './uploadCloudFunction.bat'
|
|
||||||
},
|
|
||||||
properties: {
|
|
||||||
showUploadTipProps: Boolean
|
|
||||||
},
|
|
||||||
observers: {
|
|
||||||
showUploadTipProps: function(showUploadTipProps) {
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: showUploadTipProps
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
onChangeShowUploadTip() {
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: !this.data.showUploadTip
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
copyShell() {
|
|
||||||
wx.setClipboardData({
|
|
||||||
data: this.data.tipText,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {},
|
|
||||||
"component": true
|
|
||||||
}
|
|
@ -1,13 +0,0 @@
|
|||||||
<!--miniprogram/components/cloudTipModal/index.wxml-->
|
|
||||||
<view class="install_tip" wx:if="{{showUploadTip}}">
|
|
||||||
<view class="install_tip_back"></view>
|
|
||||||
<view class="install_tip_detail">
|
|
||||||
<view class="install_tip_detail_title">体验前需部署云资源</view>
|
|
||||||
<view class="install_tip_detail_tip">请开启调试器进入终端窗口,复制并运行以下命令</view>
|
|
||||||
<view class="install_tip_detail_shell">
|
|
||||||
{{tipText}}
|
|
||||||
<view bindtap="copyShell" class="install_tip_detail_copy">复制</view>
|
|
||||||
</view>
|
|
||||||
<view bindtap="onChangeShowUploadTip" class="install_tip_detail_button">已执行命令</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
@ -1,57 +0,0 @@
|
|||||||
.install_tip_back {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
background-color: rgba(0,0,0,0.4);
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.install_tip_detail {
|
|
||||||
position: fixed;
|
|
||||||
background-color: white;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
top: 60%;
|
|
||||||
border-radius: 40rpx 40rpx 0 0;
|
|
||||||
padding: 50rpx;
|
|
||||||
z-index: 9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.install_tip_detail_title {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 40rpx;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.install_tip_detail_tip {
|
|
||||||
font-size: 25rpx;
|
|
||||||
color: rgba(0,0,0,0.4);
|
|
||||||
margin-top: 20rpx;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.install_tip_detail_shell {
|
|
||||||
margin: 70rpx 0;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.install_tip_detail_copy {
|
|
||||||
color: #546488;
|
|
||||||
margin-left: 10rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.install_tip_detail_button {
|
|
||||||
color: #07C160;
|
|
||||||
font-weight: 500;
|
|
||||||
background-color: rgba(0,0,0,0.1);
|
|
||||||
width: 60%;
|
|
||||||
text-align: center;
|
|
||||||
height: 90rpx;
|
|
||||||
line-height: 90rpx;
|
|
||||||
border-radius: 10rpx;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
const envList = [];
|
|
||||||
const isMac = false;
|
|
||||||
module.exports = {
|
|
||||||
envList,
|
|
||||||
isMac
|
|
||||||
};
|
|
Before Width: | Height: | Size: 906 B |
Before Width: | Height: | Size: 155 KiB |
Before Width: | Height: | Size: 328 KiB |
Before Width: | Height: | Size: 181 KiB |
@ -1,66 +0,0 @@
|
|||||||
// pages/canteen/canteen.js
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面加载
|
|
||||||
*/
|
|
||||||
onLoad(options) {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面初次渲染完成
|
|
||||||
*/
|
|
||||||
onReady() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面显示
|
|
||||||
*/
|
|
||||||
onShow() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面隐藏
|
|
||||||
*/
|
|
||||||
onHide() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面卸载
|
|
||||||
*/
|
|
||||||
onUnload() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面相关事件处理函数--监听用户下拉动作
|
|
||||||
*/
|
|
||||||
onPullDownRefresh() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面上拉触底事件的处理函数
|
|
||||||
*/
|
|
||||||
onReachBottom() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户点击右上角分享
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
@ -1,2 +0,0 @@
|
|||||||
<!--pages/canteen/canteen.wxml-->
|
|
||||||
<text>食堂评价</text>
|
|
@ -1 +0,0 @@
|
|||||||
/* pages/canteen/canteen.wxss */
|
|
@ -1,10 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
@ -1,29 +0,0 @@
|
|||||||
page {
|
|
||||||
background-color: white;
|
|
||||||
padding-bottom: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page {
|
|
||||||
padding: 0 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
margin-top: 16px;
|
|
||||||
font-size: 17px;
|
|
||||||
font-family: PingFang SC;
|
|
||||||
font-weight: 500;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info {
|
|
||||||
margin-top: 12px;
|
|
||||||
font-size: 17px;
|
|
||||||
font-family: PingFang SC;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.img {
|
|
||||||
margin-top: 16px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
// miniprogram/pages/deployService/index.js
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
@ -1,10 +0,0 @@
|
|||||||
<!--miniprogram/pages/deployService/index.wxml-->
|
|
||||||
<view class="page">
|
|
||||||
<view class="title">功能介绍</view>
|
|
||||||
<view class="info">云托管是全托管的容器服务,支持任何语言及框架运行,只需将已有业务代码打包上传,即可快速迁移。</view>
|
|
||||||
<view class="title">如何体验</view>
|
|
||||||
<view class="info">步骤一:切换按量付费,打开“云开发控制台>设置>环境设置”找到按量付费,点击切换。</view>
|
|
||||||
<image class="img" src="../../images/deploy_step1.png"></image>
|
|
||||||
<view class="info">步骤二:开通云托管,体验相关能力</view>
|
|
||||||
<image class="img" src="../../images/deploy_step2.png"></image>
|
|
||||||
</view>
|
|
@ -1,30 +0,0 @@
|
|||||||
/* miniprogram/pages/deployService/index.wxss */
|
|
||||||
page {
|
|
||||||
background-color: white;
|
|
||||||
padding-bottom: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page {
|
|
||||||
padding: 0 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
margin-top: 16px;
|
|
||||||
font-size: 17px;
|
|
||||||
font-family: PingFang SC;
|
|
||||||
font-weight: 500;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info {
|
|
||||||
margin-top: 12px;
|
|
||||||
font-size: 17px;
|
|
||||||
font-family: PingFang SC;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.img {
|
|
||||||
margin-top: 16px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
@ -1,53 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
haveGetCodeSrc: false,
|
|
||||||
envId: '',
|
|
||||||
codeSrc: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad(options) {
|
|
||||||
this.setData({
|
|
||||||
envId: options.envId
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getCodeSrc() {
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'getMiniProgramCode'
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
this.setData({
|
|
||||||
haveGetCodeSrc: true,
|
|
||||||
codeSrc: resp.result
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
clearCodeSrc() {
|
|
||||||
this.setData({
|
|
||||||
haveGetCodeSrc: false,
|
|
||||||
codeSrc: ''
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "生成小程序码",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,58 +0,0 @@
|
|||||||
.tip {
|
|
||||||
font-size: 23rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
margin: 30rpx auto 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top_tip {
|
|
||||||
font-size: 28rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box_text {
|
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 300rpx 0;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box {
|
|
||||||
text-align: center;
|
|
||||||
background-color: white;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
padding: 17rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_img {
|
|
||||||
width: 600rpx;
|
|
||||||
height: 600rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 20% auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: white;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: #07c160;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button_clear {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 20% auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: #07c160;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: rgba(0, 0, 0, 0.03);
|
|
||||||
}
|
|
@ -1,52 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
haveGetOpenId: false,
|
|
||||||
envId: '',
|
|
||||||
openId: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad(options) {
|
|
||||||
this.setData({
|
|
||||||
envId: options.envId
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getOpenId() {
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'getOpenId'
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
this.setData({
|
|
||||||
haveGetOpenId: true,
|
|
||||||
openId: resp.result.openid
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
clearOpenId() {
|
|
||||||
this.setData({
|
|
||||||
haveGetOpenId: false,
|
|
||||||
openId: ''
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "获取OpenId",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,46 +0,0 @@
|
|||||||
.tip {
|
|
||||||
font-size: 23rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
margin: 30rpx auto 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top_tip {
|
|
||||||
font-size: 28rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box_text {
|
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 300rpx 0;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: white;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: #07c160;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button_clear {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: #07c160;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: rgba(0, 0, 0, 0.03);
|
|
||||||
}
|
|
@ -1,142 +0,0 @@
|
|||||||
// index.js
|
|
||||||
// const app = getApp()
|
|
||||||
const { envList } = require('../../envList.js');
|
|
||||||
|
|
||||||
Page({
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
powerList: [{
|
|
||||||
title: '云函数',
|
|
||||||
tip: '安全、免鉴权运行业务代码',
|
|
||||||
showItem: false,
|
|
||||||
item: [{
|
|
||||||
title: '获取OpenId',
|
|
||||||
page: 'getOpenId'
|
|
||||||
},
|
|
||||||
// {
|
|
||||||
// title: '微信支付'
|
|
||||||
// },
|
|
||||||
{
|
|
||||||
title: '生成小程序码',
|
|
||||||
page: 'getMiniProgramCode'
|
|
||||||
},
|
|
||||||
// {
|
|
||||||
// title: '发送订阅消息',
|
|
||||||
// }
|
|
||||||
]
|
|
||||||
}, {
|
|
||||||
title: '数据库',
|
|
||||||
tip: '安全稳定的文档型数据库',
|
|
||||||
showItem: false,
|
|
||||||
item: [{
|
|
||||||
title: '创建集合',
|
|
||||||
page: 'createCollection'
|
|
||||||
}, {
|
|
||||||
title: '更新记录',
|
|
||||||
page: 'updateRecord'
|
|
||||||
}, {
|
|
||||||
title: '查询记录',
|
|
||||||
page: 'selectRecord'
|
|
||||||
}, {
|
|
||||||
title: '聚合操作',
|
|
||||||
page: 'sumRecord'
|
|
||||||
}]
|
|
||||||
}, {
|
|
||||||
title: '云存储',
|
|
||||||
tip: '自带CDN加速文件存储',
|
|
||||||
showItem: false,
|
|
||||||
item: [{
|
|
||||||
title: '上传文件',
|
|
||||||
page: 'uploadFile'
|
|
||||||
}]
|
|
||||||
}, {
|
|
||||||
title: '云托管',
|
|
||||||
tip: '不限语言的全托管容器服务',
|
|
||||||
showItem: false,
|
|
||||||
item: [{
|
|
||||||
title: '部署服务',
|
|
||||||
page: 'deployService'
|
|
||||||
}]
|
|
||||||
}],
|
|
||||||
envList,
|
|
||||||
selectedEnv: envList[0],
|
|
||||||
haveCreateCollection: false
|
|
||||||
},
|
|
||||||
|
|
||||||
onClickPowerInfo(e) {
|
|
||||||
const index = e.currentTarget.dataset.index;
|
|
||||||
const powerList = this.data.powerList;
|
|
||||||
powerList[index].showItem = !powerList[index].showItem;
|
|
||||||
if (powerList[index].title === '数据库' && !this.data.haveCreateCollection) {
|
|
||||||
this.onClickDatabase(powerList);
|
|
||||||
} else {
|
|
||||||
this.setData({
|
|
||||||
powerList
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
onChangeShowEnvChoose() {
|
|
||||||
wx.showActionSheet({
|
|
||||||
itemList: this.data.envList.map(i => i.alias),
|
|
||||||
success: (res) => {
|
|
||||||
this.onChangeSelectedEnv(res.tapIndex);
|
|
||||||
},
|
|
||||||
fail (res) {
|
|
||||||
console.log(res.errMsg);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
onChangeSelectedEnv(index) {
|
|
||||||
if (this.data.selectedEnv.envId === this.data.envList[index].envId) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const powerList = this.data.powerList;
|
|
||||||
powerList.forEach(i => {
|
|
||||||
i.showItem = false;
|
|
||||||
});
|
|
||||||
this.setData({
|
|
||||||
selectedEnv: this.data.envList[index],
|
|
||||||
powerList,
|
|
||||||
haveCreateCollection: false
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
jumpPage(e) {
|
|
||||||
wx.navigateTo({
|
|
||||||
url: `/pages/${e.currentTarget.dataset.page}/index?envId=${this.data.selectedEnv.envId}`,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
onClickDatabase(powerList) {
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.selectedEnv.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'createCollection'
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
if (resp.result.success) {
|
|
||||||
this.setData({
|
|
||||||
haveCreateCollection: true
|
|
||||||
});
|
|
||||||
}
|
|
||||||
this.setData({
|
|
||||||
powerList
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
<!--index.wxml-->
|
|
||||||
<view class="container">
|
|
||||||
|
|
||||||
<view class="title">快速了解云开发</view>
|
|
||||||
|
|
||||||
<view class="top_tip">免鉴权接口调用 免部署后台 高并发</view>
|
|
||||||
|
|
||||||
<view class="power" wx:key="title" wx:for="{{powerList}}" wx:for-item="power">
|
|
||||||
<view class="power_info" data-index="{{index}}" bindtap="onClickPowerInfo">
|
|
||||||
<view class="power_info_text">
|
|
||||||
<view class="power_info_text_title">{{power.title}}</view>
|
|
||||||
<view class="power_info_text_tip">{{power.tip}}</view>
|
|
||||||
</view>
|
|
||||||
<image wx:if="{{!power.showItem}}" class="power_info_more" src="../../images/arrow.svg"></image>
|
|
||||||
<image wx:if="{{power.showItem}}" class="power_info_less" src="../../images/arrow.svg"></image>
|
|
||||||
</view>
|
|
||||||
<view wx:if="{{power.showItem}}">
|
|
||||||
<view wx:key="title" wx:for="{{power.item}}">
|
|
||||||
<view class="line"></view>
|
|
||||||
<view class="power_item" bindtap="jumpPage" data-page="{{item.page}}">
|
|
||||||
<view class="power_item_title">{{item.title}}</view>
|
|
||||||
<image class="power_item_icon" src="../../images/arrow.svg"></image>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<view class="environment" bindtap="onChangeShowEnvChoose">当前环境 {{ selectedEnv.alias }}</view>
|
|
||||||
|
|
||||||
<cloud-tip-modal showUploadTipProps="{{showUploadTip}}"></cloud-tip-modal>
|
|
||||||
|
|
||||||
</view>
|
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
@ -1,53 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
haveGetRecord: false,
|
|
||||||
envId: '',
|
|
||||||
record: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad(options) {
|
|
||||||
this.setData({
|
|
||||||
envId: options.envId
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
getRecord() {
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'selectRecord'
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
this.setData({
|
|
||||||
haveGetRecord: true,
|
|
||||||
record: resp.result.data
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
clearRecord() {
|
|
||||||
this.setData({
|
|
||||||
haveGetRecord: false,
|
|
||||||
record: ''
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "查询记录",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,83 +0,0 @@
|
|||||||
.tip {
|
|
||||||
font-size: 23rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
margin: 30rpx auto 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top_tip {
|
|
||||||
font-size: 28rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box_text {
|
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 300rpx 0;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box {
|
|
||||||
text-align: center;
|
|
||||||
background-color: white;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
padding: 17rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_title {
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
font-size: 26rpx;
|
|
||||||
margin-bottom: 20rpx;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_title {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_detail {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 20% auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: white;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: #07c160;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button_clear {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: #07c160;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: rgba(0, 0, 0, 0.03);
|
|
||||||
}
|
|
||||||
|
|
||||||
.line {
|
|
||||||
height: 1rpx;
|
|
||||||
width: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
@ -1,48 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
haveGetRecord: false,
|
|
||||||
envId: '',
|
|
||||||
record: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad(options) {
|
|
||||||
this.setData({
|
|
||||||
envId: options.envId
|
|
||||||
});
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'selectRecord'
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
this.setData({
|
|
||||||
record: resp.result.data
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
sumRecord() {
|
|
||||||
wx.navigateTo({
|
|
||||||
url: `/pages/sumRecordResult/index?envId=${this.data.envId}`,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "聚合记录",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,83 +0,0 @@
|
|||||||
.tip {
|
|
||||||
font-size: 23rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
margin: 30rpx auto 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top_tip {
|
|
||||||
font-size: 28rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box_text {
|
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 300rpx 0;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box {
|
|
||||||
text-align: center;
|
|
||||||
background-color: white;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
padding: 17rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_title {
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
font-size: 26rpx;
|
|
||||||
margin-bottom: 20rpx;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_title {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_detail {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: white;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: #07c160;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button_clear {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: #07c160;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: rgba(0, 0, 0, 0.03);
|
|
||||||
}
|
|
||||||
|
|
||||||
.line {
|
|
||||||
height: 1rpx;
|
|
||||||
width: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
@ -1,46 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
haveGetRecord: false,
|
|
||||||
envId: '',
|
|
||||||
record: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad(options) {
|
|
||||||
this.setData({
|
|
||||||
envId: options.envId
|
|
||||||
});
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'sumRecord'
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
this.setData({
|
|
||||||
record: resp.result.list
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
goBack() {
|
|
||||||
wx.navigateBack();
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "聚合记录",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,73 +0,0 @@
|
|||||||
.tip {
|
|
||||||
font-size: 23rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
margin: 30rpx auto 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top_tip {
|
|
||||||
font-size: 28rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box_text {
|
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 300rpx 0;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box {
|
|
||||||
text-align: center;
|
|
||||||
background-color: white;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
padding: 17rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_title {
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
font-size: 26rpx;
|
|
||||||
margin-bottom: 20rpx;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_title {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_detail {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: #07c160;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: rgba(0, 0, 0, 0.03);
|
|
||||||
}
|
|
||||||
|
|
||||||
.line {
|
|
||||||
height: 1rpx;
|
|
||||||
width: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
@ -1,51 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
haveGetRecord: false,
|
|
||||||
envId: '',
|
|
||||||
record: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad(options) {
|
|
||||||
this.setData({
|
|
||||||
envId: options.envId
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
onShow() {
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'selectRecord'
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
this.setData({
|
|
||||||
record: resp.result.data
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
updateRecord() {
|
|
||||||
wx.navigateTo({
|
|
||||||
url: `/pages/updateRecordResult/index?envId=${this.data.envId}`,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "更新记录",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,83 +0,0 @@
|
|||||||
.tip {
|
|
||||||
font-size: 23rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
margin: 30rpx auto 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top_tip {
|
|
||||||
font-size: 28rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box_text {
|
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 300rpx 0;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box {
|
|
||||||
text-align: center;
|
|
||||||
background-color: white;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
padding: 17rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_title {
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
font-size: 26rpx;
|
|
||||||
margin-bottom: 20rpx;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_title {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_detail {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: white;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: #07c160;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button_clear {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: #07c160;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: rgba(0, 0, 0, 0.03);
|
|
||||||
}
|
|
||||||
|
|
||||||
.line {
|
|
||||||
height: 1rpx;
|
|
||||||
width: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
@ -1,78 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
haveGetRecord: false,
|
|
||||||
envId: '',
|
|
||||||
record: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad(options) {
|
|
||||||
this.setData({
|
|
||||||
envId: options.envId
|
|
||||||
});
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'selectRecord'
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
this.setData({
|
|
||||||
record: resp.result.data
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
updateRecord() {
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
wx.cloud.callFunction({
|
|
||||||
name: 'quickstartFunctions',
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
type: 'updateRecord',
|
|
||||||
data: this.data.record
|
|
||||||
}
|
|
||||||
}).then((resp) => {
|
|
||||||
wx.navigateTo({
|
|
||||||
url: `/pages/updateRecordSuccess/index`,
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
this.setData({
|
|
||||||
showUploadTip: true
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
bindInput (e) {
|
|
||||||
const index = e.currentTarget.dataset.index;
|
|
||||||
const record = this.data.record;
|
|
||||||
record[index].sales = Number(e.detail.value);
|
|
||||||
this.setData({
|
|
||||||
record
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "更新记录",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,72 +0,0 @@
|
|||||||
.tip {
|
|
||||||
font-size: 23rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
margin: 30rpx auto 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top_tip {
|
|
||||||
font-size: 28rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box_text {
|
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 300rpx 0;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box {
|
|
||||||
text-align: center;
|
|
||||||
background-color: white;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
padding: 17rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_title {
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
font-size: 26rpx;
|
|
||||||
margin-bottom: 20rpx;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_title {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box_record_detail {
|
|
||||||
width: 33%;
|
|
||||||
font-size: 26rpx;
|
|
||||||
padding: 20rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 250rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: white;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: #07c160;
|
|
||||||
}
|
|
||||||
|
|
||||||
.line {
|
|
||||||
height: 1rpx;
|
|
||||||
width: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
goBack() {
|
|
||||||
wx.navigateBack({
|
|
||||||
delta: 2
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "更新记录",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
<view>
|
|
||||||
<icon class="icon-box-img icon" type="success" size="53"></icon>
|
|
||||||
<view class="title">地区销量统计更新成功</view>
|
|
||||||
<view class="info">可在“云开发控制台>数据库>记录列表”中进行查看</view>
|
|
||||||
<view class="button" bindtap="goBack">我知道了</view>
|
|
||||||
</view>
|
|
@ -1,30 +0,0 @@
|
|||||||
page {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
margin: 80rpx 0 50rpx 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-size: 42rpx;
|
|
||||||
font-weight: 600;
|
|
||||||
margin-bottom: 30rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info {
|
|
||||||
font-size: 36rpx;
|
|
||||||
width: 90%;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 550rpx auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: #07c160;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: rgba(0, 0, 0, 0.03);
|
|
||||||
}
|
|
@ -1,58 +0,0 @@
|
|||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
showUploadTip: false,
|
|
||||||
haveGetImgSrc: false,
|
|
||||||
envId: '',
|
|
||||||
imgSrc: ''
|
|
||||||
},
|
|
||||||
|
|
||||||
onLoad(options) {
|
|
||||||
this.setData({
|
|
||||||
envId: options.envId
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
uploadImg() {
|
|
||||||
wx.showLoading({
|
|
||||||
title: '',
|
|
||||||
});
|
|
||||||
// 让用户选择一张图片
|
|
||||||
wx.chooseImage({
|
|
||||||
count: 1,
|
|
||||||
success: chooseResult => {
|
|
||||||
// 将图片上传至云存储空间
|
|
||||||
wx.cloud.uploadFile({
|
|
||||||
// 指定上传到的云路径
|
|
||||||
cloudPath: 'my-photo.png',
|
|
||||||
// 指定要上传的文件的小程序临时文件路径
|
|
||||||
filePath: chooseResult.tempFilePaths[0],
|
|
||||||
config: {
|
|
||||||
env: this.data.envId
|
|
||||||
}
|
|
||||||
}).then(res => {
|
|
||||||
console.log('上传成功', res);
|
|
||||||
this.setData({
|
|
||||||
haveGetImgSrc: true,
|
|
||||||
imgSrc: res.fileID
|
|
||||||
});
|
|
||||||
wx.hideLoading();
|
|
||||||
}).catch((e) => {
|
|
||||||
console.log(e);
|
|
||||||
wx.hideLoading();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
clearImgSrc() {
|
|
||||||
this.setData({
|
|
||||||
haveGetImgSrc: false,
|
|
||||||
imgSrc: ''
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"navigationBarTitleText": "上传文件",
|
|
||||||
"usingComponents": {
|
|
||||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,86 +0,0 @@
|
|||||||
.tip {
|
|
||||||
font-size: 23rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
margin: 30rpx auto 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top_tip {
|
|
||||||
font-size: 28rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
width: 90%;
|
|
||||||
text-align: left;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
margin-left: 20rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box_text {
|
|
||||||
background-color: white;
|
|
||||||
text-align: center;
|
|
||||||
padding: 300rpx 0;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
color: rgba(0, 0, 0, 0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_box {
|
|
||||||
text-align: center;
|
|
||||||
background-color: white;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
padding: 50rpx 0 17px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code_img {
|
|
||||||
width: 300rpx;
|
|
||||||
height: 300rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 20% auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: white;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: #07c160;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button_clear {
|
|
||||||
width: 300rpx;
|
|
||||||
text-align: center;
|
|
||||||
margin: 20% auto 0 auto;
|
|
||||||
height: 80rpx;
|
|
||||||
color: #07c160;
|
|
||||||
border-radius: 5px;
|
|
||||||
line-height: 80rpx;
|
|
||||||
background-color: rgba(0, 0, 0, 0.03);
|
|
||||||
}
|
|
||||||
|
|
||||||
.img_info {
|
|
||||||
padding-top: 16px;
|
|
||||||
width: 90%;
|
|
||||||
margin: 0 auto;
|
|
||||||
display: flex;
|
|
||||||
padding: 16rpx 0;
|
|
||||||
border-top: 0.5px solid #E5E5E5;
|
|
||||||
margin-top: 50rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.img_info_title {
|
|
||||||
font-size: 14;
|
|
||||||
font-family: PingFang SC;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #888888;
|
|
||||||
width: 72px;
|
|
||||||
margin-right: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.img_info_detail {
|
|
||||||
text-align: left;
|
|
||||||
font-size: 14;
|
|
||||||
font-family: PingFang SC;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #000000;
|
|
||||||
width: 500rpx;
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
|
|
||||||
"rules": [{
|
|
||||||
"action": "allow",
|
|
||||||
"page": "*"
|
|
||||||
}]
|
|
||||||
}
|
|
@ -1,79 +0,0 @@
|
|||||||
{
|
|
||||||
"miniprogramRoot": "miniprogram/",
|
|
||||||
"cloudfunctionRoot": "cloudfunctions/",
|
|
||||||
"setting": {
|
|
||||||
"urlCheck": true,
|
|
||||||
"es6": true,
|
|
||||||
"enhance": true,
|
|
||||||
"postcss": true,
|
|
||||||
"preloadBackgroundData": false,
|
|
||||||
"minified": true,
|
|
||||||
"newFeature": true,
|
|
||||||
"coverView": true,
|
|
||||||
"nodeModules": false,
|
|
||||||
"autoAudits": false,
|
|
||||||
"showShadowRootInWxmlPanel": true,
|
|
||||||
"scopeDataCheck": false,
|
|
||||||
"uglifyFileName": false,
|
|
||||||
"checkInvalidKey": true,
|
|
||||||
"checkSiteMap": true,
|
|
||||||
"uploadWithSourceMap": true,
|
|
||||||
"compileHotReLoad": false,
|
|
||||||
"lazyloadPlaceholderEnable": false,
|
|
||||||
"useMultiFrameRuntime": true,
|
|
||||||
"useApiHook": true,
|
|
||||||
"useApiHostProcess": true,
|
|
||||||
"babelSetting": {
|
|
||||||
"ignore": [],
|
|
||||||
"disablePlugins": [],
|
|
||||||
"outputPath": ""
|
|
||||||
},
|
|
||||||
"enableEngineNative": false,
|
|
||||||
"useIsolateContext": true,
|
|
||||||
"userConfirmedBundleSwitch": false,
|
|
||||||
"packNpmManually": false,
|
|
||||||
"packNpmRelationList": [],
|
|
||||||
"minifyWXSS": true,
|
|
||||||
"disableUseStrict": false,
|
|
||||||
"showES6CompileOption": false,
|
|
||||||
"useCompilerPlugins": false,
|
|
||||||
"minifyWXML": true
|
|
||||||
},
|
|
||||||
"appid": "wx514d5355fe8a8894",
|
|
||||||
"projectname": "quickstart-wx-cloud",
|
|
||||||
"libVersion": "2.14.1",
|
|
||||||
"cloudfunctionTemplateRoot": "cloudfunctionTemplate/",
|
|
||||||
"condition": {
|
|
||||||
"search": {
|
|
||||||
"list": []
|
|
||||||
},
|
|
||||||
"conversation": {
|
|
||||||
"list": []
|
|
||||||
},
|
|
||||||
"plugin": {
|
|
||||||
"list": []
|
|
||||||
},
|
|
||||||
"game": {
|
|
||||||
"list": []
|
|
||||||
},
|
|
||||||
"miniprogram": {
|
|
||||||
"list": [
|
|
||||||
{
|
|
||||||
"id": -1,
|
|
||||||
"name": "db guide",
|
|
||||||
"pathName": "pages/databaseGuide/databaseGuide"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"srcMiniprogramRoot": "miniprogram/",
|
|
||||||
"compileType": "miniprogram",
|
|
||||||
"packOptions": {
|
|
||||||
"ignore": [],
|
|
||||||
"include": []
|
|
||||||
},
|
|
||||||
"editorSetting": {
|
|
||||||
"tabIndent": "insertSpaces",
|
|
||||||
"tabSize": 4
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
模组
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue