Commit 072a0322 authored by 吴春's avatar 吴春

1

parent 11c9b048
...@@ -283,8 +283,8 @@ ...@@ -283,8 +283,8 @@
<li> <li>
<span> <span>
<em>{{$t('objFill.v101.zhuceshij')}}</em> <em>{{$t('objFill.v101.zhuceshij')}}</em>
<el-date-picker class="h34 w250" v-model="missionDate" @change="timeAdd()" type="daterange" <el-date-picker class="h34 w250" v-model="EnterTime" @change="timeAdd()" type="daterange"
value-format="yyyy-MM-dd"> value-format="yyyy/MM/dd">
</el-date-picker> </el-date-picker>
</span> </span>
</li> </li>
...@@ -393,6 +393,7 @@ ...@@ -393,6 +393,7 @@
loading: true, loading: true,
EmployeeList: [], EmployeeList: [],
missionDate: [], missionDate: [],
EnterTime :[],
// defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"', // defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"',
msg: { msg: {
pageIndex: 1, pageIndex: 1,
...@@ -419,16 +420,23 @@ ...@@ -419,16 +420,23 @@
}, },
pagesTitle(val, oldval) { pagesTitle(val, oldval) {
}, },
$route:{
handler(val, oldVal) {
console.log(val,'-----')
},
deep: true,
immediate:true,
}
}, },
methods: { methods: {
timeAdd(t) { // 日期格式 timeAdd(t) { // 日期格式
if (!this.missionDate) { if (!this.EnterTime ) {
this.msg.CStartTime = ''; this.msg.CStartTime = '';
this.msg.CEndDate = ''; this.msg.CEndDate = '';
return return
} }
this.msg.CStartTime = this.missionDate[0]; this.msg.CStartTime = this.EnterTime [0];
this.msg.CEndDate = this.missionDate[1]; this.msg.CEndDate = this.EnterTime [1];
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
...@@ -615,13 +623,26 @@ ...@@ -615,13 +623,26 @@
if (id) { if (id) {
this.msg.ID = id; this.msg.ID = id;
} }
this.EnterTime=[];
if (this.$route.query.EnterTime) { if (this.$route.query.EnterTime) {
this.EnterTime = this.$route.query.EnterTime this.EnterTime = this.$route.query.EnterTime
this.msg.CStartTime = this.EnterTime[0]; this.msg.CStartTime = this.EnterTime[0];
this.msg.CEndDate = this.EnterTime[1]; this.msg.CEndDate = this.EnterTime[1];
} }
this.selectResource(); this.msg.CStartTime = this.$route.query.CStartTime?this.$route.query.CStartTime:'';
this.getCompanyList(); this.msg.CEndDate = this.$route.query.CEndDate?this.$route.query.CEndDate:'';
this.EnterTime=[this.msg.CStartTime,this.msg.CEndDate];
if (this.$route.query.BranchId) {
if(this.$route.query.BranchId!="-1"){
this.msg.BranchId = this.$route.query.BranchId+"";
}
}
if (this.$route.query.EnterID) {
this.msg.EnterID = this.$route.query.EnterID;
}
this.getCompanyList();
this.selectResource();
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment