Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lxyl-vue
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
李苏
lxyl-vue
Commits
f5507dc5
Commit
f5507dc5
authored
Apr 08, 2024
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
库位看板
parent
8ec36946
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
995 additions
and
572 deletions
+995
-572
dialog.vue
src/views/ccgl/dpkb/22kwkb/dialog.vue
+140
-0
H09.vue
src/views/ccgl/dpkb/22kwkb/hjsvg/H09.vue
+62
-0
H10.vue
src/views/ccgl/dpkb/22kwkb/hjsvg/H10.vue
+62
-0
H11.vue
src/views/ccgl/dpkb/22kwkb/hjsvg/H11.vue
+62
-0
index.vue
src/views/ccgl/dpkb/22kwkb/index.vue
+669
-572
No files found.
src/views/ccgl/dpkb/22kwkb/dialog.vue
0 → 100644
View file @
f5507dc5
<
template
>
<DefaultDialog
:appendToBody=
'false'
:app=
'app'
>
<div
slot=
"form"
class=
"min_full"
style=
"height: 60vh;"
>
<div
id=
'infoCar'
ref=
"infoCar"
class=
"infoCar"
>
</div>
<svgComponent
st
ref=
"svgComponent"
/>
</div>
</DefaultDialog>
</
template
>
<
script
>
export
default
{
props
:
{
app
:
{
type
:
Object
,
default
:
()
=>
{
return
{}
}
},
svgComponent
:
{
type
:
Object
,
default
:
()
=>
{
return
{}
}
}
},
created
()
{
if
(
this
.
svgComponent
){
this
.
$options
.
components
.
svgComponent
=
this
.
svgComponent
}
},
mounted
()
{
this
.
$nextTick
(()
=>
{
var
infoBox
=
this
.
$refs
.
infoCar
;
console
.
log
(
this
.
$refs
.
svgComponent
)
$
(
this
.
$refs
.
svgComponent
.
$el
).
find
(
"[TAGID]"
).
attr
(
"fill"
,
'red'
).
each
((
index
,
element
)
=>
{
element
.
addEventListener
(
'mouseover'
,
function
(
event
)
{
let
content
=
` 编码:
${
$
(
element
).
attr
(
'TAGID'
)}
<br />
名称:test001
<br />
状态:正常
<br />
数量:100
<br />
物料:测试code
<br />`
$
(
infoBox
).
empty
()
$
(
infoBox
).
append
(
content
)
infoBox
.
style
.
top
=
(
event
.
offsetY
+
40
)
+
'px'
;
// 信息框距离顶部10像素
infoBox
.
style
.
left
=
(
event
.
offsetX
+
40
)
+
'px'
;
// 信息框距离左侧10像素
infoBox
.
style
.
display
=
'block'
;
});
element
.
addEventListener
(
'mouseout'
,
function
(
event
)
{
// 隐藏信息框
infoBox
.
style
.
display
=
'none'
;
});
element
.
addEventListener
(
'click'
,
(
event
)
=>
{
// 隐藏信息框
this
.
showDialog
=
true
});
});
})
},
data
()
{
return
{
}
},
methods
:
{
}
}
</
script
>
<
style
scoped
>
.infoCar
{
border
:
2px
solid
#032d60
;
-webkit-box-shadow
:
#07417a
0px
0px
10px
;
-moz-box-shadow
:
#07417a
0px
0px
10px
;
box-shadow
:
inset
0
0
30px
#07417a
;
display
:
none
;
position
:
absolute
;
z-index
:
9999
;
background-color
:
#01172a
;
color
:
#009ae7
;
font-size
:
13px
;
padding
:
10px
;
right
:
10px
;
top
:
10px
;
line-height
:
16px
;
height
:
106px
;
width
:
155px
}
/
deep
/
.el-dialog
{
border
:
2px
solid
#032d60
;
-webkit-box-shadow
:
#07417a
0px
0px
10px
;
-moz-box-shadow
:
#07417a
0px
0px
10px
;
box-shadow
:
inset
0
0
30px
#07417a
;
background
:
url(./dimage/data08.png)
;
background-size
:
100%
100%
;
opacity
:
1
;
}
/
deep
/
.el-dialog__title
{
color
:
#fff
;
}
.search-span
{
color
:
#fff
!important
;
}
.min_full
{
border
:
0px
solid
!important
;
}
.search
{
border
:
0px
solid
!important
;
}
/
deep
/
.el-table
th
.el-table__cell
{
background-color
:
rgba
(
0
,
0
,
0
,
.2
)
!important
;
color
:
#25c2da
!important
;
font-size
:
13px
!important
;
font-weight
:
500
!important
;
}
/
deep
/
.el-table
tr
{
background-color
:
rgba
(
0
,
0
,
0
,
.2
)
!important
;
color
:
#25c2da
!important
;
font-size
:
13px
!important
;
font-weight
:
500
!important
;
}
/
deep
/
.el-table
{
background-color
:
rgba
(
0
,
0
,
0
,
.2
)
!important
;
}
</
style
>
src/views/ccgl/dpkb/22kwkb/hjsvg/H09.vue
0 → 100644
View file @
f5507dc5
<
template
>
<div
class=
"full"
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
version=
"1.1"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
style=
"background-color:transparent"
viewBox=
"0.000000 0.000000 2420.000000 1580.000000"
width=
"2048.000000"
height=
"1280.000000"
>
<defs/>
<rect
id=
"rect312"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,246.000000) "
TAGID=
"22F2-01S1-01-04"
/>
<rect
id=
"rect1"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,276.000000) "
TAGID=
"22F2-01S1-01-03"
/>
<rect
id=
"rect2"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,306.000000) "
TAGID=
"22F2-01S1-01-02"
/>
<rect
id=
"rect3"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,246.000000) "
TAGID=
"22F2-01S1-02-04"
/>
<rect
id=
"rect4"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,276.000000) "
TAGID=
"22F2-01S1-02-03"
/>
<rect
id=
"rect5"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,306.000000) "
TAGID=
"22F2-01S1-02-02"
/>
<rect
id=
"rect6"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,246.000000) "
TAGID=
"22F2-01S1-03-04"
/>
<rect
id=
"rect7"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,276.000000) "
TAGID=
"22F2-01S1-03-03"
/>
<rect
id=
"rect8"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,306.000000) "
TAGID=
"22F2-01S1-03-02"
/>
<rect
id=
"rect9"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,246.000000) "
TAGID=
"22F2-01S1-04-04"
/>
<rect
id=
"rect10"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,276.000000) "
TAGID=
"22F2-01S1-04-03"
/>
<rect
id=
"rect11"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,306.000000) "
TAGID=
"22F2-01S1-04-02"
/>
<rect
id=
"rect12"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,246.000000) "
TAGID=
"22F2-01S1-05-04"
/>
<rect
id=
"rect13"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,276.000000) "
TAGID=
"22F2-01S1-05-03"
/>
<rect
id=
"rect14"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,306.000000) "
TAGID=
"22F2-01S1-05-02"
/>
<rect
id=
"rect15"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,246.000000) "
TAGID=
"22F2-01S1-06-04"
/>
<rect
id=
"rect16"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,276.000000) "
TAGID=
"22F2-01S1-06-03"
/>
<rect
id=
"rect17"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,306.000000) "
TAGID=
"22F2-01S1-06-02"
/>
<rect
id=
"rect18"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,246.000000) "
TAGID=
"22F2-01S1-07-04"
/>
<rect
id=
"rect19"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,276.000000) "
TAGID=
"22F2-01S1-07-03"
/>
<rect
id=
"rect20"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,306.000000) "
TAGID=
"22F2-01S1-07-02"
/>
<rect
id=
"rect21"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,246.000000) "
TAGID=
"22F2-01S1-08-04"
/>
<rect
id=
"rect22"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,276.000000) "
TAGID=
"22F2-01S1-08-03"
/>
<rect
id=
"rect23"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,306.000000) "
TAGID=
"22F2-01S1-08-02"
/>
<rect
id=
"rect24"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,246.000000) "
TAGID=
"22F2-01S1-09-04"
/>
<rect
id=
"rect25"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,276.000000) "
TAGID=
"22F2-01S1-09-03"
/>
<rect
id=
"rect26"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,306.000000) "
TAGID=
"22F2-01S1-09-02"
/>
<rect
id=
"rect27"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,246.000000) "
TAGID=
"22F2-01S1-10-04"
/>
<rect
id=
"rect28"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,276.000000) "
TAGID=
"22F2-01S1-10-03"
/>
<rect
id=
"rect29"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,306.000000) "
TAGID=
"22F2-01S1-10-02"
/>
<rect
id=
"rect30"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,246.000000) "
TAGID=
"22F2-01S1-11-04"
/>
<rect
id=
"rect31"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,276.000000) "
TAGID=
"22F2-01S1-11-03"
/>
<rect
id=
"rect32"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,306.000000) "
TAGID=
"22F2-01S1-11-02"
/>
<rect
id=
"rect33"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,246.000000) "
TAGID=
"22F2-01S1-12-04"
/>
<rect
id=
"rect34"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,276.000000) "
TAGID=
"22F2-01S1-12-03"
/>
<rect
id=
"rect35"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,306.000000) "
TAGID=
"22F2-01S1-12-02"
/>
<rect
id=
"rect36"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,336.000000) "
TAGID=
"22F2-01S1-01-01"
/>
<rect
id=
"rect37"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,336.000000) "
TAGID=
"22F2-01S1-02-01"
/>
<rect
id=
"rect38"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,336.000000) "
TAGID=
"22F2-01S1-03-01"
/>
<rect
id=
"rect39"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,336.000000) "
TAGID=
"22F2-01S1-04-01"
/>
<rect
id=
"rect40"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,336.000000) "
TAGID=
"22F2-01S1-05-01"
/>
<rect
id=
"rect41"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,336.000000) "
TAGID=
"22F2-01S1-06-01"
/>
<rect
id=
"rect42"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,336.000000) "
TAGID=
"22F2-01S1-07-01"
/>
<rect
id=
"rect43"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,336.000000) "
TAGID=
"22F2-01S1-08-01"
/>
<rect
id=
"rect44"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,336.000000) "
TAGID=
"22F2-01S1-09-01"
/>
<rect
id=
"rect45"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,336.000000) "
TAGID=
"22F2-01S1-10-01"
/>
<rect
id=
"rect46"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,336.000000) "
TAGID=
"22F2-01S1-11-01"
/>
<rect
id=
"rect47"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,336.000000) "
TAGID=
"22F2-01S1-12-01"
/>
</svg>
</div>
</
template
>
<
script
>
</
script
>
<
style
>
</
style
>
src/views/ccgl/dpkb/22kwkb/hjsvg/H10.vue
0 → 100644
View file @
f5507dc5
<
template
>
<div
class=
"full"
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
version=
"1.1"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
style=
"background-color:transparent"
viewBox=
"0.000000 0.000000 2420.000000 1580.000000"
width=
"2048.000000"
height=
"1280.000000"
>
<defs/>
<rect
id=
"rect312"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,246.000000) "
TAGID=
"22F2-01S2-01-04"
/>
<rect
id=
"rect1"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,276.000000) "
TAGID=
"22F2-01S2-01-03"
/>
<rect
id=
"rect2"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,306.000000) "
TAGID=
"22F2-01S2-01-02"
/>
<rect
id=
"rect3"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,246.000000) "
TAGID=
"22F2-01S2-02-04"
/>
<rect
id=
"rect4"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,276.000000) "
TAGID=
"22F2-01S2-02-03"
/>
<rect
id=
"rect5"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,306.000000) "
TAGID=
"22F2-01S2-02-02"
/>
<rect
id=
"rect6"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,246.000000) "
TAGID=
"22F2-01S2-03-04"
/>
<rect
id=
"rect7"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,276.000000) "
TAGID=
"22F2-01S2-03-03"
/>
<rect
id=
"rect8"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,306.000000) "
TAGID=
"22F2-01S2-03-02"
/>
<rect
id=
"rect9"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,246.000000) "
TAGID=
""
/>
<rect
id=
"rect10"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,276.000000) "
TAGID=
""
/>
<rect
id=
"rect11"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,306.000000) "
TAGID=
""
/>
<rect
id=
"rect15"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,246.000000) "
TAGID=
"22F2-01S2-05-04"
/>
<rect
id=
"rect16"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,276.000000) "
TAGID=
"22F2-01S2-05-03"
/>
<rect
id=
"rect17"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,306.000000) "
TAGID=
"22F2-01S2-05-02"
/>
<rect
id=
"rect18"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,246.000000) "
TAGID=
"22F2-01S2-06-04"
/>
<rect
id=
"rect19"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,276.000000) "
TAGID=
"22F2-01S2-06-03"
/>
<rect
id=
"rect20"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,306.000000) "
TAGID=
"22F2-01S2-06-02"
/>
<rect
id=
"rect21"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,246.000000) "
TAGID=
"22F2-01S2-07-04"
/>
<rect
id=
"rect22"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,276.000000) "
TAGID=
"22F2-01S2-07-03"
/>
<rect
id=
"rect23"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,306.000000) "
TAGID=
"22F2-01S2-07-02"
/>
<rect
id=
"rect24"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,246.000000) "
TAGID=
"22F2-01S2-08-04"
/>
<rect
id=
"rect25"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,276.000000) "
TAGID=
"22F2-01S2-08-03"
/>
<rect
id=
"rect26"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,306.000000) "
TAGID=
"22F2-01S2-08-02"
/>
<rect
id=
"rect27"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,246.000000) "
TAGID=
"22F2-01S2-09-04"
/>
<rect
id=
"rect28"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,276.000000) "
TAGID=
"22F2-01S2-09-03"
/>
<rect
id=
"rect29"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,306.000000) "
TAGID=
"22F2-01S2-09-02"
/>
<rect
id=
"rect30"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,246.000000) "
TAGID=
"22F2-01S2-10-04"
/>
<rect
id=
"rect31"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,276.000000) "
TAGID=
"22F2-01S2-10-03"
/>
<rect
id=
"rect32"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,306.000000) "
TAGID=
"22F2-01S2-10-02"
/>
<rect
id=
"rect33"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,246.000000) "
TAGID=
"22F2-01S2-11-04"
/>
<rect
id=
"rect34"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,276.000000) "
TAGID=
"22F2-01S2-11-03"
/>
<rect
id=
"rect35"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,306.000000) "
TAGID=
"22F2-01S2-11-02"
/>
<rect
id=
"rect36"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,336.000000) "
TAGID=
"22F2-01S2-01-01"
/>
<rect
id=
"rect37"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,336.000000) "
TAGID=
"22F2-01S2-02-01"
/>
<rect
id=
"rect38"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,336.000000) "
TAGID=
"22F2-01S2-03-01"
/>
<rect
id=
"rect39"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,336.000000) "
TAGID=
"22F2-01S2-04-01"
/>
<rect
id=
"rect41"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,336.000000) "
TAGID=
"22F2-01S2-05-01"
/>
<rect
id=
"rect42"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,336.000000) "
TAGID=
"22F2-01S2-06-01"
/>
<rect
id=
"rect43"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,336.000000) "
TAGID=
"22F2-01S2-07-01"
/>
<rect
id=
"rect44"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,336.000000) "
TAGID=
"22F2-01S2-08-01"
/>
<rect
id=
"rect45"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,336.000000) "
TAGID=
"22F2-01S2-09-01"
/>
<rect
id=
"rect46"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,336.000000) "
TAGID=
"22F2-01S2-10-01"
/>
<rect
id=
"rect47"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,336.000000) "
TAGID=
"22F2-01S2-11-01"
/>
<rect
id=
"rect12"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,246.000000) "
TAGID=
"22F2-01S2-12-04"
/>
<rect
id=
"rect13"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,276.000000) "
TAGID=
"22F2-01S2-12-03"
/>
<rect
id=
"rect14"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,306.000000) "
TAGID=
"22F2-01S2-12-02"
/>
<rect
id=
"rect40"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,336.000000) "
TAGID=
"22F2-01S2-12-01"
/>
</svg>
</div>
</
template
>
<
script
>
</
script
>
<
style
>
</
style
>
src/views/ccgl/dpkb/22kwkb/hjsvg/H11.vue
0 → 100644
View file @
f5507dc5
<
template
>
<div
class=
"full"
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
version=
"1.1"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
style=
"background-color:transparent"
viewBox=
"0.000000 0.000000 2420.000000 1580.000000"
width=
"2048.000000"
height=
"1280.000000"
>
<defs/>
<rect
id=
"rect312"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,246.000000) "
TAGID=
"22F2-01S3-01-04"
/>
<rect
id=
"rect1"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,276.000000) "
TAGID=
"22F2-01S3-01-03"
/>
<rect
id=
"rect2"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,306.000000) "
TAGID=
"22F2-01S3-01-02"
/>
<rect
id=
"rect3"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,246.000000) "
TAGID=
"22F2-01S3-02-04"
/>
<rect
id=
"rect4"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,276.000000) "
TAGID=
"22F2-01S3-02-03"
/>
<rect
id=
"rect5"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,306.000000) "
TAGID=
"22F2-01S3-02-02"
/>
<rect
id=
"rect6"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,246.000000) "
TAGID=
"22F2-01S3-03-04"
/>
<rect
id=
"rect7"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,276.000000) "
TAGID=
"22F2-01S3-03-03"
/>
<rect
id=
"rect8"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,306.000000) "
TAGID=
"22F2-01S3-03-02"
/>
<rect
id=
"rect9"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,246.000000) "
TAGID=
"22F2-01S3-04-04"
/>
<rect
id=
"rect10"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,276.000000) "
TAGID=
"22F2-01S3-04-03"
/>
<rect
id=
"rect11"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,306.000000) "
TAGID=
"22F2-01S3-04-02"
/>
<rect
id=
"rect12"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,246.000000) "
TAGID=
"22F2-01S3-05-04"
/>
<rect
id=
"rect13"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,276.000000) "
TAGID=
"22F2-01S3-05-03"
/>
<rect
id=
"rect14"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,306.000000) "
TAGID=
"22F2-01S3-05-02"
/>
<rect
id=
"rect15"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,246.000000) "
TAGID=
"22F2-01S3-06-04"
/>
<rect
id=
"rect16"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,276.000000) "
TAGID=
"22F2-01S3-06-03"
/>
<rect
id=
"rect17"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,306.000000) "
TAGID=
"22F2-01S3-06-02"
/>
<rect
id=
"rect18"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,246.000000) "
TAGID=
"22F2-01S3-07-04"
/>
<rect
id=
"rect19"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,276.000000) "
TAGID=
"22F2-01S3-07-03"
/>
<rect
id=
"rect20"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,306.000000) "
TAGID=
"22F2-01S3-07-02"
/>
<rect
id=
"rect21"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,246.000000) "
TAGID=
"22F2-01S3-08-04"
/>
<rect
id=
"rect22"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,276.000000) "
TAGID=
"22F2-01S3-08-03"
/>
<rect
id=
"rect23"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,306.000000) "
TAGID=
"22F2-01S3-08-02"
/>
<rect
id=
"rect24"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,246.000000) "
TAGID=
"22F2-01S3-09-04"
/>
<rect
id=
"rect25"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,276.000000) "
TAGID=
"22F2-01S3-09-03"
/>
<rect
id=
"rect26"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,306.000000) "
TAGID=
"22F2-01S3-09-02"
/>
<rect
id=
"rect27"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,246.000000) "
TAGID=
"22F2-01S3-10-04"
/>
<rect
id=
"rect28"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,276.000000) "
TAGID=
"22F2-01S3-10-03"
/>
<rect
id=
"rect29"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,306.000000) "
TAGID=
"22F2-01S3-10-02"
/>
<rect
id=
"rect30"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,246.000000) "
TAGID=
"22F2-01S3-11-04"
/>
<rect
id=
"rect31"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,276.000000) "
TAGID=
"22F2-01S3-11-03"
/>
<rect
id=
"rect32"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,306.000000) "
TAGID=
"22F2-01S3-11-02"
/>
<rect
id=
"rect33"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,246.000000) "
TAGID=
"22F2-01S3-12-04"
/>
<rect
id=
"rect34"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,276.000000) "
TAGID=
"22F2-01S3-12-03"
/>
<rect
id=
"rect35"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,306.000000) "
TAGID=
"22F2-01S3-12-02"
/>
<rect
id=
"rect36"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(386.000000,336.000000) "
TAGID=
"22F2-01S3-01-01"
/>
<rect
id=
"rect37"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(416.000000,336.000000) "
TAGID=
"22F2-01S3-02-01"
/>
<rect
id=
"rect38"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(446.000000,336.000000) "
TAGID=
"22F2-01S3-03-01"
/>
<rect
id=
"rect39"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(476.000000,336.000000) "
TAGID=
"22F2-01S3-04-01"
/>
<rect
id=
"rect40"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(506.000000,336.000000) "
TAGID=
"22F2-01S3-05-01"
/>
<rect
id=
"rect41"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(536.000000,336.000000) "
TAGID=
"22F2-01S3-06-01"
/>
<rect
id=
"rect42"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(566.000000,336.000000) "
TAGID=
"22F2-01S3-07-01"
/>
<rect
id=
"rect43"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(596.000000,336.000000) "
TAGID=
"22F2-01S3-08-01"
/>
<rect
id=
"rect44"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(626.000000,336.000000) "
TAGID=
"22F2-01S3-09-01"
/>
<rect
id=
"rect45"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(656.000000,336.000000) "
TAGID=
"22F2-01S3-10-01"
/>
<rect
id=
"rect46"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(686.000000,336.000000) "
TAGID=
"22F2-01S3-11-01"
/>
<rect
id=
"rect47"
x=
"-18"
y=
"-14"
width=
"30"
height=
"30"
fill=
"none"
stroke=
"#fff"
transform=
"translate(716.000000,336.000000) "
TAGID=
"22F2-01S3-12-01"
/>
</svg>
</div>
</
template
>
<
script
>
</
script
>
<
style
>
</
style
>
src/views/ccgl/dpkb/22kwkb/index.vue
View file @
f5507dc5
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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