Commit 6717eeb4 by ZhouWeiGuang

新增报名地址 修复标签显示 搜索页面

parent 979a246e
...@@ -27,8 +27,8 @@ Component({ ...@@ -27,8 +27,8 @@ Component({
banners: [], banners: [],
indicatorDots: true, indicatorDots: true,
autoplay: false, autoplay: false,
interval: 5000, interval: 2500,
duration: 1000 duration: 500
}, },
attached() { attached() {
......
<!--components/banners/index.wxml--> <!--components/banners/index.wxml-->
<view class='banners-wrapper'> <view class='banners-wrapper'>
<view class='banners-swipper'> <view class='banners-swipper'>
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" style='height:180px;'> <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" circular="true" duration="{{duration}}" style='height:180px;'>
<block wx:for="{{banners}}" wx:for-item="banner" wx:key="{{banner.id}}"> <block wx:for="{{banners}}" wx:for-item="banner" wx:key="{{banner.id}}">
<swiper-item class="banner-item"> <swiper-item class="banner-item">
<view data-url="{{banner.url}}" data-type="{{banner.type}}" data-oid="{{banner.oid}}" data-txt="{{banner.type_text}}" data-image="{{banner.image}}" catchtap='_tapBanner'> <view data-url="{{banner.url}}" data-type="{{banner.type}}" data-oid="{{banner.oid}}" data-txt="{{banner.type_text}}" data-image="{{banner.image}}" catchtap='_tapBanner'>
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
<text class='ptitle'>{{projectItem.title}}</text> <text class='ptitle'>{{projectItem.title}}</text>
<view class="ptags"> <view class="ptags">
<text wx-if="{{projectItem.type=='1'}}">限{{projectItem.sign_limits}}组</text> <text wx-if="{{projectItem.type=='1'}}">限{{projectItem.sign_limits}}组</text>
<text wx-if="{{projectItem.type=='2'}}">可预约</text>
<text class='tags'>{{projectItem.tags}}</text> <text class='tags'>{{projectItem.tags}}</text>
</view> </view>
<view class="pactivity" wx-if="{{projectItem.type=='1'}}"> <view class="pactivity" wx-if="{{projectItem.type=='1'}}">
......
...@@ -42,7 +42,6 @@ ...@@ -42,7 +42,6 @@
.prj-info .ptags .tags { .prj-info .ptags .tags {
width: 75%; width: 75%;
margin-left: 20rpx;
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
...@@ -98,14 +97,17 @@ ...@@ -98,14 +97,17 @@
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
color: rgb(153, 153, 153); color: rgb(153, 153, 153);
flex: 1;
} }
.prj-info .pshop .shop { .prj-info .pshop .shop {
position: relative;
color: white; color: white;
padding: 0rpx 12rpx;
font-size: 24rpx; font-size: 24rpx;
line-height: 36rpx; line-height: 36rpx;
height: 36rpx;
background: #2691cd; background: #2691cd;
border-radius: 18rpx; border-radius: 18rpx;
width: 44px;
height: 36rpx;
margin-left: 12px;
text-align: center;
} }
...@@ -29,7 +29,8 @@ ...@@ -29,7 +29,8 @@
</i-row> </i-row>
<view catchtap='closeFilter' class='filter-content-wrapper' wx:if="{{filter_idx>0}}"> <view catchtap='closeFilter' class='filter-content-wrapper' wx:if="{{filter_idx>0}}">
<view class="row-content" catchtap='preventEvent'> <view class="row-content" catchtap='preventEvent'>
<view wx:if="{{filter_idx==1}}" class='filter-row' wx:for="{{types}}" wx:for-index="idx" wx:for-item="n" wx:key="n.id"> <scroll-view class="scroll-view" scroll-y="true" style="width: 100%;height: 100%;" wx:if="{{filter_idx!=4}}">
<view wx:if="{{filter_idx==1}}" class='filter-row' wx:for="{{types}}" wx:for-index="idx" wx:for-item="n" wx:key="n.id">
<text bindtap="selectFilter" data-idx="{{n.id}}" data-name="{{n.name}}" class="{{selected.type==n.id?'seled':''}}">{{n.name}}</text> <text bindtap="selectFilter" data-idx="{{n.id}}" data-name="{{n.name}}" class="{{selected.type==n.id?'seled':''}}">{{n.name}}</text>
<image wx:if="{{selected.type==n.id}}" class="f-selected" src='/images/icon_filter_selected.png'></image> <image wx:if="{{selected.type==n.id}}" class="f-selected" src='/images/icon_filter_selected.png'></image>
</view> </view>
...@@ -41,17 +42,18 @@ ...@@ -41,17 +42,18 @@
<text bindtap="selectFilter" data-idx="{{n.id}}" data-name="{{n.name}}">{{n.name}}</text> <text bindtap="selectFilter" data-idx="{{n.id}}" data-name="{{n.name}}">{{n.name}}</text>
<image wx:if="{{selected.region==n.id}}" class='f-selected' src='/images/icon_filter_selected.png'></image> <image wx:if="{{selected.region==n.id}}" class='f-selected' src='/images/icon_filter_selected.png'></image>
</view> </view>
<view class="tags-wrapper" wx:if="{{filter_idx==4}}"> </scroll-view>
<view class="tags-wrapper" wx:if="{{filter_idx==4}}">
<block wx:for="{{tags}}" wx:for-index="idx" wx:for-item="n" wx:key="n.id"> <block wx:for="{{tags}}" wx:for-index="idx" wx:for-item="n" wx:key="n.id">
<view class="tag-item {{common.inArray(selected.tags, n.id)==true?'active':''}}" bindtap="selectTags" data-idx="{{n.id}}"> <view class="tag-item {{common.inArray(selected.tags, n.id)==true?'active':''}}" bindtap="selectTags" data-idx="{{n.id}}">
{{n.name}} {{n.name}}
</view> </view>
</block> </block>
<view class="tag-btn-wrapper"> </view>
<view class="tag-btn-wrapper" wx:if="{{filter_idx==4}}">
<button class="btn cancel" bindtap="cancelSelectTags">取消选择</button> <button class="btn cancel" bindtap="cancelSelectTags">取消选择</button>
<button class="btn ensure" bindtap="ensureSelectTags">确定</button> <button class="btn ensure" bindtap="ensureSelectTags">确定</button>
</view> </view>
</view>
</view> </view>
</view> </view>
</view> </view>
\ No newline at end of file
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
.filter-wrapper { .filter-wrapper {
position: relative; position: relative;
width: 100%; width: 100%;
z-index: 1;
} }
.row-filter { .row-filter {
...@@ -16,7 +17,6 @@ ...@@ -16,7 +17,6 @@
justify-content: center; justify-content: center;
align-items: center; align-items: center;
} }
.filter-item > image { .filter-item > image {
width: 12rpx; width: 12rpx;
height: 10rpx; height: 10rpx;
...@@ -50,9 +50,8 @@ ...@@ -50,9 +50,8 @@
position: relative; position: relative;
border-top: 1px solid #f4f4f4; border-top: 1px solid #f4f4f4;
background: white; background: white;
height: 80%;
width: 100%; width: 100%;
padding: 34rpx 30rpx;
padding-right: 50rpx;
box-sizing: border-box; box-sizing: border-box;
} }
...@@ -87,10 +86,12 @@ ...@@ -87,10 +86,12 @@
.tags-wrapper { .tags-wrapper {
display: flex; display: flex;
flex-flow: row wrap; flex-flow: row wrap;
justify-content: space-between; justify-content: space-around;
align-items: center; align-items: center;
height: 88%;
width: 100%;
overflow: auto;
} }
.tag-item { .tag-item {
min-width: 120rpx; min-width: 120rpx;
padding: 0 10rpx 0 10rpx; padding: 0 10rpx 0 10rpx;
...@@ -104,26 +105,35 @@ ...@@ -104,26 +105,35 @@
margin: 10rpx; margin: 10rpx;
border-radius: 2rpx; border-radius: 2rpx;
} }
.scroll-view {
height: 100%;
width: 100%;
padding: 26px;
box-sizing: border-box;
}
.tag-item.active { .tag-item.active {
color: rgb(43, 163, 215); color: rgb(43, 163, 215);
border: 1px solid rgb(43, 163, 215); border: 1px solid rgb(43, 163, 215);
} }
.tag-btn-wrapper { .tag-btn-wrapper {
display: block;
width: 100%; width: 100%;
margin-top: 30rpx;
text-align: center; text-align: center;
position: absolute;
bottom: 0;
height: 48px;
background-color: #f5f5f5;
display: flex;
justify-content: center;
align-items: center;
} }
.tag-btn-wrapper > button.btn { .tag-btn-wrapper > button.btn {
display: inline-block; display: inline-block;
background: none; background: none;
font-size: 14px; font-size: 14px;
height: 60rpx; border-radius: 28rpx;
border-radius: 30rpx; line-height: 58rpx;
line-height: 60rpx;
outline-style: none; outline-style: none;
} }
......
...@@ -23,6 +23,7 @@ Page({ ...@@ -23,6 +23,7 @@ Page({
adultNum: 0, adultNum: 0,
childrenNum: 0, childrenNum: 0,
childrenAge: 0, childrenAge: 0,
address: '',
remark: '', remark: '',
// 订单 // 订单
order: {}, order: {},
...@@ -31,7 +32,7 @@ Page({ ...@@ -31,7 +32,7 @@ Page({
/** /**
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad: function(options) { onLoad: function (options) {
if (options.id) { if (options.id) {
this.setData({ this.setData({
id: options.id id: options.id
...@@ -42,7 +43,7 @@ Page({ ...@@ -42,7 +43,7 @@ Page({
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
*/ */
onReady: function() { onReady: function () {
let that = this let that = this
wx.showNavigationBarLoading() wx.showNavigationBarLoading()
wx.showLoading({ wx.showLoading({
...@@ -57,7 +58,7 @@ Page({ ...@@ -57,7 +58,7 @@ Page({
/** /**
* 生命周期函数--监听页面显示 * 生命周期函数--监听页面显示
*/ */
onShow: function() { onShow: function () {
this.setData({ this.setData({
user: app.globalData.userInfo user: app.globalData.userInfo
}) })
...@@ -71,7 +72,7 @@ Page({ ...@@ -71,7 +72,7 @@ Page({
} }
}, },
getDetailData: function() { getDetailData: function () {
api.project.detail({ api.project.detail({
id: this.data.id id: this.data.id
}).then(res => { }).then(res => {
...@@ -83,7 +84,7 @@ Page({ ...@@ -83,7 +84,7 @@ Page({
}) })
}, },
handlePhoneAuth: function(event) { handlePhoneAuth: function (event) {
Wx.login().then(res => { Wx.login().then(res => {
let encryptedData = event.detail.encryptedData let encryptedData = event.detail.encryptedData
let iv = event.detail.iv let iv = event.detail.iv
...@@ -94,7 +95,7 @@ Page({ ...@@ -94,7 +95,7 @@ Page({
/** /**
* 解密手机号数据 * 解密手机号数据
*/ */
decodePhoneData: function(code, encryptedData, iv) { decodePhoneData: function (code, encryptedData, iv) {
let that = this let that = this
api.getPhoneNumber({ api.getPhoneNumber({
code: code, code: code,
...@@ -119,43 +120,48 @@ Page({ ...@@ -119,43 +120,48 @@ Page({
}, },
// 家庭组数 // 家庭组数
bindPickerChange: function(event) { bindPickerChange: function (event) {
this.setData({ this.setData({
familyNum: parseInt(event.detail.value) familyNum: parseInt(event.detail.value)
}) })
}, },
handleNickname: function(event) { handleNickname: function (event) {
this.setData({ this.setData({
nickname: event.detail.value nickname: event.detail.value
}) })
}, },
handleAdultNum: function(event) { handleAdultNum: function (event) {
this.setData({ this.setData({
adultNum: parseInt(event.detail.value) adultNum: parseInt(event.detail.value)
}) })
}, },
handleChildrenNum: function(event) { handleChildrenNum: function (event) {
this.setData({ this.setData({
childrenNum: parseInt(event.detail.value) childrenNum: parseInt(event.detail.value)
}) })
}, },
handleChildrenAge: function(event) { handleChildrenAge: function (event) {
this.setData({ this.setData({
childrenAge: event.detail.value childrenAge: event.detail.value
}) })
}, },
handleRemark: function(event) { handleRemark: function (event) {
this.setData({ this.setData({
remark: event.detail.value remark: event.detail.value
}) })
}, },
handleAddress: function (event) {
this.setData({
address: event.detail.value
})
},
handleSubmit: function() { handleSubmit: function () {
let that = this let that = this
if (!this.data.nickname || !this.data.phone) { if (!this.data.nickname || !this.data.phone) {
$Toast({ $Toast({
...@@ -179,7 +185,8 @@ Page({ ...@@ -179,7 +185,8 @@ Page({
adult_number: this.data.adultNum + 1, adult_number: this.data.adultNum + 1,
children_number: this.data.childrenNum + 1, children_number: this.data.childrenNum + 1,
children_age: this.data.childrenAge, children_age: this.data.childrenAge,
remark: this.data.remark remark: this.data.remark,
address: this.data.address
}).then(res => { }).then(res => {
if (res.code) { if (res.code) {
$Toast({ $Toast({
...@@ -198,10 +205,10 @@ Page({ ...@@ -198,10 +205,10 @@ Page({
package: '' + res.result.package, package: '' + res.result.package,
signType: '' + res.result.signType, signType: '' + res.result.signType,
paySign: '' + res.result.paySign, paySign: '' + res.result.paySign,
success: function(ret) { success: function (ret) {
console.log(ret) console.log(ret)
if (ret.errMsg === 'requestPayment:ok') { if (ret.errMsg === 'requestPayment:ok') {
that.setOrderPaid(that.data.order.order_id, function(res) { that.setOrderPaid(that.data.order.order_id, function (res) {
// 支付同步回调结果 // 支付同步回调结果
console.log("发送模版消息", res) console.log("发送模版消息", res)
// 跳转到订单页面 // 跳转到订单页面
......
...@@ -61,6 +61,9 @@ ...@@ -61,6 +61,9 @@
<i-cell title="孩子年龄" i-class="cell-class"> <i-cell title="孩子年龄" i-class="cell-class">
<input slot="footer" class='input' type='text' placeholder='如5岁、八岁' bindinput='handleChildrenAge'></input> <input slot="footer" class='input' type='text' placeholder='如5岁、八岁' bindinput='handleChildrenAge'></input>
</i-cell> </i-cell>
<i-cell title="地址" i-class="cell-class">
<input slot="footer" class='input' type='text' placeholder='地址(可选)' bindinput='handleAddress'></input>
</i-cell>
<i-cell title="备注" i-class="cell-class"> <i-cell title="备注" i-class="cell-class">
<input slot="footer" class='input' type='text' placeholder='备注(可选)' bindinput='handleRemark'></input> <input slot="footer" class='input' type='text' placeholder='备注(可选)' bindinput='handleRemark'></input>
</i-cell> </i-cell>
......
...@@ -7,7 +7,12 @@ page { ...@@ -7,7 +7,12 @@ page {
.page-wrapper { .page-wrapper {
margin-bottom: 20px; margin-bottom: 20px;
} }
.icon,
.icon-map {
width: 18px;
height: 18px;
vertical-align: middle;
}
/* 报名详情 */ /* 报名详情 */
.project-title { .project-title {
......
...@@ -252,10 +252,10 @@ Page({ ...@@ -252,10 +252,10 @@ Page({
let that = this let that = this
if(event.type=='ok'){ if(event.type=='ok'){
// 保存二维码 // 保存二维码
console.log(that.data.detail.kf_qrcode)
wx.downloadFile({ wx.downloadFile({
url: that.data.detail.kf_qrcode, url: that.data.detail.kf_qrcode,
success: function(res){ success: function(res){
console.log(res)
if (res.statusCode === 200){ if (res.statusCode === 200){
wx.saveImageToPhotosAlbum({ wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath, filePath: res.tempFilePath,
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<view class='header'> <view class='header'>
<view class='title'>{{detail.title}}</view> <view class='title'>{{detail.title}}</view>
<view class='intro'> <view class='intro'>
{{detail.type=='2'?'可预约':'限'+detail.sign_limits+'组报名'}} 收藏{{detail.collect_num}}次 {{detail.type=='2'?'':'限'+detail.sign_limits+'组报名'}} 收藏{{detail.collect_num}}次
</view> </view>
</view> </view>
<i-cell-group> <i-cell-group>
...@@ -76,10 +76,9 @@ ...@@ -76,10 +76,9 @@
</view> </view>
</view> </view>
<i-toast id="toast" /> <i-toast id="toast" />
<i-modal title="咨询客服" visible="{{show_kf}}" bind:ok="handleKfClose" bind:cancel="handleKfClose" ok-text="保存图片"> <i-modal title="咨询客服" visible="{{show_kf}}" bind:ok="handleKfClose" bind:cancel="handleKfClose" ok-text="保存图片">
<view class="qrcode"> <view class="qrcode">
<image style='width:150rpx;height:150rpx;border-radius:4rpx;' src='{{detail.kf_qrcode}}'></image> <image style='width:236rpx;height:236rpx;border-radius:4rpx;' src='{{detail.kf_qrcode}}'></image>
<text style='width:100%;text-align:center;height:24px;line-height:24px;font-size:24rpx;'> <text style='width:100%;text-align:center;height:24px;line-height:24px;font-size:24rpx;'>
保存图片后,扫码添加客服咨询 保存图片后,扫码添加客服咨询
</text> </text>
......
...@@ -67,9 +67,9 @@ ...@@ -67,9 +67,9 @@
<view class='guide-item' wx:for="{{guides}}" wx:for-index="idx" wx:for-item="n" wx:key="n.id" data-content="{{n.type=='1'?n.id:n.content}}" data-type="{{n.type}}" catchtap='handleGuideDetail'> <view class='guide-item' wx:for="{{guides}}" wx:for-index="idx" wx:for-item="n" wx:key="n.id" data-content="{{n.type=='1'?n.id:n.content}}" data-type="{{n.type}}" catchtap='handleGuideDetail'>
<image class='image' src="{{n.poster}}" mode='aspectFill'></image> <image class='image' src="{{n.poster}}" mode='aspectFill'></image>
<view class='info'> <view class='info'>
<view class='text-small intro'>{{n.intro ? n.intro : ''}}</view> <view class='text-small intro'>{{n.title ? n.title : ''}}</view>
<view class='text-small text-hint'> <view class='text-small text-hint'>
<text wx:for="{{n.tags}}" wx:for-index="idx" wx:key="idx" wx:for-item="t">{{t}}</text> <text>{{n.intro}}</text>
</view> </view>
</view> </view>
</view> </view>
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
</view> </view>
<view class="projects-wrapper"> <view class="projects-wrapper">
<project-item wx:for="{{projects}}" wx:for-index="idx" wx:for-item="item" wx:key="n.id" project-item="{{item}}" /> <project-item wx:for="{{projects}}" wx:for-index="idx" wx:for-item="item" wx:key="n.id" project-item="{{item}}" />
</view> </view>
<more hasMore="{{hasMore}}" loading="{{loading}}" page="{{currentPage}}" /> <more hasMore="{{hasMore}}" loading="{{loading}}" page="{{currentPage}}" />
......
/* pages/search/index.wxss */ /* pages/search/index.wxss */
.page-wrapper{ .page-wrapper {
} }
.search-header{
.search-header {
background: white; background: white;
padding-top: 14px; padding-top: 14px;
position: relative;
z-index: 99999;
} }
.search-wrapper{
.search-wrapper {
display: flex; display: flex;
justify-content: flex-start; justify-content: flex-start;
align-items: center; align-items: center;
...@@ -17,17 +20,19 @@ ...@@ -17,17 +20,19 @@
height: 40px; height: 40px;
padding-left: 20rpx; padding-left: 20rpx;
} }
.search-icon{
.search-icon {
width: 31rpx; width: 31rpx;
height: 31rpx; height: 31rpx;
} }
.search-input{
.search-input {
font-size: 26rpx; font-size: 26rpx;
color: rgb(153, 153, 153); color: rgb(153, 153, 153);
padding-left: 20rpx; padding-left: 20rpx;
width: 90%; width: 90%;
} }
.projects-wrapper{
margin-top: 20rpx; .projects-wrapper {
background: white; background: white;
} }
\ No newline at end of file
...@@ -8,20 +8,19 @@ ...@@ -8,20 +8,19 @@
<input class='search-input' placeholder='关键词如地名、游泳等' bindinput="inputChnage"></input> <input class='search-input' placeholder='关键词如地名、游泳等' bindinput="inputChnage"></input>
</view> </view>
</view> </view>
<view class="tags-wrapper"> <view class="tags-wrapper">
<text class="title">选择标签</text> <text class="title">选择标签</text>
<view class="tags-list"> <view class="tags-list">
<block wx:for="{{tags}}" wx:for-index="idx" wx:for-item="n" wx:key="n.id">
<view class="tag-item {{common.inArray(seltags, n.id)==true?'active':''}}" bindtap="selectTags" data-idx="{{n.id}}"> <block wx:for="{{tags}}" wx:for-index="idx" wx:for-item="n" wx:key="n.id">
{{n.name}} <view class="tag-item {{common.inArray(seltags, n.id)==true?'active':''}}" bindtap="selectTags" data-idx="{{n.id}}">
</view> {{n.name}}
</block> </view>
</block>
</view> </view>
</view> <view class='search-box'>
<view class='submitBtn'>
<view class='submitBtn'>
<i-button type="primary" bind:click="submitSearch" shape="circle">搜索</i-button> <i-button type="primary" bind:click="submitSearch" shape="circle">搜索</i-button>
</view></view>
</view> </view>
</view> </view>
\ No newline at end of file
/* pages/search/search/search.wxss */ /* pages/search/search/search.wxss */
.page-wrapper { .page-wrapper {}
}
.search-header { .search-header {
background: white; background: white;
...@@ -33,27 +32,38 @@ ...@@ -33,27 +32,38 @@
width: 90%; width: 90%;
} }
.search-input:-moz-placeholder, .search-input:-ms-input-placeholder, .search-input:-moz-placeholder,
.search-input:-ms-input-placeholder,
.search-input::-webkit-input-placeholder { .search-input::-webkit-input-placeholder {
color: rgb(153, 153, 153); color: rgb(153, 153, 153);
} }
.tags-wrapper{ .tags-wrapper {
background: white; background: white;
padding: 0 30rpx; padding-bottom: 12px;
padding-left: 13px;
} }
.tags-wrapper .title{
.tags-wrapper .title {
font-weight: bold; font-weight: bold;
font-size: 32rpx; font-size: 32rpx;
} }
.tags-list { .tags-list {
margin-top: 24rpx; width: 100%;
position: fixed;
top: 115px;
left: 0;
bottom: 66px;
right: 0;
background-color: #fff;
display: flex; display: flex;
flex-flow: row wrap; flex-flow: row wrap;
justify-content: space-between;
align-items: center; align-items: center;
padding-bottom: 36rpx; justify-content: space-around;
overflow: auto;
} }
.tag-item { .tag-item {
min-width: 120rpx; min-width: 120rpx;
padding: 0 10rpx 0 10rpx; padding: 0 10rpx 0 10rpx;
...@@ -72,8 +82,12 @@ ...@@ -72,8 +82,12 @@
color: rgb(43, 163, 215); color: rgb(43, 163, 215);
border: 1px solid rgb(43, 163, 215); border: 1px solid rgb(43, 163, 215);
} }
.search-box {
.submitBtn{ position: absolute;
width:80%; bottom: 0px;
margin: 40rpx auto; width: 100%;
}
.search-box .submitBtn {
width: 80%;
margin: 0 auto;
} }
\ No newline at end of file
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
"compileType": "miniprogram", "compileType": "miniprogram",
"libVersion": "2.3.2", "libVersion": "2.3.2",
"appid": "wx1b834552a7d49bb3", "appid": "wx1b834552a7d49bb3",
"projectname": "qz-tour", "projectname": "mxz",
"debugOptions": { "debugOptions": {
"hidedInDevtools": [] "hidedInDevtools": []
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment