UI修改
This commit is contained in:
parent
8effd63f8e
commit
77342eca4b
19
pages.json
19
pages.json
@ -58,10 +58,10 @@
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationBarTextStyle": "white",
|
||||
"navigationBarTitleText": "uni-app",
|
||||
"navigationBarBackgroundColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8"
|
||||
"navigationBarBackgroundColor": "#008B8B",
|
||||
"backgroundColor": "#008B8B"
|
||||
},
|
||||
"tabBar": {
|
||||
"list": [{
|
||||
@ -70,12 +70,6 @@
|
||||
"iconPath": "static/tabbar/ic_his_no.png",
|
||||
"selectedIconPath": "static/tabbar/ic_his_sel.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/evaluation/mineEvPage",
|
||||
"text": "历史任务",
|
||||
"iconPath": "static/tabbar/ic_cur_no.png",
|
||||
"selectedIconPath": "static/tabbar/ic_cur_sel.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/mine/index",
|
||||
"text": "我的",
|
||||
@ -85,3 +79,10 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
// ,
|
||||
// {
|
||||
// "pagePath": "pages/evaluation/mineEvPage",
|
||||
// "text": "历史任务",
|
||||
// "iconPath": "static/tabbar/ic_cur_no.png",
|
||||
// "selectedIconPath": "static/tabbar/ic_cur_sel.png"
|
||||
// },
|
||||
|
@ -1,6 +1,23 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<uni-list class="task-content">
|
||||
<view v-for="(evaluation,index) in evaluations" :key="index" @tap="itemClick(evaluation)" :data-taskid="evaluation.taskId">
|
||||
<view class="item-li">
|
||||
<view class="task-content-item task-name">{{index + 1}}.{{evaluation.taskName}}</view>
|
||||
<view class="task-content-item evalutaion-name">{{evaluation.evaluationName}}</view>
|
||||
<view style="display: flex;flex-direction: row;justify-content: space-between;align-items: center;">
|
||||
<view>{{evaluation.taskRecordSubmitCount}}</view>
|
||||
<view>
|
||||
<view class="task-content-item task-time">{{evaluation.taskStartTime.substring(0, 10)}} ~
|
||||
{{evaluation.taskEndTime.substring(0, 10)}}</view>
|
||||
<view class="task-content-item task-type">
|
||||
<text v-if="evaluation.taskType === 1">{{evaluation.taskTypeContent.split('|')[1]}} [测评部门]</text>
|
||||
<text v-if="evaluation.taskType === 2">{{evaluation.taskTypeContent.split('|')[2]}} [测评人员]</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- <uni-list class="task-content">
|
||||
<uni-list-item :showArrow="false" v-for="(evaluation,index) in evaluations" :key="index" @tap="itemClick(evaluation)"
|
||||
:data-taskid="evaluation.taskId">
|
||||
<view class="task-content-item task-name">{{index + 1}}.{{evaluation.taskName}}</view>
|
||||
@ -18,7 +35,7 @@
|
||||
</view>
|
||||
|
||||
</uni-list-item>
|
||||
</uni-list>
|
||||
</uni-list> -->
|
||||
<!-- <uni-load-more v-if="evaluations.length >= 20" :status="more" @clickLoadMore="clickLoadMore" :contentText="uploadContentText"></uni-load-more> -->
|
||||
</view>
|
||||
</template>
|
||||
@ -121,48 +138,59 @@
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
/* align-items: center;
|
||||
justify-content: center; */
|
||||
}
|
||||
|
||||
|
||||
.content .task-content {}
|
||||
.task-content {}
|
||||
|
||||
.content .task-content .task-content-item {
|
||||
.task-content .task-content-item {
|
||||
padding: 5upx 0;
|
||||
}
|
||||
|
||||
.content .task-content .task-count {
|
||||
.task-content .task-count {
|
||||
text-align: left|center;
|
||||
font-size: 25upx;
|
||||
}
|
||||
|
||||
.content .task-content-hover {
|
||||
.task-content-hover {
|
||||
background-color: #effaff;
|
||||
}
|
||||
|
||||
.content .task-content:last-child {
|
||||
.task-content:last-child {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.content .task-content .task-name {
|
||||
.task-content .task-name {
|
||||
font-size: 30upx;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.content .task-content .evalutaion-name {
|
||||
.task-content .evalutaion-name {
|
||||
font-size: 30upx;
|
||||
}
|
||||
|
||||
.content .task-content .task-time {
|
||||
.task-content .task-time {
|
||||
text-align: right;
|
||||
font-size: 25upx;
|
||||
}
|
||||
|
||||
.content .task-content .task-type {
|
||||
.task-content .task-type {
|
||||
text-align: right;
|
||||
font-size: 25upx;
|
||||
}
|
||||
|
||||
.item-li {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: auto;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
min-width: 50%;
|
||||
width: 90%;
|
||||
min-height: 50px;
|
||||
margin: 10px;
|
||||
background: #FFFFFF;
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 5rpx 5rpx 15px #d9d9d9;
|
||||
}
|
||||
</style>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="content" :style="{height: windowHeight +'px'}">
|
||||
<!-- <view class="content" :style="{height: windowHeight +'px'}">
|
||||
<view class="app-title">
|
||||
<text>{{appTitle}}</text>
|
||||
</view>
|
||||
@ -17,6 +17,29 @@
|
||||
<button class="login" type="primary" @click="login">登录</button>
|
||||
</view>
|
||||
</form>
|
||||
</view> -->
|
||||
<view>
|
||||
<view class="conbox">
|
||||
<view class="container">
|
||||
<!-- 背景 -->
|
||||
<image src="../../static/background.png" class="cont" mode="aspectFill"></image>
|
||||
<view class="canvas-content">
|
||||
<view class="title">您好!</view>
|
||||
<view class="hint">欢迎来到民主测评平台</view>
|
||||
<view class="input-form">
|
||||
<input class="input-font" placeholder="请输入账号" type="text" v-model="username" placeholder-class="input-placeholder" />
|
||||
<input class="input-font" placeholder="请输入密码" type="password" v-model="password" placeholder-class="input-placeholder" />
|
||||
<!-- <view class="verify-box">
|
||||
<input class="input-verify" type="text" placeholder="请输入验证码" v-model="code" placeholder-class="input-placeholder" />
|
||||
<view class="verify-btn" @click="getCode">{{ showTips }}</view>
|
||||
</view> -->
|
||||
</view>
|
||||
<view class="btn" @click="login">
|
||||
<text>登录</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -28,8 +51,8 @@
|
||||
data() {
|
||||
return {
|
||||
appTitle: '民主测评平台',
|
||||
username: '',
|
||||
password: '',
|
||||
username: 'wanggeng',
|
||||
password: 'aaa111!!!',
|
||||
windowHeight: 0,
|
||||
appInfo: {
|
||||
deviceNo: '',
|
||||
@ -195,4 +218,136 @@
|
||||
margin-top: 180rpx;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.input-form {
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
|
||||
.canvas-content {
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
display: flex;
|
||||
top: 400rpx;
|
||||
padding: 20rpx;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
width: 80%;
|
||||
height: 600rpx;
|
||||
border-radius: 2%;
|
||||
/* box-shadow: 10rpx 10rpx 40rpx #F8F8F8; */
|
||||
background-size: cover;
|
||||
/* background-clip: padding-box; */
|
||||
/* background-color: #ffcb3f; */
|
||||
}
|
||||
|
||||
.btn {
|
||||
margin: 35rpx auto 22rpx auto;
|
||||
text-align: center;
|
||||
height: 84rpx;
|
||||
width: 95%;
|
||||
line-height: 84rpx;
|
||||
border-radius: 50rpx;
|
||||
color: #FFFFFF;
|
||||
background-color: #008B8B;
|
||||
}
|
||||
|
||||
.btn:active {
|
||||
margin: 35rpx auto 22rpx auto;
|
||||
text-align: center;
|
||||
height: 84rpx;
|
||||
width: 95%;
|
||||
line-height: 84rpx;
|
||||
border-radius: 50rpx;
|
||||
color: #000000;
|
||||
background-color: #008B8B;
|
||||
}
|
||||
|
||||
.input-font {
|
||||
padding-top: 10rpx;
|
||||
padding-bottom: 10rpx;
|
||||
margin-top: 25rpx;
|
||||
font-size: 30rpx;
|
||||
width: 100%;
|
||||
border-bottom: 1rpx solid #D3D3D3;
|
||||
}
|
||||
|
||||
.verify-box {
|
||||
margin-top: 30rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
border-bottom: 1rpx solid #D3D3D3;
|
||||
}
|
||||
|
||||
.verify-btn {
|
||||
min-width: 100rpx;
|
||||
text-align: center;
|
||||
font-size: 20rpx;
|
||||
color: #007AFF;
|
||||
padding: 10rpx;
|
||||
margin-bottom: 5rpx;
|
||||
border: 1rpx solid #007AFF;
|
||||
border-radius: 40rpx;
|
||||
align-self: flex-end;
|
||||
}
|
||||
|
||||
.verify-btn:active {
|
||||
font-size: 20rpx;
|
||||
min-width: 100rpx;
|
||||
text-align: center;
|
||||
color: #666666;
|
||||
padding: 10rpx;
|
||||
margin-bottom: 5rpx;
|
||||
border: 1rpx solid #666666;
|
||||
border-radius: 40rpx;
|
||||
align-self: flex-end;
|
||||
}
|
||||
|
||||
.canvas-content .title {
|
||||
color: #FFFFFF;
|
||||
font-size: 40rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.canvas-content .hint {
|
||||
color: #FFFFFF;
|
||||
font-size: 40rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.input-verify {
|
||||
padding-top: 10rpx;
|
||||
padding-bottom: 10rpx;
|
||||
font-size: 30rpx;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.conbox {
|
||||
background: #FFFFFF;
|
||||
width: 750rpx;
|
||||
height: 100vh;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.container,
|
||||
image.cont {
|
||||
width: 750rpx;
|
||||
min-height: 100vh;
|
||||
height: auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
image.cont {
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.input-placeholder {
|
||||
color: #6D6D72;
|
||||
font-size: 25rpx;
|
||||
}
|
||||
</style>
|
||||
|
12
unpackage/dist/dev/.tmp/app-plus/app.json
vendored
12
unpackage/dist/dev/.tmp/app-plus/app.json
vendored
@ -12,10 +12,10 @@
|
||||
"pages/mine/changeMineInfo"
|
||||
],
|
||||
"window": {
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationBarTextStyle": "white",
|
||||
"navigationBarTitleText": "uni-app",
|
||||
"navigationBarBackgroundColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8"
|
||||
"navigationBarBackgroundColor": "#008B8B",
|
||||
"backgroundColor": "#008B8B"
|
||||
},
|
||||
"tabBar": {
|
||||
"list": [
|
||||
@ -25,12 +25,6 @@
|
||||
"iconPath": "static/tabbar/ic_his_no.png",
|
||||
"selectedIconPath": "static/tabbar/ic_his_sel.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/evaluation/mineEvPage",
|
||||
"text": "历史任务",
|
||||
"iconPath": "static/tabbar/ic_cur_no.png",
|
||||
"selectedIconPath": "static/tabbar/ic_cur_sel.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/mine/index",
|
||||
"text": "我的",
|
||||
|
File diff suppressed because one or more lines are too long
10
unpackage/dist/dev/.tmp/app-plus/manifest.json
vendored
10
unpackage/dist/dev/.tmp/app-plus/manifest.json
vendored
@ -41,8 +41,8 @@
|
||||
},
|
||||
"statusbar": {
|
||||
"immersed": "supportedDevice",
|
||||
"style": "dark",
|
||||
"background": "#F8F8F8"
|
||||
"style": "light",
|
||||
"background": "#008B8B"
|
||||
},
|
||||
"usingComponents": true,
|
||||
"nvueCompiler": "uni-app",
|
||||
@ -139,12 +139,6 @@
|
||||
"iconPath": "static/tabbar/ic_his_no.png",
|
||||
"selectedIconPath": "static/tabbar/ic_his_sel.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/evaluation/mineEvPage",
|
||||
"text": "历史任务",
|
||||
"iconPath": "static/tabbar/ic_cur_no.png",
|
||||
"selectedIconPath": "static/tabbar/ic_cur_sel.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/mine/index",
|
||||
"text": "我的",
|
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<view class="content"><uni-list class="task-content" vue-id="1" bind:__l="__l" vue-slots="{{['default']}}"><block wx:for="{{$root.l0}}" wx:for-item="evaluation" wx:for-index="index" wx:key="index"><uni-list-item vue-id="{{('2-'+index)+','+('1')}}" showArrow="{{false}}" data-taskid="{{evaluation.$orig.taskId}}" data-event-opts="{{[['^tap',[['itemClick',['$0'],[[['evaluations','',index]]]]]]]}}" bind:tap="__e" bind:__l="__l" vue-slots="{{['default']}}"><view class="task-content-item task-name">{{index+1+"."+evaluation.$orig.taskName}}</view><view class="task-content-item evalutaion-name">{{evaluation.$orig.evaluationName}}</view><view style="display:flex;flex-direction:row;justify-content:space-between;align-items:center;"><view>{{evaluation.$orig.taskRecordSubmitCount}}</view><view><view class="task-content-item task-time">{{evaluation.g0+" ~\n\t\t\t\t\t\t"+evaluation.g1}}</view><view class="task-content-item task-type"><block wx:if="{{evaluation.$orig.taskType===1}}"><text>{{evaluation.g2[1]+" [测评部门]"}}</text></block><block wx:if="{{evaluation.$orig.taskType===2}}"><text>{{evaluation.g3[2]+" [测评人员]"}}</text></block></view></view></view></uni-list-item></block></uni-list></view>
|
||||
<view class="content"><block wx:for="{{$root.l0}}" wx:for-item="evaluation" wx:for-index="index" wx:key="index"><view data-taskid="{{evaluation.$orig.taskId}}" data-event-opts="{{[['tap',[['itemClick',['$0'],[[['evaluations','',index]]]]]]]}}" bindtap="__e"><view class="item-li"><view class="task-content-item task-name">{{index+1+"."+evaluation.$orig.taskName}}</view><view class="task-content-item evalutaion-name">{{evaluation.$orig.evaluationName}}</view><view style="display:flex;flex-direction:row;justify-content:space-between;align-items:center;"><view>{{evaluation.$orig.taskRecordSubmitCount}}</view><view><view class="task-content-item task-time">{{evaluation.g0+" ~\n\t\t\t\t\t\t"+evaluation.g1}}</view><view class="task-content-item task-type"><block wx:if="{{evaluation.$orig.taskType===1}}"><text>{{evaluation.g2[1]+" [测评部门]"}}</text></block><block wx:if="{{evaluation.$orig.taskType===2}}"><text>{{evaluation.g3[2]+" [测评人员]"}}</text></block></view></view></view></view></view></block></view>
|
@ -1,5 +1,34 @@
|
||||
|
||||
.content {
|
||||
.task-content {}
|
||||
.task-content .task-content-item {
|
||||
padding: 5rpx 0;
|
||||
}
|
||||
.task-content .task-count {
|
||||
text-align: left|center;
|
||||
font-size: 25rpx;
|
||||
}
|
||||
.task-content-hover {
|
||||
background-color: #effaff;
|
||||
}
|
||||
.task-content:last-child {
|
||||
border: none;
|
||||
}
|
||||
.task-content .task-name {
|
||||
font-size: 30rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
.task-content .evalutaion-name {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.task-content .task-time {
|
||||
text-align: right;
|
||||
font-size: 25rpx;
|
||||
}
|
||||
.task-content .task-type {
|
||||
text-align: right;
|
||||
font-size: 25rpx;
|
||||
}
|
||||
.item-li {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
@ -7,36 +36,20 @@
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
flex-direction: column;
|
||||
/* align-items: center;
|
||||
justify-content: center; */
|
||||
}
|
||||
.content .task-content {}
|
||||
.content .task-content .task-content-item {
|
||||
padding: 5rpx 0;
|
||||
}
|
||||
.content .task-content .task-count {
|
||||
text-align: left|center;
|
||||
font-size: 25rpx;
|
||||
}
|
||||
.content .task-content-hover {
|
||||
background-color: #effaff;
|
||||
}
|
||||
.content .task-content:last-child {
|
||||
border: none;
|
||||
}
|
||||
.content .task-content .task-name {
|
||||
font-size: 30rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
.content .task-content .evalutaion-name {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.content .task-content .task-time {
|
||||
text-align: right;
|
||||
font-size: 25rpx;
|
||||
}
|
||||
.content .task-content .task-type {
|
||||
text-align: right;
|
||||
font-size: 25rpx;
|
||||
height: auto;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: start;
|
||||
-webkit-align-items: flex-start;
|
||||
align-items: flex-start;
|
||||
min-width: 50%;
|
||||
width: 90%;
|
||||
min-height: 50px;
|
||||
margin: 10px;
|
||||
background: #FFFFFF;
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 5rpx 5rpx 15px #d9d9d9;
|
||||
}
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
<view class="content" style="{{'height:'+(windowHeight+'px')+';'}}"><view class="app-title"><text>{{appTitle}}</text></view><image class="cont" src="../../static/background.png" mode="aspectFill"></image><form data-event-opts="{{[['submit',[['formSubmit',['$event']]]],['reset',[['formReset',['$event']]]]]}}" bindsubmit="__e" bindreset="__e"><view class="uni-form-item"><view class="title">用户名</view><input class="uni-input" placeholder="请输入用户名" data-event-opts="{{[['input',[['__set_model',['','username','$event',[]]]]]]}}" value="{{username}}" bindinput="__e"/></view><view class="uni-form-item"><view class="title">密码</view><input class="uni-input" password placeholder="请输入密码" data-event-opts="{{[['input',[['__set_model',['','password','$event',[]]]]]]}}" value="{{password}}" bindinput="__e"/></view><view class="uni-form-item"><button class="login" type="primary" data-event-opts="{{[['tap',[['login',['$event']]]]]}}" bindtap="__e">登录</button></view></form></view>
|
||||
<view><view class="conbox"><view class="container"><image class="cont" src="../../static/background.png" mode="aspectFill"></image><view class="canvas-content"><view class="title">您好!</view><view class="hint">欢迎来到民主测评平台</view><view class="input-form"><input class="input-font" placeholder="请输入账号" type="text" placeholder-class="input-placeholder" data-event-opts="{{[['input',[['__set_model',['','username','$event',[]]]]]]}}" value="{{username}}" bindinput="__e"/><input class="input-font" placeholder="请输入密码" type="password" placeholder-class="input-placeholder" data-event-opts="{{[['input',[['__set_model',['','password','$event',[]]]]]]}}" value="{{password}}" bindinput="__e"/></view><view data-event-opts="{{[['tap',[['login',['$event']]]]]}}" class="btn" bindtap="__e"><text>登录</text></view></view></view></view></view>
|
@ -52,4 +52,139 @@ image.cont {
|
||||
margin-top: 180rpx;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.input-form {
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
.canvas-content {
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
top: 400rpx;
|
||||
padding: 20rpx;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
justify-content: center;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
flex-direction: column;
|
||||
width: 80%;
|
||||
height: 600rpx;
|
||||
border-radius: 2%;
|
||||
/* box-shadow: 10rpx 10rpx 40rpx #F8F8F8; */
|
||||
background-size: cover;
|
||||
/* background-clip: padding-box; */
|
||||
/* background-color: #ffcb3f; */
|
||||
}
|
||||
.btn {
|
||||
margin: 35rpx auto 22rpx auto;
|
||||
text-align: center;
|
||||
height: 84rpx;
|
||||
width: 95%;
|
||||
line-height: 84rpx;
|
||||
border-radius: 50rpx;
|
||||
color: #FFFFFF;
|
||||
background-color: #008B8B;
|
||||
}
|
||||
.btn:active {
|
||||
margin: 35rpx auto 22rpx auto;
|
||||
text-align: center;
|
||||
height: 84rpx;
|
||||
width: 95%;
|
||||
line-height: 84rpx;
|
||||
border-radius: 50rpx;
|
||||
color: #000000;
|
||||
background-color: #008B8B;
|
||||
}
|
||||
.input-font {
|
||||
padding-top: 10rpx;
|
||||
padding-bottom: 10rpx;
|
||||
margin-top: 25rpx;
|
||||
font-size: 30rpx;
|
||||
width: 100%;
|
||||
border-bottom: 1rpx solid #D3D3D3;
|
||||
}
|
||||
.verify-box {
|
||||
margin-top: 30rpx;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
justify-content: space-between;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
border-bottom: 1rpx solid #D3D3D3;
|
||||
}
|
||||
.verify-btn {
|
||||
min-width: 100rpx;
|
||||
text-align: center;
|
||||
font-size: 20rpx;
|
||||
color: #007AFF;
|
||||
padding: 10rpx;
|
||||
margin-bottom: 5rpx;
|
||||
border: 1rpx solid #007AFF;
|
||||
border-radius: 40rpx;
|
||||
-webkit-align-self: flex-end;
|
||||
align-self: flex-end;
|
||||
}
|
||||
.verify-btn:active {
|
||||
font-size: 20rpx;
|
||||
min-width: 100rpx;
|
||||
text-align: center;
|
||||
color: #666666;
|
||||
padding: 10rpx;
|
||||
margin-bottom: 5rpx;
|
||||
border: 1rpx solid #666666;
|
||||
border-radius: 40rpx;
|
||||
-webkit-align-self: flex-end;
|
||||
align-self: flex-end;
|
||||
}
|
||||
.canvas-content .title {
|
||||
color: #FFFFFF;
|
||||
font-size: 40rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
.canvas-content .hint {
|
||||
color: #FFFFFF;
|
||||
font-size: 40rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
.input-verify {
|
||||
padding-top: 10rpx;
|
||||
padding-bottom: 10rpx;
|
||||
font-size: 30rpx;
|
||||
width: 60%;
|
||||
}
|
||||
.conbox {
|
||||
background: #FFFFFF;
|
||||
width: 750rpx;
|
||||
height: 100vh;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
.container,
|
||||
image.cont {
|
||||
width: 750rpx;
|
||||
min-height: 100vh;
|
||||
height: auto;
|
||||
position: relative;
|
||||
}
|
||||
image.cont {
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
z-index: 0;
|
||||
}
|
||||
.input-placeholder {
|
||||
color: #6D6D72;
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
var __wxConfig = {"debug":false,"appname":"民主测评","entryPagePath":"pages/login/index.html","page":{"pages/login/index.html":{"window":{"navigationStyle":"custom","usingComponents":{}}},"pages/index/index.html":{"window":{"navigationBarTitleText":"当前任务","enablePullDownRefresh":true,"usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item","uni-load-more":"/components/uni-load-more/uni-load-more"}}},"pages/mine/index.html":{"window":{"navigationBarTitleText":"我的","usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item"}}},"pages/evaluation/index.html":{"window":{"navigationBarTitleText":"测评","usingComponents":{}}},"pages/evaluation/doEvaluation.html":{"window":{"navigationBarTitleText":"测评","usingComponents":{}}},"pages/mine/changePwdPage.html":{"window":{"navigationBarTitleText":"修改密码","usingComponents":{}}},"pages/evaluation/mineEvPage.html":{"window":{"navigationBarTitleText":"历史任务","enablePullDownRefresh":true,"usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item","uni-load-more":"/components/uni-load-more/uni-load-more"}}},"pages/evaluation/missionDetail.html":{"window":{"navigationBarTitleText":"详情","usingComponents":{}}},"pages/mine/changeMineInfo.html":{"window":{"navigationBarTitleText":"修改个人信息","usingComponents":{}}}},"global":{"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"}},"tabBar":{"color":"","selectedColor":"","backgroundColor":"","borderStyle":"black","list":[{"pagePath":"pages/index/index.html","text":"当前任务","iconPath":"static/tabbar/ic_his_no.png","selectedIconPath":"static/tabbar/ic_his_sel.png"},{"pagePath":"pages/evaluation/mineEvPage.html","text":"历史任务","iconPath":"static/tabbar/ic_cur_no.png","selectedIconPath":"static/tabbar/ic_cur_sel.png"},{"pagePath":"pages/mine/index.html","text":"我的","iconPath":"static/tabbar/ic_mine_no.png","selectedIconPath":"static/tabbar/ic_mine_sel.png"}],"position":"bottom"},"networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"platform":"devtools","pages":["pages/login/index","pages/index/index","pages/mine/index","pages/evaluation/index","pages/evaluation/doEvaluation","pages/mine/changePwdPage","pages/evaluation/mineEvPage","pages/evaluation/missionDetail","pages/mine/changePwdPage","pages/mine/changeMineInfo"],"nvueCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"compilerVersion":"2.4.6","usingComponents":{}}
|
||||
var __wxConfig = {"debug":false,"appname":"民主测评","entryPagePath":"pages/login/index.html","page":{"pages/login/index.html":{"window":{"navigationStyle":"custom","usingComponents":{}}},"pages/index/index.html":{"window":{"navigationBarTitleText":"当前任务","enablePullDownRefresh":true,"usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item","uni-load-more":"/components/uni-load-more/uni-load-more"}}},"pages/mine/index.html":{"window":{"navigationBarTitleText":"我的","usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item"}}},"pages/evaluation/index.html":{"window":{"navigationBarTitleText":"测评","usingComponents":{}}},"pages/evaluation/doEvaluation.html":{"window":{"navigationBarTitleText":"测评","usingComponents":{}}},"pages/mine/changePwdPage.html":{"window":{"navigationBarTitleText":"修改密码","usingComponents":{}}},"pages/evaluation/mineEvPage.html":{"window":{"navigationBarTitleText":"历史任务","enablePullDownRefresh":true,"usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item","uni-load-more":"/components/uni-load-more/uni-load-more"}}},"pages/evaluation/missionDetail.html":{"window":{"navigationBarTitleText":"详情","usingComponents":{}}},"pages/mine/changeMineInfo.html":{"window":{"navigationBarTitleText":"修改个人信息","usingComponents":{}}}},"global":{"window":{"navigationBarTextStyle":"white","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#008B8B","backgroundColor":"#008B8B"}},"tabBar":{"color":"","selectedColor":"","backgroundColor":"","borderStyle":"black","list":[{"pagePath":"pages/index/index.html","text":"当前任务","iconPath":"static/tabbar/ic_his_no.png","selectedIconPath":"static/tabbar/ic_his_sel.png"},{"pagePath":"pages/mine/index.html","text":"我的","iconPath":"static/tabbar/ic_mine_no.png","selectedIconPath":"static/tabbar/ic_mine_sel.png"}],"position":"bottom"},"networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"platform":"devtools","pages":["pages/login/index","pages/index/index","pages/mine/index","pages/evaluation/index","pages/evaluation/doEvaluation","pages/mine/changePwdPage","pages/evaluation/mineEvPage","pages/evaluation/missionDetail","pages/mine/changePwdPage","pages/mine/changeMineInfo"],"nvueCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"compilerVersion":"2.4.6","usingComponents":{}}
|
||||
</script>
|
||||
<script>
|
||||
var __id__ = '';
|
||||
|
2
unpackage/dist/dev/app-plus/app-config.js
vendored
2
unpackage/dist/dev/app-plus/app-config.js
vendored
@ -1 +1 @@
|
||||
"use weex:vue";var __wxConfig = {"debug":false,"appname":"民主测评","entryPagePath":"pages/login/index.html","page":{"pages/login/index.html":{"window":{"navigationStyle":"custom","usingComponents":{}}},"pages/index/index.html":{"window":{"navigationBarTitleText":"当前任务","enablePullDownRefresh":true,"usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item","uni-load-more":"/components/uni-load-more/uni-load-more"}}},"pages/mine/index.html":{"window":{"navigationBarTitleText":"我的","usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item"}}},"pages/evaluation/index.html":{"window":{"navigationBarTitleText":"测评","usingComponents":{}}},"pages/evaluation/doEvaluation.html":{"window":{"navigationBarTitleText":"测评","usingComponents":{}}},"pages/mine/changePwdPage.html":{"window":{"navigationBarTitleText":"修改密码","usingComponents":{}}},"pages/evaluation/mineEvPage.html":{"window":{"navigationBarTitleText":"历史任务","enablePullDownRefresh":true,"usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item","uni-load-more":"/components/uni-load-more/uni-load-more"}}},"pages/evaluation/missionDetail.html":{"window":{"navigationBarTitleText":"详情","usingComponents":{}}},"pages/mine/changeMineInfo.html":{"window":{"navigationBarTitleText":"修改个人信息","usingComponents":{}}}},"global":{"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"}},"tabBar":{"color":"","selectedColor":"","backgroundColor":"","borderStyle":"black","list":[{"pagePath":"pages/index/index.html","text":"当前任务","iconPath":"static/tabbar/ic_his_no.png","selectedIconPath":"static/tabbar/ic_his_sel.png"},{"pagePath":"pages/evaluation/mineEvPage.html","text":"历史任务","iconPath":"static/tabbar/ic_cur_no.png","selectedIconPath":"static/tabbar/ic_cur_sel.png"},{"pagePath":"pages/mine/index.html","text":"我的","iconPath":"static/tabbar/ic_mine_no.png","selectedIconPath":"static/tabbar/ic_mine_sel.png"}],"position":"bottom"},"networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"platform":"devtools","pages":["pages/login/index","pages/index/index","pages/mine/index","pages/evaluation/index","pages/evaluation/doEvaluation","pages/mine/changePwdPage","pages/evaluation/mineEvPage","pages/evaluation/missionDetail","pages/mine/changePwdPage","pages/mine/changeMineInfo"],"nvueCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"compilerVersion":"2.4.6","usingComponents":{}};
|
||||
"use weex:vue";var __wxConfig = {"debug":false,"appname":"民主测评","entryPagePath":"pages/login/index.html","page":{"pages/login/index.html":{"window":{"navigationStyle":"custom","usingComponents":{}}},"pages/index/index.html":{"window":{"navigationBarTitleText":"当前任务","enablePullDownRefresh":true,"usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item","uni-load-more":"/components/uni-load-more/uni-load-more"}}},"pages/mine/index.html":{"window":{"navigationBarTitleText":"我的","usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item"}}},"pages/evaluation/index.html":{"window":{"navigationBarTitleText":"测评","usingComponents":{}}},"pages/evaluation/doEvaluation.html":{"window":{"navigationBarTitleText":"测评","usingComponents":{}}},"pages/mine/changePwdPage.html":{"window":{"navigationBarTitleText":"修改密码","usingComponents":{}}},"pages/evaluation/mineEvPage.html":{"window":{"navigationBarTitleText":"历史任务","enablePullDownRefresh":true,"usingComponents":{"uni-list":"/components/uni-list/uni-list","uni-list-item":"/components/uni-list-item/uni-list-item","uni-load-more":"/components/uni-load-more/uni-load-more"}}},"pages/evaluation/missionDetail.html":{"window":{"navigationBarTitleText":"详情","usingComponents":{}}},"pages/mine/changeMineInfo.html":{"window":{"navigationBarTitleText":"修改个人信息","usingComponents":{}}}},"global":{"window":{"navigationBarTextStyle":"white","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#008B8B","backgroundColor":"#008B8B"}},"tabBar":{"color":"","selectedColor":"","backgroundColor":"","borderStyle":"black","list":[{"pagePath":"pages/index/index.html","text":"当前任务","iconPath":"static/tabbar/ic_his_no.png","selectedIconPath":"static/tabbar/ic_his_sel.png"},{"pagePath":"pages/mine/index.html","text":"我的","iconPath":"static/tabbar/ic_mine_no.png","selectedIconPath":"static/tabbar/ic_mine_sel.png"}],"position":"bottom"},"networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"platform":"devtools","pages":["pages/login/index","pages/index/index","pages/mine/index","pages/evaluation/index","pages/evaluation/doEvaluation","pages/mine/changePwdPage","pages/evaluation/mineEvPage","pages/evaluation/missionDetail","pages/mine/changePwdPage","pages/mine/changeMineInfo"],"nvueCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"compilerVersion":"2.4.6","usingComponents":{}};
|
80
unpackage/dist/dev/app-plus/app-service.js
vendored
80
unpackage/dist/dev/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
431
unpackage/dist/dev/app-plus/app-view.js
vendored
431
unpackage/dist/dev/app-plus/app-view.js
vendored
@ -1223,21 +1223,14 @@ if( __WXML_GLOBAL__.ops_cached.$gwx_10)return __WXML_GLOBAL__.ops_cached.$gwx_10
|
||||
__WXML_GLOBAL__.ops_cached.$gwx_10=[];
|
||||
(function(z){var a=11;function Z(ops){z.push(ops)}
|
||||
Z([3,'content'])
|
||||
Z([3,'__l'])
|
||||
Z([3,'task-content'])
|
||||
Z([3,'1'])
|
||||
Z([[4],[[5],[1,'default']]])
|
||||
Z([3,'index'])
|
||||
Z([3,'evaluation'])
|
||||
Z([[6],[[7],[3,'$root']],[3,'l0']])
|
||||
Z(z[5])
|
||||
Z(z[1])
|
||||
Z([3,'__e'])
|
||||
Z([[4],[[5],[[4],[[5],[[5],[1,'^tap']],[[4],[[5],[[4],[[5],[[5],[[5],[1,'itemClick']],[[4],[[5],[1,'$0']]]],[[4],[[5],[[4],[[5],[[4],[[5],[[5],[[5],[1,'evaluations']],[1,'']],[[7],[3,'index']]]]]]]]]]]]]]]])
|
||||
Z([[4],[[5],[[4],[[5],[[5],[1,'tap']],[[4],[[5],[[4],[[5],[[5],[[5],[1,'itemClick']],[[4],[[5],[1,'$0']]]],[[4],[[5],[[4],[[5],[[4],[[5],[[5],[[5],[1,'evaluations']],[1,'']],[[7],[3,'index']]]]]]]]]]]]]]]])
|
||||
Z([[6],[[6],[[7],[3,'evaluation']],[3,'$orig']],[3,'taskId']])
|
||||
Z([1,false])
|
||||
Z([[2,'+'],[[2,'+'],[[2,'+'],[1,'2-'],[[7],[3,'index']]],[1,',']],[1,'1']])
|
||||
Z(z[4])
|
||||
Z([3,'item-li'])
|
||||
Z([3,'task-content-item task-name'])
|
||||
Z([a,[[2,'+'],[[2,'+'],[[2,'+'],[[7],[3,'index']],[1,1]],[1,'.']],[[6],[[6],[[7],[3,'evaluation']],[3,'$orig']],[3,'taskName']]]])
|
||||
Z([3,'task-content-item evalutaion-name'])
|
||||
@ -1257,37 +1250,34 @@ function gz$gwx_11(){
|
||||
if( __WXML_GLOBAL__.ops_cached.$gwx_11)return __WXML_GLOBAL__.ops_cached.$gwx_11
|
||||
__WXML_GLOBAL__.ops_cached.$gwx_11=[];
|
||||
(function(z){var a=11;function Z(ops){z.push(ops)}
|
||||
Z([3,'content'])
|
||||
Z([[2,'+'],[[2,'+'],[1,'height:'],[[2,'+'],[[7],[3,'windowHeight']],[1,'px']]],[1,';']])
|
||||
Z([3,'app-title'])
|
||||
Z([a,[[7],[3,'appTitle']]])
|
||||
Z([3,'conbox'])
|
||||
Z([3,'container'])
|
||||
Z([3,'cont'])
|
||||
Z([3,'aspectFill'])
|
||||
Z([3,'../../static/background.png'])
|
||||
Z([3,'__e'])
|
||||
Z(z[7])
|
||||
Z([[4],[[5],[[5],[[4],[[5],[[5],[1,'submit']],[[4],[[5],[[4],[[5],[[5],[1,'formSubmit']],[[4],[[5],[1,'$event']]]]]]]]]],[[4],[[5],[[5],[1,'reset']],[[4],[[5],[[4],[[5],[[5],[1,'formReset']],[[4],[[5],[1,'$event']]]]]]]]]]])
|
||||
Z([3,'uni-form-item'])
|
||||
Z([3,'canvas-content'])
|
||||
Z([3,'title'])
|
||||
Z([3,'用户名'])
|
||||
Z(z[7])
|
||||
Z([3,'uni-input'])
|
||||
Z([3,'您好!'])
|
||||
Z([3,'hint'])
|
||||
Z([3,'欢迎来到民主测评平台'])
|
||||
Z([3,'input-form'])
|
||||
Z([3,'__e'])
|
||||
Z([3,'input-font'])
|
||||
Z([[4],[[5],[[4],[[5],[[5],[1,'input']],[[4],[[5],[[4],[[5],[[5],[1,'__set_model']],[[4],[[5],[[5],[[5],[[5],[1,'']],[1,'username']],[1,'$event']],[[4],[[5]]]]]]]]]]]]])
|
||||
Z([3,'请输入用户名'])
|
||||
Z([3,'请输入账号'])
|
||||
Z([3,'input-placeholder'])
|
||||
Z([3,'text'])
|
||||
Z([[7],[3,'username']])
|
||||
Z(z[10])
|
||||
Z(z[11])
|
||||
Z([3,'密码'])
|
||||
Z(z[7])
|
||||
Z(z[14])
|
||||
Z(z[12])
|
||||
Z([[4],[[5],[[4],[[5],[[5],[1,'input']],[[4],[[5],[[4],[[5],[[5],[1,'__set_model']],[[4],[[5],[[5],[[5],[[5],[1,'']],[1,'password']],[1,'$event']],[[4],[[5]]]]]]]]]]]]])
|
||||
Z([3,'请输入密码'])
|
||||
Z(z[15])
|
||||
Z([3,'password'])
|
||||
Z([[7],[3,'password']])
|
||||
Z(z[10])
|
||||
Z(z[7])
|
||||
Z([3,'login'])
|
||||
Z(z[11])
|
||||
Z([3,'btn'])
|
||||
Z([[4],[[5],[[4],[[5],[[5],[1,'tap']],[[4],[[5],[[4],[[5],[[5],[1,'login']],[[4],[[5],[1,'$event']]]]]]]]]]])
|
||||
Z([3,'primary'])
|
||||
Z([3,'登录'])
|
||||
})(__WXML_GLOBAL__.ops_cached.$gwx_11);return __WXML_GLOBAL__.ops_cached.$gwx_11
|
||||
}
|
||||
@ -1677,48 +1667,49 @@ var m9=function(e,s,r,gg){
|
||||
var z=gz$gwx_10()
|
||||
var lIC=_n('view')
|
||||
_rz(z,lIC,'class',0,e,s,gg)
|
||||
var aJC=_mz(z,'uni-list',['bind:__l',1,'class',1,'vueId',2,'vueSlots',3],[],e,s,gg)
|
||||
var tKC=_v()
|
||||
_(aJC,tKC)
|
||||
var eLC=function(oNC,bMC,xOC,gg){
|
||||
var fQC=_mz(z,'uni-list-item',['bind:__l',9,'bind:tap',1,'data-event-opts',2,'data-taskid',3,'showArrow',4,'vueId',5,'vueSlots',6],[],oNC,bMC,gg)
|
||||
var aJC=_v()
|
||||
_(lIC,aJC)
|
||||
var tKC=function(bMC,eLC,oNC,gg){
|
||||
var oPC=_mz(z,'view',['bindtap',5,'data-event-opts',1,'data-taskid',2],[],bMC,eLC,gg)
|
||||
var fQC=_n('view')
|
||||
_rz(z,fQC,'class',8,bMC,eLC,gg)
|
||||
var cRC=_n('view')
|
||||
_rz(z,cRC,'class',16,oNC,bMC,gg)
|
||||
var hSC=_oz(z,17,oNC,bMC,gg)
|
||||
_rz(z,cRC,'class',9,bMC,eLC,gg)
|
||||
var hSC=_oz(z,10,bMC,eLC,gg)
|
||||
_(cRC,hSC)
|
||||
_(fQC,cRC)
|
||||
var oTC=_n('view')
|
||||
_rz(z,oTC,'class',18,oNC,bMC,gg)
|
||||
var cUC=_oz(z,19,oNC,bMC,gg)
|
||||
_rz(z,oTC,'class',11,bMC,eLC,gg)
|
||||
var cUC=_oz(z,12,bMC,eLC,gg)
|
||||
_(oTC,cUC)
|
||||
_(fQC,oTC)
|
||||
var oVC=_n('view')
|
||||
_rz(z,oVC,'style',20,oNC,bMC,gg)
|
||||
_rz(z,oVC,'style',13,bMC,eLC,gg)
|
||||
var lWC=_n('view')
|
||||
var aXC=_oz(z,21,oNC,bMC,gg)
|
||||
var aXC=_oz(z,14,bMC,eLC,gg)
|
||||
_(lWC,aXC)
|
||||
_(oVC,lWC)
|
||||
var tYC=_n('view')
|
||||
var eZC=_n('view')
|
||||
_rz(z,eZC,'class',22,oNC,bMC,gg)
|
||||
var b1C=_oz(z,23,oNC,bMC,gg)
|
||||
_rz(z,eZC,'class',15,bMC,eLC,gg)
|
||||
var b1C=_oz(z,16,bMC,eLC,gg)
|
||||
_(eZC,b1C)
|
||||
_(tYC,eZC)
|
||||
var o2C=_n('view')
|
||||
_rz(z,o2C,'class',24,oNC,bMC,gg)
|
||||
_rz(z,o2C,'class',17,bMC,eLC,gg)
|
||||
var x3C=_v()
|
||||
_(o2C,x3C)
|
||||
if(_oz(z,25,oNC,bMC,gg)){x3C.wxVkey=1
|
||||
if(_oz(z,18,bMC,eLC,gg)){x3C.wxVkey=1
|
||||
var f5C=_n('text')
|
||||
var c6C=_oz(z,26,oNC,bMC,gg)
|
||||
var c6C=_oz(z,19,bMC,eLC,gg)
|
||||
_(f5C,c6C)
|
||||
_(x3C,f5C)
|
||||
}
|
||||
var o4C=_v()
|
||||
_(o2C,o4C)
|
||||
if(_oz(z,27,oNC,bMC,gg)){o4C.wxVkey=1
|
||||
if(_oz(z,20,bMC,eLC,gg)){o4C.wxVkey=1
|
||||
var h7C=_n('text')
|
||||
var o8C=_oz(z,28,oNC,bMC,gg)
|
||||
var o8C=_oz(z,21,bMC,eLC,gg)
|
||||
_(h7C,o8C)
|
||||
_(o4C,h7C)
|
||||
}
|
||||
@ -1727,12 +1718,12 @@ o4C.wxXCkey=1
|
||||
_(tYC,o2C)
|
||||
_(oVC,tYC)
|
||||
_(fQC,oVC)
|
||||
_(xOC,fQC)
|
||||
return xOC
|
||||
_(oPC,fQC)
|
||||
_(oNC,oPC)
|
||||
return oNC
|
||||
}
|
||||
tKC.wxXCkey=4
|
||||
_2z(z,7,eLC,e,s,gg,tKC,'evaluation','index','index')
|
||||
_(lIC,aJC)
|
||||
aJC.wxXCkey=2
|
||||
_2z(z,3,tKC,e,s,gg,aJC,'evaluation','index','index')
|
||||
_(r,lIC)
|
||||
return r
|
||||
}
|
||||
@ -1740,45 +1731,41 @@ e_[x[9]]={f:m9,j:[],i:[],ti:[],ic:[]}
|
||||
d_[x[10]]={}
|
||||
var m10=function(e,s,r,gg){
|
||||
var z=gz$gwx_11()
|
||||
var o0C=_mz(z,'view',['class',0,'style',1],[],e,s,gg)
|
||||
var o0C=_n('view')
|
||||
var lAD=_n('view')
|
||||
_rz(z,lAD,'class',2,e,s,gg)
|
||||
var aBD=_n('text')
|
||||
var tCD=_oz(z,3,e,s,gg)
|
||||
_rz(z,lAD,'class',0,e,s,gg)
|
||||
var aBD=_n('view')
|
||||
_rz(z,aBD,'class',1,e,s,gg)
|
||||
var tCD=_mz(z,'image',['class',2,'mode',1,'src',2],[],e,s,gg)
|
||||
_(aBD,tCD)
|
||||
var eDD=_n('view')
|
||||
_rz(z,eDD,'class',5,e,s,gg)
|
||||
var bED=_n('view')
|
||||
_rz(z,bED,'class',6,e,s,gg)
|
||||
var oFD=_oz(z,7,e,s,gg)
|
||||
_(bED,oFD)
|
||||
_(eDD,bED)
|
||||
var xGD=_n('view')
|
||||
_rz(z,xGD,'class',8,e,s,gg)
|
||||
var oHD=_oz(z,9,e,s,gg)
|
||||
_(xGD,oHD)
|
||||
_(eDD,xGD)
|
||||
var fID=_n('view')
|
||||
_rz(z,fID,'class',10,e,s,gg)
|
||||
var cJD=_mz(z,'input',['bindinput',11,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
|
||||
_(fID,cJD)
|
||||
var hKD=_mz(z,'input',['bindinput',18,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
|
||||
_(fID,hKD)
|
||||
_(eDD,fID)
|
||||
var oLD=_mz(z,'view',['bindtap',25,'class',1,'data-event-opts',2],[],e,s,gg)
|
||||
var cMD=_n('text')
|
||||
var oND=_oz(z,28,e,s,gg)
|
||||
_(cMD,oND)
|
||||
_(oLD,cMD)
|
||||
_(eDD,oLD)
|
||||
_(aBD,eDD)
|
||||
_(lAD,aBD)
|
||||
_(o0C,lAD)
|
||||
var eDD=_mz(z,'image',['class',4,'mode',1,'src',2],[],e,s,gg)
|
||||
_(o0C,eDD)
|
||||
var bED=_mz(z,'form',['bindreset',7,'bindsubmit',1,'data-event-opts',2],[],e,s,gg)
|
||||
var oFD=_n('view')
|
||||
_rz(z,oFD,'class',10,e,s,gg)
|
||||
var xGD=_n('view')
|
||||
_rz(z,xGD,'class',11,e,s,gg)
|
||||
var oHD=_oz(z,12,e,s,gg)
|
||||
_(xGD,oHD)
|
||||
_(oFD,xGD)
|
||||
var fID=_mz(z,'input',['bindinput',13,'class',1,'data-event-opts',2,'placeholder',3,'value',4],[],e,s,gg)
|
||||
_(oFD,fID)
|
||||
_(bED,oFD)
|
||||
var cJD=_n('view')
|
||||
_rz(z,cJD,'class',18,e,s,gg)
|
||||
var hKD=_n('view')
|
||||
_rz(z,hKD,'class',19,e,s,gg)
|
||||
var oLD=_oz(z,20,e,s,gg)
|
||||
_(hKD,oLD)
|
||||
_(cJD,hKD)
|
||||
var cMD=_mz(z,'input',['password',-1,'bindinput',21,'class',1,'data-event-opts',2,'placeholder',3,'value',4],[],e,s,gg)
|
||||
_(cJD,cMD)
|
||||
_(bED,cJD)
|
||||
var oND=_n('view')
|
||||
_rz(z,oND,'class',26,e,s,gg)
|
||||
var lOD=_mz(z,'button',['bindtap',27,'class',1,'data-event-opts',2,'type',3],[],e,s,gg)
|
||||
var aPD=_oz(z,31,e,s,gg)
|
||||
_(lOD,aPD)
|
||||
_(oND,lOD)
|
||||
_(bED,oND)
|
||||
_(o0C,bED)
|
||||
_(r,o0C)
|
||||
return r
|
||||
}
|
||||
@ -1786,163 +1773,163 @@ e_[x[10]]={f:m10,j:[],i:[],ti:[],ic:[]}
|
||||
d_[x[11]]={}
|
||||
var m11=function(e,s,r,gg){
|
||||
var z=gz$gwx_12()
|
||||
var aPD=_n('view')
|
||||
var tQD=_n('view')
|
||||
_rz(z,tQD,'class',0,e,s,gg)
|
||||
var eRD=_n('view')
|
||||
_rz(z,eRD,'class',1,e,s,gg)
|
||||
var bSD=_n('view')
|
||||
_rz(z,bSD,'class',0,e,s,gg)
|
||||
var oTD=_n('view')
|
||||
_rz(z,oTD,'class',1,e,s,gg)
|
||||
var xUD=_n('view')
|
||||
var oVD=_oz(z,2,e,s,gg)
|
||||
_(xUD,oVD)
|
||||
_(oTD,xUD)
|
||||
var fWD=_mz(z,'input',['bindinput',3,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
|
||||
_(oTD,fWD)
|
||||
var oTD=_oz(z,2,e,s,gg)
|
||||
_(bSD,oTD)
|
||||
var cXD=_n('view')
|
||||
_rz(z,cXD,'class',9,e,s,gg)
|
||||
_(bSD,cXD)
|
||||
var hYD=_n('view')
|
||||
_rz(z,hYD,'class',10,e,s,gg)
|
||||
var oZD=_n('view')
|
||||
var c1D=_oz(z,11,e,s,gg)
|
||||
_(oZD,c1D)
|
||||
_(hYD,oZD)
|
||||
var o2D=_mz(z,'input',['bindinput',12,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
|
||||
_(hYD,o2D)
|
||||
_(bSD,hYD)
|
||||
var l3D=_n('view')
|
||||
_rz(z,l3D,'class',18,e,s,gg)
|
||||
_(bSD,l3D)
|
||||
var a4D=_n('view')
|
||||
_rz(z,a4D,'class',19,e,s,gg)
|
||||
var t5D=_n('view')
|
||||
var e6D=_oz(z,20,e,s,gg)
|
||||
_(t5D,e6D)
|
||||
_(a4D,t5D)
|
||||
var b7D=_mz(z,'input',['bindinput',21,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
|
||||
_(a4D,b7D)
|
||||
_(bSD,a4D)
|
||||
var o8D=_n('view')
|
||||
_rz(z,o8D,'class',27,e,s,gg)
|
||||
_(bSD,o8D)
|
||||
_(eRD,bSD)
|
||||
var x9D=_n('view')
|
||||
_rz(z,x9D,'class',28,e,s,gg)
|
||||
var o0D=_mz(z,'button',['bindtap',29,'class',1,'data-event-opts',2],[],e,s,gg)
|
||||
var fAE=_oz(z,32,e,s,gg)
|
||||
_(o0D,fAE)
|
||||
_(x9D,o0D)
|
||||
_(eRD,x9D)
|
||||
_(r,eRD)
|
||||
var xUD=_mz(z,'input',['bindinput',3,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
|
||||
_(eRD,xUD)
|
||||
_(tQD,eRD)
|
||||
var oVD=_n('view')
|
||||
_rz(z,oVD,'class',9,e,s,gg)
|
||||
_(tQD,oVD)
|
||||
var fWD=_n('view')
|
||||
_rz(z,fWD,'class',10,e,s,gg)
|
||||
var cXD=_n('view')
|
||||
var hYD=_oz(z,11,e,s,gg)
|
||||
_(cXD,hYD)
|
||||
_(fWD,cXD)
|
||||
var oZD=_mz(z,'input',['bindinput',12,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
|
||||
_(fWD,oZD)
|
||||
_(tQD,fWD)
|
||||
var c1D=_n('view')
|
||||
_rz(z,c1D,'class',18,e,s,gg)
|
||||
_(tQD,c1D)
|
||||
var o2D=_n('view')
|
||||
_rz(z,o2D,'class',19,e,s,gg)
|
||||
var l3D=_n('view')
|
||||
var a4D=_oz(z,20,e,s,gg)
|
||||
_(l3D,a4D)
|
||||
_(o2D,l3D)
|
||||
var t5D=_mz(z,'input',['bindinput',21,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
|
||||
_(o2D,t5D)
|
||||
_(tQD,o2D)
|
||||
var e6D=_n('view')
|
||||
_rz(z,e6D,'class',27,e,s,gg)
|
||||
_(tQD,e6D)
|
||||
_(aPD,tQD)
|
||||
var b7D=_n('view')
|
||||
_rz(z,b7D,'class',28,e,s,gg)
|
||||
var o8D=_mz(z,'button',['bindtap',29,'class',1,'data-event-opts',2],[],e,s,gg)
|
||||
var x9D=_oz(z,32,e,s,gg)
|
||||
_(o8D,x9D)
|
||||
_(b7D,o8D)
|
||||
_(aPD,b7D)
|
||||
_(r,aPD)
|
||||
return r
|
||||
}
|
||||
e_[x[11]]={f:m11,j:[],i:[],ti:[],ic:[]}
|
||||
d_[x[12]]={}
|
||||
var m12=function(e,s,r,gg){
|
||||
var z=gz$gwx_13()
|
||||
var fAE=_n('view')
|
||||
var cBE=_n('view')
|
||||
_rz(z,cBE,'class',0,e,s,gg)
|
||||
var hCE=_n('view')
|
||||
_rz(z,hCE,'class',1,e,s,gg)
|
||||
var oDE=_n('view')
|
||||
_rz(z,oDE,'class',0,e,s,gg)
|
||||
var cEE=_n('view')
|
||||
_rz(z,cEE,'class',1,e,s,gg)
|
||||
var oFE=_n('view')
|
||||
var lGE=_oz(z,2,e,s,gg)
|
||||
_(oFE,lGE)
|
||||
_(cEE,oFE)
|
||||
var aHE=_mz(z,'input',['bindinput',3,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
|
||||
_(cEE,aHE)
|
||||
var cEE=_oz(z,2,e,s,gg)
|
||||
_(oDE,cEE)
|
||||
var tIE=_n('view')
|
||||
_rz(z,tIE,'class',10,e,s,gg)
|
||||
_(oDE,tIE)
|
||||
var eJE=_n('view')
|
||||
_rz(z,eJE,'class',11,e,s,gg)
|
||||
var bKE=_n('view')
|
||||
var oLE=_oz(z,12,e,s,gg)
|
||||
_(bKE,oLE)
|
||||
_(eJE,bKE)
|
||||
var xME=_mz(z,'input',['bindinput',13,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
|
||||
_(eJE,xME)
|
||||
_(oDE,eJE)
|
||||
var oNE=_n('view')
|
||||
_rz(z,oNE,'class',20,e,s,gg)
|
||||
_(oDE,oNE)
|
||||
var fOE=_n('view')
|
||||
_rz(z,fOE,'class',21,e,s,gg)
|
||||
var cPE=_n('view')
|
||||
var hQE=_oz(z,22,e,s,gg)
|
||||
_(cPE,hQE)
|
||||
_(fOE,cPE)
|
||||
var oRE=_mz(z,'input',['bindinput',23,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
|
||||
_(fOE,oRE)
|
||||
_(oDE,fOE)
|
||||
var cSE=_n('view')
|
||||
_rz(z,cSE,'class',30,e,s,gg)
|
||||
_(oDE,cSE)
|
||||
_(hCE,oDE)
|
||||
var oTE=_n('view')
|
||||
_rz(z,oTE,'class',31,e,s,gg)
|
||||
var lUE=_mz(z,'button',['bindtap',32,'class',1,'data-event-opts',2],[],e,s,gg)
|
||||
var aVE=_oz(z,35,e,s,gg)
|
||||
_(lUE,aVE)
|
||||
_(oTE,lUE)
|
||||
_(hCE,oTE)
|
||||
_(r,hCE)
|
||||
var oFE=_mz(z,'input',['bindinput',3,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
|
||||
_(hCE,oFE)
|
||||
_(cBE,hCE)
|
||||
var lGE=_n('view')
|
||||
_rz(z,lGE,'class',10,e,s,gg)
|
||||
_(cBE,lGE)
|
||||
var aHE=_n('view')
|
||||
_rz(z,aHE,'class',11,e,s,gg)
|
||||
var tIE=_n('view')
|
||||
var eJE=_oz(z,12,e,s,gg)
|
||||
_(tIE,eJE)
|
||||
_(aHE,tIE)
|
||||
var bKE=_mz(z,'input',['bindinput',13,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
|
||||
_(aHE,bKE)
|
||||
_(cBE,aHE)
|
||||
var oLE=_n('view')
|
||||
_rz(z,oLE,'class',20,e,s,gg)
|
||||
_(cBE,oLE)
|
||||
var xME=_n('view')
|
||||
_rz(z,xME,'class',21,e,s,gg)
|
||||
var oNE=_n('view')
|
||||
var fOE=_oz(z,22,e,s,gg)
|
||||
_(oNE,fOE)
|
||||
_(xME,oNE)
|
||||
var cPE=_mz(z,'input',['bindinput',23,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
|
||||
_(xME,cPE)
|
||||
_(cBE,xME)
|
||||
var hQE=_n('view')
|
||||
_rz(z,hQE,'class',30,e,s,gg)
|
||||
_(cBE,hQE)
|
||||
_(fAE,cBE)
|
||||
var oRE=_n('view')
|
||||
_rz(z,oRE,'class',31,e,s,gg)
|
||||
var cSE=_mz(z,'button',['bindtap',32,'class',1,'data-event-opts',2],[],e,s,gg)
|
||||
var oTE=_oz(z,35,e,s,gg)
|
||||
_(cSE,oTE)
|
||||
_(oRE,cSE)
|
||||
_(fAE,oRE)
|
||||
_(r,fAE)
|
||||
return r
|
||||
}
|
||||
e_[x[12]]={f:m12,j:[],i:[],ti:[],ic:[]}
|
||||
d_[x[13]]={}
|
||||
var m13=function(e,s,r,gg){
|
||||
var z=gz$gwx_14()
|
||||
var aVE=_n('view')
|
||||
var tWE=_n('view')
|
||||
_rz(z,tWE,'class',0,e,s,gg)
|
||||
var eXE=_n('view')
|
||||
_rz(z,eXE,'class',1,e,s,gg)
|
||||
var bYE=_n('view')
|
||||
_rz(z,bYE,'class',0,e,s,gg)
|
||||
var oZE=_n('view')
|
||||
_rz(z,oZE,'class',1,e,s,gg)
|
||||
var x1E=_n('view')
|
||||
_rz(z,x1E,'class',2,e,s,gg)
|
||||
var o2E=_mz(z,'image',['class',3,'mode',1,'src',2],[],e,s,gg)
|
||||
_(x1E,o2E)
|
||||
_(oZE,x1E)
|
||||
var f3E=_n('view')
|
||||
_rz(z,f3E,'class',6,e,s,gg)
|
||||
var h5E=_mz(z,'image',['binderror',7,'bindtap',1,'class',2,'data-event-opts',3,'mode',4,'src',5],[],e,s,gg)
|
||||
_(f3E,h5E)
|
||||
var c4E=_v()
|
||||
_(f3E,c4E)
|
||||
if(_oz(z,13,e,s,gg)){c4E.wxVkey=1
|
||||
var o6E=_n('view')
|
||||
var c7E=_n('view')
|
||||
_rz(z,c7E,'style',14,e,s,gg)
|
||||
var o8E=_oz(z,15,e,s,gg)
|
||||
_(c7E,o8E)
|
||||
_(o6E,c7E)
|
||||
var l9E=_n('view')
|
||||
_rz(z,l9E,'style',16,e,s,gg)
|
||||
var a0E=_oz(z,17,e,s,gg)
|
||||
_(l9E,a0E)
|
||||
_(o6E,l9E)
|
||||
_(c4E,o6E)
|
||||
}
|
||||
else{c4E.wxVkey=2
|
||||
var tAF=_n('view')
|
||||
var eBF=_oz(z,18,e,s,gg)
|
||||
_(tAF,eBF)
|
||||
_(c4E,tAF)
|
||||
}
|
||||
c4E.wxXCkey=1
|
||||
_(oZE,f3E)
|
||||
_rz(z,bYE,'class',2,e,s,gg)
|
||||
var oZE=_mz(z,'image',['class',3,'mode',1,'src',2],[],e,s,gg)
|
||||
_(bYE,oZE)
|
||||
var bCF=_mz(z,'uni-list',['bind:__l',19,'class',1,'vueId',2,'vueSlots',3],[],e,s,gg)
|
||||
var oDF=_mz(z,'uni-list-item',['bind:__l',23,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
|
||||
_(bCF,oDF)
|
||||
var xEF=_mz(z,'uni-list-item',['bind:__l',29,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
|
||||
_(bCF,xEF)
|
||||
var oFF=_mz(z,'uni-list-item',['bind:__l',35,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
|
||||
_(bCF,oFF)
|
||||
_(bYE,bCF)
|
||||
_(eXE,bYE)
|
||||
_(r,eXE)
|
||||
var x1E=_n('view')
|
||||
_rz(z,x1E,'class',6,e,s,gg)
|
||||
var f3E=_mz(z,'image',['binderror',7,'bindtap',1,'class',2,'data-event-opts',3,'mode',4,'src',5],[],e,s,gg)
|
||||
_(x1E,f3E)
|
||||
var o2E=_v()
|
||||
_(x1E,o2E)
|
||||
if(_oz(z,13,e,s,gg)){o2E.wxVkey=1
|
||||
var c4E=_n('view')
|
||||
var h5E=_n('view')
|
||||
_rz(z,h5E,'style',14,e,s,gg)
|
||||
var o6E=_oz(z,15,e,s,gg)
|
||||
_(h5E,o6E)
|
||||
_(c4E,h5E)
|
||||
var c7E=_n('view')
|
||||
_rz(z,c7E,'style',16,e,s,gg)
|
||||
var o8E=_oz(z,17,e,s,gg)
|
||||
_(c7E,o8E)
|
||||
_(c4E,c7E)
|
||||
_(o2E,c4E)
|
||||
}
|
||||
else{o2E.wxVkey=2
|
||||
var l9E=_n('view')
|
||||
var a0E=_oz(z,18,e,s,gg)
|
||||
_(l9E,a0E)
|
||||
_(o2E,l9E)
|
||||
}
|
||||
o2E.wxXCkey=1
|
||||
_(eXE,x1E)
|
||||
_(tWE,eXE)
|
||||
var tAF=_mz(z,'uni-list',['bind:__l',19,'class',1,'vueId',2,'vueSlots',3],[],e,s,gg)
|
||||
var eBF=_mz(z,'uni-list-item',['bind:__l',23,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
|
||||
_(tAF,eBF)
|
||||
var bCF=_mz(z,'uni-list-item',['bind:__l',29,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
|
||||
_(tAF,bCF)
|
||||
var oDF=_mz(z,'uni-list-item',['bind:__l',35,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
|
||||
_(tAF,oDF)
|
||||
_(tWE,tAF)
|
||||
_(aVE,tWE)
|
||||
_(r,aVE)
|
||||
return r
|
||||
}
|
||||
e_[x[13]]={f:m13,j:[],i:[],ti:[],ic:[]}
|
||||
@ -2097,10 +2084,10 @@ __wxAppCode__['pages/evaluation/mineEvPage.wxml']=$gwx('./pages/evaluation/mineE
|
||||
__wxAppCode__['pages/evaluation/missionDetail.wxss']=setCssToHead([".",[1],"body { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; text-align: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; padding-top: 50%; }\n",],undefined,{path:"./pages/evaluation/missionDetail.wxss"});
|
||||
__wxAppCode__['pages/evaluation/missionDetail.wxml']=$gwx('./pages/evaluation/missionDetail.wxml');
|
||||
|
||||
__wxAppCode__['pages/index/index.wxss']=setCssToHead([".",[1],"content { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; }\n.",[1],"content .",[1],"task-content {}\n.",[1],"content .",[1],"task-content .",[1],"task-content-item { padding: ",[0,5]," 0; }\n.",[1],"content .",[1],"task-content .",[1],"task-count { text-align: left|center; font-size: ",[0,25],"; }\n.",[1],"content .",[1],"task-content-hover { background-color: #effaff; }\n.",[1],"content .",[1],"task-content:last-child { border: none; }\n.",[1],"content .",[1],"task-content .",[1],"task-name { font-size: ",[0,30],"; font-weight: bold; }\n.",[1],"content .",[1],"task-content .",[1],"evalutaion-name { font-size: ",[0,30],"; }\n.",[1],"content .",[1],"task-content .",[1],"task-time { text-align: right; font-size: ",[0,25],"; }\n.",[1],"content .",[1],"task-content .",[1],"task-type { text-align: right; font-size: ",[0,25],"; }\n",],undefined,{path:"./pages/index/index.wxss"});
|
||||
__wxAppCode__['pages/index/index.wxss']=setCssToHead([".",[1],"task-content {}\n.",[1],"task-content .",[1],"task-content-item { padding: ",[0,5]," 0; }\n.",[1],"task-content .",[1],"task-count { text-align: left|center; font-size: ",[0,25],"; }\n.",[1],"task-content-hover { background-color: #effaff; }\n.",[1],"task-content:last-child { border: none; }\n.",[1],"task-content .",[1],"task-name { font-size: ",[0,30],"; font-weight: bold; }\n.",[1],"task-content .",[1],"evalutaion-name { font-size: ",[0,30],"; }\n.",[1],"task-content .",[1],"task-time { text-align: right; font-size: ",[0,25],"; }\n.",[1],"task-content .",[1],"task-type { text-align: right; font-size: ",[0,25],"; }\n.",[1],"item-li { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; height: auto; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; min-width: 50%; width: 90%; min-height: 50px; margin: 10px; background: #FFFFFF; padding: 5px; border-radius: 5px; box-shadow: ",[0,5]," ",[0,5]," 15px #d9d9d9; }\n",],undefined,{path:"./pages/index/index.wxss"});
|
||||
__wxAppCode__['pages/index/index.wxml']=$gwx('./pages/index/index.wxml');
|
||||
|
||||
__wxAppCode__['pages/login/index.wxss']=setCssToHead([".",[1],"content { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; background: url(../../static/img/background.55b53f1d.png-do-not-use-local-path-./pages/login/index.wxss\x2616\x2613); }\nwx-image.",[1],"cont { width: ",[0,750],"; min-height: 100vh; height: auto; position: relative; height: 100%; position: absolute; z-index: 0; }\n.",[1],"content .",[1],"app-title { z-index: 99; font-size: ",[0,60],"; color: #FFFFFF; border-bottom: ",[0,1]," solid #FFFFFF; }\n.",[1],"content wx-form { width: 80%; margin-top: ",[0,100],"; }\n.",[1],"content wx-form .",[1],"uni-form-item { margin-bottom: ",[0,20],"; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"title { font-size: ",[0,30],"; color: #FFFFFF; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"uni-input { border: ",[0,1]," solid #FFFFFF; background-color: #FFFFFF; height: ",[0,50],"; padding: ",[0,10],"; border-radius: ",[0,10],"; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"login { margin-top: ",[0,180],"; font-size: ",[0,30],"; }\n",],undefined,{path:"./pages/login/index.wxss"});
|
||||
__wxAppCode__['pages/login/index.wxss']=setCssToHead([".",[1],"content { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; background: url(../../static/img/background.55b53f1d.png-do-not-use-local-path-./pages/login/index.wxss\x2616\x2613); }\nwx-image.",[1],"cont { width: ",[0,750],"; min-height: 100vh; height: auto; position: relative; height: 100%; position: absolute; z-index: 0; }\n.",[1],"content .",[1],"app-title { z-index: 99; font-size: ",[0,60],"; color: #FFFFFF; border-bottom: ",[0,1]," solid #FFFFFF; }\n.",[1],"content wx-form { width: 80%; margin-top: ",[0,100],"; }\n.",[1],"content wx-form .",[1],"uni-form-item { margin-bottom: ",[0,20],"; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"title { font-size: ",[0,30],"; color: #FFFFFF; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"uni-input { border: ",[0,1]," solid #FFFFFF; background-color: #FFFFFF; height: ",[0,50],"; padding: ",[0,10],"; border-radius: ",[0,10],"; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"login { margin-top: ",[0,180],"; font-size: ",[0,30],"; }\n.",[1],"input-form { margin-top: ",[0,30],"; }\n.",[1],"canvas-content { margin: 0 auto; position: relative; display: -webkit-box; display: -webkit-flex; display: flex; top: ",[0,400],"; padding: ",[0,20],"; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; width: 80%; height: ",[0,600],"; border-radius: 2%; background-size: cover; }\n.",[1],"btn { margin: ",[0,35]," auto ",[0,22]," auto; text-align: center; height: ",[0,84],"; width: 95%; line-height: ",[0,84],"; border-radius: ",[0,50],"; color: #FFFFFF; background-color: #008B8B; }\n.",[1],"btn:active { margin: ",[0,35]," auto ",[0,22]," auto; text-align: center; height: ",[0,84],"; width: 95%; line-height: ",[0,84],"; border-radius: ",[0,50],"; color: #000000; background-color: #008B8B; }\n.",[1],"input-font { padding-top: ",[0,10],"; padding-bottom: ",[0,10],"; margin-top: ",[0,25],"; font-size: ",[0,30],"; width: 100%; border-bottom: ",[0,1]," solid #D3D3D3; }\n.",[1],"verify-box { margin-top: ",[0,30],"; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; align-items: center; width: 100%; border-bottom: ",[0,1]," solid #D3D3D3; }\n.",[1],"verify-btn { min-width: ",[0,100],"; text-align: center; font-size: ",[0,20],"; color: #007AFF; padding: ",[0,10],"; margin-bottom: ",[0,5],"; border: ",[0,1]," solid #007AFF; border-radius: ",[0,40],"; -webkit-align-self: flex-end; align-self: flex-end; }\n.",[1],"verify-btn:active { font-size: ",[0,20],"; min-width: ",[0,100],"; text-align: center; color: #666666; padding: ",[0,10],"; margin-bottom: ",[0,5],"; border: ",[0,1]," solid #666666; border-radius: ",[0,40],"; -webkit-align-self: flex-end; align-self: flex-end; }\n.",[1],"canvas-content .",[1],"title { color: #FFFFFF; font-size: ",[0,40],"; font-weight: bold; }\n.",[1],"canvas-content .",[1],"hint { color: #FFFFFF; font-size: ",[0,40],"; font-weight: bold; }\n.",[1],"input-verify { padding-top: ",[0,10],"; padding-bottom: ",[0,10],"; font-size: ",[0,30],"; width: 60%; }\n.",[1],"conbox { background: #FFFFFF; width: ",[0,750],"; height: 100vh; overflow-x: hidden; overflow-y: scroll; }\n.",[1],"container, wx-image.",[1],"cont { width: ",[0,750],"; min-height: 100vh; height: auto; position: relative; }\nwx-image.",[1],"cont { height: 100%; position: absolute; z-index: 0; }\n.",[1],"input-placeholder { color: #6D6D72; font-size: ",[0,25],"; }\n",],undefined,{path:"./pages/login/index.wxss"});
|
||||
__wxAppCode__['pages/login/index.wxml']=$gwx('./pages/login/index.wxml');
|
||||
|
||||
__wxAppCode__['pages/mine/changeMineInfo.wxss']=setCssToHead([".",[1],"content { padding: ",[0,15],"; margin-top: ",[0,50],"; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; }\n.",[1],"uni-btn-v { width: 100%; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; -webkit-box-align: center; -webkit-align-items: center; align-items: center; }\n.",[1],"item { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; -webkit-box-pack: start; -webkit-justify-content: flex-start; justify-content: flex-start; border-width: ",[0,1],"; border-bottom: #555555; width: 100%; padding: ",[0,15],"; }\n.",[1],"content .",[1],"app-title { z-index: 99; font-size: ",[0,60],"; color: #FFFFFF; border-bottom: ",[0,1]," solid #FFFFFF; }\n.",[1],"divider-line { height: 1px; margin-top: 5px; margin-bottom: 5px; width: 100%; background: #D8D8D8; -webkit-align-self: center; align-self: center; }\n.",[1],"body { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; text-align: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; }\n.",[1],"content .",[1],"uni-form-item { margin-bottom: ",[0,20],"; }\n.",[1],"title { text-align: left; font-size: ",[0,30],"; color: #FFFFFF; }\n.",[1],"uni-input { border: ",[0,1]," solid #FFFFFF; background-color: #FFFFFF; height: ",[0,50],"; padding: ",[0,10],"; border-radius: ",[0,10],"; }\n.",[1],"save-btn { display: inline-block; width: 80%; -webkit-align-self: center; align-self: center; height: ",[0,80],"; line-height: ",[0,70],"; background: #007AFF; color: #fff; font-size: ",[0,28],"; border-radius: ",[0,40],"; margin-top: ",[0,75],"; }\n",],undefined,{path:"./pages/mine/changeMineInfo.wxss"});
|
||||
|
10
unpackage/dist/dev/app-plus/manifest.json
vendored
10
unpackage/dist/dev/app-plus/manifest.json
vendored
@ -41,8 +41,8 @@
|
||||
},
|
||||
"statusbar": {
|
||||
"immersed": "supportedDevice",
|
||||
"style": "dark",
|
||||
"background": "#F8F8F8"
|
||||
"style": "light",
|
||||
"background": "#008B8B"
|
||||
},
|
||||
"usingComponents": true,
|
||||
"nvueCompiler": "uni-app",
|
||||
@ -139,12 +139,6 @@
|
||||
"iconPath": "static/tabbar/ic_his_no.png",
|
||||
"selectedIconPath": "static/tabbar/ic_his_sel.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/evaluation/mineEvPage",
|
||||
"text": "历史任务",
|
||||
"iconPath": "static/tabbar/ic_cur_no.png",
|
||||
"selectedIconPath": "static/tabbar/ic_cur_sel.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/mine/index",
|
||||
"text": "我的",
|
||||
|
@ -1,2 +1,2 @@
|
||||
setCssToHead([".",[1],"content { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; }\n.",[1],"content .",[1],"task-content {}\n.",[1],"content .",[1],"task-content .",[1],"task-content-item { padding: ",[0,5]," 0; }\n.",[1],"content .",[1],"task-content .",[1],"task-count { text-align: left|center; font-size: ",[0,25],"; }\n.",[1],"content .",[1],"task-content-hover { background-color: #effaff; }\n.",[1],"content .",[1],"task-content:last-child { border: none; }\n.",[1],"content .",[1],"task-content .",[1],"task-name { font-size: ",[0,30],"; font-weight: bold; }\n.",[1],"content .",[1],"task-content .",[1],"evalutaion-name { font-size: ",[0,30],"; }\n.",[1],"content .",[1],"task-content .",[1],"task-time { text-align: right; font-size: ",[0,25],"; }\n.",[1],"content .",[1],"task-content .",[1],"task-type { text-align: right; font-size: ",[0,25],"; }\n",],undefined,{path:"./pages/index/index.wxss"})();
|
||||
setCssToHead([".",[1],"task-content {}\n.",[1],"task-content .",[1],"task-content-item { padding: ",[0,5]," 0; }\n.",[1],"task-content .",[1],"task-count { text-align: left|center; font-size: ",[0,25],"; }\n.",[1],"task-content-hover { background-color: #effaff; }\n.",[1],"task-content:last-child { border: none; }\n.",[1],"task-content .",[1],"task-name { font-size: ",[0,30],"; font-weight: bold; }\n.",[1],"task-content .",[1],"evalutaion-name { font-size: ",[0,30],"; }\n.",[1],"task-content .",[1],"task-time { text-align: right; font-size: ",[0,25],"; }\n.",[1],"task-content .",[1],"task-type { text-align: right; font-size: ",[0,25],"; }\n.",[1],"item-li { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; height: auto; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; min-width: 50%; width: 90%; min-height: 50px; margin: 10px; background: #FFFFFF; padding: 5px; border-radius: 5px; box-shadow: ",[0,5]," ",[0,5]," 15px #d9d9d9; }\n",],undefined,{path:"./pages/index/index.wxss"})();
|
||||
document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/index/index.wxml') } }));
|
@ -1,2 +1,2 @@
|
||||
setCssToHead([".",[1],"content { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; background: url(../../static/img/background.55b53f1d.png-do-not-use-local-path-./pages/login/index.wxss\x2616\x2613); }\nwx-image.",[1],"cont { width: ",[0,750],"; min-height: 100vh; height: auto; position: relative; height: 100%; position: absolute; z-index: 0; }\n.",[1],"content .",[1],"app-title { z-index: 99; font-size: ",[0,60],"; color: #FFFFFF; border-bottom: ",[0,1]," solid #FFFFFF; }\n.",[1],"content wx-form { width: 80%; margin-top: ",[0,100],"; }\n.",[1],"content wx-form .",[1],"uni-form-item { margin-bottom: ",[0,20],"; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"title { font-size: ",[0,30],"; color: #FFFFFF; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"uni-input { border: ",[0,1]," solid #FFFFFF; background-color: #FFFFFF; height: ",[0,50],"; padding: ",[0,10],"; border-radius: ",[0,10],"; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"login { margin-top: ",[0,180],"; font-size: ",[0,30],"; }\n",],undefined,{path:"./pages/login/index.wxss"})();
|
||||
setCssToHead([".",[1],"content { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; background: url(../../static/img/background.55b53f1d.png-do-not-use-local-path-./pages/login/index.wxss\x2616\x2613); }\nwx-image.",[1],"cont { width: ",[0,750],"; min-height: 100vh; height: auto; position: relative; height: 100%; position: absolute; z-index: 0; }\n.",[1],"content .",[1],"app-title { z-index: 99; font-size: ",[0,60],"; color: #FFFFFF; border-bottom: ",[0,1]," solid #FFFFFF; }\n.",[1],"content wx-form { width: 80%; margin-top: ",[0,100],"; }\n.",[1],"content wx-form .",[1],"uni-form-item { margin-bottom: ",[0,20],"; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"title { font-size: ",[0,30],"; color: #FFFFFF; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"uni-input { border: ",[0,1]," solid #FFFFFF; background-color: #FFFFFF; height: ",[0,50],"; padding: ",[0,10],"; border-radius: ",[0,10],"; }\n.",[1],"content wx-form .",[1],"uni-form-item .",[1],"login { margin-top: ",[0,180],"; font-size: ",[0,30],"; }\n.",[1],"input-form { margin-top: ",[0,30],"; }\n.",[1],"canvas-content { margin: 0 auto; position: relative; display: -webkit-box; display: -webkit-flex; display: flex; top: ",[0,400],"; padding: ",[0,20],"; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; width: 80%; height: ",[0,600],"; border-radius: 2%; background-size: cover; }\n.",[1],"btn { margin: ",[0,35]," auto ",[0,22]," auto; text-align: center; height: ",[0,84],"; width: 95%; line-height: ",[0,84],"; border-radius: ",[0,50],"; color: #FFFFFF; background-color: #008B8B; }\n.",[1],"btn:active { margin: ",[0,35]," auto ",[0,22]," auto; text-align: center; height: ",[0,84],"; width: 95%; line-height: ",[0,84],"; border-radius: ",[0,50],"; color: #000000; background-color: #008B8B; }\n.",[1],"input-font { padding-top: ",[0,10],"; padding-bottom: ",[0,10],"; margin-top: ",[0,25],"; font-size: ",[0,30],"; width: 100%; border-bottom: ",[0,1]," solid #D3D3D3; }\n.",[1],"verify-box { margin-top: ",[0,30],"; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; align-items: center; width: 100%; border-bottom: ",[0,1]," solid #D3D3D3; }\n.",[1],"verify-btn { min-width: ",[0,100],"; text-align: center; font-size: ",[0,20],"; color: #007AFF; padding: ",[0,10],"; margin-bottom: ",[0,5],"; border: ",[0,1]," solid #007AFF; border-radius: ",[0,40],"; -webkit-align-self: flex-end; align-self: flex-end; }\n.",[1],"verify-btn:active { font-size: ",[0,20],"; min-width: ",[0,100],"; text-align: center; color: #666666; padding: ",[0,10],"; margin-bottom: ",[0,5],"; border: ",[0,1]," solid #666666; border-radius: ",[0,40],"; -webkit-align-self: flex-end; align-self: flex-end; }\n.",[1],"canvas-content .",[1],"title { color: #FFFFFF; font-size: ",[0,40],"; font-weight: bold; }\n.",[1],"canvas-content .",[1],"hint { color: #FFFFFF; font-size: ",[0,40],"; font-weight: bold; }\n.",[1],"input-verify { padding-top: ",[0,10],"; padding-bottom: ",[0,10],"; font-size: ",[0,30],"; width: 60%; }\n.",[1],"conbox { background: #FFFFFF; width: ",[0,750],"; height: 100vh; overflow-x: hidden; overflow-y: scroll; }\n.",[1],"container, wx-image.",[1],"cont { width: ",[0,750],"; min-height: 100vh; height: auto; position: relative; }\nwx-image.",[1],"cont { height: 100%; position: absolute; z-index: 0; }\n.",[1],"input-placeholder { color: #6D6D72; font-size: ",[0,25],"; }\n",],undefined,{path:"./pages/login/index.wxss"})();
|
||||
document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/login/index.wxml') } }));
|
Loading…
Reference in New Issue
Block a user