Compare commits
No commits in common. "9a6c4d30f46ef9adaae0e71507dcac4643e56cbd" and "2c952e71a38a693b6a1c4aef30e1aef674b2ecea" have entirely different histories.
9a6c4d30f4
...
2c952e71a3
11
app.json
11
app.json
@ -18,10 +18,7 @@
|
|||||||
"pages/rechargeDetail/index",
|
"pages/rechargeDetail/index",
|
||||||
"pages/updateInvoice/index",
|
"pages/updateInvoice/index",
|
||||||
"pages/rechargeWay/index",
|
"pages/rechargeWay/index",
|
||||||
"pages/publicTransfer/index",
|
"pages/publicTransfer/index"
|
||||||
"pages/special/index",
|
|
||||||
"pages/encyclopedia/index",
|
|
||||||
"pages/encyclopediaDetail/index"
|
|
||||||
],
|
],
|
||||||
"subPackages": [
|
"subPackages": [
|
||||||
{
|
{
|
||||||
@ -41,12 +38,6 @@
|
|||||||
"iconPath": "/assets/tabbar/home.png",
|
"iconPath": "/assets/tabbar/home.png",
|
||||||
"selectedIconPath": "/assets/tabbar/home_select.png"
|
"selectedIconPath": "/assets/tabbar/home_select.png"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"pagePath": "pages/special/index",
|
|
||||||
"text": "专区",
|
|
||||||
"iconPath": "/assets/tabbar/special.png",
|
|
||||||
"selectedIconPath": "/assets/tabbar/special_select.png"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"pagePath": "pages/my/index",
|
"pagePath": "pages/my/index",
|
||||||
"text": "我的",
|
"text": "我的",
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 10 KiB |
Binary file not shown.
Before Width: | Height: | Size: 10 KiB |
@ -39,17 +39,13 @@ Page({
|
|||||||
this.init(id, time);
|
this.init(id, time);
|
||||||
},
|
},
|
||||||
async init(id, time) {
|
async init(id, time) {
|
||||||
const { code, message, detail, amount } = await getReportDetail(id)
|
const { code, message, detail } = await getReportDetail(id)
|
||||||
if (code !== OK) {
|
if (code !== OK) {
|
||||||
alertInfo(message)
|
alertInfo(message)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.setData({
|
this.setData({
|
||||||
id,
|
id, time, detail, meters: detail?.meters?.map(item => {
|
||||||
time,
|
|
||||||
detail,
|
|
||||||
amount: amount,
|
|
||||||
meters: detail?.meters?.map(item => {
|
|
||||||
const finalAmount = Number(item?.overall?.amount || 0) + Number(item?.loss?.amount || 0) + Number(item?.publicAmount || 0)
|
const finalAmount = Number(item?.overall?.amount || 0) + Number(item?.loss?.amount || 0) + Number(item?.publicAmount || 0)
|
||||||
item.finalAmount = Number(finalAmount).toFixed(2)
|
item.finalAmount = Number(finalAmount).toFixed(2)
|
||||||
return item;
|
return item;
|
||||||
@ -81,8 +77,8 @@ Page({
|
|||||||
type: 'pie',
|
type: 'pie',
|
||||||
radius: '50%',
|
radius: '50%',
|
||||||
data: [
|
data: [
|
||||||
{ value: detail.comprehensive.lossAmount, name: '本期线损电量', itemStyle: { color: 'rgb(104,187,196)' } },
|
{ value: 18.3, name: '本期线损电量', itemStyle: { color: 'rgb(104,187,196)' } },
|
||||||
{ value: detail.comprehensive.consumption, name: '本期用电量', itemStyle: { color: 'rgb(80,135,236)' } },
|
{ value: 187.56, name: '本期用电量', itemStyle: { color: 'rgb(80,135,236)' } },
|
||||||
|
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
<van-col span="8">
|
<van-col span="8">
|
||||||
<view class="colContent">
|
<view class="colContent">
|
||||||
<view class="colContentTitle">本期用电量</view>
|
<view class="colContentTitle">本期用电量</view>
|
||||||
<view class="colContentValue"> {{ amount }} 千瓦时 </view>
|
<view class="colContentValue"> {{ detail.comprehensive.consumption }} 千瓦时 </view>
|
||||||
</view>
|
</view>
|
||||||
</van-col>
|
</van-col>
|
||||||
<van-col span="8">
|
<van-col span="8">
|
||||||
|
@ -14,3 +14,4 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
{{totalPage}}
|
||||||
|
@ -1,59 +0,0 @@
|
|||||||
import { getEncyclopediaList } from "../../../../service/system";
|
|
||||||
import { alertInfo, alertSuccess, loadingFunc, wxLogin } from "../../../../utils/index";
|
|
||||||
import request from "../../../../utils/request"
|
|
||||||
const { OK } = request;
|
|
||||||
// pages/encyclopedia/components/item/index.js
|
|
||||||
Component({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 组件的属性列表
|
|
||||||
*/
|
|
||||||
properties: {
|
|
||||||
id: String
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 组件的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
page: 1,
|
|
||||||
list: [],
|
|
||||||
},
|
|
||||||
lifetimes: {
|
|
||||||
attached() {
|
|
||||||
console.log('----------=========')
|
|
||||||
this.getData();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* 组件的方法列表
|
|
||||||
*/
|
|
||||||
methods: {
|
|
||||||
async getData() {
|
|
||||||
console.log(this.data.page, this.data.id, this.id)
|
|
||||||
const page = this.data.page;
|
|
||||||
const id = this.id;
|
|
||||||
const { code, data, message, total } = await getEncyclopediaList(id, page);
|
|
||||||
if (code !== OK) {
|
|
||||||
alertInfo(message)
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.setData({ list: data, totalPage: Math.ceil(total / 20) });
|
|
||||||
},
|
|
||||||
jumpToDetail(e) {
|
|
||||||
console.log('e', e)
|
|
||||||
wx.navigateTo({
|
|
||||||
url: `/pages/encyclopediaDetail/index?id=${e.currentTarget.dataset.data.id}`,
|
|
||||||
})
|
|
||||||
},
|
|
||||||
async onChangePage(e) {
|
|
||||||
const page = e.detail.currentIndex;
|
|
||||||
const that = this;
|
|
||||||
this.setData({
|
|
||||||
page
|
|
||||||
}, () => {
|
|
||||||
that.getData();
|
|
||||||
})
|
|
||||||
},
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"component": true,
|
|
||||||
"usingComponents": {
|
|
||||||
"pagination": "/components/pagination/index",
|
|
||||||
"navigator": "/components/navigator/index",
|
|
||||||
"van-field": "@vant/weapp/field/index"
|
|
||||||
},
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
<!--pages/encyclopedia/components/item/index.wxml-->
|
|
||||||
<van-field
|
|
||||||
wx:for="{{list}}"
|
|
||||||
value="{{ item.title }}"
|
|
||||||
readonly
|
|
||||||
border="{{ true }}"
|
|
||||||
wx:key="id"
|
|
||||||
bind:tap="jumpToDetail"
|
|
||||||
data-data="{{item}}"
|
|
||||||
/>
|
|
||||||
<pagination
|
|
||||||
currentIndex="{{page}}"
|
|
||||||
totalPage="{{totalPage}}"
|
|
||||||
bind:pagingChange="onChangePage"
|
|
||||||
/>
|
|
@ -1 +0,0 @@
|
|||||||
/* pages/encyclopedia/components/item/index.wxss */
|
|
@ -1,87 +0,0 @@
|
|||||||
// pages/encyclopedia/index.js
|
|
||||||
import { getCategoryList } from '../../service/system'
|
|
||||||
import { alertInfo, alertSuccess, loadingFunc, wxLogin } from "../../utils/index";
|
|
||||||
import request from "../../utils/request"
|
|
||||||
const { OK } = request;
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
categoryList: [],
|
|
||||||
active: 0,
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面加载
|
|
||||||
*/
|
|
||||||
onLoad(options) {
|
|
||||||
this.init();
|
|
||||||
},
|
|
||||||
|
|
||||||
async init() {
|
|
||||||
const { data, code, message } = await getCategoryList();
|
|
||||||
if (code !== OK) {
|
|
||||||
alertInfo(message);
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.setData({
|
|
||||||
categoryList: data
|
|
||||||
})
|
|
||||||
},
|
|
||||||
onChange(e) {
|
|
||||||
console.log('e', e)
|
|
||||||
this.setData({
|
|
||||||
active: e.detail.index,
|
|
||||||
})
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面初次渲染完成
|
|
||||||
*/
|
|
||||||
onReady() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面显示
|
|
||||||
*/
|
|
||||||
onShow() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面隐藏
|
|
||||||
*/
|
|
||||||
onHide() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面卸载
|
|
||||||
*/
|
|
||||||
onUnload() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面相关事件处理函数--监听用户下拉动作
|
|
||||||
*/
|
|
||||||
onPullDownRefresh() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面上拉触底事件的处理函数
|
|
||||||
*/
|
|
||||||
onReachBottom() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户点击右上角分享
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {
|
|
||||||
"navigator": "/components/navigator/index",
|
|
||||||
"van-tab": "@vant/weapp/tab/index",
|
|
||||||
"van-tabs": "@vant/weapp/tabs/index",
|
|
||||||
"item": "./components/item/index"
|
|
||||||
},
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
<!--pages/encyclopedia/index.wxml-->
|
|
||||||
<navigator title="电力百科" canBack="{{true}}" />
|
|
||||||
<van-tabs active="{{ active }}" bind:change="onChange">
|
|
||||||
<van-tab wx:for="{{categoryList}}" wx:key="id" title="{{item.name}}">
|
|
||||||
<item id="{{item.id}}" wx:if="{{index === active}}" />
|
|
||||||
</van-tab>
|
|
||||||
</van-tabs>
|
|
@ -1 +0,0 @@
|
|||||||
/* pages/encyclopedia/index.wxss */
|
|
@ -1,77 +0,0 @@
|
|||||||
// pages/encyclopediaDetail/index.js
|
|
||||||
import { getEncyclopediaDetail } from "../../service/system";
|
|
||||||
import { alertInfo, alertSuccess, loadingFunc, wxLogin } from "../../utils/index";
|
|
||||||
import request from "../../utils/request"
|
|
||||||
const { OK } = request;
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
detail: {},
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面加载
|
|
||||||
*/
|
|
||||||
onLoad(options) {
|
|
||||||
this.init(options.id)
|
|
||||||
},
|
|
||||||
async init(id) {
|
|
||||||
const { code, data, message } = await getEncyclopediaDetail(id);
|
|
||||||
if (code !== OK) {
|
|
||||||
alertInfo(message)
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.setData({ detail: data });
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面初次渲染完成
|
|
||||||
*/
|
|
||||||
onReady() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面显示
|
|
||||||
*/
|
|
||||||
onShow() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面隐藏
|
|
||||||
*/
|
|
||||||
onHide() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面卸载
|
|
||||||
*/
|
|
||||||
onUnload() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面相关事件处理函数--监听用户下拉动作
|
|
||||||
*/
|
|
||||||
onPullDownRefresh() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面上拉触底事件的处理函数
|
|
||||||
*/
|
|
||||||
onReachBottom() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户点击右上角分享
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {
|
|
||||||
"navigator": "/components/navigator/index"
|
|
||||||
},
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
<!--pages/encyclopediaDetail/index.wxml-->
|
|
||||||
<navigator title="百科详情" canBack="{{true}}" />
|
|
||||||
<view class="contentWrapper">
|
|
||||||
<view class="title">{{detail.title}}</view>
|
|
||||||
<view class="content">{{detail.content}}</view>
|
|
||||||
</view>
|
|
@ -1,14 +0,0 @@
|
|||||||
/* pages/encyclopediaDetail/index.wxss */
|
|
||||||
.contentWrapper {
|
|
||||||
padding: 30rpx
|
|
||||||
}
|
|
||||||
.title {
|
|
||||||
margin-top: 12rpx;
|
|
||||||
font-weight: 600;
|
|
||||||
font-size: 48rpx;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
margin-top: 40rpx;
|
|
||||||
|
|
||||||
}
|
|
@ -22,7 +22,11 @@ Page({
|
|||||||
* 生命周期函数--监听页面加载
|
* 生命周期函数--监听页面加载
|
||||||
*/
|
*/
|
||||||
onLoad(options) {
|
onLoad(options) {
|
||||||
|
const { canBack } = options
|
||||||
|
console.log('cnaback', canBack)
|
||||||
|
if (canBack === 'false') {
|
||||||
|
this.setData({ canBack: false })
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onChangeName(e) {
|
onChangeName(e) {
|
||||||
this.setData({
|
this.setData({
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!--pages/handleLogin/index.wxml-->
|
<!--pages/handleLogin/index.wxml-->
|
||||||
<!-- <topbar /> -->
|
<!-- <topbar /> -->
|
||||||
<navigator title="绑定商户" canBack="{{true}}" />
|
<navigator title="绑定商户" canBack="{{canBack}}" />
|
||||||
<van-tabs>
|
<van-tabs>
|
||||||
<van-tab title="扫码绑定">
|
<van-tab title="扫码绑定">
|
||||||
<view class="codeContent">
|
<view class="codeContent">
|
||||||
|
@ -269,11 +269,9 @@ Page({
|
|||||||
}
|
}
|
||||||
if (!data?.length) {
|
if (!data?.length) {
|
||||||
alertInfo("尚无信息")
|
alertInfo("尚无信息")
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
wx.clearStorageSync()
|
|
||||||
wx.redirectTo({
|
wx.redirectTo({
|
||||||
url: '/pages/login/index',
|
url: '/pages/handleLogin/index?back=false',
|
||||||
})
|
})
|
||||||
}, 500)
|
}, 500)
|
||||||
return;
|
return;
|
||||||
|
@ -1,96 +0,0 @@
|
|||||||
// pages/special/index.js
|
|
||||||
import { getServicesList } from '../../service/system'
|
|
||||||
import request from '../../utils/request'
|
|
||||||
import { alertInfo } from '../../utils/index'
|
|
||||||
const { OK } = request;
|
|
||||||
|
|
||||||
Page({
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面的初始数据
|
|
||||||
*/
|
|
||||||
data: {
|
|
||||||
servicesList: []
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面加载
|
|
||||||
*/
|
|
||||||
onLoad(options) {
|
|
||||||
|
|
||||||
},
|
|
||||||
async init() {
|
|
||||||
const { code, message, data } = await getServicesList()
|
|
||||||
if (code !== OK) {
|
|
||||||
alertInfo(message);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.setData({ servicesList: data })
|
|
||||||
},
|
|
||||||
clickService(e) {
|
|
||||||
console.log('e', e)
|
|
||||||
const { type, value } = e.currentTarget.dataset.data;
|
|
||||||
switch(type) {
|
|
||||||
case 0:
|
|
||||||
const [appId, path] = value.split(",")
|
|
||||||
wx.navigateToMiniProgram({
|
|
||||||
appId: appId,
|
|
||||||
path: path
|
|
||||||
})
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
wx.navigateTo({
|
|
||||||
url: value,
|
|
||||||
})
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面初次渲染完成
|
|
||||||
*/
|
|
||||||
onReady() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面显示
|
|
||||||
*/
|
|
||||||
onShow() {
|
|
||||||
this.init()
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面隐藏
|
|
||||||
*/
|
|
||||||
onHide() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 生命周期函数--监听页面卸载
|
|
||||||
*/
|
|
||||||
onUnload() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面相关事件处理函数--监听用户下拉动作
|
|
||||||
*/
|
|
||||||
onPullDownRefresh() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 页面上拉触底事件的处理函数
|
|
||||||
*/
|
|
||||||
onReachBottom() {
|
|
||||||
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 用户点击右上角分享
|
|
||||||
*/
|
|
||||||
onShareAppMessage() {
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"usingComponents": {
|
|
||||||
"navigator": "/components/navigator/index",
|
|
||||||
"van-row": "@vant/weapp/row/index",
|
|
||||||
"van-col": "@vant/weapp/col/index",
|
|
||||||
"van-image": "@vant/weapp/image/index"
|
|
||||||
},
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
@ -1,11 +0,0 @@
|
|||||||
<!--pages/special/index.wxml-->
|
|
||||||
<navigator title="专区" />
|
|
||||||
<view class="servicesWrapper">
|
|
||||||
<van-row>
|
|
||||||
<van-col span="8" wx:for="{{ servicesList }}" wx:key="id">
|
|
||||||
<view class="image" bind:tap="clickService" data-data="{{item}}">
|
|
||||||
<van-image width="200rpx" height="200rpx" src="{{item.url}}" />
|
|
||||||
</view>
|
|
||||||
</van-col>
|
|
||||||
</van-row>
|
|
||||||
</view>
|
|
@ -1,6 +0,0 @@
|
|||||||
/* pages/special/index.wxss */
|
|
||||||
.image {
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
padding: 40rpx;
|
|
||||||
}
|
|
@ -29,24 +29,4 @@ export const deleteOption = async function() {
|
|||||||
// 提交意见反馈
|
// 提交意见反馈
|
||||||
export const aboutUs = async function() {
|
export const aboutUs = async function() {
|
||||||
return await GET(`/wx/aboutUs`);
|
return await GET(`/wx/aboutUs`);
|
||||||
}
|
|
||||||
|
|
||||||
// 获取特色服务列表
|
|
||||||
export const getServicesList = async function() {
|
|
||||||
return await GET(`/wx/getServicesList?status=2`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获取分类列表
|
|
||||||
export const getCategoryList = async function() {
|
|
||||||
return await GET(`/wx/getCategoryList?status=2`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获取分类列表
|
|
||||||
export const getEncyclopediaList = async function(categoryId, page) {
|
|
||||||
return await GET(`/wx/getEncyclopedia?status=2&page=${page}&categoryId=${categoryId}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 获取分类列表
|
|
||||||
export const getEncyclopediaDetail = async function(id) {
|
|
||||||
return await GET(`/wx/getEncyclopediaDetail/${id}`);
|
|
||||||
}
|
}
|
@ -45,8 +45,8 @@ export function getConfigByEnv() {
|
|||||||
switch (envVersion) {
|
switch (envVersion) {
|
||||||
// 开发版
|
// 开发版
|
||||||
case 'develop':
|
case 'develop':
|
||||||
api = "http://localhost:8000"
|
// api = "http://localhost:8000"
|
||||||
// api = "https://zgd.hbhcbn.com/api3"
|
api = "https://zgd.hbhcbn.com/api3"
|
||||||
// api = "https://zgd.hbhcbn.com/api3"
|
// api = "https://zgd.hbhcbn.com/api3"
|
||||||
// api = "https://zgd.hbhcbn.com/wxApi"
|
// api = "https://zgd.hbhcbn.com/wxApi"
|
||||||
// api = "http://127.0.0.1:4523/m1/4143821-0-default"
|
// api = "http://127.0.0.1:4523/m1/4143821-0-default"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user