添加收银稽核模块
11
.hbuilderx/launch.json
Normal file
@ -0,0 +1,11 @@
|
||||
{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
|
||||
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
|
||||
"version": "0.0",
|
||||
"configurations": [{
|
||||
"type": "uniCloud",
|
||||
"default": {
|
||||
"launchtype": "remote"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
75
App.vue
@ -68,24 +68,24 @@
|
||||
},
|
||||
onShow: function() {
|
||||
|
||||
var pages = getCurrentPages() // 获取加载的页面
|
||||
let len = pages.length
|
||||
if (len > 0) {
|
||||
var currentPage = pages[len - 1] // 获取当前页面的对象
|
||||
var nowRoute = '/' + currentPage.route // 当前页面url
|
||||
this.$util.addUserBehavior({intoRoute: nowRoute, outtoRoute: ''}) // 记录用户行为
|
||||
}
|
||||
// var pages = getCurrentPages() // 获取加载的页面
|
||||
// let len = pages.length
|
||||
// if (len > 0) {
|
||||
// var currentPage = pages[len - 1] // 获取当前页面的对象
|
||||
// var nowRoute = '/' + currentPage.route // 当前页面url
|
||||
// this.$util.addUserBehavior({intoRoute: nowRoute, outtoRoute: ''}) // 记录用户行为
|
||||
// }
|
||||
console.log('App Show')
|
||||
},
|
||||
onHide: function(options) {
|
||||
let pages = getCurrentPages() // 获取加载的页面
|
||||
// let pages = getCurrentPages() // 获取加载的页面
|
||||
|
||||
let len = pages.length
|
||||
if (len > 0) {
|
||||
let currentPage = pages[len - 1] // 获取当前页面的对象
|
||||
let nowRoute = '/' + currentPage.route // 当前页面url
|
||||
this.$util.addUserBehavior( {intoRoute: '', outtoRoute:nowRoute}) // 记录用户行为
|
||||
}
|
||||
// let len = pages.length
|
||||
// if (len > 0) {
|
||||
// let currentPage = pages[len - 1] // 获取当前页面的对象
|
||||
// let nowRoute = '/' + currentPage.route // 当前页面url
|
||||
// this.$util.addUserBehavior( {intoRoute: '', outtoRoute:nowRoute}) // 记录用户行为
|
||||
// }
|
||||
console.log('App Hide')
|
||||
}
|
||||
}
|
||||
@ -96,7 +96,7 @@
|
||||
|
||||
/*每个页面公共css */
|
||||
page {
|
||||
font-size: 26upx;
|
||||
font-size: 26rpx;
|
||||
color: #333;
|
||||
height: 100%;
|
||||
background-color: #f8f9fb;
|
||||
@ -108,14 +108,14 @@
|
||||
.load-more {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
height: 80upx;
|
||||
height: 80rpx;
|
||||
color: #9999;
|
||||
font-size: 24upx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
/* 审核环节最后一个加底部边距 */
|
||||
.process-box.uni-active {
|
||||
padding-bottom: 30upx;
|
||||
padding-bottom: 30rpx;
|
||||
}
|
||||
.process-box process-unit:nth-last-child(1) .prosess-unit::before{
|
||||
content: '';
|
||||
@ -130,19 +130,19 @@
|
||||
.ico-s:before,
|
||||
.ico:before {
|
||||
content: '';
|
||||
width: 36upx;
|
||||
height: 34upx;
|
||||
width: 36rpx;
|
||||
height: 34rpx;
|
||||
display: block;
|
||||
|
||||
margin-right: 6upx;
|
||||
margin-right: 6rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.ico-s:before {
|
||||
width: 18upx;
|
||||
height: 18upx;
|
||||
width: 18rpx;
|
||||
height: 18rpx;
|
||||
}
|
||||
|
||||
.ico-fj:before {
|
||||
@ -159,22 +159,25 @@
|
||||
|
||||
/* #ifdef MP-WEIXIN */
|
||||
|
||||
checkbox .wx-checkbox-input {
|
||||
border-radius: 50%;
|
||||
border: 1upx solid #63B7F9;
|
||||
width: 42upx;
|
||||
height: 42upx;
|
||||
checkbox .wx-checkbox-input {
|
||||
border-radius: 20%;
|
||||
border: 1rpx solid #91A6D7;
|
||||
width: 42rpx;
|
||||
height: 42rpx;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
|
||||
background-color: #63B7F9;
|
||||
color: #fff !important;
|
||||
}
|
||||
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
|
||||
background-color: #91A6D7;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
|
||||
font-size: 30upx;
|
||||
}
|
||||
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
button::after{
|
||||
border: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
27
pages.json
@ -345,7 +345,32 @@
|
||||
}
|
||||
}
|
||||
]
|
||||
},{
|
||||
},
|
||||
{
|
||||
"root": "pages/cashAudit",
|
||||
"pages": [
|
||||
{
|
||||
"path" : "list",
|
||||
"style" : {
|
||||
"enablePullDownRefresh": true,
|
||||
"navigationBarTitleText": "收银稽核"
|
||||
}
|
||||
},{
|
||||
"path" : "detail",
|
||||
"style" : {
|
||||
|
||||
"navigationBarTitleText": "收银稽核详情"
|
||||
}
|
||||
},{
|
||||
"path" : "check",
|
||||
"style" : {
|
||||
|
||||
"navigationBarTitleText": "收银稽核反馈"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/investment",
|
||||
"pages": [
|
||||
{
|
||||
|
||||
@ -253,7 +253,7 @@
|
||||
|
||||
|
||||
// });
|
||||
},
|
||||
},
|
||||
},
|
||||
onLoad() {
|
||||
let _this = this
|
||||
|
||||
@ -23,9 +23,7 @@
|
||||
<text>所属部门</text>
|
||||
<text class="text-red">*</text>
|
||||
<view class=" uni-flex uni-row content-unit" >
|
||||
|
||||
<input type="text" v-model="postData.USERTYPE_NAME" placeholder="请输入" :focus='isEdit' placeholder-style="color:#969EA4;" style="flex: 1;" name="DepartmentName" />
|
||||
|
||||
</view>
|
||||
</view>
|
||||
<view class="block-input uni-flex uni-row mt24 ai-center">
|
||||
|
||||
339
pages/cashAudit/check.vue
Normal file
@ -0,0 +1,339 @@
|
||||
<template>
|
||||
<view class="page-body">
|
||||
<view v-if="pageStep==1">
|
||||
<view class="feedback-box">
|
||||
<textarea v-model="saveMsg.auditExplain" placeholder="在此输入稽核异常的原因(必填)" class="feedback" placeholder-style="color:#CCCCCC;"/>
|
||||
<checkbox-group @change="changeState">
|
||||
<label class="checkbox">
|
||||
<checkbox :value="saveMsg.isAddIn" checked /><text class="checkbox-text">本次{{pageType==1 ? '长款已补齐流水':'短款已补入现金'}}</text>
|
||||
</label>
|
||||
</checkbox-group>
|
||||
</view>
|
||||
<view class="btn-box">
|
||||
<button type="default" class="main-btn" @click="nextStep ">提交</button>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
<view class="photo-box" v-else-if="pageType==0 && pageStep==2">
|
||||
<h4>上传短款凭证照片</h4>
|
||||
<div class="img-box">
|
||||
|
||||
<div class="upload-file-container">
|
||||
|
||||
<div class="upload-file-unit" v-for="(item,index) in uploadImgList" :key="index">
|
||||
<span class="upload-file-remove" @click.stop="deleteImgFunc(index)">-</span>
|
||||
<image mode="aspectFill" :src="item" @tap="showImg(index)" />
|
||||
</div>
|
||||
<div class="upload-file-add" @click="chooseImage">
|
||||
<div class="upload-file-add-container">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<view class="uni-flex btn-box">
|
||||
|
||||
<button type="default" class="stip-btn" @tap="submitMsg">跳过</button>
|
||||
<button type="default" class="push-btn" @tap="submitMsg">提交</button>
|
||||
</view>
|
||||
</view>
|
||||
<view class="success-box" v-else>
|
||||
<image src="/static/images/success.png" mode="aspectFit"></image>
|
||||
<h2>稽核反馈提交成功!</h2>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapGetters,mapMutations} from 'vuex'
|
||||
export default {
|
||||
data(){
|
||||
return {
|
||||
uploadImgList: [],
|
||||
pageType: '',
|
||||
pageStep: 1,
|
||||
saveMsg: {
|
||||
CheckAccount_Id: '',
|
||||
auditExplain: '',
|
||||
isAddIn: true,
|
||||
imageInfo: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
changeState(e){
|
||||
|
||||
this.saveMsg.isAddIn = e.detail.value.length>0 ? true : false
|
||||
},
|
||||
deleteImgFunc(index) {
|
||||
this.uploadImgList.splice(index,1)
|
||||
},
|
||||
showImg(index) {
|
||||
uni.previewImage( {
|
||||
urls: this.uploadImgList,
|
||||
current: index,
|
||||
loop: true,
|
||||
indicator: 'number'
|
||||
});
|
||||
},
|
||||
chooseImage(){
|
||||
let _this = this
|
||||
uni.chooseImage({
|
||||
sourceType: ['camera','album'],
|
||||
sizeType: 'compressed',
|
||||
cout: 1 ,
|
||||
success: (data) => {
|
||||
// console.log(data)
|
||||
// this.src = data.tempFilePaths[0]
|
||||
|
||||
if(data.tempFilePaths.length>0) {
|
||||
// let list = []
|
||||
data.tempFilePaths.forEach(function (n){
|
||||
uni.getFileSystemManager().readFile({
|
||||
filePath: n, //选择图片返回的相对路径
|
||||
encoding: 'base64', //编码格式
|
||||
success: function(res) { //
|
||||
let base64 = 'data:image/jpeg;base64,'+res.data //.replace(/\+/ig,'%2B') //不加上这串字符,在页面无法显示的哦
|
||||
|
||||
// list.unshift(base64)
|
||||
_this.uploadImgList.unshift(base64)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
|
||||
});
|
||||
},
|
||||
nextStep(){
|
||||
if(this.pageType==1) { //长款直接提交
|
||||
this.submitMsg()
|
||||
}else {
|
||||
if(this.saveMsg.auditExplain.trim().length==0) {
|
||||
uni.showToast({
|
||||
title:'请输入异常原因',
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
this.pageStep=2
|
||||
|
||||
}
|
||||
},
|
||||
submitMsg() {
|
||||
let _this = this
|
||||
if(this.saveMsg.auditExplain.trim().length==0) {
|
||||
uni.showToast({
|
||||
title:'请输入异常原因',
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
this.saveMsg.imageInfo = this.uploadImgList.join('|')
|
||||
this.$request.$webPost('Audit/UpLoadAuditExplain',this.saveMsg).then(res=>{
|
||||
|
||||
if(res.Result_Code!==100) {
|
||||
|
||||
uni.showToast({
|
||||
title: res.Result_Desc,
|
||||
icon: 'none'
|
||||
})
|
||||
}else{
|
||||
_this.pageStep = 3
|
||||
setTimeout(function(){
|
||||
uni.navigateBack({
|
||||
delta:1
|
||||
})
|
||||
uni.$emit('cashAudit',true)
|
||||
},1500)
|
||||
}
|
||||
})
|
||||
// console.log(this.saveMsg)
|
||||
}
|
||||
},
|
||||
onLoad(option) {
|
||||
this.pageType = option.type
|
||||
this.saveMsg.CheckAccount_Id = option.id
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.page-body {
|
||||
height:100%;
|
||||
}
|
||||
.feedback-box {
|
||||
padding: 20rpx 52rpx;
|
||||
|
||||
}
|
||||
.feedback {
|
||||
width: 656rpx;
|
||||
height: 354rpx;
|
||||
padding: 20rpx;
|
||||
box-sizing: border-box;
|
||||
background: #ffffff;
|
||||
border-radius: 14rpx;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.checkbox-text {
|
||||
font-size: 26rpx;
|
||||
color: #8A9DCA;
|
||||
}
|
||||
.main-btn {
|
||||
margin: 72rpx auto;
|
||||
border-radius: 43rpx;
|
||||
height: 86rpx;
|
||||
line-height: 86rpx;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
width: 656rpx;
|
||||
background: linear-gradient(to left, #8a9dca 0%, #8998bb 98%, #8a99bc 100%);
|
||||
color: #fff;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
h3 {
|
||||
font-size: 32rpx;
|
||||
color: #1A1E24;
|
||||
}
|
||||
.photo-box {
|
||||
padding: 40rpx 30rpx;
|
||||
background-color: #fff;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.btn-box {
|
||||
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left:0 ;
|
||||
width: 100%;
|
||||
padding: 42rpx 0 90rpx 0;
|
||||
background: #f8f9fb;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.stip-btn {
|
||||
width: 277rpx;
|
||||
height: 86rpx;
|
||||
color: #8998bb;
|
||||
line-height: 86rpx;
|
||||
border: 1rpx solid #8998bb;
|
||||
border-radius: 43rpx;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
|
||||
}
|
||||
.push-btn {
|
||||
width: 277rpx;
|
||||
height: 86rpx;
|
||||
color: #fff;
|
||||
line-height: 86rpx;
|
||||
background: #8a9dca ;
|
||||
border-radius: 43rpx;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.upload-file-container{
|
||||
display: flex;
|
||||
/* flex-flow: row wrap; */
|
||||
/* justify-content: flex-start; */
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
/* padding: 20rpx; */
|
||||
min-height: 260rpx;
|
||||
box-sizing: border-box;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.upload-file-add{
|
||||
width: 130rpx;
|
||||
height: 126rpx;
|
||||
margin-right: 16rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.upload-file-add-container{
|
||||
|
||||
position: relative;
|
||||
border: 1rpx solid #ccc;
|
||||
width: 136rpx;
|
||||
height: 137rpx;
|
||||
border-radius: 6rpx;
|
||||
/* margin-top: 15rpx; */
|
||||
}
|
||||
.upload-file-add-container::before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 40rpx;
|
||||
top: 50%;
|
||||
height: 2rpx;
|
||||
background-color: #ccc;
|
||||
width: 60rpx;
|
||||
}
|
||||
.upload-file-add-container::after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 40rpx;
|
||||
width: 2rpx;
|
||||
height: 60rpx;
|
||||
background-color: #ccc;
|
||||
}
|
||||
|
||||
.upload-file-add-img{
|
||||
margin-top: 10rpx;
|
||||
font-size: 24rpx;
|
||||
color: #919191;
|
||||
}
|
||||
.upload-file-unit {
|
||||
position: relative;
|
||||
width: 137rpx;
|
||||
height: 136rpx;
|
||||
margin-right: 36rpx;
|
||||
margin-top: 16rpx;
|
||||
border-radius: 8rpx;
|
||||
border: 2rpx solid #ccc;
|
||||
|
||||
}
|
||||
|
||||
.upload-file-unit image {
|
||||
width: 135rpx;
|
||||
height: 134rpx;
|
||||
border-radius: 8rpx;
|
||||
}
|
||||
.upload-file-remove {
|
||||
position: absolute;
|
||||
top: -14rpx;
|
||||
right: -12rpx;
|
||||
display: inline-block;
|
||||
width: 37rpx;
|
||||
height: 37rpx;
|
||||
line-height: 30rpx;
|
||||
background-color: #ff0000;
|
||||
color: #ffffff;
|
||||
font-size: 30rpx;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
z-index: 1;
|
||||
}
|
||||
/* 成功弹出框 */
|
||||
.success-box {
|
||||
padding-top: 198rpx;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
.success-box h2 {
|
||||
font-size: 38rpx;
|
||||
color: #364656;
|
||||
}
|
||||
|
||||
.success-box image {
|
||||
width: 406rpx;
|
||||
height: 320rpx;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
</style>
|
||||
115
pages/cashAudit/components/listUnit.vue
Normal file
@ -0,0 +1,115 @@
|
||||
<template>
|
||||
<div class="card" :class="item.SORTNUM ==1 ? 'conten-border' : ''" @tap='goDetail' v-if="item">
|
||||
<div class="uni-flex jc-between" >
|
||||
<p class="contentName">{{item.Shop_Name}}</p>
|
||||
<text class="typeText" :class="item.Audit_State=='0' ? 'typeText-color' : ''">{{item.SORTNUM==1 ? '待我处理': proStatus[item.Audit_State]}}</text>
|
||||
</div>
|
||||
<div class="content-index">{{i+1}}</div>
|
||||
<view style="line-height: 1;">
|
||||
<text class="content-type-text">{{item.Serverpart_Name}}</text>
|
||||
</view>
|
||||
<view class="uni-flex content-box-cashpay">
|
||||
<text class="content-price">{{item.Audit_ErrorRate}}</text>
|
||||
<text style="font-size: 22rpx;">误差率</text>
|
||||
|
||||
</view>
|
||||
<view class="bb1"></view>
|
||||
<view class="uni-flex jc-between align-center" v-if="item.Different_Price">
|
||||
|
||||
<div class="uni-flex align-top">
|
||||
<i class="B-icon A-icon"></i>
|
||||
<text class="content-span">长短款额:</text>
|
||||
<text class="price-num">{{ $util.fmoney(item.Different_Price,2) }} </text>
|
||||
<text class="content-span">元</text>
|
||||
<text class="other-coast">{{item.Audit_Type}}</text>
|
||||
</div>
|
||||
<text class="content-span" v-if="!item.Cashier_Name">{{$util.cutDate(item.Audit_Time,'YYYY/MM/DD hh:mm:ss')}}</text>
|
||||
</view>
|
||||
<view class="uni-flex jc-between" v-if="item.Cashier_Name">
|
||||
<div class="uni-flex align-top" >
|
||||
<span class="G-icon A-icon" ></span>
|
||||
<text class="content-span staff-text">稽核人员:{{item.Cashier_Name }}</text>
|
||||
</div>
|
||||
<text class="content-span lh15">{{$util.cutDate(item.Audit_Time,'YYYY/MM/DD hh:mm:ss') }}</text>
|
||||
</view>
|
||||
<view class="uni-flex jc-end" v-if="!item.Cashier_Name && !item.Different_Price">
|
||||
|
||||
<text class="content-span">{{$util.cutDate(item.Audit_Time,'YYYY/MM/DD hh:mm:ss') }}</text>
|
||||
</view>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
item: {
|
||||
type: Object,
|
||||
required: true
|
||||
},
|
||||
i: {
|
||||
type: Number,
|
||||
required: true
|
||||
}
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
proStatus: {
|
||||
0: '已校验',
|
||||
1: '待校验',
|
||||
|
||||
}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
// getStatus () {
|
||||
// let _this = this
|
||||
// if (_this.item) {
|
||||
// let item = _this.item
|
||||
// _this.item.SERVERPART_NAME = item.SERVERPART_NAME+" "+item.HIGHWAYPROINST_DESC.split('【')[0]
|
||||
// _this.item.STAFF_NAME = item.STAFF_NAME
|
||||
// _this.item.HIGHWAYPROINST_CREATEDATE = _this.dateEmpty(_this.item.HIGHWAYPROINST_CREATEDATE)
|
||||
// if(item.SORTNUM === 0){
|
||||
// return '待我处理'
|
||||
// }else{
|
||||
// return _this.proStatus[_this.item.HIGHWAYPROINST_NEXTID]
|
||||
// }
|
||||
// }
|
||||
|
||||
// }
|
||||
},
|
||||
methods: {
|
||||
goDetail () {
|
||||
this.$emit('goDetail', this.item)
|
||||
},
|
||||
dateEmpty (v) {
|
||||
return this.$util.cutDate(v,'YYYY/MM/DD')
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
@import url('/common/css/listUnit.css');
|
||||
.price-num {
|
||||
color: #D43939;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.other-coast {
|
||||
color: #D1A271;
|
||||
background: linear-gradient(to top, #EBDDCF , #FCFBF8);
|
||||
border-radius: 6rpx;
|
||||
font-size: 20rpx;
|
||||
padding: 0 10rpx;
|
||||
margin-left: 16rpx;
|
||||
margin-top: 3rpx;
|
||||
}
|
||||
/*
|
||||
|
||||
.content-span-cashpay {
|
||||
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.content-span-cashpay span {
|
||||
font-size: 40rpx;
|
||||
} */
|
||||
</style>
|
||||
296
pages/cashAudit/detail.vue
Normal file
@ -0,0 +1,296 @@
|
||||
<template>
|
||||
<view class="page-body" v-if="pageMsg.isShow">
|
||||
<!-- 卡片 -->
|
||||
<view class="audit-card">
|
||||
<view class="card-header">
|
||||
<h3>{{detailMsg.Shop_Name }}</h3>
|
||||
<view class="uni-flex ai-center jc-between fs12">
|
||||
<text>{{detailMsg.Serverpart_Name }}</text>
|
||||
<text>稽核时间:{{$util.cutDate(detailMsg.Audit_Time,'YYYY/MM/DD hh:mm:ss') }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="card-bottom">
|
||||
<view class="uni-flex ai-center">
|
||||
<text>工班账期:</text>
|
||||
<text>{{detailMsg.Check_EndDate ? `${$util.cutDate(detailMsg.Check_StartDate,'MM.DD hh:mm:ss')} - ${$util.cutDate(detailMsg.Check_EndDate,'MM.DD hh:mm:ss')}` :`${$util.cutDate(detailMsg.Check_StartDate,'MM.DD hh:mm:ss')} ` }}</text>
|
||||
|
||||
</view>
|
||||
<view class="uni-flex ai-center jc-between">
|
||||
<view class="uni-flex ai-center" style="flex: 1.5;">
|
||||
<text>稽核人员:</text>
|
||||
<text>{{detailMsg.Worker_Name }}</text>
|
||||
</view>
|
||||
<view class="uni-flex ai-center">
|
||||
<text>稽核类型:</text>
|
||||
<text>{{detailMsg.Audit_Type }}</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<h4>稽核数据</h4>
|
||||
<view class="main-card">
|
||||
<view class="uni-flex ai-center jc-between">
|
||||
<view class="uni-flex ai-center ">
|
||||
<text>营收金额:</text>
|
||||
<text>{{$util.fmoney( detailMsg.TotalSell_Amount ,2)}}元</text>
|
||||
</view>
|
||||
<view class="uni-flex ai-center " >
|
||||
<text>缴款金额:</text>
|
||||
<text>{{$util.fmoney(detailMsg.Cash_Pay) }}元</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="uni-flex ai-center jc-between">
|
||||
<view class="uni-flex ai-center">
|
||||
<text>长短款额:</text>
|
||||
<text class="price-num">{{$util.fmoney(detailMsg.Different_Price)}}元</text>
|
||||
</view>
|
||||
<view class="uni-flex ai-center">
|
||||
<text>稽核误差率:</text>
|
||||
<text>{{detailMsg.Audit_ErrorRate }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="uni-flex ai-center jc-between">
|
||||
<view class="uni-flex ai-center" v-if="detailMsg.Audit_State !==0">
|
||||
<text>{{detailMsg.Audit_State==1 ? '流水补录:': '现金收缴:'}}</text>
|
||||
<text>{{$util.fmoney(Math.abs(detailMsg.Different_Price),2)}}元</text>
|
||||
</view>
|
||||
<view class="uni-flex ai-center">
|
||||
<text>收银人员:</text>
|
||||
<text>{{detailMsg.Cashier_Name}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<h4 v-if="detailMsg.CheckAccount_Desc">稽核反馈</h4>
|
||||
<view class="main-card desc" v-if="detailMsg.CheckAccount_Desc">
|
||||
<text >
|
||||
{{detailMsg.CheckAccount_Desc }}
|
||||
</text>
|
||||
<ul class="uni-flex ai-center imgList">
|
||||
<li v-for="(img,index) in detailMsg.ImageList " :key="index">
|
||||
<image :src="img.ImageUrl " mode="aspectFit" @click="showImg(index)"></image>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</view>
|
||||
|
||||
<view class="page-bottom" v-if="detailMsg.AuditIurisdiction ==1 && !detailMsg.CheckAccount_Desc">
|
||||
<button type="default" class="main-btn" @tap="toPage">
|
||||
<image src="/static/images/publicity/ybyj.png" mode="aspectFit"></image>
|
||||
填写稽核反馈
|
||||
</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapGetters,mapMutations} from 'vuex'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
pageMsg: {
|
||||
id: '',
|
||||
isShow: false
|
||||
},
|
||||
|
||||
detailMsg:{},
|
||||
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
||||
imageList(){
|
||||
let list = []
|
||||
if(this.detailMsg.ImageList ){
|
||||
this.detailMsg.ImageList.map(n=>{list.push(n.ImageUrl)})
|
||||
}
|
||||
return list
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
...mapMutations(['shouldReLoadingList']),
|
||||
getDetail() {
|
||||
let _this = this
|
||||
this.$request.$webGet('Audit/GetAuditDetils',{ CheckAccount_Id: this.pageMsg.id})
|
||||
.then(res =>{
|
||||
if(!res.Result_Code ||res.Result_Code!='100'){
|
||||
_this.pageMsg.isShow =false
|
||||
|
||||
_this.detailMsg = {}
|
||||
}else{
|
||||
_this.detailMsg = res.Result_Data
|
||||
_this.pageMsg.isShow = true
|
||||
}
|
||||
uni.hideLoading()
|
||||
})
|
||||
},
|
||||
// 图片预览
|
||||
showImg(index) {
|
||||
|
||||
|
||||
uni.previewImage( {
|
||||
urls: this.imageList,
|
||||
current: index,
|
||||
loop: true,
|
||||
indicator: 'number'
|
||||
});
|
||||
},
|
||||
toPage() { // type 1 长款 0 短款
|
||||
|
||||
let type = this.detailMsg.Different_Price >0 ? 1 : 0
|
||||
this.$util.toNextRoute('navigateTo', '/pages/cashAudit/check?id='+this.pageMsg.id+'&type='+type)
|
||||
}
|
||||
},
|
||||
onLoad(option) {
|
||||
let _this = this
|
||||
uni.showLoading({
|
||||
title:'正在加载'
|
||||
})
|
||||
this.pageMsg.id = option.id
|
||||
this.getDetail()
|
||||
uni.$on('cashAudit',function(data){
|
||||
if(data) {
|
||||
uni.showLoading({
|
||||
title:'正在加载'
|
||||
})
|
||||
_this.getDetail()
|
||||
_this.shouldReLoadingList(true)
|
||||
}
|
||||
})
|
||||
},
|
||||
onShow(){
|
||||
|
||||
},
|
||||
onUnload() {
|
||||
this.$util.addUserBehavior()
|
||||
uni.$off('cashAudit');
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.page-body {
|
||||
height: 100%;
|
||||
padding: 0 25rpx;
|
||||
background-color: #fff;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.audit-card {
|
||||
border-radius: 10rpx;
|
||||
width: 700rpx;
|
||||
/* height: 165rpx; */
|
||||
background: linear-gradient(to right , #8998bb 0%, #a9b5d2 100%);
|
||||
color: #FFFFFF;
|
||||
|
||||
}
|
||||
.card-header {
|
||||
padding: 24rpx 16rpx;
|
||||
}
|
||||
.card-header h3 {
|
||||
padding-bottom: 10rpx;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.card-header .fs12 >text {
|
||||
font-size: 24rpx;
|
||||
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 26rpx;
|
||||
margin-top: 38rpx;
|
||||
margin-bottom: 26rpx;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.card-bottom, .main-card {
|
||||
width: 700rpx;
|
||||
color: #74838E;
|
||||
background: #f8f9fa;
|
||||
border-radius: 10rpx;
|
||||
font-size: 26rpx;
|
||||
padding: 24rpx 16rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.card-bottom {
|
||||
padding-bottom: 33rpx;
|
||||
}
|
||||
.card-bottom view> view,.main-card view> view{
|
||||
flex: 1;
|
||||
|
||||
}
|
||||
.card-bottom> view+view,.main-card> view+ view{
|
||||
margin-top: 16rpx;
|
||||
|
||||
}
|
||||
|
||||
.card-bottom view> text,.main-card view> text {
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.card-bottom view> text:nth-child(2), .main-card view> text:nth-child(2) {
|
||||
color: #000;
|
||||
}
|
||||
.main-card view > text.price-num {
|
||||
color: #DD6060;
|
||||
}
|
||||
.main-card.desc {
|
||||
padding-right: 0;
|
||||
}
|
||||
.main-card.desc text {
|
||||
padding-right: 16rpx;
|
||||
}
|
||||
/* */
|
||||
.imgList {
|
||||
flex-wrap: wrap;
|
||||
margin-top: 36rpx;
|
||||
}
|
||||
.imgList li {
|
||||
max-width: 139rpx;
|
||||
height: 139rpx;
|
||||
border-radius: 8rpx;
|
||||
border: 2rpx solid #eee;
|
||||
margin-right: 28rpx;
|
||||
margin-top: 28rpx;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.imgList image {
|
||||
width: 137rpx;
|
||||
height: 137rpx;
|
||||
border-radius: 8rpx;
|
||||
}
|
||||
.page-bottom {
|
||||
width: 750rpx;
|
||||
|
||||
padding: 42rpx 0 90rpx 0;
|
||||
background: #f8f9fb;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
.main-btn {
|
||||
margin: 0 auto;
|
||||
border-radius: 44rpx;
|
||||
width: 510rpx;
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
background: linear-gradient( to right ,#8998bb 0%, #8a99bc 100%);
|
||||
color: #fff;
|
||||
font-size: 26rpx;
|
||||
|
||||
}
|
||||
.main-btn image {
|
||||
width: 31rpx;
|
||||
height: 30rpx;
|
||||
margin-right: 16rpx;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
199
pages/cashAudit/list.vue
Normal file
@ -0,0 +1,199 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<div class="uni-flex ai-center screen-box">
|
||||
<text>账期:</text>
|
||||
<picker mode="date" @change="bindDateChange($event,0)" :value="searchTime[0]" :end="pageData.endDate" start="2019-12-01" class="screen-unit">
|
||||
<text>{{searchTime[0]}}</text>
|
||||
<image src="/static/images/tab_down.png" mode="aspectFit"></image>
|
||||
</picker>
|
||||
<text class="mr20">至</text>
|
||||
<picker mode="date" @change="bindDateChange($event,1)" :value="searchTime[1]" :end="pageData.endDate" start="2019-12-01" class="screen-unit">
|
||||
<text>{{searchTime[1]}}</text>
|
||||
<image src="/static/images/tab_down.png" mode="aspectFit"></image>
|
||||
</picker>
|
||||
<button type="primary" size="mini" class="search-button" @tap="searchList">查询</button>
|
||||
</div>
|
||||
<view v-if="pageList.length>0">
|
||||
<list-unit v-for="(item,index) in pageList" :key="index" :item="item" :i="index" @goDetail="goDetail"></list-unit>
|
||||
|
||||
</view>
|
||||
<view v-else-if="pageData.isLoading===false" >
|
||||
<noFound :nodata="pageList.length>0 ? false : true" text="您暂无收银稽核数据"/>
|
||||
</view>
|
||||
<view class="load-more" v-if="pageList.length>0">
|
||||
<text>{{!pageData.isEnd ? '正在加载,请稍后...':'——— 我是有底线的 ———'}}</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapGetters,mapMutations} from 'vuex'
|
||||
import ListUnit from './components/listUnit.vue'
|
||||
export default {
|
||||
data() {
|
||||
let stime = this.$util.cutDate(new Date(),'YYYY-MM-DD',-30)
|
||||
let etime = this.$util.cutDate(new Date(),'YYYY-MM-DD')
|
||||
return {
|
||||
searchTime:[stime,etime],
|
||||
pageData: {
|
||||
pageIndex:1,
|
||||
pageSize:10,
|
||||
isEnd: false,
|
||||
isLoading: true,
|
||||
endDate: etime
|
||||
},
|
||||
pageList:[]
|
||||
}
|
||||
},
|
||||
components:{
|
||||
ListUnit
|
||||
},
|
||||
computed:{
|
||||
...mapGetters({reloading:'shouldReLoadingList'})
|
||||
},
|
||||
methods: {
|
||||
...mapMutations(['shouldReLoadingList']),
|
||||
bindDateChange(e,index){
|
||||
|
||||
this.searchTime[index] = e.detail.value
|
||||
this.$forceUpdate()
|
||||
},
|
||||
searchList(){
|
||||
uni.showLoading({
|
||||
title:'正在加载'
|
||||
})
|
||||
// this.pageData.isLoading =true
|
||||
this.pageData.isEnd = false
|
||||
this.pageData.pageIndex = 1
|
||||
this.getList()
|
||||
},
|
||||
getList() {
|
||||
let _this = this
|
||||
|
||||
_this.$request.$webGet('Audit/GetAuditList',{
|
||||
pageIndex: this.pageData.pageIndex,
|
||||
pageSize: this.pageData.pageSize,
|
||||
startTime: this.searchTime[0],
|
||||
endTime: this.searchTime[1],
|
||||
}).then(res => {
|
||||
|
||||
if(!res.Result_Code ||res.Result_Code!='100'){
|
||||
_this.pageData.isLoading =false
|
||||
_this.pageList = []
|
||||
}else{
|
||||
let list = res.Result_Data.List
|
||||
if (list.length > 0) {
|
||||
if( this.pageData.pageIndex==1 ) {
|
||||
_this.pageList = list
|
||||
|
||||
}else{
|
||||
_this.pageList = _this.pageList.concat(list)
|
||||
}
|
||||
}
|
||||
if (list.length < _this.pageData.pageSize) { // 返回条数小于每页条数
|
||||
_this.pageData.isEnd = true
|
||||
}
|
||||
_this.$forceUpdate()
|
||||
}
|
||||
uni.hideLoading()
|
||||
setTimeout(function(){
|
||||
_this.pageData.isLoading = false
|
||||
},500)
|
||||
})
|
||||
},
|
||||
loadMore(){
|
||||
if(!this.pageData.isEnd) {
|
||||
this.pageData.pageIndex += 1
|
||||
this.getList()
|
||||
}
|
||||
},
|
||||
goDetail(item){
|
||||
this.$util.toNextRoute('navigateTo', '/pages/cashAudit/detail?id='+item.CheckAccount_ID)
|
||||
|
||||
}
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
uni.showLoading({
|
||||
title:'正在加载'
|
||||
})
|
||||
this.pageData.pageIndex = 1
|
||||
this.pageData.isEnd = false
|
||||
this.getList()
|
||||
setTimeout(function() {
|
||||
uni.stopPullDownRefresh()
|
||||
}, 1000)
|
||||
},
|
||||
onReachBottom(){
|
||||
this.loadMore()
|
||||
},
|
||||
onShow() {
|
||||
let _this = this
|
||||
|
||||
if(this.reloading) {
|
||||
uni.showLoading({
|
||||
title:'正在加载'
|
||||
})
|
||||
this.pageData.isLoading = true
|
||||
this.pageData.pageIndex = 1
|
||||
this.pageData.isEnd = false
|
||||
|
||||
this.getList()
|
||||
this.shouldReLoadingList(false)
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
uni.showLoading({
|
||||
title:'正在加载'
|
||||
})
|
||||
this.pageData.isLoading = true
|
||||
this.getList()
|
||||
},
|
||||
onUnload() {
|
||||
this.$util.addUserBehavior()
|
||||
},
|
||||
onHide() {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
/* .content {
|
||||
padding-top: 6upx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
||||
} */
|
||||
.screen-box {
|
||||
background-color: #fff;
|
||||
padding: 0 20rpx;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
.screen-box .screen-unit {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 200rpx;
|
||||
padding: 0 14rpx;
|
||||
line-height: 3;
|
||||
}
|
||||
.screen-box text {
|
||||
line-height: 3;
|
||||
}
|
||||
.screen-box image{
|
||||
width: 12rpx;
|
||||
height: 8rpx;
|
||||
margin: 0 16rpx;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.search-button {
|
||||
font-size: 24rpx;
|
||||
padding: 0 20rpx;
|
||||
}
|
||||
.mr20 {
|
||||
margin: 0 30rpx 0 16rpx;
|
||||
}
|
||||
</style>
|
||||
@ -59,7 +59,7 @@
|
||||
<div class="tab-unit" style="flex: 3;" @tap="showPop">
|
||||
|
||||
<span class="weisc-ico" v-if="sMsg.SHOP_UPCOUNT>0">{{sMsg.SHOP_UPCOUNT}}</span>
|
||||
<span class="tab-unit-num more-btn">{{sMsg.SHOP_UPCOUNT>0 ? '/ '+sMsg.SHOP_TCOUNT : sMsg.SHOP_TCOUNT}}</span>
|
||||
<span class="tab-unit-num " :class="{'more-btn':sMsg.SHOP_UPCOUNT>0}">{{sMsg.SHOP_UPCOUNT>0 ? '/ '+sMsg.SHOP_TCOUNT : sMsg.SHOP_TCOUNT}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</view>
|
||||
|
||||
@ -4,7 +4,9 @@
|
||||
<div>
|
||||
<div class="contentTwo-head">
|
||||
<div>
|
||||
<div class="contentTwo-name"><span class="contentTwo-text" :class="{'scan-ico':effectiveDetail.SCAN_TYPE===1,'shouchi-ico':effectiveDetail.SCAN_TYPE===2,'jiekou-ico':effectiveDetail.SCAN_TYPE===3}">{{effectiveDetail.SHOPNAME}}</span></div>
|
||||
<div class="contentTwo-name ">
|
||||
<span class="contentTwo-text uni-ellipsis" :class="{'scan-ico':effectiveDetail.SCAN_TYPE===1,'shouchi-ico':effectiveDetail.SCAN_TYPE===2,'jiekou-ico':effectiveDetail.SCAN_TYPE===3}">{{effectiveDetail.SHOPNAME}}</span>
|
||||
</div>
|
||||
<div class="contentTwo-right" style="color: #ec9061;justify-content: flex-end;">
|
||||
{{effectiveDetail.TREATMENT_MARK}}
|
||||
</div>
|
||||
@ -225,7 +227,7 @@
|
||||
</div>
|
||||
<div>+</div>
|
||||
|
||||
<div class="data-check-data" style="border:1upx solid #64a0e6;">
|
||||
<div class="data-check-data" style="border:1rpx solid #64a0e6;">
|
||||
<input v-model="effectiveDetail.CASH_CORRECT" style="border:none;text-align:center;" @blur="checkNum($event,'CASH_CORRECT')" />
|
||||
</div>
|
||||
|
||||
@ -895,25 +897,25 @@
|
||||
.contentTwo-head {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 20upx 30upx;
|
||||
padding: 20rpx 30rpx;
|
||||
background-color: #fff;
|
||||
position: relative;
|
||||
font-size: 24upx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
/* .content-detail-box{
|
||||
box-shadow: 0px 1px 8px 0.2px #e2e2e2;
|
||||
border-radius: 10upx;
|
||||
padding: 0 20upx;
|
||||
margin-bottom: 20upx;
|
||||
border-radius: 10rpx;
|
||||
padding: 0 20rpx;
|
||||
margin-bottom: 20rpx;
|
||||
} */
|
||||
.content-detail-box span{
|
||||
font-size: 24upx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.contentTwo-head>div,.content-detail-box>div{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 24upx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.content-detail-box .content-effective{
|
||||
@ -925,84 +927,87 @@
|
||||
}
|
||||
|
||||
.contentTwo-left {
|
||||
height: 60upx;
|
||||
line-height: 60upx;
|
||||
font-size:24upx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
font-size:24rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.fourth-name {
|
||||
width: 140upx;
|
||||
width: 140rpx;
|
||||
display: inline-block;
|
||||
color: #979797;
|
||||
font-size: 24upx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.contentTwo-right {
|
||||
height: 60upx;
|
||||
line-height: 60upx;
|
||||
width: 280upx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
width: 280rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.contentTwo-name {
|
||||
height: 60upx;
|
||||
line-height: 60upx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
}
|
||||
|
||||
.contentTwo-text {
|
||||
font-size: 32upx;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.lie_right2 {
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
line-height: 60upx;
|
||||
line-height: 60rpx;
|
||||
}
|
||||
.lie_right2 span {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.check-btn-box {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 20upx;
|
||||
margin-bottom: 80upx;
|
||||
margin-top: 20rpx;
|
||||
margin-bottom: 80rpx;
|
||||
}
|
||||
.check-btn {
|
||||
flex:1;
|
||||
text-align: center;
|
||||
margin: 0 40upx;
|
||||
height: 80upx;
|
||||
line-height: 80upx;
|
||||
margin: 0 40rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 30upx;
|
||||
font-size: 30rpx;
|
||||
background-color:#64a0e6;
|
||||
border-radius: 10upx;
|
||||
border-radius: 10rpx;
|
||||
}
|
||||
.to-examine {
|
||||
width: 80%;
|
||||
margin: 0 auto;
|
||||
margin-top: 80upx;
|
||||
margin-bottom: 40upx;
|
||||
height: 80upx;
|
||||
line-height: 80upx;
|
||||
margin-top: 80rpx;
|
||||
margin-bottom: 40rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 30upx;
|
||||
font-size: 30rpx;
|
||||
background-color:#64a0e6;
|
||||
border-radius: 10upx;
|
||||
border-radius: 10rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.to-examine span{
|
||||
margin-left: 10upx;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
.opinion,.opinion2 {
|
||||
width: 100%;
|
||||
padding-top: 30upx;
|
||||
padding-top: 30rpx;
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
border-radius: 2px 2px 0 0;
|
||||
@ -1012,16 +1017,16 @@
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%,-50%);
|
||||
border-radius: 12upx;
|
||||
border-radius: 12rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.opinion2{
|
||||
text-align: left;
|
||||
padding: 30upx;
|
||||
min-height: 400upx;
|
||||
padding: 30rpx;
|
||||
min-height: 400rpx;
|
||||
}
|
||||
.opinion2-title{
|
||||
margin-bottom: 20upx;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.opinion-title,.opinion2-title {
|
||||
font-size: 16px;
|
||||
@ -1046,8 +1051,8 @@
|
||||
background-color: #4c4b5b;
|
||||
border: none;
|
||||
color: #fff;
|
||||
height: 80upx;
|
||||
line-height: 80upx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
}
|
||||
|
||||
.commodityP {
|
||||
@ -1068,8 +1073,8 @@
|
||||
/* position: absolute; */
|
||||
|
||||
flex: 1;
|
||||
height: 24upx;
|
||||
width: 24upx;
|
||||
height: 24rpx;
|
||||
width: 24rpx;
|
||||
background: url(/static/images/effective/sj.png) no-repeat center right;
|
||||
background-size: contain;
|
||||
}
|
||||
@ -1077,23 +1082,23 @@
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 180upx;
|
||||
width: 180rpx;
|
||||
justify-content: center;
|
||||
/* padding-top: 6upx; */
|
||||
box-shadow: 0px 1upx 8upx 0.4upx #ccc;
|
||||
/* padding-top: 6rpx; */
|
||||
box-shadow: 0px 1rpx 8rpx 0.4rpx #ccc;
|
||||
flex-direction: column;
|
||||
border-radius: 4upx;
|
||||
border-radius: 4rpx;
|
||||
}
|
||||
.commodityContent span{
|
||||
/* font-size: 24upx; */
|
||||
/* font-size: 24rpx; */
|
||||
}
|
||||
.wid70 {
|
||||
line-height: 60upx;
|
||||
font-size: 24upx;
|
||||
line-height: 60rpx;
|
||||
font-size: 24rpx;
|
||||
color: #333;
|
||||
}
|
||||
.add{
|
||||
width: 20upx;
|
||||
width: 20rpx;
|
||||
text-align: center;
|
||||
}
|
||||
.commodityContent-cashpay{
|
||||
@ -1104,7 +1109,7 @@
|
||||
/* align-items: flex-end; */
|
||||
}
|
||||
.commodityContent img{
|
||||
margin-right: 10upx;
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
.commoditytitle {
|
||||
font-size: 20px;
|
||||
@ -1132,16 +1137,16 @@
|
||||
.commodity {
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
padding: 30upx 20upx;
|
||||
padding: 30rpx 20rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.commodity>div {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
font-size: 24upx;
|
||||
font-size: 24rpx;
|
||||
align-items: center;
|
||||
margin-bottom: 30upx;
|
||||
margin-bottom: 30rpx;
|
||||
|
||||
}
|
||||
.commodityContent>div {
|
||||
@ -1149,29 +1154,29 @@
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
background-size: contain;
|
||||
margin-top: 2upx;
|
||||
margin-top: 2rpx;
|
||||
}
|
||||
.commodity>div:last-child{
|
||||
padding-top: 12upx;
|
||||
padding-top: 12rpx;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.commodity img{
|
||||
display: none;
|
||||
width: 40upx;
|
||||
height: 40upx;
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
/* display: inline-block; */
|
||||
vertical-align: middle;
|
||||
}
|
||||
.cashpay-box img,.to-examine img{
|
||||
width: 40upx;
|
||||
height: 40upx;
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
}
|
||||
.color1 {
|
||||
display: block;
|
||||
text-align: left;
|
||||
color: #333;
|
||||
font-size:28upx;
|
||||
line-height: 60upx;
|
||||
font-size:28rpx;
|
||||
line-height: 60rpx;
|
||||
}
|
||||
|
||||
.ctitle {
|
||||
@ -1179,12 +1184,12 @@
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
color: #63A0E5;
|
||||
font-size: 24upx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.cor {
|
||||
color: #D13B3B;
|
||||
line-height: 60upx;
|
||||
line-height: 60rpx;
|
||||
}
|
||||
.shenhe-mask{
|
||||
position: fixed;
|
||||
@ -1196,52 +1201,52 @@
|
||||
background-color: rgba(0, 0, 0, .6);
|
||||
}
|
||||
.text-content{
|
||||
height: 150upx;
|
||||
height: 150rpx;
|
||||
width: 100%;
|
||||
font-size: 28upx
|
||||
font-size: 28rpx
|
||||
}
|
||||
.check-reason{
|
||||
border: 1upx solid #d2d2d2;
|
||||
padding: 20upx;
|
||||
border: 1rpx solid #d2d2d2;
|
||||
padding: 20rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.text-box{
|
||||
padding: 30upx 30upx;
|
||||
padding: 30rpx 30rpx;
|
||||
}
|
||||
.cashpay{
|
||||
display: inline-block;
|
||||
border-bottom: 1upx solid #63a0e5;
|
||||
/* border-radius: 10upx; */
|
||||
/* margin-left: 10upx; */
|
||||
padding-left: 16upx;
|
||||
height: 60upx;
|
||||
line-height: 60upx;
|
||||
border-bottom: 1rpx solid #63a0e5;
|
||||
/* border-radius: 10rpx; */
|
||||
/* margin-left: 10rpx; */
|
||||
padding-left: 16rpx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
color: #878787;
|
||||
box-sizing: border-box;
|
||||
width: 160upx;
|
||||
width: 160rpx;
|
||||
}
|
||||
.cashpay-box{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background-color: #eeeeee;
|
||||
padding: 30upx;
|
||||
padding: 30rpx;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.cashpay-box>div{
|
||||
width: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 70upx;
|
||||
height: 70rpx;
|
||||
}
|
||||
.cashpay-check{
|
||||
margin: 0 20upx 0 10upx;
|
||||
margin: 0 20rpx 0 10rpx;
|
||||
}
|
||||
.data-check{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20upx;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.data-check>.ctitle{
|
||||
width: 30%;
|
||||
@ -1256,10 +1261,10 @@
|
||||
align-items: center;
|
||||
width: 28%;
|
||||
justify-content: center;
|
||||
padding: 8upx 0;
|
||||
padding: 8rpx 0;
|
||||
box-shadow: 0px 1px 8px 0.2px #e2e2e2;
|
||||
height: auto;
|
||||
border-radius: 4upx ;
|
||||
border-radius: 4rpx ;
|
||||
}
|
||||
.data-check-data input{
|
||||
width: 90%;
|
||||
@ -1270,11 +1275,11 @@
|
||||
background-color: #64a0e6;
|
||||
border: none;
|
||||
color: #fff;
|
||||
height: 80upx;
|
||||
line-height: 80upx;
|
||||
margin-top: 30upx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
margin-top: 30rpx;
|
||||
text-align: center;
|
||||
border-radius: 10upx;
|
||||
border-radius: 10rpx;
|
||||
}
|
||||
.no-check{
|
||||
background-color: #fff;
|
||||
@ -1283,12 +1288,13 @@
|
||||
}
|
||||
|
||||
.ico:before{
|
||||
height: 32upx;
|
||||
height: 32rpx;
|
||||
|
||||
}
|
||||
|
||||
.content-line{
|
||||
border-bottom: 1px dashed #eee;
|
||||
margin: 10upx 0;
|
||||
margin: 10rpx 0;
|
||||
}
|
||||
.scan-ico, .shouchi-ico, .jiekou-ico,.weisc-ico {
|
||||
display: flex;
|
||||
@ -1298,27 +1304,27 @@
|
||||
.scan-ico:after {
|
||||
content:'';
|
||||
display: block;
|
||||
margin-left: 16upx;
|
||||
width: 30upx;
|
||||
height: 30upx;
|
||||
margin-left: 16rpx;
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
background: url(/static/images/effective/ewm.png) no-repeat center;
|
||||
background-size: contain;
|
||||
}
|
||||
.shouchi-ico:after {
|
||||
content:'';
|
||||
display: block;
|
||||
margin-left: 16upx;
|
||||
width: 21upx;
|
||||
height: 29upx;
|
||||
margin-left: 16rpx;
|
||||
width: 21rpx;
|
||||
height: 29rpx;
|
||||
background: url(/static/images/effective/scj.png) no-repeat center;
|
||||
background-size: contain;
|
||||
}
|
||||
.jiekou-ico:after {
|
||||
content:'';
|
||||
display: block;
|
||||
margin-left: 16upx;
|
||||
width: 29upx;
|
||||
height: 27upx;
|
||||
margin-left: 16rpx;
|
||||
width: 29rpx;
|
||||
height: 27rpx;
|
||||
background: url(/static/images/effective/jkcs.png) no-repeat center;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
@ -48,8 +48,8 @@
|
||||
</view>
|
||||
<view class="model-c-menu" @tap="scanCode()">
|
||||
|
||||
<image src="../../static/images/index/saoyisao.png" mode="aspectFill" v-if="user.Membership_Id"></image>
|
||||
<image src=" ../../static/images/index/saoyisao-no.png" mode="aspectFill" v-else></image>
|
||||
<image src="/static/images/index/saoyisao.png" mode="aspectFill" v-if="user.Membership_Id"></image>
|
||||
<image src=" /static/images/index/saoyisao-no.png" mode="aspectFill" v-else></image>
|
||||
|
||||
<text class="menu-text">扫一扫</text>
|
||||
</view>
|
||||
@ -86,67 +86,67 @@
|
||||
"name": "财务审批",
|
||||
"id": "1a2907bd-c2f5-4ef9-9ead-70496650ace6",
|
||||
"modelName": "FinancialApproval",
|
||||
"imagePath": "../../static/images/index/cwsp.png",
|
||||
"noImagePath": "../../static/images/index/cwsp-no.png",
|
||||
"imagePath": "/static/images/index/cwsp.png",
|
||||
"noImagePath": "/static/images/index/cwsp-no.png",
|
||||
"homeUrl": "/pages/expenseApproval/expenseApproval"
|
||||
}, {
|
||||
"name": "招标投标",
|
||||
"id": "916cdbb5-f05b-4624-b6c4-9f111d4389fc",
|
||||
"modelName": "Tender",
|
||||
"imagePath": "../../static/images/index/zbtb.png",
|
||||
"noImagePath": "../../static/images/index/zbtb-no.png",
|
||||
"imagePath": "/static/images/index/zbtb.png",
|
||||
"noImagePath": "/static/images/index/zbtb-no.png",
|
||||
"homeUrl": "/pages/tender/tender"
|
||||
}, {
|
||||
"name": "服务区报销",
|
||||
"id": "8fea5036-d67e-476e-9e56-5f379ba6ae18",
|
||||
"modelName": "ServerPartFinancialApproval",
|
||||
"imagePath": "../../static/images/index/fwqbx.png",
|
||||
"noImagePath": "../../static/images/index/fwqbx-no.png",
|
||||
"imagePath": "/static/images/index/fwqbx.png",
|
||||
"noImagePath": "/static/images/index/fwqbx-no.png",
|
||||
"homeUrl": "/pages/serviceAreaReimbursement/serviceAreaReimbursement"
|
||||
}, {
|
||||
"name": "合同审批",
|
||||
"id": "ac661db4-1af1-4732-88db-76bc05eec335",
|
||||
"modelName": "ServerPartCompactApproval",
|
||||
"imagePath": "../../static/images/index/htsp.png",
|
||||
"noImagePath": "../../static/images/index/htsp-no.png",
|
||||
"imagePath": "/static/images/index/htsp.png",
|
||||
"noImagePath": "/static/images/index/htsp-no.png",
|
||||
"homeUrl": "/pages/contract/contract"
|
||||
}];
|
||||
const work = [{
|
||||
"name": "公文阅办",
|
||||
"id": "2580cb9f-ad2c-4d0b-b478-0be52eaf6ef6",
|
||||
"modelName": "Publicity",
|
||||
"imagePath": "../../static/images/index/gwyb.png",
|
||||
"noImagePath": "../../static/images/index/gwyb-no.png",
|
||||
"imagePath": "/static/images/index/gwyb.png",
|
||||
"noImagePath": "/static/images/index/gwyb-no.png",
|
||||
"homeUrl": "/pages/officialDocManagement/officialDocManagement"
|
||||
},
|
||||
{
|
||||
"name": "阳光公示",
|
||||
"id": "c870b1bc-95c8-473d-81c8-8596eb793bd4",
|
||||
"modelName": "Publicity",
|
||||
"imagePath": "../../static/images/index/publicity.png",
|
||||
"noImagePath": "../../static/images/index/publicity-no.png",
|
||||
"imagePath": "/static/images/index/publicity.png",
|
||||
"noImagePath": "/static/images/index/publicity-no.png",
|
||||
"homeUrl": "/pages/publicity/publicity"
|
||||
}, {
|
||||
"name": "请假加班",
|
||||
"id": "1ceeaa5c-d11e-4dcd-8d33-0c3df4cd4937",
|
||||
"modelName": "Publicity",
|
||||
"imagePath": "../../static/images/index/qjjb.png",
|
||||
"noImagePath": "../../static/images/index/qjjb-no.png",
|
||||
"imagePath": "/static/images/index/qjjb.png",
|
||||
"noImagePath": "/static/images/index/qjjb-no.png",
|
||||
"homeUrl": "/pages/askForLeave/askForLeave"
|
||||
},
|
||||
{
|
||||
"name": "安全问答",
|
||||
"id": "5733dfdd-29f6-4233-9ff0-6f077d80d778",
|
||||
"modelName": "Questionnaire",
|
||||
"imagePath": "../../static/images/index/aqwd.png",
|
||||
"noImagePath": "../../static/images/index/aqwd-no.png",
|
||||
"imagePath": "/static/images/index/aqwd.png",
|
||||
"noImagePath": "/static/images/index/aqwd-no.png",
|
||||
"homeUrl": "/pages/webview/webview?name=questionnaire"
|
||||
},{
|
||||
"name": "考勤打卡",
|
||||
"id": "ff04b551-c382-4638-a947-f95c42387ada",
|
||||
"modelName": "positionPunching",
|
||||
"imagePath": "../../static/images/index/kqdk.png",
|
||||
"noImagePath": "../../static/images/index/kqdk-no.png",
|
||||
"imagePath": "/static/images/index/kqdk.png",
|
||||
"noImagePath": "/static/images/index/kqdk-no.png",
|
||||
"homeUrl": "/pages/additionalFeatures/positionPunching"
|
||||
}
|
||||
];
|
||||
@ -154,38 +154,38 @@
|
||||
"name": "走动式管理",
|
||||
"id": "c26c1620-2149-4b3d-ac2e-07e0c0494042",
|
||||
"modelName": "Mbwa",
|
||||
"imagePath": "../../static/images/index/zdsgl.png",
|
||||
"noImagePath": "../../static/images/index/zdsgl-no.png",
|
||||
"imagePath": "/static/images/index/zdsgl.png",
|
||||
"noImagePath": "/static/images/index/zdsgl-no.png",
|
||||
"homeUrl": "/pages/mbwa/mbwa"
|
||||
}, {
|
||||
"name": "投诉建议",
|
||||
"id": "d405ae13-3388-41c0-a5f6-d11194d0a943",
|
||||
"modelName": "Suggestion",
|
||||
"imagePath": "../../static/images/index/tsjy.png",
|
||||
"noImagePath": "../../static/images/index/tsjy-no.png",
|
||||
"imagePath": "/static/images/index/tsjy.png",
|
||||
"noImagePath": "/static/images/index/tsjy-no.png",
|
||||
"homeUrl": "/pages/suggestion/suggestion"
|
||||
},
|
||||
{
|
||||
"name": "收银稽核",
|
||||
"id": "",
|
||||
"modelName": "Mbwa",
|
||||
"imagePath": "../../static/images/index/syjh.png",
|
||||
"noImagePath": "../../static/images/index/syjh-no.png",
|
||||
"homeUrl": ""
|
||||
"id": "ebd8cae4-d36d-4ea0-a7e9-61e566bf9e24",
|
||||
"modelName": "cashAudit",
|
||||
"imagePath": "/static/images/index/syjh.png",
|
||||
"noImagePath": "/static/images/index/syjh-no.png",
|
||||
"homeUrl": "/pages/cashAudit/list"
|
||||
}, {
|
||||
"name": "设备巡检",
|
||||
"id": "",
|
||||
"modelName": "Suggestion",
|
||||
"imagePath": "../../static/images/index/sbxj.png",
|
||||
"noImagePath": "../../static/images/index/sbxj-no.png",
|
||||
"imagePath": "/static/images/index/sbxj.png",
|
||||
"noImagePath": "/static/images/index/sbxj-no.png",
|
||||
"homeUrl": ""
|
||||
},
|
||||
{
|
||||
"name": "物业管理",
|
||||
"id": "",
|
||||
"modelName": "Suggestion",
|
||||
"imagePath": "../../static/images/index/wygl.png",
|
||||
"noImagePath": "../../static/images/index/wygl-no.png",
|
||||
"imagePath": "/static/images/index/wygl.png",
|
||||
"noImagePath": "/static/images/index/wygl-no.png",
|
||||
"homeUrl": ""
|
||||
},
|
||||
]
|
||||
@ -193,40 +193,40 @@
|
||||
"name": "每日营收",
|
||||
"id": "74934d31-385a-4eed-80bb-9c9ed7da29b5",
|
||||
"modelName": "EverdayRenven",
|
||||
"imagePath": "../../static/images/index/mrys.png",
|
||||
"noImagePath": "../../static/images/index/mrys-no.png",
|
||||
"imagePath": "/static/images/index/mrys.png",
|
||||
"noImagePath": "/static/images/index/mrys-no.png",
|
||||
"homeUrl": "/pages/everdayRenven/index"
|
||||
},
|
||||
{
|
||||
"name": "日结校验",
|
||||
"id": "b0b63a75-56c9-4f1d-aacb-a26e62b47e3e",
|
||||
"modelName": "DataValidation",
|
||||
"imagePath": "../../static/images/index/sjjy.png",
|
||||
"noImagePath": "../../static/images/index/sjjy-no.png",
|
||||
"imagePath": "/static/images/index/sjjy.png",
|
||||
"noImagePath": "/static/images/index/sjjy-no.png",
|
||||
"homeUrl": "/pages/dataSummary/dataSummary"
|
||||
},
|
||||
{
|
||||
"name": "商品审批",
|
||||
"id": "056b29d7-4721-47ee-ad25-660814e1f3a9",
|
||||
"modelName": "CommodityApproval",
|
||||
"imagePath": "../../static/images/index/spsp.png",
|
||||
"noImagePath": "../../static/images/index/spsp-no.png",
|
||||
"imagePath": "/static/images/index/spsp.png",
|
||||
"noImagePath": "/static/images/index/spsp-no.png",
|
||||
"homeUrl": "/pages/businessApproval/businessApproval"
|
||||
},
|
||||
{
|
||||
"name": "招商审批",
|
||||
"id": "2290e96d-c6d7-4dde-b5b7-e699b615ff2f",
|
||||
"modelName": "Mnangement",
|
||||
"imagePath": "../../static/images/index/zsgl.png",
|
||||
"noImagePath": "../../static/images/index/zsgl-no.png",
|
||||
"imagePath": "/static/images/index/zsgl.png",
|
||||
"noImagePath": "/static/images/index/zsgl-no.png",
|
||||
"homeUrl": "/pages/investment/investment"
|
||||
},
|
||||
{
|
||||
"name": "商业BI",
|
||||
"id": "9125e837-1961-4d92-bdc1-2200260d9643",
|
||||
"modelName": "AnnualData",
|
||||
"imagePath": "../../static/images/index/ndsj.png",
|
||||
"noImagePath": "../../static/images/index/ndsj-no.png",
|
||||
"imagePath": "/static/images/index/ndsj.png",
|
||||
"noImagePath": "/static/images/index/ndsj-no.png",
|
||||
"homeUrl": "/pages/webview/webview?src=https://datav.aliyuncs.com/share/4c027574b3a124835e767f1b7dea1a86"
|
||||
}
|
||||
]
|
||||
|
||||
BIN
static/images/publicity/ybyj.png
Normal file
|
After Width: | Height: | Size: 837 B |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 56 KiB |
BIN
static/images/success.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
4
unpackage/dist/build/mp-weixin/app.js
vendored
@ -1,4 +0,0 @@
|
||||
|
||||
require('./common/runtime.js')
|
||||
require('./common/vendor.js')
|
||||
require('./common/main.js')
|
||||
157
unpackage/dist/build/mp-weixin/app.json
vendored
@ -1,157 +0,0 @@
|
||||
{
|
||||
"pages": [
|
||||
"pages/index/index",
|
||||
"pages/userCenter/userCenter",
|
||||
"pages/register/register",
|
||||
"pages/auditingPop/jointlySign",
|
||||
"pages/auditingPop/transfer",
|
||||
"pages/auditingPop/toExamine",
|
||||
"pages/auditingPop/reject",
|
||||
"pages/webview/webview",
|
||||
"pages/additionalFeatures/positionPunching",
|
||||
"pages/additionalFeatures/takePhoto",
|
||||
"pages/userCenter/userAuthority"
|
||||
],
|
||||
"subPackages": [
|
||||
{
|
||||
"root": "pages/tender",
|
||||
"pages": [
|
||||
"tender",
|
||||
"tenderRecord",
|
||||
"tenderAlteration",
|
||||
"decisionRecord"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/mbwa",
|
||||
"pages": [
|
||||
"mbwa",
|
||||
"mbwaUnCheck",
|
||||
"mbwaDetail",
|
||||
"mbwaUpload"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/serviceAreaReimbursement",
|
||||
"pages": [
|
||||
"serviceAreaReimbursement",
|
||||
"detail"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/dataSummary",
|
||||
"pages": [
|
||||
"dataSummary",
|
||||
"dayDetail",
|
||||
"detail"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/askForLeave",
|
||||
"pages": [
|
||||
"askForLeave",
|
||||
"detail",
|
||||
"newLeave",
|
||||
"newLeave2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/officialDocManagement",
|
||||
"pages": [
|
||||
"officialDocManagement",
|
||||
"detail",
|
||||
"readerList",
|
||||
"circulate"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/businessApproval",
|
||||
"pages": [
|
||||
"businessApproval",
|
||||
"productDetail"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/everdayRenven",
|
||||
"pages": [
|
||||
"index",
|
||||
"detail",
|
||||
"serviceIndex",
|
||||
"serviceDetail"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/suggestion",
|
||||
"pages": [
|
||||
"suggestion",
|
||||
"suggestionDetail"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/contract",
|
||||
"pages": [
|
||||
"contract",
|
||||
"detail"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/investment",
|
||||
"pages": [
|
||||
"investment",
|
||||
"investmentDetail"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/publicity",
|
||||
"pages": [
|
||||
"publicity",
|
||||
"publicityDetail"
|
||||
]
|
||||
},
|
||||
{
|
||||
"root": "pages/expenseApproval",
|
||||
"pages": [
|
||||
"expenseApproval",
|
||||
"expenseDetail"
|
||||
]
|
||||
}
|
||||
],
|
||||
"window": {
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationBarTitleText": "uni-app",
|
||||
"navigationBarBackgroundColor": "#fff",
|
||||
"backgroundColor": "#f9f9f9"
|
||||
},
|
||||
"tabBar": {
|
||||
"color": "#474647",
|
||||
"selectedColor": "#3295f9",
|
||||
"borderStyle": "black",
|
||||
"backgroundColor": "#ffffff",
|
||||
"list": [
|
||||
{
|
||||
"pagePath": "pages/index/index",
|
||||
"iconPath": "static/images/tab/home.png",
|
||||
"selectedIconPath": "static/images/tab/homeActive.png",
|
||||
"text": "办公"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/userCenter/userCenter",
|
||||
"iconPath": "static/images/tab/user.png",
|
||||
"selectedIconPath": "static/images/tab/userActive.png",
|
||||
"text": "我的"
|
||||
}
|
||||
]
|
||||
},
|
||||
"permission": {
|
||||
"scope.userLocation": {
|
||||
"desc": "定位打卡功能"
|
||||
}
|
||||
},
|
||||
"uniStatistics": {
|
||||
"enable": false
|
||||
},
|
||||
"usingComponents": {
|
||||
"no-found": "/components/warning"
|
||||
},
|
||||
"sitemapLocation": "sitemap.json"
|
||||
}
|
||||
3
unpackage/dist/build/mp-weixin/app.wxss
vendored
@ -1,3 +0,0 @@
|
||||
@import './common/main.wxss';
|
||||
|
||||
[data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;}
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{2618:function(t,e,n){"use strict";(function(t){n("40da");var e=c(n("66fd")),o=c(n("5c8f")),r=c(n("2f62")),u=c(n("8eba")),a=c(n("e32c")),i=c(n("059d"));function c(t){return t&&t.__esModule?t:{default:t}}function f(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,o)}return n}function l(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?f(Object(n),!0).forEach((function(e){s(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):f(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function s(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var p=function(){n.e("components/warning").then(function(){return resolve(n("ef71"))}.bind(null,n)).catch(n.oe)};e.default.use(r.default),e.default.config.productionTip=!1,e.default.prototype.$store=u.default,e.default.prototype.$util=i.default,e.default.prototype.$request=a.default,e.default.prototype.$eventHub=new e.default,e.default.component("noFound",p),i.default.netChange(),o.default.mpType="app";var d=new e.default(l({},o.default));t(d).$mount()}).call(this,n("543d")["createApp"])},"52f4":function(t,e,n){"use strict";var o=n("6014"),r=n.n(o);r.a},"5c8f":function(t,e,n){"use strict";n.r(e);var o=n("dcc7");for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);n("52f4");var u,a,i,c,f=n("f0c5"),l=Object(f["a"])(o["default"],u,a,!1,null,null,null,!1,i,c);e["default"]=l.exports},6014:function(t,e,n){},"6f73":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=u(n("66fd")),r=n("2f62");function u(t){return t&&t.__esModule?t:{default:t}}function a(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,o)}return n}function i(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?a(Object(n),!0).forEach((function(e){c(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):a(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function c(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var f={globalData:{visitChannels:""},computed:i({},(0,r.mapGetters)({user:"getUser"})),methods:i(i({},(0,r.mapActions)(["memberLogin","getLoginCode"])),(0,r.mapMutations)(["setVisitChannels"])),onLaunch:function(e){t.getSystemInfo({success:function(t){o.default.prototype.StatusBar=t.statusBarHeight;var e=wx.getMenuButtonBoundingClientRect();o.default.prototype.Custom=e,o.default.prototype.CustomBar=e.bottom+e.top-t.statusBarHeight}});this.user.WeChat_MiniProToken?this.memberLogin():this.getLoginCode(),this.$scope.globalData.visitChannels=e.scene,this.setVisitChannels(e.scene);var n=t.getUpdateManager();n.onUpdateReady((function(e){t.showModal({title:"更新提示",content:"新版本已经准备好,是否重启应用?",success:function(t){t.confirm&&n.applyUpdate()}})})),this.$util.addUserBehavior({intoRoute:"/"+e.path,outtoRoute:""})},onShow:function(){var t=getCurrentPages(),e=t.length;if(e>0){var n=t[e-1],o="/"+n.route;this.$util.addUserBehavior({intoRoute:o,outtoRoute:""})}console.log("App Show")},onHide:function(t){var e=getCurrentPages(),n=e.length;if(n>0){var o=e[n-1],r="/"+o.route;this.$util.addUserBehavior({intoRoute:"",outtoRoute:r})}console.log("App Hide")}};e.default=f}).call(this,n("543d")["default"])},dcc7:function(t,e,n){"use strict";n.r(e);var o=n("6f73"),r=n.n(o);for(var u in o)"default"!==u&&function(t){n.d(e,t,(function(){return o[t]}))}(u);e["default"]=r.a}},[["2618","common/runtime","common/vendor"]]]);
|
||||
24
unpackage/dist/build/mp-weixin/common/main.wxss
vendored
13
unpackage/dist/build/mp-weixin/common/vendor.js
vendored
@ -1,10 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/auditingProcess/item"],{4676:function(e,t,n){"use strict";var r;n.d(t,"b",(function(){return u})),n.d(t,"c",(function(){return i})),n.d(t,"a",(function(){return r}));var u=function(){var e=this,t=e.$createElement;e._self._c},i=[]},"803e":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r={props:{item:{required:!0,type:Object},approveType:{required:!0,type:Number}},computed:{getAdviceName:function(){var e=this;if(e.item){var t=e.item.APPROVED_NAME;return 1===e.approveType?t.indexOf("意见")>-1?t.replace("意见",""):t:t||"驳回"}},getTime:function(){var e=this;return e.$util.cutDate(e.item.APPROVED_DATE,"YYYY-MM-DD hh:mm")}}};t.default=r},b1af:function(e,t,n){"use strict";n.r(t);var r=n("803e"),u=n.n(r);for(var i in r)"default"!==i&&function(e){n.d(t,e,(function(){return r[e]}))}(i);t["default"]=u.a},d96f:function(e,t,n){"use strict";var r=n("dc98"),u=n.n(r);u.a},dc98:function(e,t,n){},fe5b:function(e,t,n){"use strict";n.r(t);var r=n("4676"),u=n("b1af");for(var i in u)"default"!==i&&function(e){n.d(t,e,(function(){return u[e]}))}(i);n("d96f");var a,c=n("f0c5"),f=Object(c["a"])(u["default"],r["b"],r["c"],!1,null,"2e2833ca",null,!1,r["a"],a);t["default"]=f.exports}}]);
|
||||
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
|
||||
'components/auditingProcess/item-create-component',
|
||||
{
|
||||
'components/auditingProcess/item-create-component':(function(module, exports, __webpack_require__){
|
||||
__webpack_require__('543d')['createComponent'](__webpack_require__("fe5b"))
|
||||
})
|
||||
},
|
||||
[['components/auditingProcess/item-create-component']]
|
||||
]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"usingComponents": {},
|
||||
"component": true
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="prosess-unit _div data-v-2e2833ca"><view class="{{['ico _i data-v-2e2833ca',(item.APPROVED_TYPE==9000)?'ico-bh':'',(item.APPROVED_TYPE!=9000&&item.APPROVED_TYPE!=0)?'ico-tg':'',(item.APPROVED_TYPE==0)?'ico-yj':'']}}"></view><view class="process-content _div data-v-2e2833ca"><view class="process-title _div data-v-2e2833ca"><label class="_span data-v-2e2833ca">{{"【"+getAdviceName+"】"}}</label><label class="process-adv _span data-v-2e2833ca">{{getTime}}<block wx:if="{{item.APPROVED_MARK==2000}}"><view class="ico ico-yd _i data-v-2e2833ca"></view></block></label></view><block wx:if="{{item.APPROVED_INFO.length<16}}"><view class="process-title _div data-v-2e2833ca"><view class="pl16 _p data-v-2e2833ca"><label class="process-role _span data-v-2e2833ca">{{item.APPROVED_INFO!=''?item.APPROVED_STAFF+':':''+item.APPROVED_STAFF}}</label><block wx:if="{{item.APPROVED_INFO}}"><label class="_span data-v-2e2833ca">{{item.APPROVED_INFO}}</label></block></view><label class="process-adv _span data-v-2e2833ca">{{item.SUMTIMES}}</label></view></block><block wx:else><block class="data-v-2e2833ca"><view class="process-title _div data-v-2e2833ca"><view class="pl16 _p data-v-2e2833ca"><label class="process-role _span data-v-2e2833ca">{{item.APPROVED_INFO!=''?item.APPROVED_STAFF+':':''+item.APPROVED_STAFF}}</label></view><label class="process-adv _span data-v-2e2833ca">{{item.SUMTIMES}}</label></view><view class="pl16 _p data-v-2e2833ca"><block wx:if="{{item.APPROVED_INFO}}"><label class="_span data-v-2e2833ca">{{item.APPROVED_INFO}}</label></block></view></block></block></view></view>
|
||||
@ -1,10 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/filesComponent/fileUnit"],{"18af":function(t,e,n){"use strict";n.r(e);var i=n("f6e9"),o=n("4a54");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("eb3d");var u,f=n("f0c5"),c=Object(f["a"])(o["default"],i["b"],i["c"],!1,null,"695b2f5f",null,!1,i["a"],u);e["default"]=c.exports},"39d7":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={props:{fileItem:Object},data:function(){return{active:!1}},methods:{download:function(){var e=this;this.active=!0,"png"==e.fileItem.type||"jpg"==e.fileItem.type||"jpge"==e.fileItem.type?t.previewImage({urls:[e.fileItem.path]}):(t.showLoading({title:"正在下载,请稍后"}),t.downloadFile({url:e.fileItem.path,success:function(e){var n=e.tempFilePath;t.openDocument({filePath:n,success:function(t){console.log("打开文档成功")},complete:function(){t.hideLoading()}})},fail:function(e){t.hideLoading(),t.showToast({title:e})}}))}}};e.default=n}).call(this,n("543d")["default"])},"40d0":function(t,e,n){},"4a54":function(t,e,n){"use strict";n.r(e);var i=n("39d7"),o=n.n(i);for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);e["default"]=o.a},eb3d:function(t,e,n){"use strict";var i=n("40d0"),o=n.n(i);o.a},f6e9:function(t,e,n){"use strict";var i;n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return i}));var o=function(){var t=this,e=t.$createElement;t._self._c},a=[]}}]);
|
||||
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
|
||||
'components/filesComponent/fileUnit-create-component',
|
||||
{
|
||||
'components/filesComponent/fileUnit-create-component':(function(module, exports, __webpack_require__){
|
||||
__webpack_require__('543d')['createComponent'](__webpack_require__("18af"))
|
||||
})
|
||||
},
|
||||
[['components/filesComponent/fileUnit-create-component']]
|
||||
]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"usingComponents": {},
|
||||
"component": true
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view data-event-opts="{{[['tap',[['download']]]]}}" class="{{['file-unit data-v-695b2f5f',(active)?'active':'']}}" bindtap="__e"><block wx:if="{{fileItem.type=='doc'||fileItem.type=='docx'}}"><view class="ico ico-word ico-big2 _i data-v-695b2f5f"></view></block><block wx:else><block wx:if="{{fileItem.type=='xls'||fileItem.type=='xlsx'}}"><view class="ico ico-execl ico-big2 _i data-v-695b2f5f"></view></block><block wx:else><block wx:if="{{fileItem.type=='txt'}}"><view class="ico ico-txt ico-big2 _i data-v-695b2f5f"></view></block><block wx:else><block wx:if="{{fileItem.type=='pdf'}}"><view class="ico ico-pdf ico-big2 _i data-v-695b2f5f"></view></block><block wx:else><block wx:if="{{fileItem.type=='zip'||fileItem.type=='rar'}}"><view class="ico ico-rarzip ico-big2 _i data-v-695b2f5f"></view></block><block wx:else><block wx:if="{{fileItem.type=='png'||fileItem.type=='jpg'||fileItem.type=='jpge'}}"><view class="ico ico-jpgpng ico-big2 _i data-v-695b2f5f"></view></block><block wx:else><block wx:if="{{fileItem.type=='ppt'||fileItem.type=='ppts'||fileItem.type=='pptx'||fileItem.type=='dps'}}"><view class="ico ico-ppt ico-big2 _i data-v-695b2f5f"></view></block><block wx:else><view class="ico ico-more ico-big2 _i data-v-695b2f5f"></view></block></block></block></block></block></block></block><view style="flex:1;line-height:1.2;padding-right:20rpx;" class="data-v-695b2f5f"><view class="file-text data-v-695b2f5f">{{fileItem.name}}</view></view><view class="ico ico-wjxz _i data-v-695b2f5f"></view></view>
|
||||
@ -1,10 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/travelCard/travelCard"],{"50ae":function(t,e,n){"use strict";var a;n.d(e,"b",(function(){return u})),n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return a}));var u=function(){var t=this,e=t.$createElement,n=(t._self._c,t.$util.cutDate(t.item.START_DATE,"YYYY-MM-DD")),a=t.$util.cutDate(t.item.ARRIVE_DATE,"YYYY-MM-DD"),u=t.item.BILL_AMOUNT?t.$util.fmoney(t.item.BILL_AMOUNT,2):null;t.$mp.data=Object.assign({},{$root:{g0:n,g1:a,g2:u}})},r=[]},"6c94":function(t,e,n){"use strict";n.r(e);var a=n("50ae"),u=n("e4d0");for(var r in u)"default"!==r&&function(t){n.d(e,t,(function(){return u[t]}))}(r);n("87ac");var c,i=n("f0c5"),o=Object(i["a"])(u["default"],a["b"],a["c"],!1,null,"0ad66f3e",null,!1,a["a"],c);e["default"]=o.exports},"87ac":function(t,e,n){"use strict";var a=n("eda5"),u=n.n(a);u.a},a990:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a={props:{item:Object,cardType:{default:"1",type:String}}};e.default=a},e4d0:function(t,e,n){"use strict";n.r(e);var a=n("a990"),u=n.n(a);for(var r in a)"default"!==r&&function(t){n.d(e,t,(function(){return a[t]}))}(r);e["default"]=u.a},eda5:function(t,e,n){}}]);
|
||||
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
|
||||
'components/travelCard/travelCard-create-component',
|
||||
{
|
||||
'components/travelCard/travelCard-create-component':(function(module, exports, __webpack_require__){
|
||||
__webpack_require__('543d')['createComponent'](__webpack_require__("6c94"))
|
||||
})
|
||||
},
|
||||
[['components/travelCard/travelCard-create-component']]
|
||||
]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="trip-detail data-v-0ad66f3e"><view class="trip-detail-top data-v-0ad66f3e"><view class="uni-flex data-v-0ad66f3e" style="justify-content:space-between;"><text class="span24 data-v-0ad66f3e">{{$root.g0}}</text><text class="span24 data-v-0ad66f3e">{{$root.g1}}</text></view><view class="trip-detail-traffic data-v-0ad66f3e"><view class="trip-addr data-v-0ad66f3e">{{item.START_PLACE}}</view><view class="jt-logo data-v-0ad66f3e"><block wx:if="{{item.VEHICLE_TYPE==='出租车'}}"><image src="/static/images/expense/taxi.png" mode="aspectFit" class="data-v-0ad66f3e"></image></block><block wx:else><block wx:if="{{item.VEHICLE_TYPE==='飞机'}}"><image src="/static/images/expense/fj.png" mode="aspectFit" class="data-v-0ad66f3e"></image></block><block wx:else><block wx:if="{{item.VEHICLE_TYPE==='高铁'||item.VEHICLE_TYPE==='动车'}}"><image src="/static/images/expense/gt.png" mode="aspectFit" class="data-v-0ad66f3e"></image></block><block wx:else><block wx:if="{{item.VEHICLE_TYPE==='火车'}}"><image src="/static/images/expense/hc.png" mode="aspectFit" class="data-v-0ad66f3e"></image></block><block wx:else><block wx:if="{{item.VEHICLE_TYPE==='轮船'}}"><image src="/static/images/expense/lc.png" mode="aspectFit" class="data-v-0ad66f3e"></image></block><block wx:else><image src="/static/images/expense/qc.png" mode="aspectFit" class="data-v-0ad66f3e"></image></block></block></block></block></block></view><view class="trip-addr data-v-0ad66f3e" style="text-align:right;">{{item.ARRIVE_PLACE}}</view></view><view class="uni-flex ai-center jc-between data-v-0ad66f3e"><view class="uni-flex ai-center data-v-0ad66f3e"><block wx:if="{{cardType==1&&item.SUBSIDY_POPULATION}}"><view class="uni-flex ai-center _div data-v-0ad66f3e" style="margin-right:24rpx;"><image style="width:20rpx;height:24rpx;margin-right:8rpx;vertical-align:middle;" src="/static/images/expense/rs.png" mode="aspectFit" class="data-v-0ad66f3e"></image><text class="text63 span24 data-v-0ad66f3e">{{(item.SUBSIDY_POPULATION||0)+" 人"}}</text></view></block><view class="uni-flex ai-center _div data-v-0ad66f3e"><image style="width:30rpx;height:24rpx;margin-right:8rpx;vertical-align:middle;" src="/static/images/expense/pj.png" mode="aspectFit" class="data-v-0ad66f3e"></image><text class="text63 span24 data-v-0ad66f3e">{{(item.BILL_COUNT||0)+" 张"}}</text></view></view><view class="trip-price data-v-0ad66f3e">交通<label class="_span data-v-0ad66f3e">{{"¥"+(item.BILL_AMOUNT?$root.g2:'0.00')}}</label></view></view></view><block wx:if="{{cardType==1}}"><block class="data-v-0ad66f3e"><block wx:if="{{item.SUBSIDY_DAY||item.URBAN_TRAFFIC_ALLOWANCE||item.SUBSIDY_AMOUNT}}"><view class="uni-flex card-bottom data-v-0ad66f3e"><block wx:if="{{item.SUBSIDY_DAY}}"><view style="flex:1;" class="data-v-0ad66f3e"><text class="text-title data-v-0ad66f3e">补贴天数:</text><text class="data-v-0ad66f3e">{{item.SUBSIDY_DAY||'暂无'}}</text></view></block><block wx:if="{{item.URBAN_TRAFFIC_ALLOWANCE}}"><view style="flex:1;" class="data-v-0ad66f3e"><text class="text-title data-v-0ad66f3e">补贴标准:</text><text class="data-v-0ad66f3e">{{item.URBAN_TRAFFIC_ALLOWANCE||'暂无'}}</text></view></block><block wx:if="{{item.SUBSIDY_AMOUNT}}"><view style="flex:1;text-align:right;" class="data-v-0ad66f3e"><text class="text-title data-v-0ad66f3e">补贴金额:</text><text class="data-v-0ad66f3e">{{item.SUBSIDY_AMOUNT||'暂无'}}</text></view></block></view></block></block></block><block wx:else><block class="data-v-0ad66f3e"><block wx:if="{{item.EXPENSE_ITEM||item.OTHER_COST||item.EXPENSEDETAIL_DESC}}"><view class=" card-bottom data-v-0ad66f3e"><view class="uni-flex data-v-0ad66f3e" style="align-items:center;justify-content:space-between;"><block wx:if="{{item.EXPENSE_ITEM}}"><view style="flex:1;" class="data-v-0ad66f3e"><text class="text-title data-v-0ad66f3e">制度规定标准:</text><text class="data-v-0ad66f3e">{{item.EXPENSE_ITEM||'暂无'}}</text></view></block><block wx:if="{{item.OTHER_COST}}"><view style="flex:1;text-align:right;" class="data-v-0ad66f3e"><text class="text-title data-v-0ad66f3e">实际乘坐标准:</text><text class="data-v-0ad66f3e">{{item.OTHER_COST||'暂无'}}</text></view></block></view><block wx:if="{{item.EXPENSEDETAIL_DESC}}"><view class="uni-flex data-v-0ad66f3e" style="align-items:flex-start;"><text class="text-title data-v-0ad66f3e">备注:</text><text class="data-v-0ad66f3e">{{item.EXPENSEDETAIL_DESC||'暂无'}}</text></view></block></view></block></block></block></view>
|
||||
@ -1 +0,0 @@
|
||||
.trip-detail.data-v-0ad66f3e{border:2rpx solid #eaeaea;box-shadow:0 1rpx 8rpx #eaeaea;border-radius:14rpx;margin-bottom:20rpx;margin-left:30rpx;margin-right:30rpx;padding:20rpx 24rpx 20rpx 24rpx}.trip-detail-top.data-v-0ad66f3e{width:100%;box-sizing:border-box}.text63.data-v-0ad66f3e{color:#696969;font-size:24rpx}.trip-detail-traffic.data-v-0ad66f3e{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.trip-detail-traffic>view.data-v-0ad66f3e{height:100%}.trip-addr.data-v-0ad66f3e{font-size:30rpx;-webkit-box-flex:2;-webkit-flex:2;flex:2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}.jt-logo.data-v-0ad66f3e{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGkAAAAICAYAAAD6KtHFAAAAjElEQVRIie3WIQoCQRQG4G/FIggWi9Fm9hpewCu4V7CKeBejBxCr7Aab51AQ29oMslOdCe+L//zhwYPhVV3XCfm0bXvAHo9UZ/C/cUJCjTPmqUIsKb83lrhi1VeIJZVjihO2vw+xpLJU2OGIyTdsmibbRAE8Me7J71jjNkScd3m9EvkCF2ziuyvbCLMPK6EWTFmpDO0AAAAASUVORK5CYII=") no-repeat center 36rpx;background-size:100%;width:50px;text-align:center;vertical-align:top;display:inline-block}.trip-price.data-v-0ad66f3e{color:#6cc09c;font-size:24rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.trip-price ._span.data-v-0ad66f3e{color:#ec8538;font-size:28rpx;margin-left:10rpx}.jt-logo image.data-v-0ad66f3e{width:78rpx;height:50rpx}.text-title.data-v-0ad66f3e{color:#888}.card-bottom.data-v-0ad66f3e{-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-top:2rpx dashed #eee;padding-top:12rpx;margin-top:8rpx}.card-bottom text.data-v-0ad66f3e{font-size:24rpx}
|
||||
@ -1,10 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/uni-popup"],{"0bfa":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u={props:{show:{type:Boolean,default:!1},type:{type:String,default:"middle"},msg:{type:String,default:""}},data:function(){var t=0;return{offsetTop:t}},methods:{hide:function(){this.$emit("hidePopup")},doNotMove:function(){console.log("stop user scroll it!")}}};e.default=u},"1cae":function(t,e,n){"use strict";var u;n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return u}));var o=function(){var t=this,e=t.$createElement;t._self._c},a=[]},"2eea":function(t,e,n){},"66f9":function(t,e,n){"use strict";var u=n("2eea"),o=n.n(u);o.a},bf63:function(t,e,n){"use strict";n.r(e);var u=n("1cae"),o=n("fb84");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("66f9");var f,r=n("f0c5"),c=Object(r["a"])(o["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],f);e["default"]=c.exports},fb84:function(t,e,n){"use strict";n.r(e);var u=n("0bfa"),o=n.n(u);for(var a in u)"default"!==a&&function(t){n.d(e,t,(function(){return u[t]}))}(a);e["default"]=o.a}}]);
|
||||
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
|
||||
'components/uni-popup-create-component',
|
||||
{
|
||||
'components/uni-popup-create-component':(function(module, exports, __webpack_require__){
|
||||
__webpack_require__('543d')['createComponent'](__webpack_require__("bf63"))
|
||||
})
|
||||
},
|
||||
[['components/uni-popup-create-component']]
|
||||
]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"usingComponents": {},
|
||||
"component": true
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view data-event-opts="{{[['touchmove',[['',['$event']]]]]}}" bindtouchmove="__e"><view data-event-opts="{{[['tap',[['hide',['$event']]]],['touchmove',[['',['$event']]]]]}}" hidden="{{!(show)}}" class="uni-mask" style="{{'top:'+(offsetTop+'px')+';'}}" bindtap="__e" bindtouchmove="__e"></view><view hidden="{{!(show)}}" class="{{['uni-popup','uni-popup-'+type]}}"><view hidden="{{!(msg!='')}}" class="header-top">{{msg}}</view><slot></slot></view></view>
|
||||
@ -1 +0,0 @@
|
||||
.uni-mask{position:fixed;z-index:998;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.6);height:100%}.uni-popup{position:fixed;z-index:999;background-color:#fff;box-shadow:0 0 30rpx rgba(0,0,0,.1)}.header-top{background-color:#5393f7;color:#fff;width:100%;text-align:center;padding:20rpx 30rpx}.uni-popup-middle{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;min-width:400rpx;min-height:100rpx;border-radius:16rpx;top:50%;left:50%;-webkit-transform:translate(-50%,-60%);transform:translate(-50%,-60%);-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:0 30rpx 30rpx 30rpx}.uni-popup-top{top:0;left:0;width:100%;min-height:390rpx;line-height:100rpx;text-align:center;height:auto}.uni-popup-bottom{left:0;bottom:0;width:100%;min-height:200rpx;line-height:100rpx;text-align:center}
|
||||
@ -1,10 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["components/warning"],{"3cac":function(e,t,n){"use strict";var r=n("f1ba"),c=n.n(r);c.a},"63b8":function(e,t,n){"use strict";n.r(t);var r=n("6649"),c=n.n(r);for(var o in r)"default"!==o&&function(e){n.d(t,e,(function(){return r[e]}))}(o);t["default"]=c.a},6649:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n("2f62");function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function o(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?c(Object(n),!0).forEach((function(t){u(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function u(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var a={props:["noData","text"],data:function(){return{}},computed:o({},(0,r.mapGetters)({isConnect:"getConnect",isLoading:"getLoading"})),methods:{}};t.default=a},"9e24":function(e,t,n){"use strict";var r;n.d(t,"b",(function(){return c})),n.d(t,"c",(function(){return o})),n.d(t,"a",(function(){return r}));var c=function(){var e=this,t=e.$createElement;e._self._c},o=[]},ef71:function(e,t,n){"use strict";n.r(t);var r=n("9e24"),c=n("63b8");for(var o in c)"default"!==o&&function(e){n.d(t,e,(function(){return c[e]}))}(o);n("3cac");var u,a=n("f0c5"),i=Object(a["a"])(c["default"],r["b"],r["c"],!1,null,"35d70efb",null,!1,r["a"],u);t["default"]=i.exports},f1ba:function(e,t,n){}}]);
|
||||
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
|
||||
'components/warning-create-component',
|
||||
{
|
||||
'components/warning-create-component':(function(module, exports, __webpack_require__){
|
||||
__webpack_require__('543d')['createComponent'](__webpack_require__("ef71"))
|
||||
})
|
||||
},
|
||||
[['components/warning-create-component']]
|
||||
]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="warning-image-box data-v-35d70efb"><block wx:if="{{!isConnect}}"><block class="data-v-35d70efb"><image class="no-wifi data-v-35d70efb" src="../static/images/no-wifi.png" mode="aspectFit"></image><text class="data-v-35d70efb">网络未连接</text></block></block><block wx:else><block wx:if="{{!isLoading&&!noData}}"><block class="data-v-35d70efb"><image class="no-data data-v-35d70efb" src="../static/images/no-data.png" mode="aspectFit"></image><text class="data-v-35d70efb">{{text||'数据空空'}}</text></block></block></block></view>
|
||||
@ -1 +0,0 @@
|
||||
.warning-image-box.data-v-35d70efb{height: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-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding-top:20%}.no-wifi.data-v-35d70efb{width:374rpx;height:348rpx}.no-data.data-v-35d70efb{width:374rpx;height:288rpx}
|
||||
@ -1,7 +0,0 @@
|
||||
{
|
||||
"enablePullDownRefresh": true,
|
||||
"navigationBarTitleText": "打卡",
|
||||
"usingComponents": {
|
||||
"uni-popup": "/components/uni-popup"
|
||||
}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="page-body _div data-v-7ac116fe"><view class="_div data-v-7ac116fe"><view class="uni-flex today _div data-v-7ac116fe"><image class="uni-icon-timefill data-v-7ac116fe" src="/static/images/puching/time.png" mode="aspectFit"></image><text class="date-text ml-1 data-v-7ac116fe">{{signin.day+" "+$root.g0}}</text></view><view class="company-title _div data-v-7ac116fe">{{"我的位置:"+signin.nowAddress}}</view><block wx:if="{{workLocale.ClockLat}}"><view class="map-box _div data-v-7ac116fe"><map style="width:100%;height:200rpx;" id="myMap" latitude="{{workLocale.ClockLat}}" longitude="{{workLocale.ClockLng}}" show-location="true" markers="{{mudi}}" circles="{{circles}}" class="data-v-7ac116fe"></map></view></block><view class="_div data-v-7ac116fe"><view class="punching-date-box _div data-v-7ac116fe"><view class="title _div data-v-7ac116fe"><view class="{{['circle _div data-v-7ac116fe',(workLocale.ClockType==1000)?'now':'']}}"></view>上班时间<block wx:if="{{workLocale}}"><label class="ml-1 _span data-v-7ac116fe">{{''+workLocale.AMStarttime}}</label></block></view><block wx:if="{{workLocale.isAmclock}}"><view class="date-text _div data-v-7ac116fe">{{''+(pageMsg?pageMsg.ClockIn+' 已打卡':'未打卡')}}</view></block><block wx:else><block wx:if="{{pageMsg&&pageMsg.ClockIn}}"><view class="date-text _div data-v-7ac116fe">{{pageMsg.ClockIn+" 已打卡"}}<block wx:if="{{pageMsg.ClockInResult!==1000}}"><label class="clockState _span data-v-7ac116fe">{{pageMsg.ClockInResultText}}</label></block></view></block><block wx:else><view class="date-text _div data-v-7ac116fe">缺卡</view></block></block></view><block wx:if="{{!workLocale.isAmclock}}"><view class="punching-date-box _div data-v-7ac116fe"><view class="title _div data-v-7ac116fe"><view class="{{['circle _div data-v-7ac116fe',(workLocale.ClockType==2000)?'now':'']}}"></view>下班时间<block wx:if="{{workLocale}}"><label class="ml-1 _span data-v-7ac116fe">{{workLocale.PMEndtime}}</label></block></view><block wx:if="{{pageMsg&&pageMsg.ClockOut}}"><view class="date-text _div data-v-7ac116fe">{{pageMsg.ClockOut+" 已打卡"}}<block wx:if="{{pageMsg.ClockOutResult!==1000}}"><label class="clockState _span data-v-7ac116fe">{{''+pageMsg.ClockOutResultText}}</label></block></view></block></view></block></view><view class="btn-box _div data-v-7ac116fe"><view data-event-opts="{{[['tap',[['takePhoto',['$event']]]]]}}" class="{{['btn _div data-v-7ac116fe',(!signin.isAble)?'bg-gray':'']}}" bindtap="__e"><view class="fs-14 _div data-v-7ac116fe">{{!workLocale.isAmclock?'下班打卡':'上班打卡'}}</view><view class="fs-52 _div data-v-7ac116fe">{{signin.time}}</view></view><view class="uni-flex able-text _div data-v-7ac116fe"><block wx:if="{{signin.isAble}}"><image src="/static/images/puching/in.png" mode="aspectFit" class="data-v-7ac116fe"></image></block><block wx:else><image src="/static/images/puching/out.png" mode="aspectFit" class="data-v-7ac116fe"></image></block><label class="_span data-v-7ac116fe">{{signin.isAble?'已进入考勤范围':'当前位置超出打卡范围'}}</label></view></view></view><uni-popup vue-id="60b4fc67-1" type="middle" show="{{showPop}}" class="data-v-7ac116fe" bind:__l="__l" vue-slots="{{['default']}}"><view class="pop-body _div data-v-7ac116fe"><image src="/static/images/puching/succes.png" mode="aspectFill" class="data-v-7ac116fe"></image><view class="tip-time _div data-v-7ac116fe">{{clockDate}}</view><view class="tip-text _div data-v-7ac116fe">打卡成功!</view><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="pop-btn _div data-v-7ac116fe" bindtap="__e">知道了</view></view></uni-popup></view>
|
||||
@ -1 +0,0 @@
|
||||
.fs-14.data-v-7ac116fe{font-size:28rpx}.fs-52.data-v-7ac116fe{font-size:52rpx}.ml-1.data-v-7ac116fe{margin-left:4rpx}.uni-icon.data-v-7ac116fe{font-size:28rpx}.uni-icon-timefill.data-v-7ac116fe{color:#ccc;width:26rpx;height:26rpx}.page-body.data-v-7ac116fe{padding:0 24rpx;background-color:#fff;height:100%;box-sizing:border-box}.today.data-v-7ac116fe{padding:20rpx 0;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.date-text.data-v-7ac116fe{color:#a3a3a3;font-size:22rpx}.company-title.data-v-7ac116fe{font-size:28rpx;line-height:1.5;font-weight:bolder;padding-top:32rpx;padding-bottom:20rpx;border-top:2rpx solid #edeef2}.map-box.data-v-7ac116fe{margin-bottom:40rpx}.punching-date-box.data-v-7ac116fe{padding-left:30rpx;position:relative}.punching-date-box.data-v-7ac116fe:nth-child(2)::before{content:"";position:absolute;height:190rpx;width:2rpx;display:block;background-color:#e0e0e0;top:-172rpx;left:36rpx;z-index:0}.punching-date-box + .punching-date-box.data-v-7ac116fe{margin-top:96rpx}.punching-date-box .circle.data-v-7ac116fe{background-color:#b2b2b2;width:16rpx;height:16rpx;border-radius:50%;margin-right:8rpx}.punching-date-box .circle.now.data-v-7ac116fe{background-color:#57aaee}.punching-date-box .title.data-v-7ac116fe{font-size:28rpx;color:#9ea2a4;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.punching-date-box .clockState.data-v-7ac116fe{color:#ff8556;margin-left:12rpx;font-size:24rpx;font-weight:700}.punching-date-box .date-text.data-v-7ac116fe{color:#353638;font-size:30rpx;padding-left:30rpx;line-height:60rpx}.btn-box.data-v-7ac116fe{margin-top:80rpx}.btn.data-v-7ac116fe{border-radius:50%;margin:0 auto;width:252rpx;height:252rpx;color:#fff;text-align:center;padding-top:60rpx;background:-webkit-linear-gradient(#65bef9,#50a0e8);background:linear-gradient(#65bef9,#50a0e8);box-sizing:border-box}.bg-gray.btn.data-v-7ac116fe{background:#c4cbcf}.able-text.data-v-7ac116fe{color:#8b8d8e;font-size:22rpx;margin-top:32rpx;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.able-text image.data-v-7ac116fe{width:24rpx;height:24rpx;margin-right:8rpx}.pop-body.data-v-7ac116fe{height:664rpx;width:564rpx;position:relative}.pop-body image.data-v-7ac116fe{width:497rpx;height:363rpx;position:absolute;top:-46px;-webkit-transform:translateX(-48%);transform:translateX(-48%);margin:0 50%}.tip-text.data-v-7ac116fe{font-size:46rpx;text-align:center;color:#7b95a9}.tip-time.data-v-7ac116fe{text-align:center;color:#5eb4f3;font-size:72rpx;margin-top:260rpx}.pop-btn.data-v-7ac116fe{border-top:2rpx solid #ececec;font-size:28rpx;height:90rpx;line-height:90rpx;text-align:center;color:#56a8ed;margin-top:120rpx}
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/additionalFeatures/takePhoto"],{3473:function(e,t,n){"use strict";n.r(t);var r=n("8fce"),c=n("e66d");for(var a in c)"default"!==a&&function(e){n.d(t,e,(function(){return c[e]}))}(a);n("c79c");var o,u=n("f0c5"),i=Object(u["a"])(c["default"],r["b"],r["c"],!1,null,"e5304f46",null,!1,r["a"],o);t["default"]=i.exports},"545c":function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n("2f62");function c(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function a(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?c(Object(n),!0).forEach((function(t){o(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var u={data:function(){return{src:""}},methods:a(a({},(0,r.mapMutations)(["setPhoto"])),{},{error:function(e){console.log(e)},takePhoto:function(){var t=this;if(this.src)this.backPage();else{var n=e.createCameraContext();n.takePhoto({quality:"low",success:function(e){t.src=e.tempImagePath}})}},backPage:function(){var t=this;e.getFileSystemManager().readFile({filePath:this.src,encoding:"base64",success:function(n){var r=n.data.replace(/\+/gi,"%2B");t.setPhoto(r),e.navigateBack({delta:1})}})}})};t.default=u}).call(this,n("543d")["default"])},"61f2":function(e,t,n){"use strict";(function(e){n("40da");r(n("66fd"));var t=r(n("3473"));function r(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,n("543d")["createPage"])},"8fce":function(e,t,n){"use strict";var r;n.d(t,"b",(function(){return c})),n.d(t,"c",(function(){return a})),n.d(t,"a",(function(){return r}));var c=function(){var e=this,t=e.$createElement;e._self._c;e._isMounted||(e.e0=function(t){e.src=null})},a=[]},c5a3:function(e,t,n){},c79c:function(e,t,n){"use strict";var r=n("c5a3"),c=n.n(r);c.a},e66d:function(e,t,n){"use strict";n.r(t);var r=n("545c"),c=n.n(r);for(var a in r)"default"!==a&&function(e){n.d(t,e,(function(){return r[e]}))}(a);t["default"]=c.a}},[["61f2","common/runtime","common/vendor"]]]);
|
||||
@ -1,5 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "",
|
||||
"enablePullDownRefresh": false,
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="data-v-e5304f46"><block wx:if="{{!src}}"><camera class="camera data-v-e5304f46" device-position="front" flash="off" data-event-opts="{{[['error',[['error',['$event']]]]]}}" binderror="__e"></camera></block><block wx:else><image class="camera data-v-e5304f46" mode="widthFix" src="{{src}}"></image></block><view class="btn-box _div data-v-e5304f46"><block wx:if="{{src}}"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="reset-btn _div data-v-e5304f46" bindtap="__e">重拍</view></block><view data-event-opts="{{[['tap',[['takePhoto',['$event']]]]]}}" class="btn _div data-v-e5304f46" bindtap="__e">{{''+(src?'确认打卡':'拍照')+''}}</view></view></view>
|
||||
@ -1 +0,0 @@
|
||||
.camera.data-v-e5304f46{margin:0 auto;width:100%;height:750rpx}.btn-box.data-v-e5304f46{position:relative}.reset-btn.data-v-e5304f46{position:absolute;left:0rpx;top:16rpx;width:120rpx;height:60rpx;text-align:center}.btn.data-v-e5304f46{border-radius:50%;margin:0 auto;width:200rpx;height:200rpx;color:#fff;text-align:center;line-height:200rpx;background:-webkit-linear-gradient(#65bef9,#50a0e8);background:linear-gradient(#65bef9,#50a0e8);box-sizing:border-box;margin-top:40rpx}
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/askForLeave/askForLeave"],{"42ee":function(e,t,n){},6814:function(e,t,n){"use strict";(function(e){n("40da");a(n("66fd"));var t=a(n("f0b5"));function a(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,n("543d")["createPage"])},"85b9":function(e,t,n){"use strict";var a;n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"a",(function(){return a}));var i=function(){var e=this,t=e.$createElement;e._self._c;e._isMounted||(e.e0=function(t){return e.$util.addUserBehavior({intoRoute:"/pages/askForLeave/newLeave"})})},o=[]},bb25:function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=n("2f62");function i(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function o(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?i(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):i(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var s=function(){n.e("pages/askForLeave/components/leaveUnit").then(function(){return resolve(n("e4c9"))}.bind(null,n)).catch(n.oe)},u={data:function(){return{pageData:{pageIndex:1,pageSize:10,isEnd:!1,isLoading:!0},pageList:[]}},components:{ListUnit:s},computed:o({},(0,a.mapGetters)({reloading:"shouldReLoadingList"})),methods:o(o({},(0,a.mapMutations)(["shouldReLoadingList"])),{},{getList:function(){var t=this,n=this;n.$request.$get("GetStaffLeaveList",{pageIndex:this.pageData.pageIndex,pageSize:this.pageData.pageSize}).then((function(a){if(a.ResultCode&&"100"==a.ResultCode){var i=a.Data.List;i.length>0&&(1==t.pageData.pageIndex?n.pageList=i:n.pageList=n.pageList.concat(i)),i.length<n.pageData.pageSize&&(n.pageData.isEnd=!0),n.$forceUpdate()}else n.pageList=[];e.hideLoading(),setTimeout((function(){n.pageData.isLoading=!1}),500)}))},loadMore:function(){this.pageData.isEnd||(this.pageData.pageIndex+=1,this.getList())},goDetail:function(e){this.$util.toNextRoute("navigateTo","/pages/askForLeave/detail?id="+e.FINANCEPROINST_ID)}}),onPullDownRefresh:function(){e.showLoading({title:"正在加载"}),this.pageData.pageIndex=1,this.pageData.isEnd=!1,this.getList(),setTimeout((function(){e.stopPullDownRefresh()}),1e3)},onReachBottom:function(){this.loadMore()},onShow:function(){var t=this;this.reloading&&(e.showLoading({title:"正在加载"}),t.pageData.pageIndex=1,t.pageData.isEnd=!1,t.getList(),this.shouldReLoadingList(!1))},onLoad:function(){e.showLoading({title:"正在加载"}),this.pageData.isLoading=!0,this.getList()},onUnload:function(){this.$util.addUserBehavior()}};t.default=u}).call(this,n("543d")["default"])},f0b5:function(e,t,n){"use strict";n.r(t);var a=n("85b9"),i=n("f160");for(var o in i)"default"!==o&&function(e){n.d(t,e,(function(){return i[e]}))}(o);n("f739");var r,s=n("f0c5"),u=Object(s["a"])(i["default"],a["b"],a["c"],!1,null,"4e773534",null,!1,a["a"],r);t["default"]=u.exports},f160:function(e,t,n){"use strict";n.r(t);var a=n("bb25"),i=n.n(a);for(var o in a)"default"!==o&&function(e){n.d(t,e,(function(){return a[e]}))}(o);t["default"]=i.a},f739:function(e,t,n){"use strict";var a=n("42ee"),i=n.n(a);i.a}},[["6814","common/runtime","common/vendor"]]]);
|
||||
@ -1,7 +0,0 @@
|
||||
{
|
||||
"enablePullDownRefresh": true,
|
||||
"navigationBarTitleText": "请假加班",
|
||||
"usingComponents": {
|
||||
"list-unit": "/pages/askForLeave/components/leaveUnit"
|
||||
}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="content data-v-4e773534"><block wx:if="{{pageList.length>0}}"><view class="data-v-4e773534"><block wx:for="{{pageList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><list-unit vue-id="{{'695bc4a0-1-'+index}}" item="{{item}}" i="{{index}}" data-event-opts="{{[['^goDetail',[['goDetail']]]]}}" bind:goDetail="__e" class="data-v-4e773534" bind:__l="__l"></list-unit></block></view></block><block wx:else><block wx:if="{{pageData.isLoading===false}}"><view class="data-v-4e773534"><no-found vue-id="695bc4a0-2" nodata="{{pageList.length>0?false:true}}" class="data-v-4e773534" bind:__l="__l"></no-found></view></block></block><block wx:if="{{pageList.length>0}}"><view class="load-more data-v-4e773534"><text class="data-v-4e773534">{{!pageData.isEnd?'正在加载,请稍后...':'——— 我是有底线的 ———'}}</text></view></block><navigator class="applyLeave data-v-4e773534" url="/pages/askForLeave/newLeave" data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" bindtap="__e"><image src="/static/images/leave/leave-btn.png" mode="aspectFit" class="data-v-4e773534"></image><text class="data-v-4e773534">我要请假</text></navigator></view>
|
||||
@ -1 +0,0 @@
|
||||
.content.data-v-4e773534{padding-top:6rpx;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}.applyLeave.data-v-4e773534{position:fixed;background-image:-webkit-linear-gradient(left,#306fd9,#5da7fa);background-image:linear-gradient(90deg,#306fd9,#5da7fa);color:#fff;font-size:26rpx;height:62rpx;width:182rpx;bottom:200rpx;right:-10rpx;line-height:62rpx;padding-left:28rpx;border-radius:32rpx 0 0 32rpx;box-shadow:0 2rpx 16rpx 0 #91c3fb;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.applyLeave image.data-v-4e773534{width:26rpx;height:26rpx;margin-right:10rpx;line-height:62rpx}
|
||||
@ -1,10 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/askForLeave/components/leaveUnit"],{"127d":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var u={props:{item:{type:Object,required:!0},i:{type:Number,required:!0}},data:function(){return{proStatus:{1e3:"制单中",2e3:"办理中",3e3:"已驳回",4e3:"已移交",9e3:"已完成"}}},computed:{},methods:{goDetail:function(){this.$emit("goDetail",this.item)},dateEmpty:function(t){return this.$util.cutDate(t,"YYYY/MM/DD")}}};e.default=u},"1a55":function(t,e,n){"use strict";var u=n("8a6a5"),a=n.n(u);a.a},"8a6a5":function(t,e,n){},"99c1":function(t,e,n){"use strict";var u;n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return u}));var a=function(){var t=this,e=t.$createElement,n=(t._self._c,t.item?t.$util.cutDate(t.item.LEAVE_STARTDATE,"YYYY.MM.DD"):null),u=t.item?t.$util.cutDate(t.item.LEAVE_ENDDATE,"YYYY.MM.DD"):null;t.$mp.data=Object.assign({},{$root:{g0:n,g1:u}})},i=[]},a692:function(t,e,n){"use strict";n.r(e);var u=n("127d"),a=n.n(u);for(var i in u)"default"!==i&&function(t){n.d(e,t,(function(){return u[t]}))}(i);e["default"]=a.a},e4c9:function(t,e,n){"use strict";n.r(e);var u=n("99c1"),a=n("a692");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("1a55");var r,c=n("f0c5"),o=Object(c["a"])(a["default"],u["b"],u["c"],!1,null,"46c1f63a",null,!1,u["a"],r);e["default"]=o.exports}}]);
|
||||
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
|
||||
'pages/askForLeave/components/leaveUnit-create-component',
|
||||
{
|
||||
'pages/askForLeave/components/leaveUnit-create-component':(function(module, exports, __webpack_require__){
|
||||
__webpack_require__('543d')['createComponent'](__webpack_require__("e4c9"))
|
||||
})
|
||||
},
|
||||
[['pages/askForLeave/components/leaveUnit-create-component']]
|
||||
]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"usingComponents": {},
|
||||
"component": true
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<block wx:if="{{item}}"><view data-event-opts="{{[['tap',[['goDetail',['$event']]]]]}}" class="{{['card _div data-v-46c1f63a',(item.SORTNUM==0)?'conten-border':'']}}" bindtap="__e"><view class="uni-flex plr32 _div data-v-46c1f63a" style="justify-content:space-between;"><view class="{{['contentName _p data-v-46c1f63a',(item.URGENCY_DEGREE==1)?'is-urgent':'']}}">{{item.LEAVE_PERSON+"【"+item.DEPARTMENT_NAME+"】"}}</view><text class="{{['typeText data-v-46c1f63a',item.FINANCEPROINST_NEXTID=='9000'?'typeText-color':'']}}">{{item.SORTNUM==0?'待我处理':proStatus[item.FINANCEPROINST_NEXTID]}}</text></view><view class="title-ico data-v-46c1f63a"><image src="../../../static/images/leave/qj.png" mode="aspectFit" class="data-v-46c1f63a"></image></view><view class="uni-flex plr32 leave-type data-v-46c1f63a"><text class="data-v-46c1f63a">{{item.LEAVE_VALUE}}</text></view><view class="uni-flex card-bom data-v-46c1f63a" style="align-items:center;margin-top:4rpx;"><text class="text-gray data-v-46c1f63a">起止时间:</text><text class="data-v-46c1f63a">{{$root.g0+' - '+$root.g1}}</text><text class="ml24 data-v-46c1f63a">{{item.DURATION_DAYS+"天"}}</text></view></view></block>
|
||||
@ -1,3 +0,0 @@
|
||||
.card.data-v-46c1f63a{background-color:#fff;box-shadow:0 0rpx 8rpx 1rpx #e2e2e2;margin:24rpx 24rpx;position:relative;padding:24rpx 24rpx 20rpx 24rpx;border-radius:8rpx}.conten-border.data-v-46c1f63a{box-shadow:0 0 6rpx #f9b297}.contentName.data-v-46c1f63a{width:410rpx;font-size:28rpx;height:54rpx;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:36rpx;color:#333}.content-type-text.data-v-46c1f63a{color:#686868;padding-left:38rpx;font-size:22rpx;line-height:1.6;max-width:610rpx}.content-index.data-v-46c1f63a{width:42rpx;height:32rpx;line-height:32rpx;font-size:24rpx;color:#fff;text-align:center;background-color:#fb8b56;position:absolute;top:30rpx;left:-4rpx;box-shadow:4rpx 4rpx 2rpx 0 rgba(238,112,27,.5)}.typeImg.data-v-46c1f63a{width:102rpx;position:absolute;top:0;right:28rpx}.typeImg.data-v-46c1f63a:before{width:130rpx;height:96rpx}.typeText.data-v-46c1f63a{color:#df7f42;font-size:24rpx}.typeText-color.data-v-46c1f63a{color:#999}.L-icon.data-v-46c1f63a{display:block;background-color:#9c9c9c;width:22rpx;height:22rpx;line-height:22rpx;border-radius:22rpx;text-align:center;color:#fff;margin:0 16rpx 0 0;font-size:20rpx}.content-box-cashpay.data-v-46c1f63a{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline;margin-top:12rpx}.contentText.data-v-46c1f63a{color:#686868;margin-left:38rpx;font-size:26rpx}.staff-text.data-v-46c1f63a{max-width:360rpx;line-height:1.5}.lh15.data-v-46c1f63a{line-height:1.5}.content-price.data-v-46c1f63a{margin-right:10rpx;font-size:56rpx;color:#111;font-family:Bahnschrift Regular}.A-icon.data-v-46c1f63a{width:14rpx;height:14rpx;border-radius:14rpx;margin:14rpx 16rpx 0 10rpx}.B-icon.data-v-46c1f63a{background-color:#74abfe}.G-icon.data-v-46c1f63a{background-color:#44bea3}.R-icon.data-v-46c1f63a{background-color:#fc9153}.content-span.data-v-46c1f63a{color:#686868;font-size:24rpx}.revenun.data-v-46c1f63a{background-color:#fff;padding:0 30rpx;margin:0 30rpx;margin-top:20rpx;box-shadow:0 0 8rpx #e2e2e2}.revenun-daily.data-v-46c1f63a{font-size:12px;border-bottom:1px solid #eee;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:84rpx}.revenun-box.data-v-46c1f63a{background-color:#fff}.revenun-bank.data-v-46c1f63a{padding:0 30rpx}.revenun-line.data-v-46c1f63a{padding:0 40rpx;background-color:#fff;box-shadow:0 0 8rpx #e2e2e2;margin-top:24rpx;border-radius:6rpx}.revenun-date-box.data-v-46c1f63a{display:-webkit-box;display:-webkit-flex;display:flex}.bb1.data-v-46c1f63a{height:2rpx;width:100%;background-color:#eee;margin-bottom:18rpx}.revenun-date.data-v-46c1f63a{color:#b4b4b4;font-size:12px;margin-left:36rpx}.bt1.data-v-46c1f63a{border-top:1rpx solid #eee}.revenun-name.data-v-46c1f63a{height:84rpx}.revenun-title.data-v-46c1f63a,
|
||||
.revenun-name.data-v-46c1f63a,
|
||||
.revenun-name2.data-v-46c1f63a{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.revenun-price.data-v-46c1f63a{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0}.revenun-door.data-v-46c1f63a{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.bank-price.data-v-46c1f63a{height:118rpx;line-height:118rpx;font-size:16px;color:#ee792f;font-weight:600}.bank-detail-btn.data-v-46c1f63a{color:#333;font-size:12px}.uni-icon-arrowright.data-v-46c1f63a{color:#cccbd1;font-size:14px}.pay-fs.data-v-46c1f63a{margin-left:20rpx;padding-left:20rpx;border-left:1px solid #b4b4b4}.revenun-name2.data-v-46c1f63a{color:#b4b4b4;font-size:12px}.revenun-jy.data-v-46c1f63a{margin-right:20rpx}.text-gray.data-v-46c1f63a{color:#74838e}.plr32.data-v-46c1f63a{padding-left:32rpx;padding-right:32rpx}.leave-type.data-v-46c1f63a{-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:28rpx;margin-bottom:16rpx;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;font-size:32rpx}.contentName.data-v-46c1f63a{margin-left:56rpx}.ml24.data-v-46c1f63a{margin-left:24rpx}.title-ico.data-v-46c1f63a{position:absolute;top:31rpx;left:30rpx}.title-ico image.data-v-46c1f63a{height:45rpx;width:45rpx}.is-urgent.data-v-46c1f63a:after{content:"紧急";padding:0rpx 16rpx;border:1rpx solid #e5a06e;color:#e5a06e;font-size:22rpx;border-radius:24rpx}.card.data-v-46c1f63a{box-shadow:none;border-radius:18rpx;padding:28rpx 0 0 0;overflow:hidden}.conten-border.data-v-46c1f63a{box-shadow:0 0 6rpx #f9b297}.typeText-color.data-v-46c1f63a{color:#62c194}.card-bom.data-v-46c1f63a{background-color:#fdfdfd;padding:16rpx 32rpx 16rpx 32rpx;font-size:26rpx}
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/askForLeave/detail"],{"373b":function(e,t,n){"use strict";n.r(t);var a=n("d884"),o=n.n(a);for(var i in a)"default"!==i&&function(e){n.d(t,e,(function(){return a[e]}))}(i);t["default"]=o.a},"66fe":function(e,t,n){},"87ed":function(e,t,n){"use strict";(function(e){n("40da");a(n("66fd"));var t=a(n("c68a"));function a(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,n("543d")["createPage"])},a620:function(e,t,n){"use strict";var a;n.d(t,"b",(function(){return o})),n.d(t,"c",(function(){return i})),n.d(t,"a",(function(){return a}));var o=function(){var e=this,t=e.$createElement,n=(e._self._c,e.isShow?e.$util.cutDate(e.baseData.LEAVE_STARTDATE,"YYYY-MM-DD"):null),a=e.isShow?e.getDays(e.baseData.LEAVE_STARTDATE):null,o=e.isShow?e.$util.cutDate(e.baseData.LEAVE_ENDDATE,"YYYY-MM-DD"):null,i=e.isShow?e.getDays(e.baseData.LEAVE_ENDDATE):null;e._isMounted||(e.e0=function(t){e.cardShow=!e.cardShow}),e.$mp.data=Object.assign({},{$root:{g0:n,m0:a,g1:o,m1:i}})},i=[]},c68a:function(e,t,n){"use strict";n.r(t);var a=n("a620"),o=n("373b");for(var i in o)"default"!==i&&function(e){n.d(t,e,(function(){return o[e]}))}(i);n("e156");var r,s=n("f0c5"),u=Object(s["a"])(o["default"],a["b"],a["c"],!1,null,"68bd2874",null,!1,a["a"],r);t["default"]=u.exports},d884:function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=n("2f62");function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function i(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?o(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var s=function(){n.e("components/auditingProcess/item").then(function(){return resolve(n("fe5b"))}.bind(null,n)).catch(n.oe)},u=function(){n.e("components/filesComponent/fileUnit").then(function(){return resolve(n("18af"))}.bind(null,n)).catch(n.oe)},c={data:function(){return{baseData:{},isShow:!1,loadingType:1,foundType:0,cardShow:!0,isSign:!1,isResolve:!1,signInfo:{}}},components:{processUnit:s,filesUnit:u},computed:i({},(0,a.mapGetters)({users:"getUser"})),methods:{getDays:function(e){var t=new Date(e),n=t.getDay(),a=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"];return a[n]},getDetail:function(t){var n=this;n.$request.$get("GetStaffLeaveDetail",{FinanceProinstId:t}).then((function(t){t.ResultCode&&"100"==t.ResultCode?n.isShow=!0:n.isShow=!1,e.hideLoading(),n.baseData=t.Data,n.baseData.NOWSTAFF_ID==n.users.UserId&&(n.isResolve=!0),n.$forceUpdate()}))},showPop:function(e){var t=this,n="";switch(e){case 4e3:n="/pages/auditingPop/transfer?businessType=7000&PROINST_ID="+t.baseData.FINANCEPROINST_ID+"&NOWACTINST_ID="+t.baseData.NOWACTDEF_IDS;break;case 2e3:n="/pages/auditingPop/toExamine?businessType=7000&PROINST_ID="+t.baseData.FINANCEPROINST_ID+"&NOWACTINST_ID="+t.baseData.NOWACTDEF_IDS+"&ApproName="+t.baseData.ACTINST_NAME+"&NeedApproved="+t.baseData.NeedApproved;break;case 3e3:n="/pages/auditingPop/reject?businessType=7000&PROINST_ID="+t.baseData.FINANCEPROINST_ID+"&NOWACTINST_ID="+t.baseData.NOWACTDEF_IDS;break}this.$util.toNextRoute("navigateTo",n)}},onLoad:function(t){e.showLoading({title:"正在加载"}),this.getDetail(t.id);var n=this;e.$on("7000",(function(t){t&&(e.showLoading({title:"正在加载"}),n.getDetail(n.baseData.FINANCEPROINST_ID))}))},onShow:function(){},onUnload:function(){this.$util.addUserBehavior(),e.$off("7000")},onHide:function(){}};t.default=c}).call(this,n("543d")["default"])},e156:function(e,t,n){"use strict";var a=n("66fe"),o=n.n(a);o.a}},[["87ed","common/runtime","common/vendor"]]]);
|
||||
@ -1,7 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "请假详情",
|
||||
"usingComponents": {
|
||||
"process-unit": "/components/auditingProcess/item",
|
||||
"files-unit": "/components/filesComponent/fileUnit"
|
||||
}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="_div data-v-68bd2874"><block wx:if="{{isShow}}"><view class="_div data-v-68bd2874"><view class="pt20 pb20 _div data-v-68bd2874"><view class="main-card boxshow data-v-68bd2874"><view class="card-title data-v-68bd2874">{{''+(baseData.LEAVE_PERSON+"【"+baseData.DEPARTMENT_NAME+"】")+''}}</view><view class="line-block between-circle data-v-68bd2874"></view><block wx:if="{{baseData.FINANCEPROINST_NEXTID==9000}}"><image class="spwc-ico data-v-68bd2874" src="../../static/images/leave/spwq.png" mode="aspectFit"></image></block><view class="base-body card-content _div data-v-68bd2874"><view style="text-align:center;padding-bottom:12rpx;" class="data-v-68bd2874"><view class="leave-day data-v-68bd2874">{{baseData.DURATION_DAYS}}<text style="font-size:22rpx;" class="data-v-68bd2874">天</text></view><text class="leave-value data-v-68bd2874">{{baseData.LEAVE_VALUE}}</text></view><view class="uni-flex uni-column data-v-68bd2874" style="margin-left:130rpx;"><view class="uni-flex uni-row data-v-68bd2874" style="align-items:center;"><view class="date-ico data-v-68bd2874">起</view><text style="font-weight:bold;" class="data-v-68bd2874">{{$root.g0}}</text><text class="fs24 data-v-68bd2874">{{$root.m0}}</text></view><view class="uni-flex uni-row end-date data-v-68bd2874" style="align-items:center;"><view class="date-ico data-v-68bd2874">止</view><text style="font-weight:bold;" class="data-v-68bd2874">{{$root.g1}}</text><text class="fs24 data-v-68bd2874">{{$root.m1}}</text></view></view></view><view class="line-block data-v-68bd2874"></view><view class="card-bottom _div data-v-68bd2874">{{''+baseData.LEAVE_REASON+''}}</view></view><block wx:if="{{baseData.NOWSTAFF_ID==users.UserId}}"><view class="button-box data-v-68bd2874"><label data-event-opts="{{[['tap',[['showPop',[2000]]]]]}}" bindtap="__e" class="_span data-v-68bd2874"><image src="../../static/images/sh-btn.png" mode="aspectFit" class="data-v-68bd2874"></image>审核</label><block wx:if="{{baseData.CAN_REJECT===1}}"><label data-event-opts="{{[['tap',[['showPop',[3000]]]]]}}" bindtap="__e" class="_span data-v-68bd2874"><image src="../../static/images/bh-btn.png" mode="aspectFit" class="data-v-68bd2874"></image>驳回</label></block></view></block></view><block wx:if="{{baseData.RejectList.length>0}}"><view class="base-info data-v-68bd2874"><view class="uni-list-cell uni-collapse _div data-v-68bd2874"><view class="cat-box uni-list-cell-navigate _div data-v-68bd2874"><view class="_b data-v-68bd2874">驳回意见</view></view><view class="process-box uni-collapse-content uni-active _div data-v-68bd2874"><process-unit vue-id="db428d98-1" item="{{baseData.RejectList[0]}}" approveType="{{0}}" class="data-v-68bd2874" bind:__l="__l"></process-unit></view></view></view></block><block wx:if="{{baseData.ApprovedList.length>0}}"><view class="base-info data-v-68bd2874"><view class="uni-list-cell uni-collapse _div data-v-68bd2874"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="{{['cat-box uni-list-cell-navigate _div data-v-68bd2874',cardShow?' uni-navigate-bottom':'uni-navigate-right']}}" bindtap="__e"><view class="_b data-v-68bd2874">审批流程</view></view><view hidden="{{!(cardShow)}}" class="{{['process-box uni-collapse-content _div data-v-68bd2874',cardShow?'uni-active':'']}}"><block wx:for="{{baseData.ApprovedList}}" wx:for-item="item" wx:for-index="__i0__" wx:key="APPROVED_ID"><process-unit vue-id="{{'db428d98-2-'+__i0__}}" item="{{item}}" approveType="{{1}}" class="data-v-68bd2874" bind:__l="__l"></process-unit></block></view></view></view></block></view></block><block wx:else><block class="data-v-68bd2874"><block wx:if="{{loadingType===2}}"><no-found vue-id="db428d98-3" foundType="{{foundType}}" class="data-v-68bd2874" bind:__l="__l"></no-found></block></block></block></view>
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/askForLeave/newLeave"],{"00ec":function(e,t,r){},"2ad6":function(e,t,r){"use strict";(function(e){r("40da");n(r("66fd"));var t=n(r("bdd5"));function n(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,r("543d")["createPage"])},5629:function(e,t,r){"use strict";r.r(t);var n=r("95e6"),a=r.n(n);for(var i in n)"default"!==i&&function(e){r.d(t,e,(function(){return n[e]}))}(i);t["default"]=a.a},"6bb0":function(e,t,r){"use strict";var n=r("00ec"),a=r.n(n);a.a},"95e6":function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=r("2f62");function a(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function i(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?a(Object(r),!0).forEach((function(t){c(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):a(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function c(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var s={data:function(){return{prodeList:[456,461,462],selectType:456,severpartList:[],canselectList:{},pickerIndex:0}},computed:i({},(0,n.mapGetters)({users:"getUser"})),methods:{choeseSelect:function(e){this.selectType=e,this.severpartList=462==e?this.canselectList.ListSpregion:this.canselectList.ListServer,this.$forceUpdate()},pickerChange:function(e){this.pickerIndex=e.detail.value},getSeverpart:function(){var e=this;e.$request.$get("GetStaffLeaveServerpart",{}).then((function(t){e.canselectList=t.Data,e.severpartList=t.Data.ListServer}))},nextTap:function(){this.$util.toNextRoute("navigateTo","/pages/askForLeave/newLeave2?prodefId="+this.selectType+"&sCode="+this.severpartList[this.pickerIndex].SERVERPART_CODE)},getProde:function(){var e=this,t=["/static/images/leave/fwq-yg.png","/static/images/leave/fwq-gl.png","/static/images/leave/qy.png"];this.$request.$get("GetProdefInfo",{}).then((function(r){100==r.ResultCode&&(e.selectType=r.Data.List[0].Prodef_Id,r.Data.List.map((function(e,r){e.Prodef_Name=e.Prodef_Name.replace("请假审批流程",""),e.imgPath=t[r]})),e.prodeList=r.Data.List)}))}},onUnload:function(){this.$util.addUserBehavior()},onLoad:function(){this.getProde(),this.getSeverpart()}};t.default=s},b474:function(e,t,r){"use strict";var n;r.d(t,"b",(function(){return a})),r.d(t,"c",(function(){return i})),r.d(t,"a",(function(){return n}));var a=function(){var e=this,t=e.$createElement;e._self._c},i=[]},bdd5:function(e,t,r){"use strict";r.r(t);var n=r("b474"),a=r("5629");for(var i in a)"default"!==i&&function(e){r.d(t,e,(function(){return a[e]}))}(i);r("6bb0");var c,s=r("f0c5"),o=Object(s["a"])(a["default"],n["b"],n["c"],!1,null,"7bba3272",null,!1,n["a"],c);t["default"]=o.exports}},[["2ad6","common/runtime","common/vendor"]]]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "申请请假",
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="content data-v-7bba3272"><view class="data-v-7bba3272"><view class="block-title data-v-7bba3272">请选择请假审批流程</view><view class="uni-flex uni-row leave-box data-v-7bba3272"><block wx:for="{{prodeList}}" wx:for-item="item" wx:for-index="i" wx:key="i"><view data-event-opts="{{[['tap',[['choeseSelect',['$0'],[[['prodeList','',i,'Prodef_Id']]]]]]]}}" class="{{['leave-type uni-flex uni-column data-v-7bba3272',(selectType==item.Prodef_Id)?'active':'']}}" bindtap="__e"><image style="width:67rpx;height:61rpx;" src="{{item.imgPath}}" mode="aspectFit" class="data-v-7bba3272"></image><text class="type-title data-v-7bba3272">{{item.Prodef_Name}}</text><text class="data-v-7bba3272">请假审批流程</text></view></block></view><view class="block-title data-v-7bba3272">请选择所属服务区</view><view class="block-input uni-flex uni-row data-v-7bba3272" style="align-items:center;"><text class="data-v-7bba3272">服务区</text><text class="text-red data-v-7bba3272">*</text><view class=" uni-flex uni-row data-v-7bba3272" style="flex:1;margin-left:32rpx;align-items:center;"><picker style="flex:1;" mode="selector" value="{{pickerIndex}}" range-key="SERVERPART_NAME" range="{{severpartList}}" data-event-opts="{{[['change',[['pickerChange',['$event']]]]]}}" bindchange="__e" class="data-v-7bba3272"><input disabled="true" type="text" placeholder="请选择" placeholder-style="color:#969EA4;" value="{{severpartList[pickerIndex].SERVERPART_NAME}}" class="data-v-7bba3272"/></picker><view class="uni-icon uni-icon-arrowright _i data-v-7bba3272"></view></view></view><view class="block-title tip-text text-red data-v-7bba3272">注:请选择相应的请假流程进行提交</view></view><button class="next-btn data-v-7bba3272" type="default" data-event-opts="{{[['tap',[['nextTap',['$event']]]]]}}" bindtap="__e">下一步</button></view>
|
||||
@ -1 +0,0 @@
|
||||
.content.data-v-7bba3272{height:100%;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.block-title.data-v-7bba3272{color:#788691;font-size:26rpx;padding:27rpx 24rpx}.leave-box.data-v-7bba3272{-webkit-justify-content:space-around;justify-content:space-around;padding:0 12rpx;margin-bottom:24rpx}.leave-type.data-v-7bba3272{width:216rpx;height:222rpx;background-color:#fff;overflow:hidden;border-radius:12rpx;text-align:center;font-size:24rpx;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;border:1rpx solid #fff}.leave-type.active.data-v-7bba3272{border-color:#5e8fea;position:relative}.active.data-v-7bba3272:after{content:"";position:absolute;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAA6CAYAAAADZ1FRAAAHfElEQVRoQ+Xa+3NV1RUH8O/a59wnCXkQHjcQqIJErTwiMyqOrVQQ84RQjX2oA44zqFNLx0ElIIULLSQjIaGZoQz9E/jJ32qgg/7UaWc6/aEztkh4WCkETCD3hpv7Pnt11rnBJpeb5Ia8b/evSc7en7P22nuflU117YE9pOkdJvgIpJHLjfmbaJLqafPxcJnbTOyAxntQWJDLZjB/k0gaVSTITc13CjxuYzuAD4hQlsPwq5ZWNTZa2oaT3+blW57XYFl7SdGyHIUPRQuy7jR7OXr3J2C9XxE9BOC7l5IjL+F+tMB2+K+6e4oLXiatDjLRCpVb8MxogX//DDuX3whuZdBhJpTnEHx4tMB3nmZHVzRQzUy/JaLHCVA5MMVHRttAP5t1BX0vEuEoE1bnADwLtMDPsLH1evBHTKoJhAqAjVkc8SzRABoa2Lj7bOAHDlJHifAUgBkHT2ognmQQAS6ToDLvO9mjJbINDWeM8DOVT5PJzQp4dqbANQMJzYglgQI32Xts1AJMycX74WND2ynuZ/WXwr51TlCzJv6hAszpnOryoZBMMkJxxoZHnHjnBTe6+xi//rQfcYvhFvnQNnZ0anHzqy3Fv1qjtWoiYCPR9MAFnLAYoSjjyTIHGms88BUq/ONaEgc+DSOanEi0LWeqbu1/wmHoIwyuBOCY6ojb4DhjTakDe+s88BUoXLhh4ffno+jssWAqwEgPNPNVR1JVj+OYyVTVHnpMaf6NAtcSwTkVcImwZTGCMcZan4l9W7xYXKTQ2WXheEcEV25bcBoEI/Op4gGnd5ps2/G+lQmDDxFRPYHd2cJlAZI2zCqb8TH3wHdjjNWlJhprvFhSrHDxpoXWsxFc7rHgMsiOcsbG/HVS6y3jiPT/HlvfHliuNR1gwisEeEeCy8C1hp1zMjanbC9q9OPevRwWcEWpA3tqPDZYpvSJsxFcvTNihO0hEfBvtljGODGt7ljgIZjYB0U/JSBvuKdKLkr3jy4y7H31Uo9l4w017N5qPypTDv+ry8LvzkVwpduyX96wER4YjKBjjIYJQ8tza0/cWWrA2MOE1wHMzQQPRBmLCxROvZGHpGb84fMozl5IwGUCDoPuO+APzuE1PhMfD+TwpZsaLZ+FR8vhIUOYFLQNb+1ZTMqxm4l2KHBROlxW3HwX4dBWL1aVmegNMU59HsUXX8XhNIdGXPLe0oy7ccZq30AOz1O42GWhrSOCS7dHyeG0zicNLf00fBJaFHHpXQp6J0DzBvctszuWYJTkKXxY6UXFMgO3QxqnzsfwRWfcnqKy+koCyvSXl1RRamLPwKJ14aaFE59ll8PpL3xS0Ta8nefHrL5fAHg3veBoaaA/zliQr/BRtRdPLk3B289F8efLCRhGarGLWYy1pQ401nrgK1K40JVatLLN4SlHS4fbjvbNS8zRO4mxi4gWpUc8HGfMz1P4uNaDVUtM3AxqnPxTFGe/iiNhARtWOLC7UrYlwuVbGsf+OLYcnha0dFrf1ltoEd4kpt1QtHgIXMPOV99chcZqD9aUmbjey2g/F4HFjF2bPFhWotB5S+N4RxiXuseWw9OGlo6rDnbONYoXvKGYPwLR0nR4OJGK+N6aFDwQZkgKzMsjXPlWo60jjIvdlr26j7YtjbQBT3pOp3e++RjPMZ3BnynGPkX0vcGV1ns5vjBfYV+tF6uWGPZ38dfdGq0dEfzzVnLkk1aWR40pR8u41rde85QYRa8QWwc0YfnggqMNTzDKCg18UOmB0wGcPh/Fl13JcUf43juZFrR0vqKdXeXcu81gw68JKwfDpfohJy+Pg2AahEg8VQkZz5QePAmmDW1vZ/4vnbHi0lrWxmEQPza44Cj7uMDlJCYfD/d9HmY5lTP92rSiZUDrdv7NUVq+8iUycISJn5iKSuu0o+1I+NmsKezbSJCCo1472fCZgRb4GTbqrgefh5LyE6+bzILjzEEPVFojT1eul0orEZ6ZLPiMQtsz3c/qr/mRp0wj2cSE5xR4wiutMw49kOOqvihYoYFmDdow0SXmmYkWOTPVtgZWw1BHFeHFiay0zly0HXKmutbQ4yB9hBRVATwhldYZjk7BN7fcLnebzsNMLBVM1zjOJfafzgJ0ivjyJ8FHYi59UMH4McCe8cBnDVqQNW2BhxVhP4heJWDOg8JnFVqQ1S29ywyT9oLo5wTkPwh81qEFWdUeXmLqxIcEbAehYKzwWYkW5Ett/T4XWe9rwlsKXDwW+KxFC3LjidBCj+L3iPXbBMzPFj6r0YKsa+krgUO/DeCXBFqYDXzWo+1VvYmL4A2+pZjeJ0LpaPCcQAtyU/PlAo+7JKvLvDmDFrhc5vUmnK+ZoEYQpNKasQlaJ8yJ/a/laNNrMn9ed/qGF7G8V0nzfhAeznSZV9BkJeSAkztttMu8zLhGUK/nFFrCl7rMe2crw3GIiR8dXGLWzP8hxvacQwt8uMu8OY22EzbDZd7cRwv8u8u81ASiCs26K2en9+ClWS7zRtcHniOlWjR4kcHmmzmZ0+n7kVRa/14Uep6Z34Wmk/8XaHkJDX529s/tLbfI1fNfiO5rxRxXaIYAAAAASUVORK5CYII=);background-size:contain;background-repeat:no-repeat;right:-2rpx;top:0;height:59rpx;width:61rpx}.type-title.data-v-7bba3272{margin-top:24rpx;line-height:1}.block-input.data-v-7bba3272{height:92rpx;background-color:#fff;padding:0 24rpx}.text-red.data-v-7bba3272{color:#ea3020}.tip-text.data-v-7bba3272{font-size:24rpx;margin-top:24rpx}.uni-icon-arrowright.data-v-7bba3272{color:#969ea4}.next-btn.data-v-7bba3272{background-color:#fff;width:95%;border-radius:0;color:#5e8fea;font-size:32rpx;height:90rpx;line-height:89rpx;margin-top:60rpx}button.data-v-7bba3272:after{border:none;border-radius:0;border-top:2rpx solid #e9edf2}
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/askForLeave/newLeave2"],{"1ee4":function(e,t,n){"use strict";var a;n.d(t,"b",(function(){return o})),n.d(t,"c",(function(){return s})),n.d(t,"a",(function(){return a}));var o=function(){var e=this,t=e.$createElement;e._self._c;e._isMounted||(e.e0=function(t){e.isEdit=!0})},s=[]},"679e":function(e,t,n){"use strict";var a=n("ce75"),o=n.n(a);o.a},b0c6:function(e,t,n){"use strict";(function(e){n("40da");a(n("66fd"));var t=a(n("ea1b"));function a(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,n("543d")["createPage"])},ce75:function(e,t,n){},e649:function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=n("2f62");function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function s(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?o(Object(n),!0).forEach((function(t){r(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i={data:function(){return{isEdit:!1,typeList:[],urgentList:[{name:"一般",value:0},{name:"紧急",value:1}],leaveDate:["",""],selectType:1,transferUserList:[],pickerIndex:[0,0,0],postData:{leaveReason:"",leaveDays:"",post:""},ispost:!1}},computed:s({},(0,a.mapGetters)({users:"getUser"})),methods:s(s({},(0,a.mapMutations)(["shouldReLoadingList"])),{},{setLeaveData:function(e,t){this.leaveDate[t]=e.detail.value,this.$forceUpdate()},pickerChange:function(e,t){this.pickerIndex[t]=Number(e.detail.value),this.$forceUpdate()},getTransferUser:function(){var t=this,n={ProdefId:this.postData.prodefId,serverpartCode:t.postData.sCode};this.$request.$get("GetStaffLeaveInfo",n).then((function(n){e.hideLoading(),t.postData.USER_NAME=n.Data.USER_NAME,t.postData.USERTYPE_NAME=n.Data.USERTYPE_NAME,t.postData.ActDef_ID=n.Data.ActDef_ID,t.transferUserList=n.Data.List}))},getTypeList:function(){var e=this;e.$request.$get("GetStaffLeaveType",{}).then((function(t){e.typeList=t.Data.List}))},nextTap:function(t){var n=this,a=t.detail.value;return a.PersonPost?a.LeaveStartdate?a.LeaveEnddate?a.DurationDays?a.LeaveReason?(n.ispost=!0,a.ProdefId=this.postData.prodefId,a.serverpartCode=this.postData.sCode,a.NowActdefIds=this.postData.ActDef_ID,a.LeaveType=this.typeList[this.pickerIndex[0]].FIELDENUM_VALUE,a.UrgencyDegree=this.urgentList[this.pickerIndex[1]].value,a.NowStaffId=this.transferUserList[this.pickerIndex[2]].USER_ID,void this.$request.$post("InsertStaffLeave",a).then((function(t){e.showToast({title:t.ResultDesc,icon:"none",duration:2e3}),n.ispost=!1,100==t.ResultCode&&(e.$emit("7000",!0),n.shouldReLoadingList(!0),setTimeout((function(){e.navigateBack({delta:2})}),800))}))):(e.showToast({title:"请输入请假事由",icon:"none"}),!1):(e.showToast({title:"请输入请假天数",icon:"none"}),!1):(e.showToast({title:"请选择请假结束时间",icon:"none"}),!1):(e.showToast({title:"请选择请假开始时间",icon:"none"}),!1):(e.showToast({title:"请输入职务岗位",icon:"none"}),!1)}}),onUnload:function(){this.$util.addUserBehavior()},onLoad:function(t){e.showLoading({title:"正在加载"}),this.postData.prodefId=t.prodefId,this.postData.sCode=t.sCode,this.getTransferUser(),this.getTypeList()}};t.default=i}).call(this,n("543d")["default"])},ea1b:function(e,t,n){"use strict";n.r(t);var a=n("1ee4"),o=n("f413");for(var s in o)"default"!==s&&function(e){n.d(t,e,(function(){return o[e]}))}(s);n("679e");var r,i=n("f0c5"),c=Object(i["a"])(o["default"],a["b"],a["c"],!1,null,"67dfdda0",null,!1,a["a"],r);t["default"]=c.exports},f413:function(e,t,n){"use strict";n.r(t);var a=n("e649"),o=n.n(a);for(var s in a)"default"!==s&&function(e){n.d(t,e,(function(){return a[e]}))}(s);t["default"]=o.a}},[["b0c6","common/runtime","common/vendor"]]]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "申请请假",
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
.content.data-v-67dfdda0{height:100%;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.text-blue.data-v-67dfdda0{color:#5e8fea}.block-title.data-v-67dfdda0{color:#000;font-size:26rpx;padding:54rpx 24rpx 27rpx 24rpx;font-weight:700}.type-title.data-v-67dfdda0{margin-top:24rpx;line-height:1}.block-input.data-v-67dfdda0{min-height:92rpx;background-color:#fff;padding-left:24rpx;padding-right:16rpx}.mt24.data-v-67dfdda0{margin-top:24rpx}.text-red.data-v-67dfdda0{color:#ea3020}.uni-icon-arrowright.data-v-67dfdda0{color:#969ea4;font-size:30rpx}.content-unit.data-v-67dfdda0{-webkit-box-flex:1;-webkit-flex:1;flex:1;margin-left:40rpx;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:92rpx}.next-btn.data-v-67dfdda0{background-color:#fff;width:100%;border-radius:0;color:#5e8fea;margin-top:36rpx;font-size:32rpx;height:90rpx;line-height:89rpx}button.data-v-67dfdda0:after{border:none;border-radius:0;border-top:2rpx solid #e9edf2}._hr.data-v-67dfdda0{height:2rpx;margin-left:24rpx}.tip-box.data-v-67dfdda0{padding:28rpx 24rpx;background-color:#fdf5eb;color:#788691;font-size:26rpx;line-height:1.2}.add-btn.data-v-67dfdda0{color:#5e8fea;border:2rpx dashed #5e8fea;font-size:40rpx;width:42rpx;text-align:center;height:42rpx;line-height:39rpx}textarea.data-v-67dfdda0{height:200rpx;width:100%}
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "会签",
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="page-cont _div data-v-553006c4"><view class="page-title _p data-v-553006c4">请确认会签</view><view class="page-select _div data-v-553006c4"><block wx:if="{{isLastSign}}"><view class="_div data-v-553006c4"><view class="select-item _div data-v-553006c4"><label class="_span data-v-553006c4">业务转出到</label><view data-event-opts="{{[['tap',[['choese',[1]]]]]}}" class="select-unit data-v-553006c4" bindtap="__e"><picker mode="selector" value="{{pickerIndex[0]}}" range-key="ActDef_Name" range="{{NextActDefList}}" data-event-opts="{{[['change',[['pickerChange',['$event',0]]]]]}}" bindchange="__e" class="data-v-553006c4"><view class="uni-ellipsis data-v-553006c4">{{NextActDefList[pickerIndex[0]].ActDef_Name}}</view></picker><view class="uni-icon uni-icon-arrowright _i data-v-553006c4"></view></view></view><view hidden="{{!(!notUserData)}}" class="select-item _div data-v-553006c4"><label class="_span data-v-553006c4">指定经办人</label><view data-event-opts="{{[['tap',[['choese',[2]]]]]}}" class="select-unit data-v-553006c4" bindtap="__e"><picker mode="selector" value="{{pickerIndex[1]}}" range-key="USER_NAME" range="{{TransferUserList}}" data-event-opts="{{[['change',[['pickerChange',['$event',1]]]]]}}" bindchange="__e" class="data-v-553006c4"><view class="uni-ellipsis data-v-553006c4">{{TransferUserList[pickerIndex[1]].USER_NAME}}</view></picker><view class="uni-icon uni-icon-arrowright _i data-v-553006c4"></view></view></view></view></block><view class="text-area-box _div data-v-553006c4"><textarea value="{{postData.APPROVED_INFO}}" placeholder="请填写您的会签意见" data-event-opts="{{[['input',[['__set_model',['$0','APPROVED_INFO','$event',[]],['postData']]]]]}}" bindinput="__e" class="data-v-553006c4"></textarea></view><view class="tip _p data-v-553006c4">注意:当您为最后一名会签人员时,您选择的业务和经办人才能即时生效。</view></view><button loading="{{isSubmit}}" disabled="{{isSubmit}}" data-event-opts="{{[['tap',[['postFn']]]]}}" bindtap="__e" class="data-v-553006c4">确认</button></view>
|
||||
@ -1 +0,0 @@
|
||||
textarea.data-v-553006c4{padding:20rpx;border:1rpx solid #a2c1c3;border-radius:6rpx;height:182rpx;font-size:24rpx;margin-top:16rpx;width:100%;box-sizing:border-box}.text-area-box.data-v-553006c4{margin:66rpx 0 40rpx 0}.page-cont.data-v-553006c4{padding:48rpx 30rpx}.page-title.data-v-553006c4{margin-top:24rpx;font-size:32rpx}.page-select.data-v-553006c4{margin-top:64rpx;padding:32rpx 40rpx;background-color:#fff}.select-item.data-v-553006c4{height:96rpx;line-height:96rpx;border-bottom:1rpx solid #eee;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.select-item + .select-item.data-v-553006c4{margin-top:16rpx}.select-item ._span.data-v-553006c4:last-child{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}button.data-v-553006c4{height:80rpx;background-color:#4a4c5b;margin:112rpx auto 0 auto;font-size:28rpx;line-height:80rpx;color:#fff}.select-btn.data-v-553006c4{color:#fff;background-color:#4188f2;border-radius:4rpx;padding:0 16rpx;font-size:24rpx;height:48rpx;line-height:48rpx}.sign-tag-box.data-v-553006c4{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.sign-tag.data-v-553006c4{background-color:#f9f9f9;color:#666;margin-top:8rpx;padding:8rpx 16rpx;border-radius:3rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;font-size:24rpx}.remove-tag.data-v-553006c4{margin-left:32rpx;font-weight:700;font-size:28rpx;height:20rpx;line-height:20rpx}.uni-icon-arrowright.data-v-553006c4{color:#777}.select-unit.data-v-553006c4{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:70%}.select-unit picker.data-v-553006c4{width:90%}.pickerMask.data-v-553006c4{position:fixed;z-index:1000;top:0;right:0;left:0;bottom:0;background-color:rgba(0,0,0,.6)}.mpvue-picker-content.data-v-553006c4{position:fixed;bottom:0;left:0;width:100%;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transform:translateY(100%);transform:translateY(100%);z-index:3000}.mpvue-picker-view-show.data-v-553006c4{-webkit-transform:translateY(0);transform:translateY(0)}.mpvue-picker__hd.data-v-553006c4{display:-webkit-box;display:-webkit-flex;display:flex;padding:9px 15px;background-color:#fff;position:relative;text-align:center;font-size:17px}.mpvue-picker__hd.data-v-553006c4:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;color:#e5e5e5;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.mpvue-picker__action.data-v-553006c4{display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#1aad19}.mpvue-picker__action.data-v-553006c4:first-child{text-align:left;color:#888}.mpvue-picker__action.data-v-553006c4:last-child{text-align:right}.picker-item.data-v-553006c4{text-align:center;line-height:40px;font-size:16px}.mpvue-picker-view.data-v-553006c4{position:relative;bottom:0;left:0;width:100%;height:238px;background-color:#fff}.text-area-box.data-v-553006c4{background-color:#fff}textarea.data-v-553006c4{height:200rpx}.tip.data-v-553006c4{font-size:20rpx;color:#f17e5f}
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/auditingPop/reject"],{"0c49":function(t,e,n){"use strict";var i=n("5d6d"),o=n.n(i);o.a},"5ae0":function(t,e,n){"use strict";var i;n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return s})),n.d(e,"a",(function(){return i}));var o=function(){var t=this,e=t.$createElement;t._self._c},s=[]},"5d6d":function(t,e,n){},9639:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=n("2f62");function o(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);e&&(i=i.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,i)}return n}function s(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?o(Object(n),!0).forEach((function(e){a(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function a(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var r={data:function(){return{postData:{PROINST_ID:"",FINANCEPROINST_ID:"",NOWACTINST_ID:"",PROINST_NEXTID:3e3,APPROVED_INFO:""},NextActDefList:[],isExpense:!1,isSubmit:!1,pickerIndex:0}},computed:s({},(0,i.mapGetters)({users:"getUser"})),methods:s(s({},(0,i.mapMutations)(["isGetTodoList","shouldReLoadingList"])),{},{pickerChange:function(t){this.pickerIndex=t.mp.detail.value},getHighNextActDef:function(){var e=this,n={};n={action_type:"GetNextStep",businessType:e.postData.businessType,PROINST_ID:e.postData.PROINST_ID,PROINST_NEXTID:e.postData.PROINST_NEXTID},this.$request.get(n).then((function(n){t.hideLoading(),e.NextActDefList=n.Data.List}))},postFn:function(){var e=this;if(!e.isSubmit){if(!e.NextActDefList[e.pickerIndex])return t.showToast({title:"请选择回退环节后提交。",icon:"none"}),!1;if(!e.postData.APPROVED_INFO)return t.showToast({title:"请填写驳回原因。",icon:"none"}),!1;var n={};n=this.isExpense?{action_type:"SubmitFinaceInfo",action_data:e.users.uid,FINANCEPROINST_ID:e.postData.FINANCEPROINST_ID,FINANCEPROINST_NEXTID:e.postData.PROINST_NEXTID,OPERATION_TYPE:e.postData.ACCEPT_TYPE,NOWACTDEF_IDS:e.postData.NOWACTINST_ID,APPROVED_INFO:e.postData.APPROVED_INFO,NextSTAFF_ID:"",NextACTDEF_IDS:e.postData.NextACTDEF_IDS}:{action_type:"ProcessApproval",businessType:e.postData.businessType,PROINST_ID:e.postData.PROINST_ID,PROINST_NEXTID:e.postData.PROINST_NEXTID,NOWACTINST_IDS:e.postData.NOWACTINST_ID,NextACTDEF_IDS:e.NextActDefList[e.pickerIndex].ActInst_ID,APPROVED_INFO:e.postData.APPROVED_INFO,NextSTAFF_ID:""},this.isSubmit=!0,this.$request.post(n).then((function(n){e.isSubmit=!1,"100"===n.ResultCode?(t.$emit(e.postData.businessType,!0),e.isGetTodoList(!0),e.shouldReLoadingList(!0),t.showToast({title:n.ResultDesc,icon:"none",success:function(){setTimeout((function(){t.navigateBack({delta:1})}),200)}})):t.showToast({title:n.ResultDesc||"操作错误",icon:"none"})}))}}}),onLoad:function(e){this.postData=e,this.postData.PROINST_NEXTID=3e3,this.postData.APPROVED_INFO="",t.showLoading({title:"正在加载"}),this.getHighNextActDef()},onUnload:function(){this.$util.addUserBehavior()}};e.default=r}).call(this,n("543d")["default"])},ad36:function(t,e,n){"use strict";n.r(e);var i=n("9639"),o=n.n(i);for(var s in i)"default"!==s&&function(t){n.d(e,t,(function(){return i[t]}))}(s);e["default"]=o.a},d7d8:function(t,e,n){"use strict";n.r(e);var i=n("5ae0"),o=n("ad36");for(var s in o)"default"!==s&&function(t){n.d(e,t,(function(){return o[t]}))}(s);n("0c49");var a,r=n("f0c5"),c=Object(r["a"])(o["default"],i["b"],i["c"],!1,null,"1e1a1d3b",null,!1,i["a"],a);e["default"]=c.exports},db3e:function(t,e,n){"use strict";(function(t){n("40da");i(n("66fd"));var e=i(n("d7d8"));function i(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["db3e","common/runtime","common/vendor"]]]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "驳回",
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="page-cont _div data-v-1e1a1d3b"><view class="page-title _p data-v-1e1a1d3b">请确认驳回当前业务到上一环节</view><view class="page-select _div data-v-1e1a1d3b"><view class="select-item _div data-v-1e1a1d3b"><label class="_span data-v-1e1a1d3b">业务驳回到</label><view class="select-unit data-v-1e1a1d3b"><picker mode="selector" value="{{pickerIndex}}" range-key="ActDef_Name" range="{{NextActDefList}}" data-event-opts="{{[['change',[['pickerChange',['$event']]]]]}}" bindchange="__e" class="data-v-1e1a1d3b"><view class="uni-ellipsis data-v-1e1a1d3b">{{NextActDefList[pickerIndex].ActDef_Name}}</view></picker><view class="uni-icon uni-icon-arrowright _i data-v-1e1a1d3b"></view></view></view><view class="text-area-box _div data-v-1e1a1d3b"><textarea value="{{postData.APPROVED_INFO}}" placeholder="驳回原因" data-event-opts="{{[['input',[['__set_model',['$0','APPROVED_INFO','$event',[]],['postData']]]]]}}" bindinput="__e" class="data-v-1e1a1d3b"></textarea></view></view><button loading="{{isSubmit}}" data-event-opts="{{[['tap',[['postFn']]]]}}" bindtap="__e" class="data-v-1e1a1d3b">驳回</button></view>
|
||||
@ -1 +0,0 @@
|
||||
textarea.data-v-1e1a1d3b{padding:20rpx;border:1rpx solid #a2c1c3;border-radius:6rpx;height:182rpx;font-size:24rpx;margin-top:16rpx;width:100%;box-sizing:border-box}.text-area-box.data-v-1e1a1d3b{margin:66rpx 0 40rpx 0}.page-cont.data-v-1e1a1d3b{padding:48rpx 30rpx}.page-title.data-v-1e1a1d3b{margin-top:24rpx;font-size:32rpx}.page-select.data-v-1e1a1d3b{margin-top:64rpx;padding:32rpx 40rpx;background-color:#fff}.select-item.data-v-1e1a1d3b{height:96rpx;line-height:96rpx;border-bottom:1rpx solid #eee;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.select-item + .select-item.data-v-1e1a1d3b{margin-top:16rpx}.select-item ._span.data-v-1e1a1d3b:last-child{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}button.data-v-1e1a1d3b{height:80rpx;background-color:#4a4c5b;margin:112rpx auto 0 auto;font-size:28rpx;line-height:80rpx;color:#fff}.select-btn.data-v-1e1a1d3b{color:#fff;background-color:#4188f2;border-radius:4rpx;padding:0 16rpx;font-size:24rpx;height:48rpx;line-height:48rpx}.sign-tag-box.data-v-1e1a1d3b{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.sign-tag.data-v-1e1a1d3b{background-color:#f9f9f9;color:#666;margin-top:8rpx;padding:8rpx 16rpx;border-radius:3rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;font-size:24rpx}.remove-tag.data-v-1e1a1d3b{margin-left:32rpx;font-weight:700;font-size:28rpx;height:20rpx;line-height:20rpx}.uni-icon-arrowright.data-v-1e1a1d3b{color:#777}.select-unit.data-v-1e1a1d3b{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:70%}.select-unit picker.data-v-1e1a1d3b{width:90%}.pickerMask.data-v-1e1a1d3b{position:fixed;z-index:1000;top:0;right:0;left:0;bottom:0;background-color:rgba(0,0,0,.6)}.mpvue-picker-content.data-v-1e1a1d3b{position:fixed;bottom:0;left:0;width:100%;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transform:translateY(100%);transform:translateY(100%);z-index:3000}.mpvue-picker-view-show.data-v-1e1a1d3b{-webkit-transform:translateY(0);transform:translateY(0)}.mpvue-picker__hd.data-v-1e1a1d3b{display:-webkit-box;display:-webkit-flex;display:flex;padding:9px 15px;background-color:#fff;position:relative;text-align:center;font-size:17px}.mpvue-picker__hd.data-v-1e1a1d3b:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;color:#e5e5e5;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.mpvue-picker__action.data-v-1e1a1d3b{display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#1aad19}.mpvue-picker__action.data-v-1e1a1d3b:first-child{text-align:left;color:#888}.mpvue-picker__action.data-v-1e1a1d3b:last-child{text-align:right}.picker-item.data-v-1e1a1d3b{text-align:center;line-height:40px;font-size:16px}.mpvue-picker-view.data-v-1e1a1d3b{position:relative;bottom:0;left:0;width:100%;height:238px;background-color:#fff}
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "审核",
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="page-cont _div data-v-317e45f4"><view class="page-title _p data-v-317e45f4">请确认审核当前业务到下一个环节</view><view class="page-select _div data-v-317e45f4"><view class="select-item _div data-v-317e45f4"><label class="_span data-v-317e45f4">业务转出到</label><view data-event-opts="{{[['tap',[['choese',[1]]]]]}}" class="select-unit data-v-317e45f4" bindtap="__e"><picker mode="selector" value="{{pickerIndex[0]}}" range-key="ActDef_Name" range="{{NextActDefList}}" data-event-opts="{{[['change',[['pickerChange',['$event',0]]]]]}}" bindchange="__e" class="data-v-317e45f4"><view class="uni-ellipsis data-v-317e45f4">{{NextActDefList[pickerIndex[0]].ActDef_Name}}</view></picker><view class="uni-icon uni-icon-arrowright _i data-v-317e45f4"></view></view></view><block wx:if="{{!notUserData}}"><view class="select-item _div data-v-317e45f4"><label class="_span data-v-317e45f4">指定经办人</label><view data-event-opts="{{[['tap',[['choese',[2]]]]]}}" class="select-unit data-v-317e45f4" bindtap="__e"><picker mode="selector" value="{{pickerIndex[1]}}" range-key="USER_NAME" range="{{TransferUserList}}" data-event-opts="{{[['change',[['pickerChange',['$event',1]]]]]}}" bindchange="__e" class="data-v-317e45f4"><view class="uni-ellipsis picker-text data-v-317e45f4">{{TransferUserList[pickerIndex[1]].USER_NAME}}</view></picker><view class="uni-icon uni-icon-arrowright _i data-v-317e45f4"></view></view></view></block><block wx:if="{{needSign}}"><block class="data-v-317e45f4"><view class="select-item nb _div data-v-317e45f4"><label class="_span data-v-317e45f4">会签人员</label><view data-event-opts="{{[['tap',[['choese',[3]]]]]}}" class="select-btn data-v-317e45f4" bindtap="__e"><picker mode="selector" value="{{pickerIndex[1]}}" range-key="USER_NAME" range="{{TransferUserList}}" data-event-opts="{{[['change',[['pickerChange',['$event',1]]]]]}}" bindchange="__e" class="data-v-317e45f4"><view class="data-v-317e45f4">添加+</view></picker></view></view><view class="sign-tag-box _div data-v-317e45f4"><block wx:for="{{signUsers}}" wx:for-item="item" wx:for-index="i" wx:key="USER_ID"><view class="sign-tag _div data-v-317e45f4"><label class="_span data-v-317e45f4">{{item.USER_NAME}}</label><label data-event-opts="{{[['tap',[['removeSignUsers',[i]]]]]}}" class="remove-tag _span data-v-317e45f4" bindtap="__e">×</label></view></block></view></block></block><block wx:if="{{postData.NeedApproved==1}}"><view class="text-area-box _div data-v-317e45f4"><textarea placeholder="请输入您的意见" data-event-opts="{{[['input',[['__set_model',['$0','APPROVED_INFO','$event',[]],['postData']]]]]}}" value="{{postData.APPROVED_INFO}}" bindinput="__e" class="data-v-317e45f4"></textarea></view></block></view><button loading="{{isSubmit}}" data-event-opts="{{[['tap',[['postFn',['$event']]]]]}}" bindtap="__e" class="data-v-317e45f4">审核</button></view>
|
||||
@ -1 +0,0 @@
|
||||
textarea.data-v-317e45f4{padding:20rpx;border:1rpx solid #a2c1c3;border-radius:6rpx;height:182rpx;font-size:24rpx;margin-top:16rpx;width:100%;box-sizing:border-box}.text-area-box.data-v-317e45f4{margin:66rpx 0 40rpx 0}.page-cont.data-v-317e45f4{padding:48rpx 30rpx}.page-title.data-v-317e45f4{margin-top:24rpx;font-size:32rpx}.page-select.data-v-317e45f4{margin-top:64rpx;padding:32rpx 40rpx;background-color:#fff}.select-item.data-v-317e45f4{height:96rpx;line-height:96rpx;border-bottom:1rpx solid #eee;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.select-item + .select-item.data-v-317e45f4{margin-top:16rpx}.select-item ._span.data-v-317e45f4:last-child{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}button.data-v-317e45f4{height:80rpx;background-color:#4a4c5b;margin:112rpx auto 0 auto;font-size:28rpx;line-height:80rpx;color:#fff}.select-btn.data-v-317e45f4{color:#fff;background-color:#4188f2;border-radius:4rpx;padding:0 16rpx;font-size:24rpx;height:48rpx;line-height:48rpx}.sign-tag-box.data-v-317e45f4{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.sign-tag.data-v-317e45f4{background-color:#f9f9f9;color:#666;margin-top:8rpx;padding:8rpx 16rpx;border-radius:3rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;font-size:24rpx}.remove-tag.data-v-317e45f4{margin-left:32rpx;font-weight:700;font-size:28rpx;height:20rpx;line-height:20rpx}.uni-icon-arrowright.data-v-317e45f4{color:#777}.select-unit.data-v-317e45f4{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:70%}.select-unit picker.data-v-317e45f4{width:90%}.pickerMask.data-v-317e45f4{position:fixed;z-index:1000;top:0;right:0;left:0;bottom:0;background-color:rgba(0,0,0,.6)}.mpvue-picker-content.data-v-317e45f4{position:fixed;bottom:0;left:0;width:100%;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transform:translateY(100%);transform:translateY(100%);z-index:3000}.mpvue-picker-view-show.data-v-317e45f4{-webkit-transform:translateY(0);transform:translateY(0)}.mpvue-picker__hd.data-v-317e45f4{display:-webkit-box;display:-webkit-flex;display:flex;padding:9px 15px;background-color:#fff;position:relative;text-align:center;font-size:17px}.mpvue-picker__hd.data-v-317e45f4:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;color:#e5e5e5;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.mpvue-picker__action.data-v-317e45f4{display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#1aad19}.mpvue-picker__action.data-v-317e45f4:first-child{text-align:left;color:#888}.mpvue-picker__action.data-v-317e45f4:last-child{text-align:right}.picker-item.data-v-317e45f4{text-align:center;line-height:40px;font-size:16px}.mpvue-picker-view.data-v-317e45f4{position:relative;bottom:0;left:0;width:100%;height:238px;background-color:#fff}.select-item.nb.data-v-317e45f4{border-bottom:0}
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/auditingPop/transfer"],{"0109":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var s=n("2f62");function r(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function i(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach((function(e){a(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function a(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var o={data:function(){return{postData:{PROINST_ID:"",FINANCEPROINST_ID:"",NOWACTINST_ID:"",PROINST_NEXTID:4e3},TransferUserList:[],isExpense:!1,isSubmit:!1,pickerIndex:0}},computed:i({},(0,s.mapGetters)({users:"getUser"})),methods:i(i({},(0,s.mapMutations)(["isGetTodoList","shouldReLoadingList"])),{},{pickerChange:function(t){this.pickerIndex=t.mp.detail.value},getTransferUser:function(){var e=this,n={};n=this.isExpense?{action_type:"GetFlowTransferUser",action_data:e.users.uid,PROINST_ID:e.postData.FINANCEPROINST_ID,NextACTDEF_IDS:e.postData.NOWACTINST_ID,TransferType:1,UserId:e.users.sid}:{action_type:"GetNextStepUser",businessType:e.postData.businessType,PROINST_ID:e.postData.PROINST_ID,NextStepId:e.postData.NOWACTINST_ID,IsTransfer:1,USER_ID:e.users.UserId},this.$request.get(n).then((function(n){t.hideLoading(),e.TransferUserList=n.Data.List}))},postFn:function(){var e=this;if(!e.isSubmit){if(!e.TransferUserList[e.pickerIndex])return t.showToast({title:"请选择移交人员后提交。",icon:"none"}),!1;var n={action_type:"ProcessApproval",businessType:e.postData.businessType,PROINST_ID:e.postData.PROINST_ID,PROINST_NEXTID:e.postData.PROINST_NEXTID,NOWACTINST_IDS:e.postData.NOWACTINST_ID,NextSTAFF_ID:e.TransferUserList[e.pickerIndex].USER_ID};this.isSubmit=!0,this.$request.post(n).then((function(n){e.isSubmit=!1,"100"===n.ResultCode?(t.$emit(e.postData.businessType,!0),e.isGetTodoList(!0),e.shouldReLoadingList(!0),t.showToast({title:n.ResultDesc,success:function(){setTimeout((function(){t.navigateBack({delta:1})}),200)}})):t.showToast({title:n.ResultDesc||"操作错误",icon:"none"})}))}}}),onUnload:function(){this.$util.addUserBehavior()},onLoad:function(e){t.showLoading({title:"正在加载"}),this.postData=e,this.postData.PROINST_NEXTID=4e3,this.getTransferUser()}};e.default=o}).call(this,n("543d")["default"])},"6e5a":function(t,e,n){"use strict";var s;n.d(e,"b",(function(){return r})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return s}));var r=function(){var t=this,e=t.$createElement;t._self._c},i=[]},ab8a:function(t,e,n){"use strict";(function(t){n("40da");s(n("66fd"));var e=s(n("fd20"));function s(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},df42:function(t,e,n){"use strict";n.r(e);var s=n("0109"),r=n.n(s);for(var i in s)"default"!==i&&function(t){n.d(e,t,(function(){return s[t]}))}(i);e["default"]=r.a},e032:function(t,e,n){"use strict";var s=n("f692"),r=n.n(s);r.a},f692:function(t,e,n){},fd20:function(t,e,n){"use strict";n.r(e);var s=n("6e5a"),r=n("df42");for(var i in r)"default"!==i&&function(t){n.d(e,t,(function(){return r[t]}))}(i);n("e032");var a,o=n("f0c5"),u=Object(o["a"])(r["default"],s["b"],s["c"],!1,null,"7b4a8930",null,!1,s["a"],a);e["default"]=u.exports}},[["ab8a","common/runtime","common/vendor"]]]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "移交",
|
||||
"usingComponents": {}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="page-cont _div data-v-7b4a8930"><view class="page-title _p data-v-7b4a8930">请选择移交人员</view><view class="page-select _div data-v-7b4a8930"><view class="select-item _div data-v-7b4a8930"><label class="_span data-v-7b4a8930">指定经办人</label><view class="select-unit data-v-7b4a8930"><picker mode="selector" range-key="USER_NAME" range="{{TransferUserList}}" data-event-opts="{{[['change',[['pickerChange',['$event']]]]]}}" bindchange="__e" class="data-v-7b4a8930"><view class="uni-ellipsis data-v-7b4a8930">{{TransferUserList[pickerIndex].USER_NAME}}</view></picker><view class="uni-icon uni-icon-arrowright _i data-v-7b4a8930"></view></view></view></view><button class="mt80 data-v-7b4a8930" loading="{{isSubmit}}" data-event-opts="{{[['tap',[['postFn',['$event']]]]]}}" bindtap="__e">移交</button></view>
|
||||
@ -1 +0,0 @@
|
||||
textarea.data-v-7b4a8930{padding:20rpx;border:1rpx solid #a2c1c3;border-radius:6rpx;height:182rpx;font-size:24rpx;margin-top:16rpx;width:100%;box-sizing:border-box}.text-area-box.data-v-7b4a8930{margin:66rpx 0 40rpx 0}.page-cont.data-v-7b4a8930{padding:48rpx 30rpx}.page-title.data-v-7b4a8930{margin-top:24rpx;font-size:32rpx}.page-select.data-v-7b4a8930{margin-top:64rpx;padding:32rpx 40rpx;background-color:#fff}.select-item.data-v-7b4a8930{height:96rpx;line-height:96rpx;border-bottom:1rpx solid #eee;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.select-item + .select-item.data-v-7b4a8930{margin-top:16rpx}.select-item ._span.data-v-7b4a8930:last-child{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}button.data-v-7b4a8930{height:80rpx;background-color:#4a4c5b;margin:112rpx auto 0 auto;font-size:28rpx;line-height:80rpx;color:#fff}.select-btn.data-v-7b4a8930{color:#fff;background-color:#4188f2;border-radius:4rpx;padding:0 16rpx;font-size:24rpx;height:48rpx;line-height:48rpx}.sign-tag-box.data-v-7b4a8930{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.sign-tag.data-v-7b4a8930{background-color:#f9f9f9;color:#666;margin-top:8rpx;padding:8rpx 16rpx;border-radius:3rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;font-size:24rpx}.remove-tag.data-v-7b4a8930{margin-left:32rpx;font-weight:700;font-size:28rpx;height:20rpx;line-height:20rpx}.uni-icon-arrowright.data-v-7b4a8930{color:#777}.select-unit.data-v-7b4a8930{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:70%}.select-unit picker.data-v-7b4a8930{width:90%}.pickerMask.data-v-7b4a8930{position:fixed;z-index:1000;top:0;right:0;left:0;bottom:0;background-color:rgba(0,0,0,.6)}.mpvue-picker-content.data-v-7b4a8930{position:fixed;bottom:0;left:0;width:100%;-webkit-transition:all .3s ease;transition:all .3s ease;-webkit-transform:translateY(100%);transform:translateY(100%);z-index:3000}.mpvue-picker-view-show.data-v-7b4a8930{-webkit-transform:translateY(0);transform:translateY(0)}.mpvue-picker__hd.data-v-7b4a8930{display:-webkit-box;display:-webkit-flex;display:flex;padding:9px 15px;background-color:#fff;position:relative;text-align:center;font-size:17px}.mpvue-picker__hd.data-v-7b4a8930:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;color:#e5e5e5;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.mpvue-picker__action.data-v-7b4a8930{display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#1aad19}.mpvue-picker__action.data-v-7b4a8930:first-child{text-align:left;color:#888}.mpvue-picker__action.data-v-7b4a8930:last-child{text-align:right}.picker-item.data-v-7b4a8930{text-align:center;line-height:40px;font-size:16px}.mpvue-picker-view.data-v-7b4a8930{position:relative;bottom:0;left:0;width:100%;height:238px;background-color:#fff}.page-select.data-v-7b4a8930{padding:8rpx 30rpx}.select-item.data-v-7b4a8930{border-bottom:none}.mt80.data-v-7b4a8930{margin-top:200rpx}
|
||||
@ -1 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/businessApproval/businessApproval"],{"1e1d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=n("2f62");function i(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,a)}return n}function o(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?i(Object(n),!0).forEach((function(e){s(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):i(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function s(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}var r=function(){n.e("pages/businessApproval/components/businessUnit").then(function(){return resolve(n("026f"))}.bind(null,n)).catch(n.oe)},u={data:function(){return{pageData:{pageIndex:1,pageSize:10,isEnd:!1,isLoading:!0},pageList:[]}},components:{ListUnit:r},computed:o({},(0,a.mapGetters)({reloading:"shouldReLoadingList"})),methods:o(o({},(0,a.mapMutations)(["shouldReLoadingList"])),{},{getList:function(){var e=this,n=this;n.$request.get({action_type:"GetCommdityFlowList",pageIndex:n.pageData.pageIndex,pageSize:n.pageData.pageSize}).then((function(a){if(a.ResultCode&&"100"==a.ResultCode){var i=a.Data.List;i.length>0&&(n.pageList=1==e.pageData.pageIndex?i:n.pageList.concat(i)),i.length<n.pageData.pageSize&&(n.pageData.isEnd=!0),n.$forceUpdate()}else n.pageList=[];t.hideLoading(),setTimeout((function(){n.pageData.isLoading=!1}),500)}))},loadMore:function(){this.pageData.isEnd||(this.pageData.pageIndex+=1,this.getList())},goDetail:function(t){this.$util.toNextRoute("navigateTo","/pages/businessApproval/productDetail?id="+t.HIGHWAYPROINST_ID)}}),onPullDownRefresh:function(){this.pageData.pageIndex=1,this.pageData.isEnd=!1,t.showLoading({title:"正在加载"}),this.getList(),setTimeout((function(){t.stopPullDownRefresh()}),1e3)},onReachBottom:function(){this.loadMore()},onShow:function(){var e=this;this.reloading&&(t.showLoading({title:"正在加载"}),e.pageData.pageIndex=1,e.pageData.isEnd=!1,e.getList(),this.shouldReLoadingList(!1))},onLoad:function(){this.pageData.isLoading=!0,t.showLoading({title:"正在加载"}),this.getList()},onUnload:function(){this.$util.addUserBehavior()},onHide:function(){}};e.default=u}).call(this,n("543d")["default"])},2295:function(t,e,n){},2573:function(t,e,n){"use strict";n.r(e);var a=n("6a7d"),i=n("a825");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("db4a");var s,r=n("f0c5"),u=Object(r["a"])(i["default"],a["b"],a["c"],!1,null,"7c2c6fa8",null,!1,a["a"],s);e["default"]=u.exports},"6a7d":function(t,e,n){"use strict";var a;n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}));var i=function(){var t=this,e=t.$createElement;t._self._c},o=[]},a825:function(t,e,n){"use strict";n.r(e);var a=n("1e1d"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},ccb2:function(t,e,n){"use strict";(function(t){n("40da");a(n("66fd"));var e=a(n("2573"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},db4a:function(t,e,n){"use strict";var a=n("2295"),i=n.n(a);i.a}},[["ccb2","common/runtime","common/vendor"]]]);
|
||||
@ -1,7 +0,0 @@
|
||||
{
|
||||
"enablePullDownRefresh": true,
|
||||
"navigationBarTitleText": "商品审批",
|
||||
"usingComponents": {
|
||||
"list-unit": "/pages/businessApproval/components/businessUnit"
|
||||
}
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<view class="content data-v-7c2c6fa8"><block wx:if="{{pageList.length>0}}"><view class="data-v-7c2c6fa8"><block wx:for="{{pageList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><list-unit vue-id="{{'5129a9e0-1-'+index}}" item="{{item}}" i="{{index}}" data-event-opts="{{[['^goDetail',[['goDetail']]]]}}" bind:goDetail="__e" class="data-v-7c2c6fa8" bind:__l="__l"></list-unit></block></view></block><block wx:else><block wx:if="{{!pageData.isLoading}}"><view style="height:100%;" class="data-v-7c2c6fa8"><no-found vue-id="5129a9e0-2" nodata="{{pageList.length>0?false:true}}" class="data-v-7c2c6fa8" bind:__l="__l"></no-found></view></block></block><block wx:if="{{pageList.length>0}}"><view class="load-more data-v-7c2c6fa8"><text class="data-v-7c2c6fa8">{{!pageData.isEnd?'正在加载,请稍后...':'——— 我是有底线的 ———'}}</text></view></block></view>
|
||||
@ -1 +0,0 @@
|
||||
.content.data-v-7c2c6fa8{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}
|
||||
@ -1,10 +0,0 @@
|
||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/businessApproval/components/businessUnit"],{"026f":function(e,t,n){"use strict";n.r(t);var u=n("5258"),r=n("08d7");for(var i in r)"default"!==i&&function(e){n.d(t,e,(function(){return r[e]}))}(i);n("5768");var c,a=n("f0c5"),o=Object(a["a"])(r["default"],u["b"],u["c"],!1,null,"40cc4708",null,!1,u["a"],c);t["default"]=o.exports},"08d7":function(e,t,n){"use strict";n.r(t);var u=n("ebeb"),r=n.n(u);for(var i in u)"default"!==i&&function(e){n.d(t,e,(function(){return u[e]}))}(i);t["default"]=r.a},5258:function(e,t,n){"use strict";var u;n.d(t,"b",(function(){return r})),n.d(t,"c",(function(){return i})),n.d(t,"a",(function(){return u}));var r=function(){var e=this,t=e.$createElement;e._self._c},i=[]},5768:function(e,t,n){"use strict";var u=n("dbce"),r=n.n(u);r.a},dbce:function(e,t,n){},ebeb:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var u={props:{item:{type:Object,required:!0},i:{type:Number,required:!0}},data:function(){return{proStatus:{1e3:"待受理",2e3:"办理中",3e3:"已驳回",4e3:"已移交",9e3:"已审结"}}},computed:{},methods:{goDetail:function(){this.$emit("goDetail",this.item)}}};t.default=u}}]);
|
||||
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
|
||||
'pages/businessApproval/components/businessUnit-create-component',
|
||||
{
|
||||
'pages/businessApproval/components/businessUnit-create-component':(function(module, exports, __webpack_require__){
|
||||
__webpack_require__('543d')['createComponent'](__webpack_require__("026f"))
|
||||
})
|
||||
},
|
||||
[['pages/businessApproval/components/businessUnit-create-component']]
|
||||
]);
|
||||
@ -1,4 +0,0 @@
|
||||
{
|
||||
"usingComponents": {},
|
||||
"component": true
|
||||
}
|
||||
@ -1 +0,0 @@
|
||||
<block wx:if="{{item}}"><view data-event-opts="{{[['tap',[['goDetail',['$event']]]]]}}" class="{{['card _div data-v-40cc4708',item.SORTNUM==0?'conten-border':'']}}" bindtap="__e"><view class="uni-flex jc-between _div data-v-40cc4708"><view class="contentName _p data-v-40cc4708">{{''+item.PRODEF_NAME+''}}<block wx:if="{{item.HIGHWAYPROINST_NEXTID=='3000'}}"><label style="color:#D73535;" class="_span data-v-40cc4708">【退】</label></block><block wx:else><block wx:if="{{item.HIGHWAYPROINST_NEXTID=='4000'}}"><label style="color:#D73535;" class="_span data-v-40cc4708">【移】</label></block></block></view><text class="{{['typeText data-v-40cc4708',item.HIGHWAYPROINST_NEXTID=='9000'?'typeText-color':'']}}">{{item.SORTNUM==0?'待我处理':proStatus[item.HIGHWAYPROINST_NEXTID]}}</text></view><view class="content-index _div data-v-40cc4708">{{i+1}}</view><view style="line-height:1;" class="data-v-40cc4708"><text class="content-type-text data-v-40cc4708">{{item.SERVERPART_NAME}}</text></view><view class="content-box-cashpay data-v-40cc4708"><text class="data-v-40cc4708">{{item.PROINST_NAME}}</text></view><view class="bb1 data-v-40cc4708"></view><block wx:if="{{item.ACTINST_NAME}}"><view class="uni-flex align-center jc-between data-v-40cc4708"><view class="uni-flex jc-top data-v-40cc4708"><view class="B-icon A-icon _i data-v-40cc4708"></view><text class="content-span data-v-40cc4708">{{item.ACTINST_NAME}}</text></view><block wx:if="{{!item.STAFF_NAME}}"><text class="content-span data-v-40cc4708">{{item.HIGHWAYPROINST_CREATEDATE}}</text></block></view></block><block wx:if="{{item.STAFF_NAME}}"><view class="uni-flex jc-between data-v-40cc4708"><view class="uni-flex align-top data-v-40cc4708"><text class="G-icon A-icon data-v-40cc4708"></text><text class="content-span staff-text data-v-40cc4708">{{item.STAFF_NAME}}</text></view><text class="content-span lh15 data-v-40cc4708">{{item.HIGHWAYPROINST_CREATEDATE}}</text></view></block><block wx:if="{{!item.ACTINST_NAME&&!item.STAFF_NAME}}"><view class="uni-flex jc-end data-v-40cc4708"><text class="content-span data-v-40cc4708">{{item.HIGHWAYPROINST_CREATEDATE}}</text></view></block></view></block>
|
||||