Commit 9a52fd4b authored by zhengke's avatar zhengke

修改

parent c9bfeaad
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
mounted() { mounted() {
if (this.$route.query.a) { if (this.$route.query.a) {
let ContractId = Decrypt(decodeURIComponent(this.$route.query.a)); let ContractId = Decrypt(decodeURIComponent(this.$route.query.a));
this.msg.ContractId = ContractId; this.msg.contractId = ContractId;
this.getList(); this.getList();
} }
if(this.$route.query.Money){ if(this.$route.query.Money){
...@@ -130,11 +130,9 @@ ...@@ -130,11 +130,9 @@
//跳转至合同详情 //跳转至合同详情
goContractConfirm() { goContractConfirm() {
this.$router.push({ this.$router.push({
path: 'contractConfirm', path: '/contractConfirm',
query: { query: {
query: { a: encodeURIComponent(Encrypt(this.msg.contractId.toString())),
a: encodeURIComponent(Encrypt(this.msg.ContractId.toString())),
}
} }
}); });
} }
......
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