Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
235256b6
Commit
235256b6
authored
Oct 11, 2025
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增出团通知书
parent
c8d47ffc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2864 additions
and
5 deletions
+2864
-5
index.html
index.html
+2
-1
EditTemplate.vue
src/components/EditTemplate.vue
+4
-4
ConfigManager.vue
src/pages/travel-notice/ConfigManager.vue
+1530
-0
PreviewNotice.vue
src/pages/travel-notice/PreviewNotice.vue
+1320
-0
config.js
src/router/config.js
+8
-0
No files found.
index.html
View file @
235256b6
...
...
@@ -19,7 +19,7 @@
<!-- <script type="text/javascript"
src="https://api.map.baidu.com/api?v=1.0&type=webgl&ak=OBd2bhrqKUSbQGpniCZ996suti9YG7Bc"></script> -->
<!--HK 2024-08-15 新加(避免提示为商用授权) Start-->
<!-- <script type="text/javascript" src="//api.map.baidu.com/api?key=&v=1.1&services=true&s=1"></script>
<script type="text/javascript" src="https://api.map.baidu.com/getscript?v=2.0&ak=&services=&t=20240731110958"></script>
...
...
@@ -29,6 +29,7 @@
<script
src=
"/static/UE/ueditor.all.js"
></script>
<script
src=
"/static/UE/lang/zh-cn/zh-cn.js"
></script>
<script
src=
"/static/UE/ueditor.parse.min.js"
></script>
<script
src=
"https://lf1-cdn-tos.bytegoofy.com/obj/iconpark/icons_41123_6.c70b72af44a6e1d11a661742491bac66.js"
></script>
<!-- <script>
window.difyChatbotConfig = {
token: 'RrfZrrXKACVg4HpB',
...
...
src/components/EditTemplate.vue
View file @
235256b6
...
...
@@ -7,12 +7,12 @@
</
style
>
<
template
>
<div>
<div
:style=
"style"
>
<!-- 图片上传组件辅助-->
<el-upload
:id=
"myImageUploader"
:http-request=
"UploadAttachment"
:show-file-list=
"false"
action=
""
v-if=
"toolbar.image"
>
</el-upload>
<quill-editor
:options=
"editorOption"
:ref=
"myQuillEditor"
@
change=
"onEditorChange($event)"
v-model=
"quillValue"
<quill-editor
:
style=
"quillStyle"
:
options=
"editorOption"
:ref=
"myQuillEditor"
@
change=
"onEditorChange($event)"
v-model=
"quillValue"
class=
"_quill_editor"
>
<div
:id=
"myToolbar"
slot=
"toolbar"
:class=
"
{'toolbarNoborder':toolbar.showToolBar==false}">
<!-- You can also add your own -->
...
...
@@ -610,7 +610,7 @@
Quill
.
register
(
Font
,
true
);
export
default
{
name
:
'edit'
,
props
:
[
"editValue"
,
"toolbarShow"
,
"referenceList"
,
"placeholder"
,
"defaultAccount"
],
props
:
[
"editValue"
,
"toolbarShow"
,
"referenceList"
,
"placeholder"
,
"defaultAccount"
,
"style"
,
"quillStyle"
],
data
()
{
return
{
myToolbar
:
''
,
...
...
@@ -678,7 +678,7 @@
this
.
myQuillEditor
=
"editer_"
+
this
.
guid
();
this
.
myImageUploader
=
"imageUploader_"
+
this
.
guid
();
this
.
editorOption
.
modules
.
toolbar
=
"#"
+
this
.
myToolbar
;
if
(
this
.
toolbarShow
!=
null
)
{
for
(
let
key
in
this
.
toolbarShow
)
{
this
.
toolbar
[
key
]
=
this
.
toolbarShow
[
key
];
...
...
src/pages/travel-notice/ConfigManager.vue
0 → 100644
View file @
235256b6
This diff is collapsed.
Click to expand it.
src/pages/travel-notice/PreviewNotice.vue
0 → 100644
View file @
235256b6
This diff is collapsed.
Click to expand it.
src/router/config.js
View file @
235256b6
...
...
@@ -6326,6 +6326,14 @@ export default {
meta
:
{
title
:
'模板编辑'
},
},
{
path
:
'/TravelNoticeConfig'
,
name
:
'TravelNoticeConfig'
,
component
:
resolve
=>
require
([
'@/pages/travel-notice/ConfigManager'
],
resolve
),
meta
:
{
title
:
'出团通知书配置管理'
},
}
]
},
...
...
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