Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pptist
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
viitto
pptist
Commits
b728b2ae
Commit
b728b2ae
authored
Nov 27, 2023
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化首页 模版新增标签
parent
3967b564
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
4 deletions
+59
-4
ElementTemplateData.vue
src/views/Editor/Toolbar/ElementTemplateData.vue
+57
-2
Index.vue
src/views/Market/Index.vue
+2
-2
No files found.
src/views/Editor/Toolbar/ElementTemplateData.vue
View file @
b728b2ae
...
@@ -77,6 +77,30 @@
...
@@ -77,6 +77,30 @@
</el-select>
</el-select>
</div>
</div>
</
template
>
</
template
>
<p
class=
"q-mt-md"
><span
class=
"Required q-mr-md"
></span>
标签:
</p>
<div
class=
"row wrap q-mt-md"
>
<el-tag
v-for=
"tag in dynamicTags"
:key=
"tag"
class=
"mx-1 q-mr-md q-mb-md"
closable
:disable-transitions=
"false"
@
close=
"handleClose(tag)"
>
{{ tag }}
</el-tag>
<el-input
v-if=
"inputVisible"
ref=
"InputRef"
v-model=
"inputValue"
class=
"ml-1 w-20"
size=
"small"
@
keyup
.
enter=
"handleInputConfirm"
@
blur=
"handleInputConfirm"
/>
<el-button
v-else
class=
"button-new-tag ml-1"
size=
"small"
@
click=
"showInput"
>
+ 添加标签
</el-button>
</div>
<p
class=
"q-mt-md"
><span
class=
"Required q-mr-md"
>
*
</span>
选择颜色:
</p>
<p
class=
"q-mt-md"
><span
class=
"Required q-mr-md"
>
*
</span>
选择颜色:
</p>
<div
class=
"row wrap q-mt-md"
>
<div
class=
"row wrap q-mt-md"
>
<el-select
v-model=
"queryObj.ColorStr"
class=
"m-2"
placeholder=
"请选择颜色"
<el-select
v-model=
"queryObj.ColorStr"
class=
"m-2"
placeholder=
"请选择颜色"
...
@@ -105,8 +129,10 @@
...
@@ -105,8 +129,10 @@
</template>
</template>
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
{
computed
,
ref
,
reactive
,
watch
,
inject
}
from
'vue'
import
{
computed
,
ref
,
reactive
,
watch
,
inject
,
nextTick
}
from
'vue'
import
{
storeToRefs
}
from
'pinia'
import
{
storeToRefs
}
from
'pinia'
import
{
ElInput
}
from
'element-plus'
import
{
useMainStore
,
useSlidesStore
,
useScreenStore
}
from
'@/store'
import
{
useMainStore
,
useSlidesStore
,
useScreenStore
}
from
'@/store'
import
LineService
from
'@/services/LineService'
import
LineService
from
'@/services/LineService'
import
ConfigService
from
'@/services/ConfigService'
import
ConfigService
from
'@/services/ConfigService'
...
@@ -115,7 +141,7 @@
...
@@ -115,7 +141,7 @@
const
datas
=
reactive
({
const
datas
=
reactive
({
DataSource
:{},
DataSource
:{},
CountryValue
:
null
CountryValue
:
null
,
})
})
const
dispositionObj
=
ref
({}
as
any
)
const
dispositionObj
=
ref
({}
as
any
)
const
queryObj
=
ref
({}
as
any
)
const
queryObj
=
ref
({}
as
any
)
...
@@ -125,6 +151,14 @@
...
@@ -125,6 +151,14 @@
const
Series
=
ref
([]
as
Array
<
any
>
)
//系列
const
Series
=
ref
([]
as
Array
<
any
>
)
//系列
const
cursors
=
[]
as
Array
<
any
>
const
cursors
=
[]
as
Array
<
any
>
const
inputValue
=
ref
(
''
)
const
dynamicTags
=
ref
([])
const
inputVisible
=
ref
(
false
)
const
InputRef
=
ref
<
InstanceType
<
typeof
ElInput
>>
()
if
(
queryObj
.
value
.
TagJsonStr
!=
''
){
dynamicTags
.
value
=
queryObj
.
value
.
TagJsonStr
.
split
(
','
)
}
const
slidesStore
=
useSlidesStore
()
const
slidesStore
=
useSlidesStore
()
const
{
slides
,
slideIndex
}
=
storeToRefs
(
slidesStore
)
const
{
slides
,
slideIndex
}
=
storeToRefs
(
slidesStore
)
...
@@ -145,6 +179,27 @@
...
@@ -145,6 +179,27 @@
slidesStore
.
setSlides
(
newSlides
)
slidesStore
.
setSlides
(
newSlides
)
})
})
const
showInput
=
()
=>
{
inputVisible
.
value
=
true
nextTick
(()
=>
{
InputRef
.
value
.
input
.
focus
()
})
}
const
handleClose
=
(
tag
:
string
)
=>
{
dynamicTags
.
value
.
splice
(
dynamicTags
.
value
.
indexOf
(
tag
),
1
)
queryObj
.
value
.
TagJsonStr
=
dynamicTags
.
value
.
join
(
','
)
}
const
handleInputConfirm
=
()
=>
{
if
(
inputValue
.
value
)
{
dynamicTags
.
value
.
push
(
inputValue
.
value
)
}
queryObj
.
value
.
TagJsonStr
=
dynamicTags
.
value
.
join
(
','
)
inputVisible
.
value
=
false
inputValue
.
value
=
''
}
const
setDialogForExport
=
(
type
:
DialogForExportTypes
)
=>
{
const
setDialogForExport
=
(
type
:
DialogForExportTypes
)
=>
{
mainStore
.
setDialogForExport
(
type
)
mainStore
.
setDialogForExport
(
type
)
mainMenuVisible
.
value
=
false
mainMenuVisible
.
value
=
false
...
...
src/views/Market/Index.vue
View file @
b728b2ae
...
@@ -64,7 +64,7 @@
...
@@ -64,7 +64,7 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
style=
"
height: 750px;overflow: auto
;"
v-loading=
"loading"
>
<div
style=
"
margin-top: 20px
;"
v-loading=
"loading"
>
<div
v-if=
"dataList.length>0"
class=
"q-mt-lg row wrap bg-white rounded"
style=
"padding: 30px 10px 0 10px;"
>
<div
v-if=
"dataList.length>0"
class=
"q-mt-lg row wrap bg-white rounded"
style=
"padding: 30px 10px 0 10px;"
>
<
template
v-for=
"(item,index) in dataList"
>
<
template
v-for=
"(item,index) in dataList"
>
<div
class=
"MarketIndexListBox"
>
<div
class=
"MarketIndexListBox"
>
...
@@ -79,7 +79,7 @@
...
@@ -79,7 +79,7 @@
</
template
>
</
template
>
</div>
</div>
<div
v-else
class=
"q-mt-lg bg-white rounded"
style=
"padding: 30px 10px 30px 10px;text-align: center;color: #909399;"
>
暂无数据
</div>
<div
v-else
class=
"q-mt-lg bg-white rounded"
style=
"padding: 30px 10px 30px 10px;text-align: center;color: #909399;"
>
暂无数据
</div>
<div
v-if=
"dataList.length>0"
class=
"q-mt-lg row"
style=
"justify-content: center;"
>
<div
v-if=
"dataList.length>0"
class=
"q-mt-lg row"
style=
"justify-content: center;
margin-bottom: 40px
"
>
<!-- hide-on-single-page -->
<!-- hide-on-single-page -->
<el-pagination
<el-pagination
background
background
...
...
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