Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-composition-api
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
宁路鹏
vue-composition-api
Commits
7798ef0f
Commit
7798ef0f
authored
Aug 25, 2023
by
唐玉峰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
422578d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
src/views/patientinfo.vue
+17
-0
No files found.
src/views/patientinfo.vue
View file @
7798ef0f
...
...
@@ -158,6 +158,11 @@
<div
class=
"table flex-1 mar-top-20"
>
<el-table
border
ref=
"tableRef"
height=
"99%"
:data=
"tableData"
size=
"mini"
:highlight-current-row=
"true"
>
<el-table-column
align=
"center"
type=
"index"
width=
"50"
fixed=
"left"
></el-table-column>
<el-table-column
label=
"同步更新"
align=
"center"
min-width=
"80"
show-overflow-tooltip
fixed=
"left"
>
<template
#
default=
"scope"
>
<i
class=
"el-icon-refresh font-16 cursor"
@
click
.
stop=
"SetInjoinAgain(scope.row.id)"
></i>
</
template
>
</el-table-column>
<el-table-column
prop=
"fee_consume"
label=
"费用消耗比例"
...
...
@@ -404,6 +409,18 @@ export default {
this
.
getList
();
});
},
SetInjoinAgain
(
id
)
{
http
.
post
(
`/screen/screen/SetInjoinAgain?id=
${
id
}
`
,
{})
.
then
((
data
)
=>
{
Message
.
success
(
"同步成功"
);
this
.
getList
();
})
.
catch
((
error
)
=>
{
this
.
getList
();
});
},
handleCurrentChange
(
val
)
{
this
.
pageNumber
=
val
;
this
.
getList
();
...
...
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