Merge pull request '初始上传' (#2) from zy into main
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"permissions": {
|
||||||
|
"openapi": [
|
||||||
|
"wxacode.get"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"name": "quickstartFunctions",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
"wx-server-sdk": "~2.4.0"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"pages": [
|
||||||
|
"pages/index/index",
|
||||||
|
"pages/example/index"
|
||||||
|
],
|
||||||
|
"window": {
|
||||||
|
"backgroundColor": "#F6F6F6",
|
||||||
|
"backgroundTextStyle": "light",
|
||||||
|
"navigationBarBackgroundColor": "#F6F6F6",
|
||||||
|
"navigationBarTitleText": "云开发 QuickStart",
|
||||||
|
"navigationBarTextStyle": "black"
|
||||||
|
},
|
||||||
|
"sitemapLocation": "sitemap.json",
|
||||||
|
"style": "v2",
|
||||||
|
"lazyCodeLoading": "requiredComponents"
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
/**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: #f6f6f6;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
Component({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
showTip: false,
|
||||||
|
},
|
||||||
|
properties: {
|
||||||
|
showTipProps: Boolean,
|
||||||
|
title:String,
|
||||||
|
content:String
|
||||||
|
},
|
||||||
|
observers: {
|
||||||
|
showTipProps: function(showTipProps) {
|
||||||
|
this.setData({
|
||||||
|
showTip: showTipProps
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onClose(){
|
||||||
|
this.setData({
|
||||||
|
showTip: !this.data.showTip
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {},
|
||||||
|
"component": true
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
<!--miniprogram/components/cloudTipModal/index.wxml-->
|
||||||
|
<!-- wx:if="{{showUploadTip}}" -->
|
||||||
|
<view class="install_tip" wx:if="{{showTip}}">
|
||||||
|
<view class="install_tip_back"></view>
|
||||||
|
<view class="install_tip_detail">
|
||||||
|
<image class="install_tip_close" bind:tap="onClose" src="../../images/icons/close.png"/>
|
||||||
|
<view class="install_tip_detail_title">{{title}}</view>
|
||||||
|
<view class="install_tip_detail_tip">{{content}}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
@ -0,0 +1,60 @@
|
|||||||
|
.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_close{
|
||||||
|
position:absolute;
|
||||||
|
right: 10rpx;
|
||||||
|
top: 10rpx;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
/* background-color: red; */
|
||||||
|
}
|
||||||
|
.install_tip_detail {
|
||||||
|
position: fixed;
|
||||||
|
background-color: white;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
border-radius: 40rpx 40rpx 0 0;
|
||||||
|
padding: 50rpx 50rpx 100rpx 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: left;
|
||||||
|
}
|
||||||
|
.install_tip_detail_buttons {
|
||||||
|
padding-top: 50rpx;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.install_tip_detail_button {
|
||||||
|
color: #07C160;
|
||||||
|
font-weight: 500;
|
||||||
|
background-color: rgba(0,0,0,0.1);
|
||||||
|
width: 40%;
|
||||||
|
text-align: center;
|
||||||
|
/* height: 90rpx; */
|
||||||
|
/* line-height: 90rpx; */
|
||||||
|
border-radius: 10rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.install_tip_detail_button_primary {
|
||||||
|
background-color: #07C160;
|
||||||
|
color: #fff;
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
const envList = [];
|
||||||
|
const isMac = false;
|
||||||
|
module.exports = {
|
||||||
|
envList,
|
||||||
|
isMac
|
||||||
|
};
|
After Width: | Height: | Size: 214 KiB |
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 906 B |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 197 B |
After Width: | Height: | Size: 305 KiB |
After Width: | Height: | Size: 193 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 875 B |
After Width: | Height: | Size: 888 B |
After Width: | Height: | Size: 578 B |
After Width: | Height: | Size: 666 B |
After Width: | Height: | Size: 376 B |
After Width: | Height: | Size: 779 B |
After Width: | Height: | Size: 789 B |
After Width: | Height: | Size: 917 B |
After Width: | Height: | Size: 888 B |
After Width: | Height: | Size: 873 B |
After Width: | Height: | Size: 879 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 711 B |
After Width: | Height: | Size: 620 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 24 KiB |
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {
|
||||||
|
"cloud-tip-modal": "/components/cloudTipModal/index"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,185 @@
|
|||||||
|
page {
|
||||||
|
background-color: white;
|
||||||
|
padding-bottom: 50px;
|
||||||
|
font-family: PingFang SC;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-container {
|
||||||
|
padding: 20rpx 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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: 0 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);
|
||||||
|
}
|
||||||
|
|
||||||
|
.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: 25%;
|
||||||
|
font-size: 26rpx;
|
||||||
|
padding: 20rpx 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
margin-top: 16px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
font-size: 36rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
margin-top: 12px;
|
||||||
|
font-size: 28rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: rgba(0, 0, 0, 0.6);
|
||||||
|
line-height: 52rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img {
|
||||||
|
/* margin-top: 16px; */
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code_img {
|
||||||
|
width: 360rpx;
|
||||||
|
height: 360rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block {
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-left {
|
||||||
|
color: #FFF;
|
||||||
|
background-color: #1aad19;
|
||||||
|
border: #1aad19 solid 1px;
|
||||||
|
padding: 0px 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-right {
|
||||||
|
color: #1aad19;
|
||||||
|
background-color: #FFF;
|
||||||
|
border: #1aad19 solid 1px;
|
||||||
|
padding: 0px 6px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code_zone {
|
||||||
|
background-color: #0E190E;
|
||||||
|
color: rgba(255, 255, 255, 0.7);
|
||||||
|
border-radius: 12rpx;
|
||||||
|
padding: 16rpx 32rpx;
|
||||||
|
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-full {
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 4px;
|
||||||
|
line-height: 40px;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #1aad19;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-title {
|
||||||
|
line-height: 37px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-text{
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 24px;
|
||||||
|
padding: 10px 0px;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-mask {
|
||||||
|
position: fixed; left: 0; top: 0; right: 0; bottom: 0;
|
||||||
|
background: rgba(0,0,0,0.3); z-index: 1000; display: flex; align-items: center; justify-content: center;
|
||||||
|
}
|
||||||
|
.modal-content {
|
||||||
|
background: #fff; padding: 24px; border-radius: 8px; width: 80%;
|
||||||
|
}
|
||||||
|
.modal-title { font-size: 18px; margin-bottom: 16px; }
|
||||||
|
.modal-input { margin-bottom: 12px; border: 1px solid #eee; padding: 8px; border-radius: 4px; width: 100%; }
|
||||||
|
.modal-actions { display: flex; justify-content: flex-end; gap: 12px; }
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"navigationBarTitleText": "基础能力",
|
||||||
|
"usingComponents": {
|
||||||
|
"cloud-tip-modal": "/components/cloudTipModal/index"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
<!--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}}" data-type="{{ power.type }}" bindtap="onClickPowerInfo">
|
||||||
|
<view class="power_info_text">
|
||||||
|
<view class="power_info_text_title">
|
||||||
|
{{power.title}}
|
||||||
|
<view class="power_info_text_tag" wx:if="{{power.tag}}">{{power.tag}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="power_info_text_tip">{{power.tip}}</view>
|
||||||
|
</view>
|
||||||
|
<image wx:if="{{!power.showItem && power.item.length}}" class="power_info_more" src="../../images/arrow.svg"></image>
|
||||||
|
<image wx:if="{{power.showItem && power.item.length}}" class="power_info_less" src="../../images/arrow.svg"></image>
|
||||||
|
<image wx:if="{{!power.item.length}}" class="power_item_icon" 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-type="{{ item.type }}" 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>
|
||||||
|
<cloud-tip-modal showTipProps="{{showTip}}" title="{{title}}" content="{{content}}"></cloud-tip-modal>
|
||||||
|
</view>
|
@ -0,0 +1,142 @@
|
|||||||
|
/**index.wxss**/
|
||||||
|
|
||||||
|
page {
|
||||||
|
padding-top: 54rpx;
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
padding-bottom: 60rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
font-family: PingFang SC;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-family: PingFang SC;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #000000;
|
||||||
|
font-size: 44rpx;
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
}
|
||||||
|
.function_title {
|
||||||
|
font-family: PingFang SC;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #000000;
|
||||||
|
font-size: 36rpx;
|
||||||
|
text-align: left;
|
||||||
|
width: 93%;
|
||||||
|
margin-top: 50rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top_tip {
|
||||||
|
font-size: 28rpx;
|
||||||
|
font-family: PingFang SC;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #888888;
|
||||||
|
margin-bottom: 28rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.examples_container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 16rpx;
|
||||||
|
width: 100%;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.example_item {
|
||||||
|
border: 3rpx solid #e5e5e5;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
padding: 24rpx;
|
||||||
|
width: 90%;
|
||||||
|
background-color: #fff;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.power {
|
||||||
|
margin-top: 30rpx;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: white;
|
||||||
|
width: 93%;
|
||||||
|
padding-bottom: 1rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_info {
|
||||||
|
display: flex;
|
||||||
|
padding: 30rpx 25rpx;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_info_more {
|
||||||
|
width: 30rpx;
|
||||||
|
height: 30rpx;
|
||||||
|
transform: rotate(90deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_info_less {
|
||||||
|
width: 30rpx;
|
||||||
|
height: 30rpx;
|
||||||
|
transform: rotate(270deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_info_text {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_info_text_title {
|
||||||
|
margin-bottom: 10rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 32rpx;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-family: 'PingFang SC';
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_info_text_tag {
|
||||||
|
margin-left: 20rpx;
|
||||||
|
background-color: #fbe0e0;
|
||||||
|
color: #e54545;
|
||||||
|
padding: 0 7px;
|
||||||
|
font-size: 14px;
|
||||||
|
vertical-align: middle;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_info_text_tip {
|
||||||
|
color: rgba(0, 0, 0, 0.6);
|
||||||
|
font-size: 28rpx;
|
||||||
|
padding-right: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_item {
|
||||||
|
padding: 30rpx 25rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_item_title {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: rgba(0, 0, 0, 0.9);
|
||||||
|
}
|
||||||
|
|
||||||
|
.power_item_icon {
|
||||||
|
width: 30rpx;
|
||||||
|
height: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line {
|
||||||
|
width: 95%;
|
||||||
|
margin: 0 auto;
|
||||||
|
height: 2rpx;
|
||||||
|
background-color: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.environment {
|
||||||
|
color: rgba(0, 0, 0, 0.4);
|
||||||
|
font-size: 24rpx;
|
||||||
|
margin-top: 25%;
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
|
||||||
|
"rules": [{
|
||||||
|
"action": "allow",
|
||||||
|
"page": "*"
|
||||||
|
}]
|
||||||
|
}
|
@ -0,0 +1,85 @@
|
|||||||
|
{
|
||||||
|
"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,
|
||||||
|
"useMultiFrameRuntime": true,
|
||||||
|
"useApiHook": true,
|
||||||
|
"useApiHostProcess": true,
|
||||||
|
"babelSetting": {
|
||||||
|
"ignore": [],
|
||||||
|
"disablePlugins": [],
|
||||||
|
"outputPath": ""
|
||||||
|
},
|
||||||
|
"enableEngineNative": false,
|
||||||
|
"useIsolateContext": true,
|
||||||
|
"useCompilerModule": true,
|
||||||
|
"userConfirmedUseCompilerModuleSwitch": false,
|
||||||
|
"userConfirmedBundleSwitch": false,
|
||||||
|
"packNpmManually": false,
|
||||||
|
"packNpmRelationList": [],
|
||||||
|
"minifyWXSS": true,
|
||||||
|
"compileWorklet": false,
|
||||||
|
"minifyWXML": true,
|
||||||
|
"localPlugins": false,
|
||||||
|
"disableUseStrict": false,
|
||||||
|
"useCompilerPlugins": false,
|
||||||
|
"condition": false,
|
||||||
|
"swc": false,
|
||||||
|
"disableSWC": true
|
||||||
|
},
|
||||||
|
"appid": "wxd7d00921edfeb9df",
|
||||||
|
"projectname": "quickstart-wx-cloud",
|
||||||
|
"libVersion": "3.8.5",
|
||||||
|
"cloudfunctionTemplateRoot": "cloudfunctionTemplate/",
|
||||||
|
"condition": {
|
||||||
|
"search": {
|
||||||
|
"list": []
|
||||||
|
},
|
||||||
|
"conversation": {
|
||||||
|
"list": []
|
||||||
|
},
|
||||||
|
"plugin": {
|
||||||
|
"list": []
|
||||||
|
},
|
||||||
|
"game": {
|
||||||
|
"list": []
|
||||||
|
},
|
||||||
|
"miniprogram": {
|
||||||
|
"list": [
|
||||||
|
{
|
||||||
|
"id": -1,
|
||||||
|
"name": "db guide",
|
||||||
|
"pathName": "pages/databaseGuide/databaseGuide"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"compileType": "miniprogram",
|
||||||
|
"srcMiniprogramRoot": "miniprogram/",
|
||||||
|
"packOptions": {
|
||||||
|
"ignore": [],
|
||||||
|
"include": []
|
||||||
|
},
|
||||||
|
"editorSetting": {
|
||||||
|
"tabIndent": "insertSpaces",
|
||||||
|
"tabSize": 2
|
||||||
|
},
|
||||||
|
"simulatorPluginLibVersion": {}
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
${installPath} cloud functions deploy --e ${envId} --n quickstartFunctions --r --project ${projectPath}
|