143 lines
4.4 KiB
Vue
143 lines
4.4 KiB
Vue
<!-- 离职申请 -->
|
|
<template>
|
|
<view class="container">
|
|
<scroll-view scroll-y style="padding-bottom: 180rpx;background-color: #fff;">
|
|
<uni-forms v-model="form" label-width="150rpx" ref="customForm" :rules="customRules">
|
|
<ticketd :ticket_="form.ticket_"></ticketd>
|
|
<uni-forms-item label="姓名" required>
|
|
<uni-easyinput v-model="form.employee_name" placeholder="请输入姓名" :disabled="mode=='show'"/>
|
|
</uni-forms-item>
|
|
<uni-forms-item label="部门" required>
|
|
<uni-easyinput v-model="form.belong_dept_name" placeholder="请输入岗位" :disabled="mode=='show'"/>
|
|
</uni-forms-item>
|
|
<uni-forms-item label="岗位" required>
|
|
<uni-easyinput v-model="form.post_name" placeholder="请输入岗位" :disabled="mode=='show'"/>
|
|
</uni-forms-item>
|
|
<uni-forms-item label="离职时间" required>
|
|
<uni-datetime-picker type="date" :clear-icon="false" v-model="form.end_date" v-if="mode!='show'"/>
|
|
<span v-else>{{form.end_date}}</span>
|
|
</uni-forms-item>
|
|
<uni-forms-item label="离职原因:" label-width="750" required>
|
|
</uni-forms-item>
|
|
<uni-forms-item label-width="100">
|
|
<textarea placeholder-style="color:#efefef" v-model="form.reason" placeholder="离职原因" style="width:100%; border: 2upx solid #e5e5e5;padding: 10upx;"/>
|
|
</uni-forms-item>
|
|
<uni-forms-item label="办理离职交接日期" required v-if="form.ticket_&&form.ticket_.state_">
|
|
<uni-datetime-picker type="date" :clear-icon="false" v-model="ticket_data.handle_date" v-if="form.ticket_?.state_?.name=='部门负责人'"/>
|
|
<span v-else>{{form.ticket_.ticket_data.handle_date}}</span>
|
|
</uni-forms-item>
|
|
</uni-forms>
|
|
</scroll-view>
|
|
<view class="footer_fixed">
|
|
<ticketd_b :workflow_key="'wf_resignation'" :title="form.employee_name + '-离职申请'" :t_id="form.id" :ticket_="form.ticket_"
|
|
:ticket_data="ticket_data" @success="submitSuccess" :submit_b_func="submit_b_func" ref="ticketd_b_start"></ticketd_b>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import ticketd_b from "../wf/ticketd_b.vue"
|
|
import ticketd from "../wf/ticketd.vue"
|
|
import {actStateEnum} from "@/utils/enum.js"
|
|
export default {
|
|
components: { ticketd_b, ticketd },
|
|
data(){
|
|
return{
|
|
mode:"add",
|
|
t_id: null,
|
|
form:{
|
|
reason:"",
|
|
employee:"",
|
|
end_date:"",
|
|
},
|
|
ticket_data:{
|
|
handle_date:""
|
|
},
|
|
userInfo:{},
|
|
type:0,
|
|
hobby: [
|
|
{text: '省级平台',value: '省级平台'},
|
|
{text: '市级平台',value: '市级平台'},
|
|
],
|
|
header:"",
|
|
customRules: {
|
|
filename: {
|
|
rules: [{
|
|
required: true,
|
|
errorMessage: '姓名不能为空'
|
|
}]
|
|
},
|
|
age: {
|
|
rules: [{
|
|
required: true,
|
|
errorMessage: '年龄不能为空'
|
|
}]
|
|
},
|
|
},
|
|
}
|
|
},
|
|
async onLoad(options) {
|
|
let that = this;
|
|
let userInfo = uni.getStorageSync("userInfo");
|
|
that.form.employee_name = userInfo.name;
|
|
that.form.post_name = userInfo.post_name;
|
|
that.form.post = userInfo.post;
|
|
that.form.belong_dept = userInfo.belong_dept;
|
|
that.form.belong_dept_name = userInfo.belong_dept_name;
|
|
that.form.id='';
|
|
that.mode = options.mode?options.mode:'show';
|
|
that.t_id = options.t_id?options.t_id:null;
|
|
if(that.mode != "add"){
|
|
if(that.t_id) {
|
|
that.form = await that.$api.resignationItem(that.t_id);
|
|
if(that.form.ticket_.state_.type == 1 && that.form.create_by == uni.getStorageSync("userInfo").id ) {
|
|
that.mode = "edit";
|
|
}else{
|
|
that.mode = "show";
|
|
}
|
|
}
|
|
}else{
|
|
that.getEmployee();
|
|
}
|
|
},
|
|
methods:{
|
|
async getEmployee(){
|
|
let that = this;
|
|
let obj = {search:that.form.employee_name,page:0,query:'{name,id}'}
|
|
let res = await that.$api.employeeList(obj);
|
|
that.form.employee = res[0].id;
|
|
},
|
|
sealChange(){
|
|
console.log('seal1',this.seal1)
|
|
},
|
|
async submit_b_func(id){
|
|
let that = this;
|
|
that.$refs.customForm.validate().then(res => {
|
|
|
|
}).catch(err => {
|
|
console.log('err', err);
|
|
})
|
|
let res = await that.$api.resignationCreate(that.form)
|
|
that.form.id = res.id;
|
|
},
|
|
submitSuccess(){
|
|
uni.navigateTo({
|
|
url: "/pages/index/index"
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.uni-data-checklist .checklist-group .checklist-box{
|
|
margin: 10px 0!important;
|
|
}
|
|
.flex_file_picker>.uni-file-picker__files{
|
|
flex-direction: row;
|
|
}
|
|
.flex_file_picker{
|
|
width: 90px;
|
|
flex: none;
|
|
}
|
|
</style> |