factory_mp/pages/hrm/resignation_form.vue

145 lines
5.2 KiB
Vue

<!-- 离职申请 -->
<template>
<view class="form-page">
<scroll-view scroll-y class="form-scroll">
<uni-forms v-model="form" label-width="180rpx" ref="customForm" :rules="customRules">
<view class="form-card" v-if="form.ticket_">
<ticketd :ticket_="form.ticket_"></ticketd>
</view>
<view class="form-card">
<view class="form-card-title">人员信息</view>
<uni-forms-item label="姓名">
<uni-easyinput v-model="form.employee_name" placeholder="请输入姓名" :disabled="true"/>
</uni-forms-item>
<uni-forms-item label="部门">
<uni-easyinput v-model="form.belong_dept_name" placeholder="请输入岗位" :disabled="true"/>
</uni-forms-item>
<uni-forms-item label="岗位">
<uni-easyinput v-model="form.post_name" placeholder="请输入岗位" :disabled="true"/>
</uni-forms-item>
</view>
<view class="form-card">
<view class="form-card-title">离职信息</view>
<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="离职原因" required>
<textarea placeholder-style="color:#c0c4cc" v-model="form.reason" placeholder="请输入离职原因" class="form-textarea"/>
</uni-forms-item>
<uni-forms-item label="办理交接日期" required>
<uni-datetime-picker type="date" v-model="ticket_data.handle_date" v-if="form.ticket_?.state_?.name=='部门负责人'"/>
<span v-else>{{form.handle_date}}</span>
</uni-forms-item>
</view>
</uni-forms>
</scroll-view>
<view class="footer_fixed">
<button v-if="mode=='edit'" class="form-btn form-btn-danger" @click="handleDel" :loading="saveLoading" :disabled="saveLoading">
删除
</button>
<button v-if="mode!='show'" class="form-btn form-btn-primary" @click="handleSave" :loading="saveLoading" :disabled="saveLoading">
提交审批
</button>
<ticketd_b v-if="form.ticket_ && mode == 'show'" :t_id="form.id" :ticket_="form.ticket_"
:ticket_data="ticket_data" @success="()=>{uni.navigateBack()}" ref="ticketd_b"></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{
saveLoading: false,
mode:"show",
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;
that.mode = options.mode?options.mode:'show';
that.t_id = options.t_id?options.t_id:null;
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 res = await this.$api.employeeInfo();
this.form.employee_name = res.name;
this.form.belong_dept_name = res.belong_dept_name;
this.form.post_name = res.post_name;
this.form.employee = res.id;
this.mode = "add";
},
async handleDel(){
let that = this;
await that.$api.resignationDelete(that.form.id)
uni.navigateBack()
},
async handleSave(){
let that = this;
that.$refs.customForm.validate().then(res => {
}).catch(err => {
console.log('err', err);
})
await that.$api.resignationCreate(that.form)
uni.navigateBack()
},
}
}
</script>
<style lang="scss" scoped>
.form-page { min-height: 100vh; background: #F0F2F5; }
.form-scroll { padding: 20rpx 24rpx; padding-bottom: 180rpx; }
.form-card { background: #fff; border-radius: 20rpx; padding: 24rpx; margin-bottom: 20rpx; box-shadow: 0 2rpx 12rpx rgba(0,0,0,0.04); }
.form-card-title { font-size: 30rpx; font-weight: 600; color: #1F2937; margin-bottom: 16rpx; padding-left: 16rpx; border-left: 6rpx solid #2BA471; }
.form-textarea { width: 100%; min-height: 160rpx; border: 2rpx solid #E5E7EB; border-radius: 12rpx; padding: 16rpx; font-size: 28rpx; color: #374151; box-sizing: border-box; background: #F9FAFB; }
.form-btn { flex: 1; height: 80rpx; line-height: 80rpx; border-radius: 14rpx !important; font-size: 28rpx; font-weight: 500; border: none !important; }
.form-btn-primary { background: linear-gradient(135deg, #2BA471, #1F8C5E) !important; color: #fff !important; box-shadow: 0 4rpx 12rpx rgba(43,164,113,0.2); }
.form-btn-danger { background: linear-gradient(135deg, #EF4444, #DC2626) !important; color: #fff !important; box-shadow: 0 4rpx 12rpx rgba(239,68,68,0.3); }
</style>