This commit is contained in:
gaojian 2020-01-10 14:30:31 +08:00
parent 77342eca4b
commit 34a4e9293e
47 changed files with 538 additions and 385 deletions

View File

@ -10,7 +10,12 @@
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "当前任务",
"enablePullDownRefresh": true
"enablePullDownRefresh": true,
"app-plus": {
"pullToRefresh": {
"color": "#008B8B"
}
}
}
},
{
@ -38,7 +43,12 @@
"path": "pages/evaluation/mineEvPage",
"style": {
"navigationBarTitleText": "历史任务",
"enablePullDownRefresh": true
"enablePullDownRefresh": true,
"app-plus": {
"pullToRefresh": {
"color": "#008B8B"
}
}
}
}, {
"path": "pages/evaluation/missionDetail",
@ -64,11 +74,13 @@
"backgroundColor": "#008B8B"
},
"tabBar": {
"selectedColor": "#008B8B",
"color": "#555555",
"list": [{
"pagePath": "pages/index/index",
"text": "当前任务",
"iconPath": "static/tabbar/ic_his_no.png",
"selectedIconPath": "static/tabbar/ic_his_sel.png"
"iconPath": "static/tabbar/ic_miss_no.png",
"selectedIconPath": "static/tabbar/ic_miss_sel.png"
},
{
"pagePath": "pages/mine/index",

View File

@ -1,43 +1,32 @@
<template>
<view class="content">
<view v-for="(evaluation,index) in evaluations" :key="index" @tap="itemClick(evaluation)" :data-taskid="evaluation.taskId">
<view>
<view class="content" 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">
<view class="item-title">{{index + 1}}.{{evaluation.taskName}}</view>
<view class="item-content">{{evaluation.evaluationName}}</view>
<view class="item-bottom-box">
<view class="item-tag-box">
<view class="item-time">
{{evaluation.taskStartTime.substring(0, 10)}}{{evaluation.taskEndTime.substring(0, 10)}}
</view>
<view class="item-tag">
<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 class="item-count-tag">
<view class="item-count-yet">{{evaluation.taskRecordSubmitCount.substring(0,evaluation.taskRecordSubmitCount.lastIndexOf('|'))}}
</view>
<text style="color: #FFFFFF;" space="emsp" decode="true">{{divider}}</text>
<view class="item-count-not">
{{evaluation.taskRecordSubmitCount.substring(evaluation.taskRecordSubmitCount.lastIndexOf('未'),evaluation.taskRecordSubmitCount.length)}}</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>
<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>
</uni-list-item>
</uni-list> -->
<!-- <uni-load-more v-if="evaluations.length >= 20" :status="more" @clickLoadMore="clickLoadMore" :contentText="uploadContentText"></uni-load-more> -->
</view>
</template>
<script>
@ -55,6 +44,7 @@
data() {
return {
token: '',
divider: '&nbsp;|&nbsp;',
evaluations: [],
more: 'more',
uploadContentText: {
@ -80,10 +70,6 @@
var self = this;
uni.startPullDownRefresh({});
self.initData();
// setTimeout(() => {
// uni.stopPullDownRefresh();
// }, 1000);
},
methods: {
initData() {
@ -138,44 +124,21 @@
</script>
<style>
.task-content {}
.task-content .task-content-item {
padding: 5upx 0;
.content {
width: 100%;
display: flex;
margin-top: 20rpx;
flex-direction: column;
align-items: center;
justify-content: center;
}
.task-content .task-count {
text-align: left|center;
font-size: 25upx;
}
.task-content-hover {
background-color: #effaff;
}
.task-content:last-child {
border: none;
}
.task-content .task-name {
font-size: 30upx;
font-weight: bold;
}
.task-content .evalutaion-name {
font-size: 30upx;
}
.task-content .task-time {
text-align: right;
font-size: 25upx;
}
.task-content .task-type {
text-align: right;
font-size: 25upx;
.item-count {
font-size: 15rpx;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.item-li {
@ -185,12 +148,73 @@
justify-content: space-between;
align-items: flex-start;
min-width: 50%;
width: 90%;
min-height: 50px;
margin: 10px;
width: 95%;
min-width: 95%;
min-height: 180rpx;
margin: 10rpx;
background: #FFFFFF;
padding: 5px;
border-radius: 5px;
box-shadow: 5rpx 5rpx 15px #d9d9d9;
padding: 5rpx;
border-radius: 10rpx;
box-shadow: 8rpx 8rpx 10rpx #d9d9d9;
}
.item-title {
font-size: 28rpx;
font-weight: bold;
color: #000000;
}
.item-content {
font-size: 30rpx;
color: #000000;
}
.item-count-tag {
display: flex;
font-size: 20rpx;
color: #000000;
background: #008B8B;
padding: 10rpx;
height: 35rpx;
align-items: center;
text-align: center;
border-radius: 10rpx;
box-shadow: 8rpx 8rpx 10rpx #d9d9d9;
}
.item-count-yet {
color: #FFFFFF;
}
.item-count-not {
color: #f9e9c3;
}
.item-tag-box {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.item-bottom-box {
display: flex;
margin-top: 15rpx;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 97%;
}
.item-time {
font-size: 25rpx;
color: #000000;
}
.item-tag {
display: flex;
justify-content: center;
align-items: flex-start;
text-align: left;
font-size: 25rpx;
}
</style>

View File

@ -1,23 +1,4 @@
<template>
<!-- <view class="content" :style="{height: windowHeight +'px'}">
<view class="app-title">
<text>{{appTitle}}</text>
</view>
<image src="../../static/background.png" class="cont" mode="aspectFill"></image>
<form @submit="formSubmit" @reset="formReset">
<view class="uni-form-item">
<view class="title">用户名</view>
<input class="uni-input" v-model="username" placeholder="请输入用户名" />
</view>
<view class="uni-form-item">
<view class="title">密码</view>
<input class="uni-input" v-model="password" password placeholder="请输入密码" />
</view>
<view class="uni-form-item">
<button class="login" type="primary" @click="login">登录</button>
</view>
</form>
</view> -->
<view>
<view class="conbox">
<view class="container">
@ -29,10 +10,6 @@
<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>
@ -85,6 +62,7 @@
return;
}
deviceNo = common.uuid();
self.appInfo.deviceNo = deviceNo;
uni.setStorageSync('deviceNo', deviceNo);
},
decrypt(word) {
@ -131,7 +109,6 @@
if (response.statusCode === 200) {
var data = response.data;
var loginStr = self.decrypt(data);
console.log(loginStr);
try {
uni.setStorageSync('appToken', data.data);
uni.setStorageSync('userInfo', loginStr);
@ -263,6 +240,7 @@
}
.input-font {
color: #FFFFFF;
padding-top: 10rpx;
padding-bottom: 10rpx;
margin-top: 25rpx;
@ -347,7 +325,7 @@
}
.input-placeholder {
color: #6D6D72;
color: #FFFFFF;
font-size: 25rpx;
}
</style>

View File

@ -268,7 +268,7 @@
align-self: center;
height: 80rpx;
line-height: 70rpx;
background: #007AFF;
background: #008B8B;
color: #fff;
font-size: 28rpx;
border-radius: 40rpx;

View File

@ -258,7 +258,7 @@
width: 80%;
height: 70rpx;
line-height: 70rpx;
background: #007AFF;
background: #008B8B;
color: #fff;
font-size: 28rpx;
border-radius: 40rpx;

View File

@ -17,17 +17,13 @@
</view>
</view>
</view>
<uni-list class="task-content">
<!-- <view v-if="userInfoObj != null">
<uni-list-item :title="userInfoObj.username" thumb="../../static/mine/user.png"></uni-list-item>
<uni-list-item :title="userInfoObj.name" thumb="../../static/mine/user.png"></uni-list-item>
<uni-list-item :title="userInfoObj.phone" thumb="../../static/mine/phone.png"></uni-list-item>
<uni-list-item :title="userInfoObj.email" thumb="../../static/mine/email.png"></uni-list-item>
</view> -->
<uni-list-item title="修改个人信息" thumb="../../static/mine/user.png" @click="changeInfo"></uni-list-item>
<uni-list-item title="修改密码" thumb="../../static/mine/ic_pwd.png" @click="changePwd"></uni-list-item>
<uni-list-item title="退出" thumb="../../static/mine/logout.png" @click="logout"></uni-list-item>
</uni-list>
<view class="item-li">
<uni-list style="width: 100%;align-items: center;">
<uni-list-item title="修改个人信息" thumb="../../static/mine/ic_mine_center.png" @click="changeInfo"></uni-list-item>
<uni-list-item title="修改密码" thumb="../../static/mine/ic_pwd.png" @click="changePwd"></uni-list-item>
<uni-list-item title="退出" thumb="../../static/mine/ic_logout.png" @click="logout"></uni-list-item>
</uni-list>
</view>
</view>
</view>
</template>
@ -67,6 +63,7 @@
} else {
_self.userInfoObj = JSON.parse(userInfoStr);
_self.titlePhotoSrc = common.userCenterBaseUrl + '/route/file/downloadfile/true/' + _self.userInfoObj.avatar
_self.backImg = common.userCenterBaseUrl + '/route/file/downloadfile/true/' + _self.userInfoObj.avatar
}
},
methods: {
@ -96,6 +93,7 @@
var imgData = res.data;
var imgIdObj = JSON.parse(imgData);
_self.titlePhotoSrc = common.userCenterBaseUrl + '/route/file/downloadfile/true/' + imgIdObj.data
_self.backImg = common.userCenterBaseUrl + '/route/file/downloadfile/true/' + imgIdObj.data
_self.userInfoObj.avatar = imgIdObj.data
var uStr = JSON.stringify(_self.userInfoObj);
uni.setStorageSync('userInfo', uStr);
@ -152,6 +150,7 @@
imgLoadError(e) {
console.log(e);
_self.titlePhotoSrc = 'https://img-cdn-qiniu.dcloud.net.cn/uniapp/images/shuijiao.jpg'
_self.backImg = 'https://img-cdn-qiniu.dcloud.net.cn/uniapp/images/shuijiao.jpg'
},
changePwd() {
uni.navigateTo({
@ -200,7 +199,7 @@
.content .image .image-content .background {
width: 100%;
height: 400rpx;
height: 450rpx;
}
.content .image .image-avatar {
@ -252,4 +251,11 @@
border-top: 1px solid silver;
border-left: 1px solid silver;
}
.item-li {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
</style>

BIN
static/mine/ic_logout.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 739 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1000 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 763 B

After

Width:  |  Height:  |  Size: 863 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 834 B

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 869 B

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 690 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 712 B

View File

@ -18,12 +18,14 @@
"backgroundColor": "#008B8B"
},
"tabBar": {
"selectedColor": "#008B8B",
"color": "#555555",
"list": [
{
"pagePath": "pages/index/index",
"text": "当前任务",
"iconPath": "static/tabbar/ic_his_no.png",
"selectedIconPath": "static/tabbar/ic_his_sel.png"
"iconPath": "static/tabbar/ic_miss_no.png",
"selectedIconPath": "static/tabbar/ic_miss_sel.png"
},
{
"pagePath": "pages/mine/index",

View File

@ -150,7 +150,7 @@ eval("module.exports = {\"_from\":\"@dcloudio/uni-stat@^2.0.0-alpha-244201911280
/***/ (function(module, exports, __webpack_require__) {
"use strict";
eval("Object.defineProperty(exports, \"__esModule\", { value: true });exports.default = void 0;var _default = { \"pages\": { \"pages/login/index\": { \"navigationStyle\": \"custom\" }, \"pages/index/index\": { \"navigationBarTitleText\": \"当前任务\", \"enablePullDownRefresh\": true }, \"pages/mine/index\": { \"navigationBarTitleText\": \"我的\" }, \"pages/evaluation/index\": { \"navigationBarTitleText\": \"测评\" }, \"pages/evaluation/doEvaluation\": { \"navigationBarTitleText\": \"测评\" }, \"pages/mine/changePwdPage\": { \"navigationBarTitleText\": \"修改密码\", \"usingComponents\": {} }, \"pages/evaluation/mineEvPage\": { \"navigationBarTitleText\": \"历史任务\", \"enablePullDownRefresh\": true }, \"pages/evaluation/missionDetail\": { \"navigationBarTitleText\": \"详情\" }, \"pages/mine/changeMineInfo\": { \"navigationBarTitleText\": \"修改个人信息\" } }, \"globalStyle\": { \"navigationBarTextStyle\": \"white\", \"navigationBarTitleText\": \"uni-app\", \"navigationBarBackgroundColor\": \"#008B8B\", \"backgroundColor\": \"#008B8B\" } };exports.default = _default;//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbbnVsbF0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJzR0FBZSxFQUFDLFNBQVEsRUFBQyxxQkFBb0IsRUFBQyxtQkFBa0IsUUFBbkIsRUFBckIsRUFBa0QscUJBQW9CLEVBQUMsMEJBQXlCLE1BQTFCLEVBQWlDLHlCQUF3QixJQUF6RCxFQUF0RSxFQUFxSSxvQkFBbUIsRUFBQywwQkFBeUIsSUFBMUIsRUFBeEosRUFBd0wsMEJBQXlCLEVBQUMsMEJBQXlCLElBQTFCLEVBQWpOLEVBQWlQLGlDQUFnQyxFQUFDLDBCQUF5QixJQUExQixFQUFqUixFQUFpVCw0QkFBMkIsRUFBQywwQkFBeUIsTUFBMUIsRUFBaUMsbUJBQWtCLEVBQW5ELEVBQTVVLEVBQW1ZLCtCQUE4QixFQUFDLDBCQUF5QixNQUExQixFQUFpQyx5QkFBd0IsSUFBekQsRUFBamEsRUFBZ2Usa0NBQWlDLEVBQUMsMEJBQXlCLElBQTFCLEVBQWpnQixFQUFpaUIsNkJBQTRCLEVBQUMsMEJBQXlCLFFBQTFCLEVBQTdqQixFQUFULEVBQTJtQixlQUFjLEVBQUMsMEJBQXlCLE9BQTFCLEVBQWtDLDBCQUF5QixTQUEzRCxFQUFxRSxnQ0FBK0IsU0FBcEcsRUFBOEcsbUJBQWtCLFNBQWhJLEVBQXpuQixFIiwiZmlsZSI6IjcuanMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZGVmYXVsdCB7XCJwYWdlc1wiOntcInBhZ2VzL2xvZ2luL2luZGV4XCI6e1wibmF2aWdhdGlvblN0eWxlXCI6XCJjdXN0b21cIn0sXCJwYWdlcy9pbmRleC9pbmRleFwiOntcIm5hdmlnYXRpb25CYXJUaXRsZVRleHRcIjpcIuW9k+WJjeS7u+WKoVwiLFwiZW5hYmxlUHVsbERvd25SZWZyZXNoXCI6dHJ1ZX0sXCJwYWdlcy9taW5lL2luZGV4XCI6e1wibmF2aWdhdGlvbkJhclRpdGxlVGV4dFwiOlwi5oiR55qEXCJ9LFwicGFnZXMvZXZhbHVhdGlvbi9pbmRleFwiOntcIm5hdmlnYXRpb25CYXJUaXRsZVRleHRcIjpcIua1i+ivhFwifSxcInBhZ2VzL2V2YWx1YXRpb24vZG9FdmFsdWF0aW9uXCI6e1wibmF2aWdhdGlvbkJhclRpdGxlVGV4dFwiOlwi5rWL6K+EXCJ9LFwicGFnZXMvbWluZS9jaGFuZ2VQd2RQYWdlXCI6e1wibmF2aWdhdGlvbkJhclRpdGxlVGV4dFwiOlwi5L+u5pS55a+G56CBXCIsXCJ1c2luZ0NvbXBvbmVudHNcIjp7fX0sXCJwYWdlcy9ldmFsdWF0aW9uL21pbmVFdlBhZ2VcIjp7XCJuYXZpZ2F0aW9uQmFyVGl0bGVUZXh0XCI6XCLljoblj7Lku7vliqFcIixcImVuYWJsZVB1bGxEb3duUmVmcmVzaFwiOnRydWV9LFwicGFnZXMvZXZhbHVhdGlvbi9taXNzaW9uRGV0YWlsXCI6e1wibmF2aWdhdGlvbkJhclRpdGxlVGV4dFwiOlwi6K+m5oOFXCJ9LFwicGFnZXMvbWluZS9jaGFuZ2VNaW5lSW5mb1wiOntcIm5hdmlnYXRpb25CYXJUaXRsZVRleHRcIjpcIuS/ruaUueS4quS6uuS/oeaBr1wifX0sXCJnbG9iYWxTdHlsZVwiOntcIm5hdmlnYXRpb25CYXJUZXh0U3R5bGVcIjpcIndoaXRlXCIsXCJuYXZpZ2F0aW9uQmFyVGl0bGVUZXh0XCI6XCJ1bmktYXBwXCIsXCJuYXZpZ2F0aW9uQmFyQmFja2dyb3VuZENvbG9yXCI6XCIjMDA4QjhCXCIsXCJiYWNrZ3JvdW5kQ29sb3JcIjpcIiMwMDhCOEJcIn19Il0sInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///7\n");
eval("Object.defineProperty(exports, \"__esModule\", { value: true });exports.default = void 0;var _default = { \"pages\": { \"pages/login/index\": { \"navigationStyle\": \"custom\" }, \"pages/index/index\": { \"navigationBarTitleText\": \"当前任务\", \"enablePullDownRefresh\": true, \"pullToRefresh\": { \"color\": \"#008B8B\" } }, \"pages/mine/index\": { \"navigationBarTitleText\": \"我的\" }, \"pages/evaluation/index\": { \"navigationBarTitleText\": \"测评\" }, \"pages/evaluation/doEvaluation\": { \"navigationBarTitleText\": \"测评\" }, \"pages/mine/changePwdPage\": { \"navigationBarTitleText\": \"修改密码\", \"usingComponents\": {} }, \"pages/evaluation/mineEvPage\": { \"navigationBarTitleText\": \"历史任务\", \"enablePullDownRefresh\": true, \"pullToRefresh\": { \"color\": \"#008B8B\" } }, \"pages/evaluation/missionDetail\": { \"navigationBarTitleText\": \"详情\" }, \"pages/mine/changeMineInfo\": { \"navigationBarTitleText\": \"修改个人信息\" } }, \"globalStyle\": { \"navigationBarTextStyle\": \"white\", \"navigationBarTitleText\": \"uni-app\", \"navigationBarBackgroundColor\": \"#008B8B\", \"backgroundColor\": \"#008B8B\" } };exports.default = _default;//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbbnVsbF0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJzR0FBZSxFQUFDLFNBQVEsRUFBQyxxQkFBb0IsRUFBQyxtQkFBa0IsUUFBbkIsRUFBckIsRUFBa0QscUJBQW9CLEVBQUMsMEJBQXlCLE1BQTFCLEVBQWlDLHlCQUF3QixJQUF6RCxFQUE4RCxpQkFBZ0IsRUFBQyxTQUFRLFNBQVQsRUFBOUUsRUFBdEUsRUFBeUssb0JBQW1CLEVBQUMsMEJBQXlCLElBQTFCLEVBQTVMLEVBQTROLDBCQUF5QixFQUFDLDBCQUF5QixJQUExQixFQUFyUCxFQUFxUixpQ0FBZ0MsRUFBQywwQkFBeUIsSUFBMUIsRUFBclQsRUFBcVYsNEJBQTJCLEVBQUMsMEJBQXlCLE1BQTFCLEVBQWlDLG1CQUFrQixFQUFuRCxFQUFoWCxFQUF1YSwrQkFBOEIsRUFBQywwQkFBeUIsTUFBMUIsRUFBaUMseUJBQXdCLElBQXpELEVBQThELGlCQUFnQixFQUFDLFNBQVEsU0FBVCxFQUE5RSxFQUFyYyxFQUF3aUIsa0NBQWlDLEVBQUMsMEJBQXlCLElBQTFCLEVBQXprQixFQUF5bUIsNkJBQTRCLEVBQUMsMEJBQXlCLFFBQTFCLEVBQXJvQixFQUFULEVBQW1yQixlQUFjLEVBQUMsMEJBQXlCLE9BQTFCLEVBQWtDLDBCQUF5QixTQUEzRCxFQUFxRSxnQ0FBK0IsU0FBcEcsRUFBOEcsbUJBQWtCLFNBQWhJLEVBQWpzQixFIiwiZmlsZSI6IjcuanMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZGVmYXVsdCB7XCJwYWdlc1wiOntcInBhZ2VzL2xvZ2luL2luZGV4XCI6e1wibmF2aWdhdGlvblN0eWxlXCI6XCJjdXN0b21cIn0sXCJwYWdlcy9pbmRleC9pbmRleFwiOntcIm5hdmlnYXRpb25CYXJUaXRsZVRleHRcIjpcIuW9k+WJjeS7u+WKoVwiLFwiZW5hYmxlUHVsbERvd25SZWZyZXNoXCI6dHJ1ZSxcInB1bGxUb1JlZnJlc2hcIjp7XCJjb2xvclwiOlwiIzAwOEI4QlwifX0sXCJwYWdlcy9taW5lL2luZGV4XCI6e1wibmF2aWdhdGlvbkJhclRpdGxlVGV4dFwiOlwi5oiR55qEXCJ9LFwicGFnZXMvZXZhbHVhdGlvbi9pbmRleFwiOntcIm5hdmlnYXRpb25CYXJUaXRsZVRleHRcIjpcIua1i+ivhFwifSxcInBhZ2VzL2V2YWx1YXRpb24vZG9FdmFsdWF0aW9uXCI6e1wibmF2aWdhdGlvbkJhclRpdGxlVGV4dFwiOlwi5rWL6K+EXCJ9LFwicGFnZXMvbWluZS9jaGFuZ2VQd2RQYWdlXCI6e1wibmF2aWdhdGlvbkJhclRpdGxlVGV4dFwiOlwi5L+u5pS55a+G56CBXCIsXCJ1c2luZ0NvbXBvbmVudHNcIjp7fX0sXCJwYWdlcy9ldmFsdWF0aW9uL21pbmVFdlBhZ2VcIjp7XCJuYXZpZ2F0aW9uQmFyVGl0bGVUZXh0XCI6XCLljoblj7Lku7vliqFcIixcImVuYWJsZVB1bGxEb3duUmVmcmVzaFwiOnRydWUsXCJwdWxsVG9SZWZyZXNoXCI6e1wiY29sb3JcIjpcIiMwMDhCOEJcIn19LFwicGFnZXMvZXZhbHVhdGlvbi9taXNzaW9uRGV0YWlsXCI6e1wibmF2aWdhdGlvbkJhclRpdGxlVGV4dFwiOlwi6K+m5oOFXCJ9LFwicGFnZXMvbWluZS9jaGFuZ2VNaW5lSW5mb1wiOntcIm5hdmlnYXRpb25CYXJUaXRsZVRleHRcIjpcIuS/ruaUueS4quS6uuS/oeaBr1wifX0sXCJnbG9iYWxTdHlsZVwiOntcIm5hdmlnYXRpb25CYXJUZXh0U3R5bGVcIjpcIndoaXRlXCIsXCJuYXZpZ2F0aW9uQmFyVGl0bGVUZXh0XCI6XCJ1bmktYXBwXCIsXCJuYXZpZ2F0aW9uQmFyQmFja2dyb3VuZENvbG9yXCI6XCIjMDA4QjhCXCIsXCJiYWNrZ3JvdW5kQ29sb3JcIjpcIiMwMDhCOEJcIn19Il0sInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///7\n");
/***/ }),

View File

@ -132,12 +132,14 @@
}
},
"tabBar": {
"selectedColor": "#008B8B",
"color": "#555555",
"list": [
{
"pagePath": "pages/index/index",
"text": "当前任务",
"iconPath": "static/tabbar/ic_his_no.png",
"selectedIconPath": "static/tabbar/ic_his_sel.png"
"iconPath": "static/tabbar/ic_miss_no.png",
"selectedIconPath": "static/tabbar/ic_miss_sel.png"
},
{
"pagePath": "pages/mine/index",
@ -147,7 +149,6 @@
}
],
"borderStyle": "rgba(0,0,0,0.4)",
"selectedColor": "#0062cc",
"height": "50px"
}
}

View File

@ -1,6 +1,9 @@
{
"navigationBarTitleText": "历史任务",
"enablePullDownRefresh": true,
"pullToRefresh": {
"color": "#008B8B"
},
"usingComponents": {
"uni-list": "/components/uni-list/uni-list",
"uni-list-item": "/components/uni-list-item/uni-list-item",

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,9 @@
{
"navigationBarTitleText": "当前任务",
"enablePullDownRefresh": true,
"pullToRefresh": {
"color": "#008B8B"
},
"usingComponents": {
"uni-list": "/components/uni-list/uni-list",
"uni-list-item": "/components/uni-list-item/uni-list-item",

View File

@ -1 +1 @@
<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>
<view><block wx:for="{{$root.l0}}" wx:for-item="evaluation" wx:for-index="index" wx:key="index"><view class="content" data-taskid="{{evaluation.$orig.taskId}}" data-event-opts="{{[['tap',[['itemClick',['$0'],[[['evaluations','',index]]]]]]]}}" bindtap="__e"><view class="item-li"><view class="item-title">{{index+1+"."+evaluation.$orig.taskName}}</view><view class="item-content">{{evaluation.$orig.evaluationName}}</view><view class="item-bottom-box"><view class="item-tag-box"><view class="item-time">{{''+evaluation.g0+"至"+evaluation.g1+''}}</view><view class="item-tag"><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 class="item-count-tag"><view class="item-count-yet">{{evaluation.g4+''}}</view><text style="color:#FFFFFF;" space="emsp" decode="true">{{divider}}</text><view class="item-count-not">{{''+evaluation.g5}}</view></view></view></view></view></block></view>

View File

@ -1,32 +1,36 @@
.task-content {}
.task-content .task-content-item {
padding: 5rpx 0;
.content {
width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: flex;
margin-top: 20rpx;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
}
.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-count {
font-size: 15rpx;
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;
}
.item-li {
display: -webkit-box;
@ -44,12 +48,90 @@
-webkit-align-items: flex-start;
align-items: flex-start;
min-width: 50%;
width: 90%;
min-height: 50px;
margin: 10px;
width: 95%;
min-width: 95%;
min-height: 180rpx;
margin: 10rpx;
background: #FFFFFF;
padding: 5px;
border-radius: 5px;
box-shadow: 5rpx 5rpx 15px #d9d9d9;
padding: 5rpx;
border-radius: 10rpx;
box-shadow: 8rpx 8rpx 10rpx #d9d9d9;
}
.item-title {
font-size: 28rpx;
font-weight: bold;
color: #000000;
}
.item-content {
font-size: 30rpx;
color: #000000;
}
.item-count-tag {
display: -webkit-box;
display: -webkit-flex;
display: flex;
font-size: 20rpx;
color: #000000;
background: #008B8B;
padding: 10rpx;
height: 35rpx;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
text-align: center;
border-radius: 10rpx;
box-shadow: 8rpx 8rpx 10rpx #d9d9d9;
}
.item-count-yet {
color: #FFFFFF;
}
.item-count-not {
color: #f9e9c3;
}
.item-tag-box {
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-align: start;
-webkit-align-items: flex-start;
align-items: flex-start;
}
.item-bottom-box {
display: -webkit-box;
display: -webkit-flex;
display: flex;
margin-top: 15rpx;
-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;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between;
width: 97%;
}
.item-time {
font-size: 25rpx;
color: #000000;
}
.item-tag {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: start;
-webkit-align-items: flex-start;
align-items: flex-start;
text-align: left;
font-size: 25rpx;
}

File diff suppressed because one or more lines are too long

View File

@ -99,6 +99,7 @@ image.cont {
background-color: #008B8B;
}
.input-font {
color: #FFFFFF;
padding-top: 10rpx;
padding-bottom: 10rpx;
margin-top: 25rpx;
@ -184,7 +185,7 @@ image.cont {
z-index: 0;
}
.input-placeholder {
color: #6D6D72;
color: #FFFFFF;
font-size: 25rpx;
}

File diff suppressed because one or more lines are too long

View File

@ -98,7 +98,7 @@
align-self: center;
height: 80rpx;
line-height: 70rpx;
background: #007AFF;
background: #008B8B;
color: #fff;
font-size: 28rpx;
border-radius: 40rpx;

File diff suppressed because one or more lines are too long

View File

@ -170,7 +170,7 @@
width: 80%;
height: 70rpx;
line-height: 70rpx;
background: #007AFF;
background: #008B8B;
color: #fff;
font-size: 28rpx;
border-radius: 40rpx;

File diff suppressed because one or more lines are too long

View File

@ -1,2 +1,2 @@
<view><view class="content"><view class="image"><view class="image-content"><image class="background _img" src="{{backImg}}" mode="aspectFill"></image></view><view class="image-avatar"><image class="avatar" src="{{titlePhotoSrc}}" mode="aspectFill" data-event-opts="{{[['error',[['imgLoadError',['$event']]]],['tap',[['choseImg',['$event']]]]]}}" binderror="__e" bindtap="__e"></image><block wx:if="{{userInfoObj!=null}}"><view><view style="text-align:center;color:#FFFFFF;">{{userInfoObj.name}}</view><view style="text-align:center;color:#FFFFFF;">{{userInfoObj.phone}}</view></view></block><block wx:else><view>用户名
手机号</view></block></view></view><uni-list class="task-content" vue-id="1" bind:__l="__l" vue-slots="{{['default']}}"><uni-list-item vue-id="{{('2')+','+('1')}}" title="修改个人信息" thumb="../../static/mine/user.png" data-event-opts="{{[['^click',[['changeInfo']]]]}}" bind:click="__e" bind:__l="__l"></uni-list-item><uni-list-item vue-id="{{('3')+','+('1')}}" title="修改密码" thumb="../../static/mine/ic_pwd.png" data-event-opts="{{[['^click',[['changePwd']]]]}}" bind:click="__e" bind:__l="__l"></uni-list-item><uni-list-item vue-id="{{('4')+','+('1')}}" title="退出" thumb="../../static/mine/logout.png" data-event-opts="{{[['^click',[['logout']]]]}}" bind:click="__e" bind:__l="__l"></uni-list-item></uni-list></view></view>
手机号</view></block></view></view><view class="item-li"><uni-list style="width:100%;align-items:center;" vue-id="1" bind:__l="__l" vue-slots="{{['default']}}"><uni-list-item vue-id="{{('2')+','+('1')}}" title="修改个人信息" thumb="../../static/mine/ic_mine_center.png" data-event-opts="{{[['^click',[['changeInfo']]]]}}" bind:click="__e" bind:__l="__l"></uni-list-item><uni-list-item vue-id="{{('3')+','+('1')}}" title="修改密码" thumb="../../static/mine/ic_pwd.png" data-event-opts="{{[['^click',[['changePwd']]]]}}" bind:click="__e" bind:__l="__l"></uni-list-item><uni-list-item vue-id="{{('4')+','+('1')}}" title="退出" thumb="../../static/mine/ic_logout.png" data-event-opts="{{[['^click',[['logout']]]]}}" bind:click="__e" bind:__l="__l"></uni-list-item></uni-list></view></view></view>

View File

@ -20,7 +20,7 @@
}
.content .image .image-content .background {
width: 100%;
height: 400rpx;
height: 450rpx;
}
.content .image .image-avatar {
position: fixed;
@ -65,4 +65,17 @@
border-top: 1px solid silver;
border-left: 1px solid silver;
}
.item-li {
width: 100%;
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-align: center;
-webkit-align-items: center;
align-items: center;
}

View File

@ -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":"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":{}}
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,"pullToRefresh":{"color":"#008B8B"},"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,"pullToRefresh":{"color":"#008B8B"},"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":"#555555","selectedColor":"#008B8B","backgroundColor":"","borderStyle":"black","list":[{"pagePath":"pages/index/index.html","text":"当前任务","iconPath":"static/tabbar/ic_miss_no.png","selectedIconPath":"static/tabbar/ic_miss_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__ = '';

View File

@ -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":"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":{}};
"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,"pullToRefresh":{"color":"#008B8B"},"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,"pullToRefresh":{"color":"#008B8B"},"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":"#555555","selectedColor":"#008B8B","backgroundColor":"","borderStyle":"black","list":[{"pagePath":"pages/index/index.html","text":"当前任务","iconPath":"static/tabbar/ic_miss_no.png","selectedIconPath":"static/tabbar/ic_miss_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":{}};

File diff suppressed because one or more lines are too long

View File

@ -1222,28 +1222,37 @@ function gz$gwx_10(){
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,'index'])
Z([3,'evaluation'])
Z([[6],[[7],[3,'$root']],[3,'l0']])
Z(z[1])
Z(z[0])
Z([3,'__e'])
Z([3,'content'])
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([3,'item-li'])
Z([3,'task-content-item task-name'])
Z([3,'item-title'])
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'])
Z([3,'item-content'])
Z([a,[[6],[[6],[[7],[3,'evaluation']],[3,'$orig']],[3,'evaluationName']]])
Z([3,'display:flex;flex-direction:row;justify-content:space-between;align-items:center;'])
Z([a,[[6],[[6],[[7],[3,'evaluation']],[3,'$orig']],[3,'taskRecordSubmitCount']]])
Z([3,'task-content-item task-time'])
Z([a,[[2,'+'],[[2,'+'],[[6],[[7],[3,'evaluation']],[3,'g0']],[1,' ~\n\t\t\t\t\t\t']],[[6],[[7],[3,'evaluation']],[3,'g1']]]])
Z([3,'task-content-item task-type'])
Z([3,'item-bottom-box'])
Z([3,'item-tag-box'])
Z([3,'item-time'])
Z([a,[[2,'+'],[[2,'+'],[[2,'+'],[[2,'+'],[1,''],[[6],[[7],[3,'evaluation']],[3,'g0']]],[1,'至']],[[6],[[7],[3,'evaluation']],[3,'g1']]],[1,'']]])
Z([3,'item-tag'])
Z([[2,'==='],[[6],[[6],[[7],[3,'evaluation']],[3,'$orig']],[3,'taskType']],[1,1]])
Z([a,[[2,'+'],[[6],[[6],[[7],[3,'evaluation']],[3,'g2']],[1,1]],[1,' [测评部门]']]])
Z([[2,'==='],[[6],[[6],[[7],[3,'evaluation']],[3,'$orig']],[3,'taskType']],[1,2]])
Z([a,[[2,'+'],[[6],[[6],[[7],[3,'evaluation']],[3,'g3']],[1,2]],[1,' [测评人员]']]])
Z([3,'item-count-tag'])
Z([3,'item-count-yet'])
Z([a,[[2,'+'],[[6],[[7],[3,'evaluation']],[3,'g4']],[1,'']]])
Z([3,'true'])
Z([3,'emsp'])
Z([3,'color:#FFFFFF;'])
Z([a,[[7],[3,'divider']]])
Z([3,'item-count-not'])
Z([a,[[2,'+'],[1,''],[[6],[[7],[3,'evaluation']],[3,'g5']]]])
})(__WXML_GLOBAL__.ops_cached.$gwx_10);return __WXML_GLOBAL__.ops_cached.$gwx_10
}
function gz$gwx_11(){
@ -1385,26 +1394,27 @@ Z([a,[[6],[[7],[3,'userInfoObj']],[3,'name']]])
Z(z[14])
Z([a,[[6],[[7],[3,'userInfoObj']],[3,'phone']]])
Z([3,'用户名\n 手机号'])
Z([3,'item-li'])
Z([3,'__l'])
Z([3,'task-content'])
Z([3,'width:100%;align-items:center;'])
Z([3,'1'])
Z([[4],[[5],[1,'default']]])
Z(z[19])
Z(z[20])
Z(z[7])
Z([[4],[[5],[[4],[[5],[[5],[1,'^click']],[[4],[[5],[[4],[[5],[1,'changeInfo']]]]]]]]])
Z([3,'../../static/mine/user.png'])
Z([3,'../../static/mine/ic_mine_center.png'])
Z([3,'修改个人信息'])
Z([[2,'+'],[[2,'+'],[1,'2'],[1,',']],[1,'1']])
Z(z[19])
Z(z[20])
Z(z[7])
Z([[4],[[5],[[4],[[5],[[5],[1,'^click']],[[4],[[5],[[4],[[5],[1,'changePwd']]]]]]]]])
Z([3,'../../static/mine/ic_pwd.png'])
Z([3,'修改密码'])
Z([[2,'+'],[[2,'+'],[1,'3'],[1,',']],[1,'1']])
Z(z[19])
Z(z[20])
Z(z[7])
Z([[4],[[5],[[4],[[5],[[5],[1,'^click']],[[4],[[5],[[4],[[5],[1,'logout']]]]]]]]])
Z([3,'../../static/mine/logout.png'])
Z([3,'../../static/mine/ic_logout.png'])
Z([3,'退出'])
Z([[2,'+'],[[2,'+'],[1,'4'],[1,',']],[1,'1']])
})(__WXML_GLOBAL__.ops_cached.$gwx_14);return __WXML_GLOBAL__.ops_cached.$gwx_14
@ -1666,11 +1676,10 @@ d_[x[9]]={}
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=_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 oPC=_mz(z,'view',['bindtap',4,'class',1,'data-event-opts',2,'data-taskid',3],[],bMC,eLC,gg)
var fQC=_n('view')
_rz(z,fQC,'class',8,bMC,eLC,gg)
var cRC=_n('view')
@ -1684,46 +1693,60 @@ var cUC=_oz(z,12,bMC,eLC,gg)
_(oTC,cUC)
_(fQC,oTC)
var oVC=_n('view')
_rz(z,oVC,'style',13,bMC,eLC,gg)
_rz(z,oVC,'class',13,bMC,eLC,gg)
var lWC=_n('view')
var aXC=_oz(z,14,bMC,eLC,gg)
_rz(z,lWC,'class',14,bMC,eLC,gg)
var aXC=_n('view')
_rz(z,aXC,'class',15,bMC,eLC,gg)
var tYC=_oz(z,16,bMC,eLC,gg)
_(aXC,tYC)
_(lWC,aXC)
_(oVC,lWC)
var tYC=_n('view')
var eZC=_n('view')
_rz(z,eZC,'class',15,bMC,eLC,gg)
var b1C=_oz(z,16,bMC,eLC,gg)
_rz(z,eZC,'class',17,bMC,eLC,gg)
var b1C=_v()
_(eZC,b1C)
_(tYC,eZC)
var o2C=_n('view')
_rz(z,o2C,'class',17,bMC,eLC,gg)
var x3C=_v()
_(o2C,x3C)
if(_oz(z,18,bMC,eLC,gg)){x3C.wxVkey=1
if(_oz(z,18,bMC,eLC,gg)){b1C.wxVkey=1
var x3C=_n('text')
var o4C=_oz(z,19,bMC,eLC,gg)
_(x3C,o4C)
_(b1C,x3C)
}
var o2C=_v()
_(eZC,o2C)
if(_oz(z,20,bMC,eLC,gg)){o2C.wxVkey=1
var f5C=_n('text')
var c6C=_oz(z,19,bMC,eLC,gg)
var c6C=_oz(z,21,bMC,eLC,gg)
_(f5C,c6C)
_(x3C,f5C)
_(o2C,f5C)
}
var o4C=_v()
_(o2C,o4C)
if(_oz(z,20,bMC,eLC,gg)){o4C.wxVkey=1
var h7C=_n('text')
var o8C=_oz(z,21,bMC,eLC,gg)
b1C.wxXCkey=1
o2C.wxXCkey=1
_(lWC,eZC)
_(oVC,lWC)
var h7C=_n('view')
_rz(z,h7C,'class',22,bMC,eLC,gg)
var o8C=_n('view')
_rz(z,o8C,'class',23,bMC,eLC,gg)
var c9C=_oz(z,24,bMC,eLC,gg)
_(o8C,c9C)
_(h7C,o8C)
_(o4C,h7C)
}
x3C.wxXCkey=1
o4C.wxXCkey=1
_(tYC,o2C)
_(oVC,tYC)
var o0C=_mz(z,'text',['decode',25,'space',1,'style',2],[],bMC,eLC,gg)
var lAD=_oz(z,28,bMC,eLC,gg)
_(o0C,lAD)
_(h7C,o0C)
var aBD=_n('view')
_rz(z,aBD,'class',29,bMC,eLC,gg)
var tCD=_oz(z,30,bMC,eLC,gg)
_(aBD,tCD)
_(h7C,aBD)
_(oVC,h7C)
_(fQC,oVC)
_(oPC,fQC)
_(oNC,oPC)
return oNC
}
aJC.wxXCkey=2
_2z(z,3,tKC,e,s,gg,aJC,'evaluation','index','index')
_2z(z,2,tKC,e,s,gg,aJC,'evaluation','index','index')
_(r,lIC)
return r
}
@ -1731,205 +1754,208 @@ 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=_n('view')
var lAD=_n('view')
_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 oFD=_n('view')
_rz(z,oFD,'class',0,e,s,gg)
var xGD=_n('view')
_rz(z,xGD,'class',8,e,s,gg)
var oHD=_oz(z,9,e,s,gg)
_rz(z,xGD,'class',1,e,s,gg)
var oHD=_mz(z,'image',['class',2,'mode',1,'src',2],[],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)
_rz(z,fID,'class',5,e,s,gg)
var cJD=_n('view')
_rz(z,cJD,'class',6,e,s,gg)
var hKD=_oz(z,7,e,s,gg)
_(cJD,hKD)
_(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)
var oLD=_n('view')
_rz(z,oLD,'class',8,e,s,gg)
var cMD=_oz(z,9,e,s,gg)
_(oLD,cMD)
_(eDD,oLD)
_(aBD,eDD)
_(lAD,aBD)
_(o0C,lAD)
_(r,o0C)
_(fID,oLD)
var oND=_n('view')
_rz(z,oND,'class',10,e,s,gg)
var lOD=_mz(z,'input',['bindinput',11,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
_(oND,lOD)
var aPD=_mz(z,'input',['bindinput',18,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
_(oND,aPD)
_(fID,oND)
var tQD=_mz(z,'view',['bindtap',25,'class',1,'data-event-opts',2],[],e,s,gg)
var eRD=_n('text')
var bSD=_oz(z,28,e,s,gg)
_(eRD,bSD)
_(tQD,eRD)
_(fID,tQD)
_(xGD,fID)
_(oFD,xGD)
_(bED,oFD)
_(r,bED)
return r
}
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')
var oTD=_oz(z,2,e,s,gg)
_(bSD,oTD)
_(eRD,bSD)
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 xUD=_n('view')
var oVD=_n('view')
_rz(z,oVD,'class',9,e,s,gg)
_(tQD,oVD)
_rz(z,oVD,'class',0,e,s,gg)
var fWD=_n('view')
_rz(z,fWD,'class',10,e,s,gg)
_rz(z,fWD,'class',1,e,s,gg)
var cXD=_n('view')
var hYD=_oz(z,11,e,s,gg)
var hYD=_oz(z,2,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)
var oZD=_mz(z,'input',['bindinput',3,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
_(fWD,oZD)
_(tQD,fWD)
_(oVD,fWD)
var c1D=_n('view')
_rz(z,c1D,'class',18,e,s,gg)
_(tQD,c1D)
_rz(z,c1D,'class',9,e,s,gg)
_(oVD,c1D)
var o2D=_n('view')
_rz(z,o2D,'class',19,e,s,gg)
_rz(z,o2D,'class',10,e,s,gg)
var l3D=_n('view')
var a4D=_oz(z,20,e,s,gg)
var a4D=_oz(z,11,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)
var t5D=_mz(z,'input',['bindinput',12,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
_(o2D,t5D)
_(tQD,o2D)
_(oVD,o2D)
var e6D=_n('view')
_rz(z,e6D,'class',27,e,s,gg)
_(tQD,e6D)
_(aPD,tQD)
_rz(z,e6D,'class',18,e,s,gg)
_(oVD,e6D)
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)
_rz(z,b7D,'class',19,e,s,gg)
var o8D=_n('view')
var x9D=_oz(z,20,e,s,gg)
_(o8D,x9D)
_(b7D,o8D)
_(aPD,b7D)
_(r,aPD)
var o0D=_mz(z,'input',['bindinput',21,'data-event-opts',1,'placeholder',2,'placeholderClass',3,'type',4,'value',5],[],e,s,gg)
_(b7D,o0D)
_(oVD,b7D)
var fAE=_n('view')
_rz(z,fAE,'class',27,e,s,gg)
_(oVD,fAE)
_(xUD,oVD)
var cBE=_n('view')
_rz(z,cBE,'class',28,e,s,gg)
var hCE=_mz(z,'button',['bindtap',29,'class',1,'data-event-opts',2],[],e,s,gg)
var oDE=_oz(z,32,e,s,gg)
_(hCE,oDE)
_(cBE,hCE)
_(xUD,cBE)
_(r,xUD)
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')
var cEE=_oz(z,2,e,s,gg)
_(oDE,cEE)
_(hCE,oDE)
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 oFE=_n('view')
var lGE=_n('view')
_rz(z,lGE,'class',10,e,s,gg)
_(cBE,lGE)
_rz(z,lGE,'class',0,e,s,gg)
var aHE=_n('view')
_rz(z,aHE,'class',11,e,s,gg)
_rz(z,aHE,'class',1,e,s,gg)
var tIE=_n('view')
var eJE=_oz(z,12,e,s,gg)
var eJE=_oz(z,2,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)
var bKE=_mz(z,'input',['bindinput',3,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
_(aHE,bKE)
_(cBE,aHE)
_(lGE,aHE)
var oLE=_n('view')
_rz(z,oLE,'class',20,e,s,gg)
_(cBE,oLE)
_rz(z,oLE,'class',10,e,s,gg)
_(lGE,oLE)
var xME=_n('view')
_rz(z,xME,'class',21,e,s,gg)
_rz(z,xME,'class',11,e,s,gg)
var oNE=_n('view')
var fOE=_oz(z,22,e,s,gg)
var fOE=_oz(z,12,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)
var cPE=_mz(z,'input',['bindinput',13,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
_(xME,cPE)
_(cBE,xME)
_(lGE,xME)
var hQE=_n('view')
_rz(z,hQE,'class',30,e,s,gg)
_(cBE,hQE)
_(fAE,cBE)
_rz(z,hQE,'class',20,e,s,gg)
_(lGE,hQE)
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)
_rz(z,oRE,'class',21,e,s,gg)
var cSE=_n('view')
var oTE=_oz(z,22,e,s,gg)
_(cSE,oTE)
_(oRE,cSE)
_(fAE,oRE)
_(r,fAE)
var lUE=_mz(z,'input',['bindinput',23,'class',1,'data-event-opts',2,'placeholder',3,'placeholderClass',4,'type',5,'value',6],[],e,s,gg)
_(oRE,lUE)
_(lGE,oRE)
var aVE=_n('view')
_rz(z,aVE,'class',30,e,s,gg)
_(lGE,aVE)
_(oFE,lGE)
var tWE=_n('view')
_rz(z,tWE,'class',31,e,s,gg)
var eXE=_mz(z,'button',['bindtap',32,'class',1,'data-event-opts',2],[],e,s,gg)
var bYE=_oz(z,35,e,s,gg)
_(eXE,bYE)
_(tWE,eXE)
_(oFE,tWE)
_(r,oFE)
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',2,e,s,gg)
var oZE=_mz(z,'image',['class',3,'mode',1,'src',2],[],e,s,gg)
_(bYE,oZE)
_(eXE,bYE)
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 o2E=_n('view')
_rz(z,o2E,'class',0,e,s,gg)
var f3E=_n('view')
_rz(z,f3E,'class',1,e,s,gg)
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)
_rz(z,c4E,'class',2,e,s,gg)
var h5E=_mz(z,'image',['class',3,'mode',1,'src',2],[],e,s,gg)
_(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
_(f3E,c4E)
var o6E=_n('view')
_rz(z,o6E,'class',6,e,s,gg)
var o8E=_mz(z,'image',['binderror',7,'bindtap',1,'class',2,'data-event-opts',3,'mode',4,'src',5],[],e,s,gg)
_(o6E,o8E)
var c7E=_v()
_(o6E,c7E)
if(_oz(z,13,e,s,gg)){c7E.wxVkey=1
var l9E=_n('view')
var a0E=_oz(z,18,e,s,gg)
var a0E=_n('view')
_rz(z,a0E,'style',14,e,s,gg)
var tAF=_oz(z,15,e,s,gg)
_(a0E,tAF)
_(l9E,a0E)
_(o2E,l9E)
var eBF=_n('view')
_rz(z,eBF,'style',16,e,s,gg)
var bCF=_oz(z,17,e,s,gg)
_(eBF,bCF)
_(l9E,eBF)
_(c7E,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)
else{c7E.wxVkey=2
var oDF=_n('view')
var xEF=_oz(z,18,e,s,gg)
_(oDF,xEF)
_(c7E,oDF)
}
c7E.wxXCkey=1
_(f3E,o6E)
_(o2E,f3E)
var oFF=_n('view')
_rz(z,oFF,'class',19,e,s,gg)
var fGF=_mz(z,'uni-list',['bind:__l',20,'style',1,'vueId',2,'vueSlots',3],[],e,s,gg)
var cHF=_mz(z,'uni-list-item',['bind:__l',24,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
_(fGF,cHF)
var hIF=_mz(z,'uni-list-item',['bind:__l',30,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
_(fGF,hIF)
var oJF=_mz(z,'uni-list-item',['bind:__l',36,'bind:click',1,'data-event-opts',2,'thumb',3,'title',4,'vueId',5],[],e,s,gg)
_(fGF,oJF)
_(oFF,fGF)
_(o2E,oFF)
_(x1E,o2E)
_(r,x1E)
return r
}
e_[x[13]]={f:m13,j:[],i:[],ti:[],ic:[]}
@ -2084,19 +2110,19 @@ __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],"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.wxss']=setCssToHead([".",[1],"content { width: 100%; display: -webkit-box; display: -webkit-flex; display: flex; margin-top: ",[0,20],"; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; }\n.",[1],"item-count { font-size: ",[0,15],"; 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; }\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: 95%; min-width: 95%; min-height: ",[0,180],"; margin: ",[0,10],"; background: #FFFFFF; padding: ",[0,5],"; border-radius: ",[0,10],"; box-shadow: ",[0,8]," ",[0,8]," ",[0,10]," #d9d9d9; }\n.",[1],"item-title { font-size: ",[0,28],"; font-weight: bold; color: #000000; }\n.",[1],"item-content { font-size: ",[0,30],"; color: #000000; }\n.",[1],"item-count-tag { display: -webkit-box; display: -webkit-flex; display: flex; font-size: ",[0,20],"; color: #000000; background: #008B8B; padding: ",[0,10],"; height: ",[0,35],"; -webkit-box-align: center; -webkit-align-items: center; align-items: center; text-align: center; border-radius: ",[0,10],"; box-shadow: ",[0,8]," ",[0,8]," ",[0,10]," #d9d9d9; }\n.",[1],"item-count-yet { color: #FFFFFF; }\n.",[1],"item-count-not { color: #f9e9c3; }\n.",[1],"item-tag-box { 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-align: start; -webkit-align-items: flex-start; align-items: flex-start; }\n.",[1],"item-bottom-box { display: -webkit-box; display: -webkit-flex; display: flex; margin-top: ",[0,15],"; -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; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; width: 97%; }\n.",[1],"item-time { font-size: ",[0,25],"; color: #000000; }\n.",[1],"item-tag { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; text-align: left; font-size: ",[0,25],"; }\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.",[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.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 { color: #FFFFFF; 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: #FFFFFF; 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"});
__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: #008B8B; color: #fff; font-size: ",[0,28],"; border-radius: ",[0,40],"; margin-top: ",[0,75],"; }\n",],undefined,{path:"./pages/mine/changeMineInfo.wxss"});
__wxAppCode__['pages/mine/changeMineInfo.wxml']=$gwx('./pages/mine/changeMineInfo.wxml');
__wxAppCode__['pages/mine/changePwdPage.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.",[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],"uni-form-item { display: -webkit-box; display: -webkit-flex; display: flex; width: 100%; padding: ",[0,10]," 0; }\n.",[1],"uni-form-item .",[1],"title { padding: ",[0,10]," ",[0,25],"; }\n.",[1],"uni-label { width: ",[0,210],"; word-wrap: break-word; word-break: break-all; text-indent: ",[0,20],"; }\n.",[1],"uni-input { height: ",[0,50],"; padding: ",[0,15]," ",[0,25],"; line-height: ",[0,50],"; font-size: ",[0,28],"; background: #FAF8F1; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; }\n.",[1],"input-placeholder { color: #6D6D72; font-size: ",[0,30],"; }\n.",[1],"uni-btn-v { padding: ",[0,10]," 0; }\n.",[1],"uni-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; }\n.",[1],"uni-column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; }\n.",[1],"save-btn { display: inline-block; width: 80%; height: ",[0,70],"; 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/changePwdPage.wxss"});
__wxAppCode__['pages/mine/changePwdPage.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.",[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],"uni-form-item { display: -webkit-box; display: -webkit-flex; display: flex; width: 100%; padding: ",[0,10]," 0; }\n.",[1],"uni-form-item .",[1],"title { padding: ",[0,10]," ",[0,25],"; }\n.",[1],"uni-label { width: ",[0,210],"; word-wrap: break-word; word-break: break-all; text-indent: ",[0,20],"; }\n.",[1],"uni-input { height: ",[0,50],"; padding: ",[0,15]," ",[0,25],"; line-height: ",[0,50],"; font-size: ",[0,28],"; background: #FAF8F1; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; }\n.",[1],"input-placeholder { color: #6D6D72; font-size: ",[0,30],"; }\n.",[1],"uni-btn-v { padding: ",[0,10]," 0; }\n.",[1],"uni-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; }\n.",[1],"uni-column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; }\n.",[1],"save-btn { display: inline-block; width: 80%; height: ",[0,70],"; line-height: ",[0,70],"; background: #008B8B; color: #fff; font-size: ",[0,28],"; border-radius: ",[0,40],"; margin-top: ",[0,75],"; }\n",],undefined,{path:"./pages/mine/changePwdPage.wxss"});
__wxAppCode__['pages/mine/changePwdPage.wxml']=$gwx('./pages/mine/changePwdPage.wxml');
__wxAppCode__['pages/mine/index.wxss']=setCssToHead([".",[1],"content {}\n.",[1],"content .",[1],"image { 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-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; }\n.",[1],"content .",[1],"image .",[1],"image-content { width: 100%; }\n.",[1],"content .",[1],"image .",[1],"image-content .",[1],"background { width: 100%; height: ",[0,400],"; }\n.",[1],"content .",[1],"image .",[1],"image-avatar { position: fixed; -webkit-align-self: center; align-self: center; width: ",[0,200],"; height: ",[0,200],"; border-radius: ",[0,100],"; background-color: #FFFFFF; }\n.",[1],"content .",[1],"image .",[1],"image-avatar .",[1],"avatar { width: ",[0,185],"; height: ",[0,185],"; margin-top: ",[0,10],"; margin-left: ",[0,10],"; border-radius: ",[0,90],"; }\n.",[1],"content .",[1],"user-username {}\n.",[1],"content .",[1],"user-name {}\n.",[1],"confirm-logout-box { width: ",[0,400],"; height: ",[0,200],"; background-color: #FFFFFF; text-align: center; border-radius: ",[0,20],"; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-message { height: ",[0,140],"; line-height: ",[0,140],"; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-bottons .",[1],"confirm { float: left; width: ",[0,199],"; text-align: center; border-top: 1px solid silver; border-right: 1px solid silver; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-bottons .",[1],"cancel { float: right; width: ",[0,199],"; text-align: center; border-top: 1px solid silver; border-left: 1px solid silver; }\n",],undefined,{path:"./pages/mine/index.wxss"});
__wxAppCode__['pages/mine/index.wxss']=setCssToHead([".",[1],"content {}\n.",[1],"content .",[1],"image { 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-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; }\n.",[1],"content .",[1],"image .",[1],"image-content { width: 100%; }\n.",[1],"content .",[1],"image .",[1],"image-content .",[1],"background { width: 100%; height: ",[0,450],"; }\n.",[1],"content .",[1],"image .",[1],"image-avatar { position: fixed; -webkit-align-self: center; align-self: center; width: ",[0,200],"; height: ",[0,200],"; border-radius: ",[0,100],"; background-color: #FFFFFF; }\n.",[1],"content .",[1],"image .",[1],"image-avatar .",[1],"avatar { width: ",[0,185],"; height: ",[0,185],"; margin-top: ",[0,10],"; margin-left: ",[0,10],"; border-radius: ",[0,90],"; }\n.",[1],"content .",[1],"user-username {}\n.",[1],"content .",[1],"user-name {}\n.",[1],"confirm-logout-box { width: ",[0,400],"; height: ",[0,200],"; background-color: #FFFFFF; text-align: center; border-radius: ",[0,20],"; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-message { height: ",[0,140],"; line-height: ",[0,140],"; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-bottons .",[1],"confirm { float: left; width: ",[0,199],"; text-align: center; border-top: 1px solid silver; border-right: 1px solid silver; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-bottons .",[1],"cancel { float: right; width: ",[0,199],"; text-align: center; border-top: 1px solid silver; border-left: 1px solid silver; }\n.",[1],"item-li { width: 100%; 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-align: center; -webkit-align-items: center; align-items: center; }\n",],undefined,{path:"./pages/mine/index.wxss"});
__wxAppCode__['pages/mine/index.wxml']=$gwx('./pages/mine/index.wxml');
;var __pageFrameEndTime__ = Date.now();

View File

@ -132,12 +132,14 @@
}
},
"tabBar": {
"selectedColor": "#008B8B",
"color": "#555555",
"list": [
{
"pagePath": "pages/index/index",
"text": "当前任务",
"iconPath": "static/tabbar/ic_his_no.png",
"selectedIconPath": "static/tabbar/ic_his_sel.png"
"iconPath": "static/tabbar/ic_miss_no.png",
"selectedIconPath": "static/tabbar/ic_miss_sel.png"
},
{
"pagePath": "pages/mine/index",
@ -147,7 +149,6 @@
}
],
"borderStyle": "rgba(0,0,0,0.4)",
"selectedColor": "#0062cc",
"height": "50px"
}
}

View File

@ -1,2 +1,2 @@
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"})();
setCssToHead([".",[1],"content { width: 100%; display: -webkit-box; display: -webkit-flex; display: flex; margin-top: ",[0,20],"; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; }\n.",[1],"item-count { font-size: ",[0,15],"; 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; }\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: 95%; min-width: 95%; min-height: ",[0,180],"; margin: ",[0,10],"; background: #FFFFFF; padding: ",[0,5],"; border-radius: ",[0,10],"; box-shadow: ",[0,8]," ",[0,8]," ",[0,10]," #d9d9d9; }\n.",[1],"item-title { font-size: ",[0,28],"; font-weight: bold; color: #000000; }\n.",[1],"item-content { font-size: ",[0,30],"; color: #000000; }\n.",[1],"item-count-tag { display: -webkit-box; display: -webkit-flex; display: flex; font-size: ",[0,20],"; color: #000000; background: #008B8B; padding: ",[0,10],"; height: ",[0,35],"; -webkit-box-align: center; -webkit-align-items: center; align-items: center; text-align: center; border-radius: ",[0,10],"; box-shadow: ",[0,8]," ",[0,8]," ",[0,10]," #d9d9d9; }\n.",[1],"item-count-yet { color: #FFFFFF; }\n.",[1],"item-count-not { color: #f9e9c3; }\n.",[1],"item-tag-box { 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-align: start; -webkit-align-items: flex-start; align-items: flex-start; }\n.",[1],"item-bottom-box { display: -webkit-box; display: -webkit-flex; display: flex; margin-top: ",[0,15],"; -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; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; width: 97%; }\n.",[1],"item-time { font-size: ",[0,25],"; color: #000000; }\n.",[1],"item-tag { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; text-align: left; font-size: ",[0,25],"; }\n",],undefined,{path:"./pages/index/index.wxss"})();
document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/index/index.wxml') } }));

View File

@ -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.",[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"})();
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 { color: #FFFFFF; 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: #FFFFFF; font-size: ",[0,25],"; }\n",],undefined,{path:"./pages/login/index.wxss"})();
document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/login/index.wxml') } }));

View File

@ -1,2 +1,2 @@
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"})();
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: #008B8B; color: #fff; font-size: ",[0,28],"; border-radius: ",[0,40],"; margin-top: ",[0,75],"; }\n",],undefined,{path:"./pages/mine/changeMineInfo.wxss"})();
document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/mine/changeMineInfo.wxml') } }));

View File

@ -1,2 +1,2 @@
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.",[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],"uni-form-item { display: -webkit-box; display: -webkit-flex; display: flex; width: 100%; padding: ",[0,10]," 0; }\n.",[1],"uni-form-item .",[1],"title { padding: ",[0,10]," ",[0,25],"; }\n.",[1],"uni-label { width: ",[0,210],"; word-wrap: break-word; word-break: break-all; text-indent: ",[0,20],"; }\n.",[1],"uni-input { height: ",[0,50],"; padding: ",[0,15]," ",[0,25],"; line-height: ",[0,50],"; font-size: ",[0,28],"; background: #FAF8F1; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; }\n.",[1],"input-placeholder { color: #6D6D72; font-size: ",[0,30],"; }\n.",[1],"uni-btn-v { padding: ",[0,10]," 0; }\n.",[1],"uni-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; }\n.",[1],"uni-column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; }\n.",[1],"save-btn { display: inline-block; width: 80%; height: ",[0,70],"; 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/changePwdPage.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.",[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],"uni-form-item { display: -webkit-box; display: -webkit-flex; display: flex; width: 100%; padding: ",[0,10]," 0; }\n.",[1],"uni-form-item .",[1],"title { padding: ",[0,10]," ",[0,25],"; }\n.",[1],"uni-label { width: ",[0,210],"; word-wrap: break-word; word-break: break-all; text-indent: ",[0,20],"; }\n.",[1],"uni-input { height: ",[0,50],"; padding: ",[0,15]," ",[0,25],"; line-height: ",[0,50],"; font-size: ",[0,28],"; background: #FAF8F1; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; }\n.",[1],"input-placeholder { color: #6D6D72; font-size: ",[0,30],"; }\n.",[1],"uni-btn-v { padding: ",[0,10]," 0; }\n.",[1],"uni-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; }\n.",[1],"uni-column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; }\n.",[1],"save-btn { display: inline-block; width: 80%; height: ",[0,70],"; line-height: ",[0,70],"; background: #008B8B; color: #fff; font-size: ",[0,28],"; border-radius: ",[0,40],"; margin-top: ",[0,75],"; }\n",],undefined,{path:"./pages/mine/changePwdPage.wxss"})();
document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/mine/changePwdPage.wxml') } }));

View File

@ -1,2 +1,2 @@
setCssToHead([".",[1],"content {}\n.",[1],"content .",[1],"image { 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-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; }\n.",[1],"content .",[1],"image .",[1],"image-content { width: 100%; }\n.",[1],"content .",[1],"image .",[1],"image-content .",[1],"background { width: 100%; height: ",[0,400],"; }\n.",[1],"content .",[1],"image .",[1],"image-avatar { position: fixed; -webkit-align-self: center; align-self: center; width: ",[0,200],"; height: ",[0,200],"; border-radius: ",[0,100],"; background-color: #FFFFFF; }\n.",[1],"content .",[1],"image .",[1],"image-avatar .",[1],"avatar { width: ",[0,185],"; height: ",[0,185],"; margin-top: ",[0,10],"; margin-left: ",[0,10],"; border-radius: ",[0,90],"; }\n.",[1],"content .",[1],"user-username {}\n.",[1],"content .",[1],"user-name {}\n.",[1],"confirm-logout-box { width: ",[0,400],"; height: ",[0,200],"; background-color: #FFFFFF; text-align: center; border-radius: ",[0,20],"; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-message { height: ",[0,140],"; line-height: ",[0,140],"; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-bottons .",[1],"confirm { float: left; width: ",[0,199],"; text-align: center; border-top: 1px solid silver; border-right: 1px solid silver; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-bottons .",[1],"cancel { float: right; width: ",[0,199],"; text-align: center; border-top: 1px solid silver; border-left: 1px solid silver; }\n",],undefined,{path:"./pages/mine/index.wxss"})();
setCssToHead([".",[1],"content {}\n.",[1],"content .",[1],"image { 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-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; }\n.",[1],"content .",[1],"image .",[1],"image-content { width: 100%; }\n.",[1],"content .",[1],"image .",[1],"image-content .",[1],"background { width: 100%; height: ",[0,450],"; }\n.",[1],"content .",[1],"image .",[1],"image-avatar { position: fixed; -webkit-align-self: center; align-self: center; width: ",[0,200],"; height: ",[0,200],"; border-radius: ",[0,100],"; background-color: #FFFFFF; }\n.",[1],"content .",[1],"image .",[1],"image-avatar .",[1],"avatar { width: ",[0,185],"; height: ",[0,185],"; margin-top: ",[0,10],"; margin-left: ",[0,10],"; border-radius: ",[0,90],"; }\n.",[1],"content .",[1],"user-username {}\n.",[1],"content .",[1],"user-name {}\n.",[1],"confirm-logout-box { width: ",[0,400],"; height: ",[0,200],"; background-color: #FFFFFF; text-align: center; border-radius: ",[0,20],"; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-message { height: ",[0,140],"; line-height: ",[0,140],"; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-bottons .",[1],"confirm { float: left; width: ",[0,199],"; text-align: center; border-top: 1px solid silver; border-right: 1px solid silver; }\n.",[1],"confirm-logout-box .",[1],"confirm-logout-bottons .",[1],"cancel { float: right; width: ",[0,199],"; text-align: center; border-top: 1px solid silver; border-left: 1px solid silver; }\n.",[1],"item-li { width: 100%; 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-align: center; -webkit-align-items: center; align-items: center; }\n",],undefined,{path:"./pages/mine/index.wxss"})();
document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/mine/index.wxml') } }));

Binary file not shown.

After

Width:  |  Height:  |  Size: 739 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1000 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 763 B

After

Width:  |  Height:  |  Size: 863 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 834 B

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 869 B

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 690 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 712 B