更新部分配置文件
This commit is contained in:
parent
92ea7a7e5e
commit
530b1cef3d
|
|
@ -1,16 +1,20 @@
|
||||||
{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
|
{
|
||||||
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
|
// launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
|
||||||
"version": "0.0",
|
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
|
||||||
"configurations": [{
|
"version" : "0.0",
|
||||||
"default" :
|
"configurations" : [
|
||||||
{
|
{
|
||||||
"launchtype" : "local"
|
"default" : {
|
||||||
},
|
"launchtype" : "local"
|
||||||
"mp-weixin" :
|
},
|
||||||
{
|
"mp-weixin" : {
|
||||||
"launchtype" : "local"
|
"launchtype" : "local"
|
||||||
},
|
},
|
||||||
"type" : "uniCloud"
|
"type" : "uniCloud"
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"playground" : "custom",
|
||||||
|
"type" : "uni-app:app-android"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
103
manifest.json
103
manifest.json
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name" : "银收客",
|
"name" : "银收客",
|
||||||
"appid" : "__UNI__9C51A5E",
|
"appid" : "__UNI__66E7BD0",
|
||||||
"description" : "",
|
"description" : "",
|
||||||
"versionName" : "1.0.0",
|
"versionName" : "1.0.0",
|
||||||
"versionCode" : 100,
|
"versionCode" : 100,
|
||||||
|
|
@ -176,57 +176,56 @@
|
||||||
"unipush" : {
|
"unipush" : {
|
||||||
"enable" : true
|
"enable" : true
|
||||||
},
|
},
|
||||||
"devServer": {
|
"devServer" : {
|
||||||
"disableHostCheck": true,
|
"disableHostCheck" : true,
|
||||||
"proxy": {
|
"proxy" : {
|
||||||
"/shopApi": {
|
"/shopApi" : {
|
||||||
// 需要被代理的后台地址
|
// 需要被代理的后台地址
|
||||||
"target": "https://wxcashiertest.sxczgkj.cn/cashierService",
|
"target" : "https://wxcashiertest.sxczgkj.cn/cashierService",
|
||||||
"changeOrigin": true,
|
"changeOrigin" : true,
|
||||||
"secure": false,
|
"secure" : false,
|
||||||
"pathRewrite": {
|
"pathRewrite" : {
|
||||||
"^/shopApi": ""
|
"^/shopApi" : ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/mch": {
|
"/mch" : {
|
||||||
// 需要被代理的后台地址
|
// 需要被代理的后台地址
|
||||||
"target": "https://b.rscygroup.com",
|
"target" : "https://b.rscygroup.com",
|
||||||
"changeOrigin": true,
|
"changeOrigin" : true,
|
||||||
"secure": false,
|
"secure" : false,
|
||||||
"pathRewrite": {
|
"pathRewrite" : {
|
||||||
"^/mch": ""
|
"^/mch" : ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/server1": {
|
"/server1" : {
|
||||||
// 需要被代理的后台地址
|
// 需要被代理的后台地址
|
||||||
"target": "http://101.37.12.135:8080",
|
"target" : "http://101.37.12.135:8080",
|
||||||
"changeOrigin": true,
|
"changeOrigin" : true,
|
||||||
"secure": false,
|
"secure" : false,
|
||||||
"pathRewrite": {
|
"pathRewrite" : {
|
||||||
"^/server1": ""
|
"^/server1" : ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/server3": {
|
"/server3" : {
|
||||||
// 需要被代理的后台地址
|
// 需要被代理的后台地址
|
||||||
"target": "http://101.37.12.135:8080",
|
"target" : "http://101.37.12.135:8080",
|
||||||
"changeOrigin": true,
|
"changeOrigin" : true,
|
||||||
"secure": false,
|
"secure" : false,
|
||||||
"pathRewrite": {
|
"pathRewrite" : {
|
||||||
"^/server3": ""
|
"^/server3" : ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/ysk": {
|
"/ysk" : {
|
||||||
// 需要被代理的后台地址
|
// 需要被代理的后台地址
|
||||||
"target": "https://admintestpapi.sxczgkj.cn",
|
"target" : "https://admintestpapi.sxczgkj.cn",
|
||||||
"changeOrigin": true,
|
"changeOrigin" : true,
|
||||||
"secure": false,
|
"secure" : false,
|
||||||
"pathRewrite": {
|
"pathRewrite" : {
|
||||||
"/ysk": ""
|
"/ysk" : ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"mp-alipay" : {
|
"mp-alipay" : {
|
||||||
"appid" : "2021004128648214"
|
"appid" : "2021004128648214"
|
||||||
|
|
|
||||||
21
pages.json
21
pages.json
|
|
@ -1201,6 +1201,27 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"root": "pagesOrder",
|
||||||
|
"pages": [{
|
||||||
|
"pageId": "PAGES_ORDER_INDEX",
|
||||||
|
"path" : "index/index",
|
||||||
|
"style" :
|
||||||
|
{
|
||||||
|
"navigationBarTitleText" : "订单管理"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pageId": "PAGES_ORDER_DETAIL",
|
||||||
|
"path" : "detail/detail",
|
||||||
|
"style" :
|
||||||
|
{
|
||||||
|
"navigationBarTitleText" : "订单详情"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"root": "pageCoupon",
|
"root": "pageCoupon",
|
||||||
"pages": [{
|
"pages": [{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue