Browse Source

上传修改

master
前端-胡立永 4 months ago
parent
commit
4b6a5f72c8
5 changed files with 12 additions and 12 deletions
  1. +8
    -6
      pages.json
  2. +1
    -1
      pages/index/center.vue
  3. +1
    -3
      pages/index/index.vue
  4. +1
    -1
      pages/subPack/human/human.vue
  5. +1
    -1
      pages/subPack/punchCard/punchCard.vue

+ 8
- 6
pages.json View File

@ -1,10 +1,6 @@
{ {
"pages": [{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录"
}
}, {
"pages": [
{
"path": "pages/index/index", "path": "pages/index/index",
"style": { "style": {
"navigationBarTitleText": "打卡" "navigationBarTitleText": "打卡"
@ -16,6 +12,12 @@
"navigationBarTitleText": "我的" "navigationBarTitleText": "我的"
} }
}, },
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{ {
"path": "pages/login/wxUserInfo", "path": "pages/login/wxUserInfo",
"style": { "style": {


+ 1
- 1
pages/index/center.vue View File

@ -55,7 +55,7 @@
clickMenu(index){ clickMenu(index){
if(index == 1){ if(index == 1){
uni.navigateTo({ uni.navigateTo({
url: "/pages_order/record/record"
url: "/pages/subPack/record/record"
}) })
}else if(index == 2){ }else if(index == 2){
uni.navigateTo({ uni.navigateTo({


+ 1
- 3
pages/index/index.vue View File

@ -42,7 +42,7 @@
</div> </div>
<!-- tab栏 --> <!-- tab栏 -->
<tabbar v-if="!broadsideShow" :select="0"></tabbar>
<tabbar :select="0"></tabbar>
<!-- 侧边栏 --> <!-- 侧边栏 -->
<broadside ref="broadside"></broadside> <broadside ref="broadside"></broadside>
@ -61,7 +61,6 @@
}, },
data() { data() {
return { return {
broadsideShow: false, //
latitude: 39.909, latitude: 39.909,
longitude: 116.39742, longitude: 116.39742,
covers: [] covers: []
@ -81,7 +80,6 @@
// //
openBroadside() { openBroadside() {
this.$refs.broadside.open() this.$refs.broadside.open()
this.broadsideShow = true;
}, },
// //


+ 1
- 1
pages/subPack/human/human.vue View File

@ -3,7 +3,7 @@
<view class="human-face"> <view class="human-face">
<!-- 自定义导航栏 --> <!-- 自定义导航栏 -->
<uni-nav-bar dark :fixed="true" shadow background-color="var(--main-color)" status-bar left-icon="left" <uni-nav-bar dark :fixed="true" shadow background-color="var(--main-color)" status-bar left-icon="left"
title="人脸识别" @clickLeft="toHome" />
title="人脸识别" @clickLeft="$utils.navigateBack" />
<!-- 人脸识别说明标题 --> <!-- 人脸识别说明标题 -->
<view class="human-face-title">为保证本人操作请进行人脸验证</view> <view class="human-face-title">为保证本人操作请进行人脸验证</view>


+ 1
- 1
pages/subPack/punchCard/punchCard.vue View File

@ -3,7 +3,7 @@
<view class="punch-card"> <view class="punch-card">
<!-- 自定义导航栏 --> <!-- 自定义导航栏 -->
<uni-nav-bar dark :fixed="true" shadow background-color="var(--main-color)" status-bar left-icon="left" <uni-nav-bar dark :fixed="true" shadow background-color="var(--main-color)" status-bar left-icon="left"
title="打卡" @clickLeft="toHuman" />
title="打卡" @clickLeft="$utils.navigateBack" />
<!-- 打卡图片 --> <!-- 打卡图片 -->
<view class="card-image"> <view class="card-image">


Loading…
Cancel
Save