Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
524284bf
Commit
524284bf
authored
Mar 29, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
b13dcce1
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
131 additions
and
79 deletions
+131
-79
contractConfirm.vue
src/pages/contractConfirm.vue
+128
-77
contractManage.vue
src/pages/sale/contractManage.vue
+3
-2
No files found.
src/pages/contractConfirm.vue
View file @
524284bf
This diff is collapsed.
Click to expand it.
src/pages/sale/contractManage.vue
View file @
524284bf
...
@@ -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"
);
// 执行浏览器复制命令
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment