@@ -16,7 +16,8 @@
"window": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "首页",
- "navigationBarBackgroundColor": "#d8af7a"
+ "navigationBarBackgroundColor": "#d8af7a",
+ "navigationStyle": "custom"
},
"tabBar": {
"color": "#2F2F2F",
@@ -8,3 +8,19 @@ page {
font-size: 20px;
font-weight: 500;
}
+
+.van-nav-bar {
+ background-color: #ffffff00!important;
+}
+.van-nav-bar__title,
+.van-nav-bar__arrow {
+ color: #ffffff!important;
+.nav-bar {
+ position: absolute;
+ width: 750rpx;
+ top: 0;
@@ -14,6 +14,10 @@ Page({
size: 2,
total: 0,
T: undefined,
+ goBack(){
+ wx.navigateBack();
+ },
conclusion(e) {
if (this.T) clearTimeout(this.T);
setTimeout(() => {
@@ -1,6 +1,7 @@
{
"navigationBarTitleText": "管理员审核",
"usingComponents": {
- "van-empty": "@vant/weapp/empty/index"
+ "van-empty": "@vant/weapp/empty/index",
+ "van-nav-bar": "@vant/weapp/nav-bar/index"
@@ -1,4 +1,9 @@
<!--pages/admin/index.wxml-->
+<van-nav-bar
+ title="管理员审核"
+ class="nav-bar"
+ border="{{false}}"
+/>
<swiper bindchange="change" class="swiper" wx:if="{{list.length}}" vertical cache-extent="{{1}}">
<swiper-item class="swiper-item" wx:for="{{list}}" wx:key="index">
<image src="{{item.articleUrl}}" class="zp" mode="aspectFit" />
@@ -7,15 +7,15 @@ Page({
data: {
ls_url: "",
selectIndex: 0,
- users: [{
- name: "李勇利"
- },
- {
- name: "张云翔"
- ]
+ users: []
systemInfo: wx.getSystemInfoSync(),
/**
* 生命周期函数--监听页面加载
*/
@@ -4,6 +4,7 @@
"Container": "../../component/container/index",
"van-icon": "@vant/weapp/icon/index",
"van-button": "@vant/weapp/button/index",
@@ -1,5 +1,12 @@
<!--pages/downZS/index.wxml-->
<view class="downZS">
+ <van-nav-bar
+ title="专家评审"
+ left-arrow
+ bind:click-left="goBack"
<Container>
<swiper wx:if="{{ls_url.length}}" indicator-dots="{{true}}" indicator-color="#ffffff" indicator-active-color="#91725d" style="height:575rpx" bindchange="change">
<swiper-item wx:for="{{ls_url}}" wx:key="index" style="padding-top: 15rpx;">
@@ -13,7 +13,10 @@ Page({
page: 1,
size: 10,
-
showimge(e) {
wx.previewImage({
urls: [e.currentTarget.dataset.url],
@@ -2,6 +2,7 @@
"navigationBarTitleText": "专家评审",
- "van-checkbox": "@vant/weapp/checkbox/index"
+ "van-checkbox": "@vant/weapp/checkbox/index",
@@ -1,4 +1,11 @@
<!--pages/expert/index.wxml-->
<scroll-view scroll-y="{{true}}" bindscrolltolower="scrollbottom">
<view class="list_item" wx:for="{{list}}" wx:key="index">
@@ -54,7 +54,6 @@ Page({
})
}, 300);
@@ -35,6 +35,10 @@ Page({
id: undefined,
area: [],
changeSelectArea: [0, 0, 0],
change(e) {
const key = e.target.dataset.key || '';
const value = e.detail.value;
"van-radio": "@vant/weapp/radio/index",
"van-radio-group": "@vant/weapp/radio-group/index",
- "van-button": "@vant/weapp/button/index"
+ "van-button": "@vant/weapp/button/index",
<!--pages/application/index.wxml-->
+ title="报名信息"
<scroll-view class="scrollarea" scroll-y type="list">
<view class="index_main">
<Container style="margin-top: -100rpx;">
@@ -1,5 +1,8 @@
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#000",
- "usingComponents": {}
+ "navigationStyle": "default",
+ "usingComponents": {
+ }
@@ -87,6 +87,10 @@ Page({
"van-search": "@vant/weapp/search/index",
<!--pages/userData/index.wxml-->
@@ -8,6 +8,7 @@
box-sizing: border-box;
color: #A57044;
position: relative;
+ min-height: 100vh;
.card {
@@ -7,7 +7,9 @@ Page({
url: ""
@@ -1,4 +1,6 @@
@@ -1,2 +1,8 @@
<!--pages/webview/index.wxml-->
+ title=""
<web-view src="{{url}}"></web-view>