Commit eebb075a authored by 黄媛媛's avatar 黄媛媛

update

parent e3966439
...@@ -70,11 +70,11 @@ ...@@ -70,11 +70,11 @@
<span>{{item.Name}}</span> <span>{{item.Name}}</span>
</td> </td>
<td> <td>
<span class="underline" @click="goFinal(1)">{{item.AuditNum}}</span> <span class="underline" @click="goFinal(1,item.CreateBy)">{{item.AuditNum}}</span>
</td> </td>
<td> <td>
<span class="underline" @click="goFinal(2)">{{item.CreateNum}}</span> <span class="underline" @click="goFinal(2,item.CreateBy)">{{item.CreateNum}}</span>
</td> </td>
</tr> </tr>
...@@ -150,12 +150,13 @@ import moment from "moment" ...@@ -150,12 +150,13 @@ import moment from "moment"
}, err => {}) }, err => {})
}, },
goFinal(fin){ goFinal(fin,id){
document.querySelector("#app").click(); document.querySelector("#app").click();
this.$router.push({ this.$router.push({
name: 'documentsDetail', name: 'documentsDetail',
query: { query: {
Type: fin, Type: fin,
EmployeeId:id,
'blank': 'y', 'blank': 'y',
} }
}) })
......
...@@ -133,7 +133,7 @@ import moment from "moment" ...@@ -133,7 +133,7 @@ import moment from "moment"
this.msg.Type=Number(this.$route.query.Type); this.msg.Type=Number(this.$route.query.Type);
} }
if(this.$route.query.EmployeeId){ if(this.$route.query.EmployeeId){
this.msg.EmployeeId=Number(this.$route.query.EmployeeId ); this.msg.EmployeeId=Number(this.$route.query.EmployeeId);
} }
}, },
......
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