Commit 9a52fd4b authored by zhengke's avatar zhengke

修改

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