OA/pages/addresignationprofile/index.vue

558 lines
12 KiB
Vue

<template>
<view class="content">
<view class="content-middle">
<view class="content-middle-title">
请输入离职档案信息
</view>
<form report-submit='true'>
<view class='merchantsSettled'>
<view class='list' style="padding-bottom: 30rpx;">
<view class="item" style="border-bottom: 1px solid #eee;">
<view class="uni-list">
<view class="uni-list-cell">
<view class="uni-list-cell-db acea-row row-middle">
<text class="item-name">离职部门:</text>
<input placeholder="选择离职部门" type="text" disabled readonly @click="showck"
v-model="companyname1">
</view>
</view>
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
<text class="item-name">负责人:</text>
<input placeholder="选择离职负责人" type="text" disabled readonly v-model="companyname2"
@click="showckone">
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
<text class="item-name">离职人:</text>
<input placeholder="请输入离职人" type="text" disabled readonly v-model="buname"
@click="showcktwo">
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
<text class="item-name">交接人:</text>
<input placeholder="请输入离职交接人" type="text" disabled readonly v-model="buname1"
@click="showckfour">
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
<text class="item-name">离职时间:</text>
<input placeholder="请输入离职时间" type="text" disabled readonly
v-model="merchantData.quit_time" @click="showckthree">
</view>
</view>
<view class="item">
<view class="acea-row row-middle">
<text class="item-name">离职原因:</text>
<input placeholder="离职原因" type="text" readonly v-model="merchantData.remark">
</view>
</view>
</view>
</view>
</form>
<u-picker :show="flag1" :columns="columns3" ref="uPicker4" @cancel="flag1 = false" closeOnClickOverlay
@close="flag1 = false" @confirm="confirm" keyName="title" :defaultIndex=[0,0]>
</u-picker>
<u-picker :show="flag2" :columns="columns4" ref="uPicker5" @cancel="flag2 = false" closeOnClickOverlay
@close="flag2 = false" @confirm="confirm1" keyName="name" :defaultIndex=[0,0]>
</u-picker>
<u-picker :show="flag3" :columns="columns5" ref="uPicker6" @cancel="flag3 = false" closeOnClickOverlay
@close="flag3 = false" @confirm="confirm2" keyName="name" :defaultIndex=[0,0]>
</u-picker>
<u-picker :show="flag4" :columns="columns6" ref="uPicker6" @cancel="flag4 = false" closeOnClickOverlay
@close="flag4 = false" @confirm="confirm3" keyName="name" :defaultIndex=[0,0]>
</u-picker>
<u-datetime-picker :show="endmonth" mode="date" closeOnClickOverlay @confirm="end_monthConfirm"
@cancel="end_monthClose" @close="end_monthClose"></u-datetime-picker>
<view class="content-bottom">
<view class="content-bottom-two" @click="submit">
立即提交
</view>
</view>
</view>
</view>
</template>
<script>
import {
userdepartment,
getemployee,
leaveadd
} from '@/api/oa.js'
import {
Toast
} from '@/libs/uniApi.js'
export default {
data() {
return {
validate: false,
columns3: [],
columns4: [],
columns5: [],
columns6: [],
flag1: false,
flag2: false,
flag3: false,
flag4: false,
buname: "",
buname1: "",
endmonth: false,
companyname1: "",
companyname2: "",
merchantData: {
lead_admin_id: '',
connect_uids: '',
uid: '',
remark: '',
quit_time: '',
},
type: ''
};
},
onLoad(option) {
this.type = option.type
if (this.type == 1) {
uni.setNavigationBarTitle({
title: '编辑离职档案'
})
let data = JSON.parse(decodeURIComponent(option.data));
this.merchantData.lead_admin_id = data.lead_admin_id
this.merchantData.connect_uids = data.connect_uids
this.merchantData.uid = data.uid
this.merchantData.remark = data.remark
this.merchantData.id = data.id
this.merchantData.quit_time = data.quit_time
this.companyname1 = data.department
this.companyname2 = data.lead_admin
this.buname = data.name
this.buname1 = data.connect_names
this.getemployeelist(data.did)
}
this.getDocumentList()
},
methods: {
//获取部门
async getDocumentList() {
this.columns3 = []
const res = await userdepartment({
tree: 1
})
const deArr = res.data
this.columns3.push(deArr)
},
//结束月份
end_monthClose() {
this.endmonth = false
},
end_monthConfirm(e) {
this.endmonth = false
this.merchantData.quit_time = uni.$u.timeFormat(e.value, 'yyyy-mm')
},
//验证
validateForm: function() {
let that = this,
value = that.merchantData;
//console.log(value.connect_uids.length,that.merchantData)
if (value.uid.length == 0) return Toast(
'请选择离职人'
);
if (value.connect_uids.length == 0) return Toast(
'请选择离职交接人'
);
if (value.lead_admin_id.length == 0) return Toast(
'请选择离职部门负责人'
);
if (!value.quit_time) return Toast(
'请选择调动时间'
);
that.validate = true;
return true;
},
async getemployeelist(id) {
const res = await getemployee({
did: id
})
const deArr = res.data
this.columns4.push(deArr)
this.columns5.push(deArr)
this.columns6.push(deArr)
// //console.log(deArr)
},
//弹窗打开
showck() {
this.flag1 = true
},
showckone() {
this.flag2 = true
},
showcktwo() {
if (this.columns5.length > 0) {
this.flag3 = true
} else {
Toast('请先选择离职部门')
}
},
showckfour() {
if (this.columns6.length > 0) {
this.flag4 = true
} else {
Toast('请先选择离职部门')
}
},
showckthree() {
this.endmonth = true
},
//获取数据
confirm(e) {
this.columns4 = []
this.columns5 = []
this.columns6 = []
// //console.log(e)
// this.merchantData.from_did = e.value[0].id
this.companyname1 = e.value[0].title
this.getemployeelist(e.value[0].pid)
this.flag1 = false
},
confirm1(e) {
//console.log(e)
this.merchantData.lead_admin_id = e.value[0].id
this.companyname2 = e.value[0].name
this.flag2 = false
},
confirm2(e) {
//console.log(e)
this.merchantData.uid = e.value[0].id
this.buname = e.value[0].name
this.flag3 = false
},
confirm3(e) {
//console.log(e)
this.merchantData.connect_uids = e.value[0].id
this.buname1 = e.value[0].name
this.flag4 = false
},
async submit() {
let that = this
//console.log(that.validate)
if (this.validateForm() && this.validate) {
const res = await leaveadd(this.merchantData)
Toast(res.msg);
if (res.code == 0) {
uni.redirectTo({
url: '/pages/resignationprofile/index'
})
}
}
}
}
};
</script>
<style lang="scss">
page {
padding-bottom: 88rpx;
}
.content-top {
width: 100%;
background: #3274F9;
position: fixed;
z-index: 100;
}
.content-middle {
padding: 28rpx 28rpx;
.content-middle-title {
font-size: 35rpx;
font-family: PingFang SC-Bold, PingFang SC;
font-weight: bold;
color: #333333;
margin-bottom: 35rpx;
}
.merchantsSettled .list {
background-color: #fff;
border-radius: 12px;
}
.application-record {
position: absolute;
display: flex;
align-items: center;
top: 240rpx;
right: 0;
color: #fff;
font-size: 22rpx;
background-color: rgba(0, 0, 0, 0.3);
padding: 8rpx 18rpx;
border-radius: 20px 0px 0px 20px;
}
.merchantsSettled .list .item {
padding: 50rpx 0 20rpx;
position: relative;
margin: 0 20px;
&.no-border {
border-bottom: none;
padding-left: 0;
padding-right: 0;
}
.item-title {
color: #666666;
font-size: 28rpx;
display: block;
}
.item-desc {
color: #B2B2B2;
font-size: 22rpx;
display: block;
margin-top: 9rpx;
line-height: 36rpx;
}
}
.item-name {
width: 140rpx;
margin-right: 10rpx;
}
.acea-row,
.upload {
display: -webkit-box;
display: -moz-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-lines: multiple;
-moz-box-lines: multiple;
-o-box-lines: multiple;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.upload {
margin-top: 20rpx;
}
.acea-row.row-middle {
-webkit-box-align: center;
-moz-box-align: center;
-o-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
padding-left: 2px;
}
.acea-row.row-column {
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-o-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.acea-row.row-center-wrapper {
-webkit-box-align: center;
-moz-box-align: center;
-o-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-o-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
}
.uni-list-cell-db {
position: relative;
}
.merchantsSettled .list .item input {
width: 400rpx;
font-size: 30rpx;
}
.merchantsSettled .list .item .placeholder {
color: #b2b2b2;
}
.merchantsSettled .default {
padding: 0 30rpx;
height: 90rpx;
background-color: #fff;
margin-top: 23rpx;
}
.merchantsSettled .default checkbox {
margin-right: 15rpx;
}
.merchantsSettled .acea-row uni-image {
width: 20px;
height: 20px;
display: block;
}
.merchantsSettled .list .item .codeIput {
width: 125px;
}
.uni-input-input {
display: block;
height: 100%;
background: none;
color: inherit;
opacity: 1;
-webkit-text-fill-color: currentcolor;
font: inherit;
line-height: inherit;
letter-spacing: inherit;
text-align: inherit;
text-indent: inherit;
text-transform: inherit;
text-shadow: inherit;
}
.merchantsSettled .list .item .code {
position: absolute;
width: 93px;
line-height: 27px;
border: 1px solid var(--view-theme);
border-radius: 15px;
color: var(--view-theme);
text-align: center;
bottom: 8px;
right: 0;
font-size: 12px;
}
.merchantsSettled .list .item .code.on {
background-color: #bbb;
color: #fff;
border-color: #bbb;
}
.merchantsSettled .submitBtn {
width: 588rpx;
margin: 0 auto;
height: 86rpx;
border-radius: 25px;
text-align: center;
line-height: 86rpx;
font-size: 15px;
color: #fff;
background: #E3E3E3;
margin-top: 25px;
pointer-events: none;
}
.merchantsSettled .submitBtn.on {
background: var(--view-theme);
pointer-events: all;
}
uni-checkbox-group,
.settleAgree {
display: inline-block;
font-size: 24rpx;
}
uni-checkbox-group {
color: #b2b2b2;
}
.settleAgree {
color: var(--view-theme);
position: relative;
top: 2px;
left: 8px;
}
.merchantsSettled uni-checkbox .uni-checkbox-wrapper {
width: 30rpx;
height: 30rpx;
border: 2rpx solid #C3C3C3;
border-radius: 15px;
}
}
.content-bottom {
width: 485rpx;
height: 88rpx;
position: absolute;
bottom: 30rpx;
left: 50%;
margin-left: -242.5rpx;
position: fixed;
.content-bottom-two {
width: 485rpx;
height: 88rpx;
line-height: 88rpx;
text-align: center;
font-size: 32rpx;
border-radius: 60rpx 60rpx;
font-family: PingFang SC-Regular, PingFang SC;
font-weight: 400;
color: #FFFFFF;
background: #3274F9;
}
}
</style>