Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
cms_sys
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
西魏
cms_sys
Commits
9eb08798
Commit
9eb08798
authored
May 07, 2022
by
msgroup
Committed by
mingsoft
May 07, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 5.2.8待发布更新
parent
1f526b0c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
97 deletions
+0
-97
index.ftl
src/main/webapp/WEB-INF/manager/index.ftl
+0
-97
No files found.
src/main/webapp/WEB-INF/manager/index.ftl
deleted
100644 → 0
View file @
1f526b0c
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<script
src=
"https://unpkg.com/vue@next"
></script>
<!-- import CSS -->
<link
rel=
"stylesheet"
href=
"https://unpkg.com/element-plus/dist/index.css"
>
<!-- import JavaScript -->
<script
src=
"https://unpkg.com/element-plus"
></script>
</head>
<body>
<div
id=
"app"
>
<el-table
:data=
"tableData"
style=
"width: 100%"
>
<el-table-column
fixed
prop=
"date"
label=
"Date"
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"name"
label=
"Name"
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"state"
label=
"State"
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"city"
label=
"City"
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"address"
label=
"Address"
width=
"600"
>
</el-table-column>
<el-table-column
prop=
"zip"
label=
"Zip"
width=
"120"
>
</el-table-column>
<el-table-column
fixed=
"right"
label=
"Operations"
width=
"120"
>
</el-table-column>
</el-table>
<el-button
type=
"text"
@
click=
"visible = true"
>
click to open the Dialog
</el-button
>
<el-dialog
v-model=
"visible"
title=
"Tips"
width=
"30%"
>
<span>
This is a message
</span>
<template
#
footer
>
<span
class=
"dialog-footer"
>
<el-button
@
click=
"visible = false"
>
Cancel
</el-button>
<el-button
type=
"primary"
@
click=
"visible = false"
>
Confirm
</el-button
>
</span>
</template>
</el-dialog>
</div>
</body>
<script>
var
app
=
Vue
.
createApp
({
data
:
function
()
{
return
{
visible
:
false
,
tableData
:
[
{
date
:
'2016-05-03'
,
name
:
'Tom'
,
state
:
'California'
,
city
:
'Los Angeles'
,
address
:
'No. 189, Grove St, Los Angeles'
,
zip
:
'CA 90036'
,
tag
:
'Home'
,
},
{
date
:
'2016-05-02'
,
name
:
'Tom'
,
state
:
'California'
,
city
:
'Los Angeles'
,
address
:
'No. 189, Grove St, Los Angeles'
,
zip
:
'CA 90036'
,
tag
:
'Office'
,
},
{
date
:
'2016-05-04'
,
name
:
'Tom'
,
state
:
'California'
,
city
:
'Los Angeles'
,
address
:
'No. 189, Grove St, Los Angeles'
,
zip
:
'CA 90036'
,
tag
:
'Home'
,
},
{
date
:
'2016-05-01'
,
name
:
'Tom'
,
state
:
'California'
,
city
:
'Los Angeles'
,
address
:
'No. 189, Grove St, Los Angeles'
,
zip
:
'CA 90036'
,
tag
:
'Office'
,
},
]
}
}
});
app
.
use
(
ElementPlus
).
mount
(
"#app"
);
</script>
</html>
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