This commit is contained in:
parent
bfd050f593
commit
9bb83c906e
|
@ -496,9 +496,24 @@
|
|||
{
|
||||
"navigationBarTitleText": "修改密码",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"path" : "pages/orderHall/orderHall",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText": "点单大厅",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"path" : "pages/orderHall/addOrder",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText": "需求发布",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
"navigationBarTitleText": "艺象心",
|
||||
|
|
|
@ -52,6 +52,9 @@
|
|||
}, {
|
||||
imgUrl: '../../static/icon13.png',
|
||||
label: '文艺比赛'
|
||||
}, {
|
||||
imgUrl: '../../static/moreFun/moreFun10.png',
|
||||
label: '点单大厅'
|
||||
},
|
||||
]
|
||||
};
|
||||
|
@ -113,6 +116,11 @@
|
|||
url: "/pages/ArtRace/ArtRace"
|
||||
})
|
||||
break;
|
||||
case 10:
|
||||
uni.navigateTo({
|
||||
url: "/pages/orderHall/orderHall"
|
||||
})
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
<view class="">
|
||||
需求发布
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
|
@ -0,0 +1,29 @@
|
|||
<template>
|
||||
<view class="">
|
||||
点单大厅
|
||||
<view @click="toAdd()">
|
||||
新建
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default{
|
||||
data(){
|
||||
return{
|
||||
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
toAdd(){
|
||||
uni.navigateTo({
|
||||
url: "/pages/orderHall/addOrder"
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
|
@ -7,8 +7,8 @@ export default {
|
|||
config: {
|
||||
// baseUrl: "http://192.168.0.57:8080/h5/api", //王锡
|
||||
// baseUrl: "http://192.168.124.110:8088/api", //周源
|
||||
// baseUrl: "http://192.168.0.29:8080/h5/api", //俞燕红
|
||||
baseUrl: "https://yxx.ydool.net/h5/api", //线上
|
||||
baseUrl: "http://10.0.0.54:8080/h5/api", //俞燕红
|
||||
// baseUrl: "https://yxx.ydool.net/h5/api", //线上
|
||||
header: {
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
// 'Content-Type':'application/x-www-form-urlencoded'
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
Loading…
Reference in New Issue