Browse Source

no message

featrue/v4.3
xpz2018 5 years ago
parent
commit
17ab047a53
33 changed files with 210 additions and 103 deletions
  1. 3
      pages/agent/ability/index.js
  2. 20
      pages/agent/agent-item/index.wxml
  3. 9
      pages/agent/edit/index.js
  4. 5
      pages/agent/edit/index.wxml
  5. 7
      pages/agent/factory-fragment/index.js
  6. 1
      pages/agent/factory-fragment/index.wxml
  7. 7
      pages/agent/factory/index.js
  8. 27
      pages/agent/factory/index.wxml
  9. 3
      pages/agent/order/index.js
  10. 3
      pages/article/detail/index.js
  11. 3
      pages/article/hot-index/index.js
  12. 3
      pages/article/list/index.js
  13. 9
      pages/article/newInfo/index.wxml
  14. 3
      pages/article/point-index/index.js
  15. 3
      pages/article/price-detail/index.js
  16. 3
      pages/article/price-index/index.js
  17. 3
      pages/article/queue-detail/index.js
  18. 3
      pages/article/queue-index/index.js
  19. 3
      pages/bank/bill/index.js
  20. 3
      pages/bidding/index/index.js
  21. 3
      pages/goods/ablility/index.js
  22. 3
      pages/goods/index/index.js
  23. 3
      pages/mall/price-index/index.js
  24. 3
      pages/message/index/index.js
  25. 3
      pages/morder/index/index.js
  26. 3
      pages/order/index/index.js
  27. 3
      pages/purchase/ability/index.js
  28. 3
      pages/shop/bidding/index.js
  29. 3
      pages/shop/bill/index.js
  30. 3
      pages/shop/detail/index.js
  31. 3
      pages/shop/order/index.js
  32. 11
      pages/withdrawal/vcheckout/index.wxml
  33. 148
      project.config.json

3
pages/agent/ability/index.js

@ -28,6 +28,9 @@ Page({
},
// 下拉刷新...
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

20
pages/agent/agent-item/index.wxml

@ -16,15 +16,15 @@
<text wx:if="{{item.yesterdayTotalQuantity && item.yesterdayTotalQuantity >= 0}}">昨日排队:{{item.yesterdayTotalQuantity}}辆</text>
<text wx:else>昨日排队:--</text>
</view>
<view class="flex text-df" style="margin-top:4rpx">
<view class="flex" wx:if="{{item.proxypaySurcharge}}">
<view class="flex flex-justify text-df" style="margin-top:4rpx">
<text class="flex" wx:if="{{item.proxypaySurcharge}}">
<text class="text-black">代卖费:</text>
<text class="text-red">{{formate.formatePrice2(item.proxypaySurcharge, kg)}}</text>
</view>
<view class="flex" style="margin-left:64rpx" wx:if="{{item.foreignPaybackIntever}}">
</text>
<text class="flex" wx:if="{{item.foreignPaybackIntever}}">
<text class="text-black">纸厂账期:</text>
<text class="text-red">{{item.foreignPaybackIntever}}天</text>
</view>
</text>
</view>
</view>
<text class="cuIcon-right text-gray" style="font-size:18px"></text>
@ -36,7 +36,7 @@
<view class="text-sg text-black">{{cateItem.categoryName}}</view>
<text class="text-sg text-black" wx:if="{{cateItem.unitPrice}}">
<text>{{priceItem(cateItem, kg)}}</text>
<text class="text-sm">(已含补贴{{formate.formatePrice2(cateItem.unitPrice, kg)}})</text>
<text class="text-sm" wx:if="{{cateItem.publicSubsidies}}">(已含补贴{{formate.formatePrice2(cateItem.publicSubsidies, kg)}})</text>
</text>
<text class="text-sg text-gray" wx:else>暂无报价</text>
</view>
@ -78,14 +78,14 @@
<wxs module="priceItem">
function priceItem(item, kg) {
if(kg){
if(item.uprice && Number(item.uprice) > 0){
let price = parseFloat(item.unitPrice) + parseFloat(item.uprice)
if(item.publicSubsidies && Number(item.publicSubsidies) > 0){
let price = parseFloat(item.unitPrice) + parseFloat(item.publicSubsidies)
return (parseFloat(price)).toFixed(3) + '元/KG'
}
return (parseFloat(item.unitPrice)).toFixed(3) + '元/KG'
} else {
if(item.uprice && Number(item.uprice) > 0){
let price = parseFloat(item.unitPrice) + parseFloat(item.uprice)
if(item.publicSubsidies && Number(item.publicSubsidies) > 0){
let price = parseFloat(item.unitPrice) + parseFloat(item.publicSubsidies)
return (parseFloat(price) * 1000).toFixed(1) + '元/吨'
}
return (parseFloat(item.unitPrice) * 1000).toFixed(1) + '元/吨'

9
pages/agent/edit/index.js

@ -68,6 +68,9 @@ Page({
}
if(!util.isEmpty(element.unitPrice)){
var unitPrice = math.times(element.unitPrice, 1000)
if(element.uPrice && Number(element.uPrice) > 0){
unitPrice = math.times(math.plus(element.unitPrice, element.uPrice), 1000)
}
this.data.cateList.push({value: element.categoryId, text: element.categoryName + '(预估单价:' + unitPrice + '元/吨)'})
}
}
@ -207,12 +210,16 @@ Page({
const element = this.data.factoryDetail.paperCategoryList[index]
if(element.categoryId == detail.value){
this.data.form.unitPrice = element.unitPrice
if(element.uPrice && Number(element.uPrice) > 0){
this.data.form.uPrice = element.uPrice
this.data.form.unitPrice = math.plus(element.unitPrice, element.uPrice)
}
this.data.cateName = element.categoryName
break
}
}
this.data.form.paperCategoryId = detail.value
this.setData({ ['form.unitPrice']: this.data.form.unitPrice, cateName: this.data.cateName })
this.setData({ ['form.unitPrice']: this.data.form.unitPrice, ['form.uPrice']: this.data.form.uPrice, cateName: this.data.cateName })
}
},
onEvent: function (message) {

5
pages/agent/edit/index.wxml

@ -37,7 +37,10 @@
</view>
<view class="cu-item">
<view class="text-sg" style="min-width:170rpx">预估单价(元/吨):</view>
<view class="text-sg text-black">{{formate.formatePrice(form.unitPrice)}}</view>
<view class="text-sg text-black">
<text>{{formate.formatePrice(form.unitPrice)}}</text>
<text class="text-sm" wx:if="{{form.uPrice}}">(已含补贴{{formate.formatePrice2(form.uPrice, 0)}})</text>
</view>
</view>
<view class="cu-item text-sg" style="text-align: right">
<view class="title">预估重量(吨):</view>

7
pages/agent/factory-fragment/index.js

@ -29,13 +29,14 @@ Component({
pageNum: 1,
listType: 0
},
triggered: false,
firstShow: false,
hasActivity: false
},
lifetimes: {
// 生命周期函数,可以为函数,或一个在methods段中定义的方法名
attached: function () {
this.setData({ height: app.globalData.fragmentHeight - 90, kg: app.globalData.kg })
if(app.globalData.userInfo){
hasActivity().then(result => {
this.setData({ hasActivity: result.data })
@ -46,6 +47,7 @@ Component({
methods: {
onRestart: function(){
if (!this.data.firstShow) {
this.setData({ height: app.globalData.fragmentHeight - 90, kg: app.globalData.kg })
this.fetchRegionList()
this.fetchPapersList()
}
@ -74,6 +76,9 @@ Component({
},
// 下拉刷新...
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
tabIndex: this.data.tabIndex,

1
pages/agent/factory-fragment/index.wxml

@ -7,6 +7,7 @@
<view class="bg-white" style="height:90rpx;width:100%"></view>
<refresh-view bind:refresh="onRefreshList" height="{{height}}" triggered="{{requesting}}" scrollTop="{{top}}" bind:scrolltolower="fetchPapersList">
<view class="bg-white list-empty" style="height:{{height}}rpx" wx:if="{{!orderList.length}}">
<view class="load-spinner text-gray" style="margin-bottom:24px" wx:if="{{loading}}" />
<image class="img-empty" src="/assets/image/list_empty.png" wx:else></image>

7
pages/agent/factory/index.js

@ -149,6 +149,9 @@ Page({
},
//*************************************************momentList************************************************//
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
momentList: [],
['form.pageNum']: 1,
@ -160,9 +163,7 @@ Page({
if (this.data.requesting || this.data.finished) {
return
}
this.setData({
requesting: true
})
this.setData({ requesting: true })
getPreferList(this.data.form).then(result => {
if (result.data.records.length) {
var respList = result.data.records

27
pages/agent/factory/index.wxml

@ -58,9 +58,9 @@
<view class="flex flex-justify">
<view class="text-sg text-black">{{item.categoryName}}</view>
<text class="text-sg text-black" wx:if="{{item.unitPrice}}">
<text>{{formate.formatePrice2(item.unitPrice, kg)}}</text>
<text>+补贴50元/吨</text>
</text>
<text>{{priceItem(item, kg)}}</text>
<text class="text-sm" wx:if="{{item.uPrice}}">(已含补贴{{formate.formatePrice2(item.uPrice, kg)}})</text>
</text>
<text class="text-sg text-gray" wx:else>暂无报价</text>
</view>
<view class="flex flex-justify text-xs text-gray" style="margin-top:4rpx">
@ -176,4 +176,23 @@
<view class="roder-add flex flex-center">
<text class="cuIcon-add text-white" style="font-size:32px"></text>
</view>
</view>
</view>
<wxs module="priceItem">
function priceItem(item, kg) {
if(kg){
if(item.uPrice && Number(item.uPrice) > 0){
let price = parseFloat(item.unitPrice) + parseFloat(item.uPrice)
return (parseFloat(price)).toFixed(3) + '元/KG'
}
return (parseFloat(item.unitPrice)).toFixed(3) + '元/KG'
} else {
if(item.uPrice && Number(item.uPrice) > 0){
let price = parseFloat(item.unitPrice) + parseFloat(item.uPrice)
return (parseFloat(price) * 1000).toFixed(1) + '元/吨'
}
return (parseFloat(item.unitPrice) * 1000).toFixed(1) + '元/吨'
}
}
module.exports = priceItem;
</wxs>

3
pages/agent/order/index.js

@ -48,6 +48,9 @@ Page({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.status']: this.data.form.status,

3
pages/article/detail/index.js

@ -52,6 +52,9 @@ Page({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
commentList: [],
['form.pageNum']: 1,

3
pages/article/hot-index/index.js

@ -83,6 +83,9 @@ Component({
},
//*************************************************momentList************************************************//
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
momentList: [],
factoryList: [],

3
pages/article/list/index.js

@ -35,6 +35,9 @@ Page({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
messageList: [],
tabIndex: this.data.tabIndex,

9
pages/article/newInfo/index.wxml

@ -36,7 +36,9 @@
<view class="zt">
<view class="flex flex-justify" style="width:100%;height:80rpx;lineheight:80rpx;font-size: 28px;color: rgba(0,0,0,0.65);letter-spacing: 0;padding: 0rpx 40rpx 0rpx 40rpx;">
<view class="text-df text-gray" style="flex:1.2;overflow: hidden;">纸厂名称</view>
<view class="text-df text-gray" style="flex:1;text-align: center" bindtap="changeSort">价格涨跌<image style="width:24rpx;height:24rpx" src="{{pximg}}"></image>
<view class="text-df text-gray" style="flex:1;text-align: center" bindtap="changeSort">
<text>价格涨跌</text>
<image style="width:24rpx;height:24rpx" src="{{pximg}}"></image>
</view>
<view class="text-df text-gray" style="flex:1;text-align: center">纸厂排队</view>
<view class="text-df text-gray" style="flex:1;text-align: center">最近扣点</view>
@ -50,13 +52,12 @@
<view class="top-nodata-text1">可前往纸厂列表添加关注</view>
<view wx:if="{{loading==false}}" class="top-nodata-text2" id="toAttentionFactory" bindtap="toPage">添加关注</view>
</view>
<!-- <view class="bg-white" wx:else> -->
<view class="bg-white">
<view wx:for="{{orderList}}" wx:key="index" class="tableStyle">
<view class="flex flex-justify" style="border-top:2rpx solid #f3f3f3;margin-top:20rpx;padding: 0rpx 40rpx 0rpx 40rpx;" id="toFactoryDetails" data-factoryId="{{item.paperMillId}}" catchtap="toPage">
<!-- <text class="text-df text-balck" style="flex:1;text-align: center">{{item.yesterdayTotalQuantity || 0}}%</text> -->
<view class="text-df text-balck" style="flex:1.2">{{item.shortName}}</view>
<view class="text-df {{item.biggestFloatPrice>0?'text-red':(item.biggestFloatPrice<0?'text-green':'text-black')}}" style="flex:1;text-align: center">{{item.biggestFloatPrice*1000||0}} </view>
<view class="text-df {{item.biggestFloatPrice>0?'text-red':(item.biggestFloatPrice<0?'text-green':'text-black')}}" style="flex:1;text-align: center">{{item.biggestFloatPrice*1000 || 0}} </view>
<view class="text-df text-balck" style="flex:1;text-align: center">{{item.yesterdayTotalQuantity || 0}}辆</view>
<view class="text-df text-balck" style="flex:1;text-align: center">{{item.minimumDeductionPoint || 0}}%</view>
<view class="text-df text-balck" style="flex:0.5;text-align: center" id="{{item.paperMillId}}" catchtap="changeTable" wx:if="{{tableSgin==item.paperMillId}}">
@ -75,7 +76,7 @@
<view class="text-df text-gray" style="flex:1;text-align: center">最近扣点</view>
<view class="text-df text-gray" style="flex:1;text-align: center">操作</view>
</view>
<view class="flex flex-justify" style="margin-top:20rpx" wx:for="{{ item.paperCategoryList }}" wx:for-item="cell" wx:key="cell.categoryId" style="background-color:white;margin-top:10rpx">
<view class="flex flex-justify" style="margin-top:20rpx" wx:for="{{ item.paperCategoryList }}" wx:for-item="cell" wx:key="index" style="background-color:white;margin-top:10rpx">
<view class="text-df {{cell.categoryName>0?'text-red':(cell.categoryName<0?'text-green':'text-black')}}" style="flex:1;text-align: center">{{cell.categoryName|| '---'}}</view>
<view class="text-df {{cell.unitPrice>0?'text-red':(cell.unitPrice<0?'text-green':'text-black')}}" style="flex:1;text-align: center" style="flex:1;text-align: center">{{cell.unitPrice*1000|| 0}}</view>
<view class="text-df {{cell.floatPrice>0?'text-red':(cell.floatPrice<0?'text-green':'text-black')}}" style="flex:1;text-align: center" style="flex:1;text-align: center">{{cell.floatPrice*1000|| 0}}</view>

3
pages/article/point-index/index.js

@ -57,6 +57,9 @@ Component({
this.setData({ requesting: false })
return
}
if (this.data.requesting) {
return
}
this.setData({ momentList: [], ['form.pageNum']: 1, finished: false })
this.fetchMomentList()
},

3
pages/article/price-detail/index.js

@ -38,6 +38,9 @@ Page({
},
// 下拉刷新...
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

3
pages/article/price-index/index.js

@ -47,6 +47,9 @@ Component({
},
//*************************************************momentList************************************************//
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
momentList: [],
['form.pageNum']: 1,

3
pages/article/queue-detail/index.js

@ -22,6 +22,9 @@ Page({
},
// 下拉刷新...
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

3
pages/article/queue-index/index.js

@ -45,6 +45,9 @@ Component({
},
//*************************************************momentList************************************************//
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({ momentList: [], ['form.pageNum']: 1, finished: false })
this.fetchMomentList()
},

3
pages/bank/bill/index.js

@ -23,6 +23,9 @@ Page({
this.fetchBillList()
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

3
pages/bidding/index/index.js

@ -44,6 +44,9 @@ Page({
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

3
pages/goods/ablility/index.js

@ -75,6 +75,9 @@ Page({
},
// 下拉刷新...
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

3
pages/goods/index/index.js

@ -53,6 +53,9 @@ Page({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.firstCategoryId']: this.data.form.firstCategoryId,

3
pages/mall/price-index/index.js

@ -37,6 +37,9 @@ Page({
},
// 下拉刷新...
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

3
pages/message/index/index.js

@ -39,6 +39,9 @@ Page({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
messageList: [],
tabIndex: this.data.tabIndex,

3
pages/morder/index/index.js

@ -63,6 +63,9 @@ Page({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.status']: this.data.form.status,

3
pages/order/index/index.js

@ -56,6 +56,9 @@ Component({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.status']: this.data.form.status,

3
pages/purchase/ability/index.js

@ -44,6 +44,9 @@ Page({
},
// 下拉刷新...
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

3
pages/shop/bidding/index.js

@ -42,6 +42,9 @@ Page({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.status']: this.data.form.status,

3
pages/shop/bill/index.js

@ -30,6 +30,9 @@ Page({
this.fetchBillList()
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.pageNum']: 1,

3
pages/shop/detail/index.js

@ -66,6 +66,9 @@ Page({
this.setData({ requesting: false })
return
}
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
tabIndex: this.data.tabIndex,

3
pages/shop/order/index.js

@ -45,6 +45,9 @@ Page({
}
},
onRefreshList: function () {
if (this.data.requesting) {
return
}
this.setData({
orderList: [],
['form.status']: this.data.form.status,

11
pages/withdrawal/vcheckout/index.wxml

@ -8,22 +8,23 @@
<view>提现申请后T+1个工作日到账(周六、周日及节假日顺延到工作日),如有疑问请联系客服<text class="text-blue">400-6881-001</text></view>
</view>
<view style="height:16rpx"></view>
<view style="height:24rpx"></view>
<wux-cell-group>
<wux-cell title="选择银行卡" is-link bind:click="chooseCard">
<text slot="footer" class="text-df text-black" wx:if="{{chooseBankCard}}">{{chooseBankCard.cardName}}</text>
</wux-cell>
</wux-cell-group>
<view class="bg-white" style="padding:8rpx 30rpx 24rpx 30rpx;border-top:2rpx solid #eee">
<view class="cu-form-group" style="margin-top:24rpx;padding: 2rpx 0rpx">
<view class="bg-white" style="padding:24rpx 30rpx;margin-top:24rpx">
<text class="text-sg text-bold text-black">提现金额</text>
<view class="cu-form-group" style="margin-top:24rpx;padding: 2rpx 0rpx;border-bottom:2rpx solid #f3f3f3">
<view><text style="font-size:50rpx;font-weight: 600; color:black">¥</text></view>
<input style="font-size:45rpx;margin-left:16rpx" value="{{expendMoney}}" placeholder="可转出到卡{{sumMoney}}元" disabled="{{true}}"></input>
<text class="text-df text-blue" style="margin-left:30rpx" wx:if="{{orderList.length}}" bindtap="allExpend">全部提现</text>
</view>
<!-- <view class="flex flex-justify" style="margin-top:18rpx;padding-bottom:12rpx">
<view class="flex flex-justify" style="margin-top:18rpx;">
<text class="text-df">账户余额¥{{formate.numberFormat2(xsaccountMoney)}}</text>
<text class="text-df text-blue" style="margin-left:30rpx" wx:if="{{orderList.length}}" bindtap="allExpend">全部提现</text>
</view> -->
</view>
</view>
<view style="height:16rpx"></view>
<wux-cell-group>

148
project.config.json

@ -1,76 +1,76 @@
{
"description": "项目配置文件",
"packOptions": {
"ignore": []
},
"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": true,
"checkInvalidKey": true,
"checkSiteMap": true,
"uploadWithSourceMap": true,
"compileHotReLoad": false,
"useMultiFrameRuntime": true,
"useApiHook": true,
"useApiHostProcess": true,
"babelSetting": {
"ignore": [],
"disablePlugins": [],
"outputPath": ""
},
"enableEngineNative": false,
"bundle": false,
"useIsolateContext": true,
"useCompilerModule": true,
"userConfirmedUseCompilerModuleSwitch": true,
"userConfirmedBundleSwitch": false,
"packNpmManually": false,
"packNpmRelationList": [],
"minifyWXSS": true
},
"compileType": "miniprogram",
"libVersion": "2.14.4",
"appid": "wx7a4a8415e6821108",
"projectname": "zhitongbao-mini",
"debugOptions": {
"hidedInDevtools": []
},
"isGameTourist": false,
"simulatorType": "wechat",
"simulatorPluginLibVersion": {},
"scripts": {
"beforeCompile": ""
},
"condition": {
"plugin": {
"list": []
},
"game": {
"list": []
},
"gamePlugin": {
"list": []
},
"miniprogram": {
"list": [
{
"name": "pages/login/index",
"pathName": "pages/login/index",
"query": "",
"scene": 1047
}
]
}
}
"description": "项目配置文件",
"packOptions": {
"ignore": []
},
"setting": {
"urlCheck": false,
"es6": true,
"enhance": true,
"postcss": true,
"preloadBackgroundData": false,
"minified": true,
"newFeature": true,
"coverView": true,
"nodeModules": false,
"autoAudits": false,
"showShadowRootInWxmlPanel": true,
"scopeDataCheck": false,
"uglifyFileName": true,
"checkInvalidKey": true,
"checkSiteMap": true,
"uploadWithSourceMap": true,
"compileHotReLoad": false,
"useMultiFrameRuntime": true,
"useApiHook": true,
"useApiHostProcess": true,
"babelSetting": {
"ignore": [],
"disablePlugins": [],
"outputPath": ""
},
"enableEngineNative": false,
"bundle": false,
"useIsolateContext": true,
"useCompilerModule": true,
"userConfirmedUseCompilerModuleSwitch": true,
"userConfirmedBundleSwitch": false,
"packNpmManually": false,
"packNpmRelationList": [],
"minifyWXSS": true
},
"compileType": "miniprogram",
"libVersion": "2.16.0",
"appid": "wx7a4a8415e6821108",
"projectname": "zhitongbao-mini",
"debugOptions": {
"hidedInDevtools": []
},
"isGameTourist": false,
"simulatorType": "wechat",
"simulatorPluginLibVersion": {},
"scripts": {
"beforeCompile": ""
},
"condition": {
"plugin": {
"list": []
},
"game": {
"list": []
},
"gamePlugin": {
"list": []
},
"miniprogram": {
"list": [
{
"name": "pages/login/index",
"pathName": "pages/login/index",
"query": "",
"scene": 1047
}
]
}
}
}
Loading…
Cancel
Save