|
@@ -25,6 +25,7 @@
|
|
|
:names="resign_name"
|
|
|
:placeholder="'离职人名称'"
|
|
|
@searchChange="handleResignName"
|
|
|
+ :filter-company="true"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -43,9 +44,28 @@
|
|
|
:names="hand_name"
|
|
|
:placeholder="'接受人名称'"
|
|
|
@searchChange="handleHandoverName"
|
|
|
+ :filter-company="true"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="id !== 'add' ? 12 : 24">
|
|
|
+ <el-form-item label="离职日期" prop="resign_date">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="ruleForm.resign_date"
|
|
|
+ type="datetime"
|
|
|
+ style="width: 100%"
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ placeholder="离职日期"
|
|
|
+ :disabled="
|
|
|
+ !(
|
|
|
+ id === 'add' ||
|
|
|
+ (status + '' === '0' && powers.some((i) => i == '005'))
|
|
|
+ )
|
|
|
+ "
|
|
|
+ >
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="id !== 'add' ? 12 : 24">
|
|
|
<el-form-item label="生效时间" prop="expire_date">
|
|
|
<el-date-picker
|
|
@@ -95,10 +115,11 @@
|
|
|
<script>
|
|
|
import asyncRequest from "@/apis/service/interest/handover";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
+import companyHelper from "@/mixins/companyHelper"
|
|
|
export default {
|
|
|
name: "handover",
|
|
|
props: ["id", "newTime", "sitem"],
|
|
|
- mixins: [resToken],
|
|
|
+ mixins: [resToken,companyHelper],
|
|
|
data() {
|
|
|
return {
|
|
|
loading: false,
|
|
@@ -110,6 +131,7 @@ export default {
|
|
|
hand_uid: [],
|
|
|
resign_uid: [],
|
|
|
expire_date: "",
|
|
|
+ resign_date: "",
|
|
|
remark: "",
|
|
|
},
|
|
|
rulesThis: this.rules,
|
|
@@ -131,6 +153,13 @@ export default {
|
|
|
trigger: "change",
|
|
|
},
|
|
|
],
|
|
|
+ resign_date:[
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "请选择离职时间",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
expire_date: [
|
|
|
{
|
|
|
required: true,
|
|
@@ -191,27 +220,32 @@ export default {
|
|
|
hand_uid,
|
|
|
resign_uid,
|
|
|
expire_date,
|
|
|
+ resign_date,
|
|
|
remark,
|
|
|
} = this.sitem;
|
|
|
this.resign_name = resign_name || "";
|
|
|
this.hand_name = hand_name || "";
|
|
|
this.status = status || "";
|
|
|
+
|
|
|
+ console.log('line229',this.sitem)
|
|
|
this.ruleForm = {
|
|
|
- hand_uid: hand_uid ? hand_uid.split(",") : [],
|
|
|
- resign_uid: resign_uid ? resign_uid.split(",") : [],
|
|
|
+ hand_uid: hand_uid ? String(hand_uid).split(",") : [],
|
|
|
+ resign_uid: resign_uid ? String(resign_uid).split(",") : [],
|
|
|
expire_date: expire_date || "",
|
|
|
+ resign_date: resign_date || "",
|
|
|
remark: remark || "",
|
|
|
};
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
async submitForm() {
|
|
|
+ if(!this.isHasCurrentCompany()) return
|
|
|
+
|
|
|
await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
if (valid) {
|
|
|
if(!this.loading){
|
|
|
+ const { resign_uid, hand_uid, expire_date, resign_date } = this.ruleForm;
|
|
|
|
|
|
-
|
|
|
- const { resign_uid, hand_uid, expire_date } = this.ruleForm;
|
|
|
let rUid = resign_uid.toString(),
|
|
|
hUid = hand_uid.toString();
|
|
|
if (rUid === hUid) {
|
|
@@ -219,12 +253,16 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
this.loading = true;
|
|
|
+
|
|
|
const model = {
|
|
|
id: this.id,
|
|
|
resign_uid: rUid,
|
|
|
hand_uid: hUid,
|
|
|
expire_date: expire_date,
|
|
|
+ resign_date: resign_date,
|
|
|
+ companyNo:this.currentCompany
|
|
|
};
|
|
|
+
|
|
|
let res = {};
|
|
|
if (this.id === "add") {
|
|
|
delete model["id"];
|