Commit 524284bf authored by zhengke's avatar zhengke

修改

parent b13dcce1
This diff is collapsed.
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
</template> </template>
<template v-slot:body-cell-StudentName="props"> <template v-slot:body-cell-StudentName="props">
<q-td auto-width :props="props"> <q-td auto-width :props="props">
<span v-if="props.row.Sign" style="color:#e95252;">{{props.row.Sign}}</span> <span v-if="props.row.Sign" style="color:#67C23A;">【已签字</span>
<span v-else style="color:#e95252;">【未签字】</span> <span v-else style="color:#e95252;">【未签字】</span>
{{props.row.StudentName}} {{props.row.StudentName}}
</q-td> </q-td>
...@@ -347,7 +347,8 @@ ...@@ -347,7 +347,8 @@
//复制URL //复制URL
CopyUrl(item) { CopyUrl(item) {
var oInput = document.createElement('input'); var oInput = document.createElement('input');
oInput.value = item.Url; var url = window.location.host;
oInput.value = url+'/#/contractConfirm'+`?ContractId=${item.Id}`;
document.body.appendChild(oInput); document.body.appendChild(oInput);
oInput.select(); // 选择对象 oInput.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令 document.execCommand("Copy"); // 执行浏览器复制命令
......
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