Commit 3fe5901f by liangjianmin

add

parent eea5c357
......@@ -13,8 +13,46 @@
"enablePullDownRefresh": true,
"backgroundTextStyle": "dark"
}
},
{
"path": "pages/apply/index",
"style": {
"navigationBarTitleText": "发起申请"
}
},
{
"path": "pages/approve/index",
"style": {
"navigationBarTitleText": "审批列表"
}
}
],
"tabBar": {
"color": "#999999",
"selectedColor": "#d2a45f",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/home/index",
"text": "首页",
"iconPath": "static/rec-reg.png",
"selectedIconPath": "static/rec-reg.png"
},
{
"pagePath": "pages/apply/index",
"text": "发起申请",
"iconPath": "static/yujin.png",
"selectedIconPath": "static/yujin.png"
},
{
"pagePath": "pages/approve/index",
"text": "审批列表",
"iconPath": "static/huidanshangchuan.png",
"selectedIconPath": "static/huidanshangchuan.png"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "供应链商务",
......@@ -23,4 +61,4 @@
"rpxCalcMaxDeviceWidth": 600,
"rpxCalcBaseDeviceWidth": 500
}
}
\ No newline at end of file
}
<template>
<view class="page-box">
<view class="placeholder-box">
<text class="title">发起申请</text>
<text class="desc">页面已添加,等待后续指示</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
}
};
</script>
<style scoped>
.page-box {
min-height: 100vh;
padding: 32rpx;
background: #f5f6f8;
box-sizing: border-box;
}
.placeholder-box {
padding: 48rpx 32rpx;
background: #ffffff;
border-radius: 24rpx;
}
.title {
display: block;
color: #222222;
font-size: 36rpx;
font-weight: 600;
line-height: 1.4;
}
.desc {
display: block;
margin-top: 16rpx;
color: #666666;
font-size: 28rpx;
line-height: 1.6;
}
</style>
<template>
<view class="page-box">
<view class="placeholder-box">
<text class="title">审批列表</text>
<text class="desc">页面已添加,等待后续指示</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {};
}
};
</script>
<style scoped>
.page-box {
min-height: 100vh;
padding: 32rpx;
background: #f5f6f8;
box-sizing: border-box;
}
.placeholder-box {
padding: 48rpx 32rpx;
background: #ffffff;
border-radius: 24rpx;
}
.title {
display: block;
color: #222222;
font-size: 36rpx;
font-weight: 600;
line-height: 1.4;
}
.desc {
display: block;
margin-top: 16rpx;
color: #666666;
font-size: 28rpx;
line-height: 1.6;
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment