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
6f4f0bab
Commit
6f4f0bab
authored
Aug 06, 2024
by
zhengke
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/viitto/pptist
parents
cac29852
846eb957
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
11 additions
and
10570 deletions
+11
-10570
.gitignore
.gitignore
+1
-0
auto-imports.d.ts
auto-imports.d.ts
+0
-11
App.vue
src/App.vue
+0
-1
cellList.vue
src/components/CloudDisk/cellList.vue
+0
-1
index.vue
src/components/Maps/index.vue
+0
-1
useMap.ts
src/components/Maps/useMap.ts
+0
-2
AutoLogin.vue
src/views/Auth/AutoLogin.vue
+1
-1
Product.vue
src/views/Company/Product.vue
+0
-1
Editor.vue
src/views/Editor/Editor.vue
+0
-1
index.vue
src/views/Editor/EditorHeader/index.vue
+1
-1
Download.vue
src/views/SellTemplate/Download.vue
+1
-1
LogoDisposition.vue
src/views/TeamCenter/LogoDisposition.vue
+1
-1
OrgInfo.vue
src/views/TeamCenter/OrgInfo.vue
+0
-1
Setting.vue
src/views/UserCenter/Setting.vue
+1
-1
InviteMember.vue
src/views/components/Team/InviteMember.vue
+0
-2
ProsemirrorEditor.vue
src/views/components/element/ProsemirrorEditor.vue
+3
-1
index.vue
src/views/components/element/TextElement/index.vue
+2
-1
yarn.lock
yarn.lock
+0
-10542
No files found.
.gitignore
View file @
6f4f0bab
...
...
@@ -23,3 +23,4 @@ pnpm-debug.log*
package-lock.json
yarn.lock
components.d.ts
auto-imports.d.ts
auto-imports.d.ts
deleted
100644 → 0
View file @
cac29852
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// noinspection JSUnusedGlobalSymbols
// Generated by unplugin-auto-import
export
{}
declare
global
{
const
ElLoading
:
typeof
import
(
'element-plus/es'
)[
'ElLoading'
]
const
ElMessage
:
typeof
import
(
'element-plus/es'
)[
'ElMessage'
]
const
ElMessageBox
:
typeof
import
(
'element-plus/es'
)[
'ElMessageBox'
]
}
src/App.vue
View file @
6f4f0bab
...
...
@@ -64,7 +64,6 @@ onMounted(() => {
const
rules
=
[
'/editor/'
,
'/team_editor/'
,
'/manager_template/'
,
'/create_template/'
]
window
.
onbeforeunload
=
function
(
event
)
{
const
currentUrl
=
window
.
location
.
pathname
;
console
.
log
(
currentUrl
)
const
shouldShowWarning
=
rules
.
some
(
rule
=>
currentUrl
.
includes
(
rule
));
if
(
shouldShowWarning
)
{
event
.
preventDefault
();
...
...
src/components/CloudDisk/cellList.vue
View file @
6f4f0bab
...
...
@@ -125,7 +125,6 @@
item
.
check
=
!
item
.
check
let
str
=
item
.
DetailsId
;
let
i
=
props
.
Parent
.
SelectedDatas
.
indexOf
(
str
)
// 判断选中列表中是否包含这个点击的div
console
.
log
(
val
,
item
,
i
);
if
(
i
<
0
)
{
// multipleSelection.value.push(item); // 如果不包含就加进去
}
else
{
...
...
src/components/Maps/index.vue
View file @
6f4f0bab
...
...
@@ -177,7 +177,6 @@ const createScriptMap = (r:any)=>{
}
return
city
})
console
.
log
(
cities
)
setMarks
(
cities
)
setLines
(
points
)
},
1000
);
...
...
src/components/Maps/useMap.ts
View file @
6f4f0bab
...
...
@@ -235,7 +235,6 @@ export default (MapDOM: Ref<HTMLElement | undefined>, loadingStatus: Ref<boolean
label
.
fill
=
am4core
.
color
(
fillColor
.
value
.
realColor
)
label
.
currentText
=
x
.
name
label
.
text
=
x
.
name
console
.
log
(
x
.
name
)
// labelChildren.children.getIndex(0).hide()
// label.marginBotton=0
label
.
y
=
6
...
...
@@ -806,7 +805,6 @@ export default (MapDOM: Ref<HTMLElement | undefined>, loadingStatus: Ref<boolean
x
.
fill
=
am4core
.
color
(
color
);
})
}
console
.
log
(
countrySeries
.
mapPolygons
)
countrySeries
.
mapPolygons
.
template
.
stroke
=
am4core
.
color
(
n
.
borderColor
);
countrySeries
.
mapPolygons
.
template
.
strokeWidth
=
n
.
border
if
(
!
countrySeries
.
include
)
countrySeries
.
geodataSource
.
load
();
...
...
src/views/Auth/AutoLogin.vue
View file @
6f4f0bab
...
...
@@ -24,7 +24,7 @@ const userLoginHandler = async ()=>{
if
(
param
.
uid
&&
param
.
uid
!=
''
){
const
response
=
await
useUserStore
().
setUserAutoLoginAsync
(
param
.
uid
)
console
.
log
(
param
)
//
console.log(param)
//if(response.isSuccess){
if
(
param
.
model
==
'0'
)
{
router
.
push
({
...
...
src/views/Company/Product.vue
View file @
6f4f0bab
...
...
@@ -122,7 +122,6 @@ const colors = ref<string[]>(['#3556F9','#46CDD9','#591EDB'])
const
formatProductHandler
=
(
data
:
any
[])
=>
{
if
(
Array
.
isArray
(
data
))
{
products
.
value
=
data
.
filter
((
x
)
=>
x
.
viptype
==
VipType
.
TEAM
);
console
.
log
(
products
.
value
);
}
};
...
...
src/views/Editor/Editor.vue
View file @
6f4f0bab
...
...
@@ -77,7 +77,6 @@ const initOpModify = async ()=>{
}
const
initOpCreate
=
()
=>
{
console
.
log
(
params
)
const
ConfigId
=
parseInt
(
params
.
configId
.
toString
())
searchData
.
value
.
sellId
=
0
searchData
.
value
.
sellTempId
=
0
...
...
src/views/Editor/EditorHeader/index.vue
View file @
6f4f0bab
...
...
@@ -354,7 +354,7 @@ const UpdateItinerary = async () => {
}
const
result
=
await
ConfigService
.
SetTripOtherTemp
(
queryMsg
);
if
(
result
.
data
.
resultCode
==
1
)
{
console
.
log
(
'更新行程数据成功-----'
)
//
console.log('更新行程数据成功-----')
}
datas
.
loading
=
false
}
...
...
src/views/SellTemplate/Download.vue
View file @
6f4f0bab
...
...
@@ -84,7 +84,7 @@ const handlePreview = ()=> {
xhr
.
responseType
=
'blob'
xhr
.
onprogress
=
(
e
:
any
)
=>
{
progress
.
value
=
parseInt
(((
e
.
loaded
/
e
.
total
)
*
100
).
toString
())
console
.
log
(
e
)
//
console.log(e)
}
xhr
.
onload
=
()
=>
{
isDownLoading
.
value
=
false
...
...
src/views/TeamCenter/LogoDisposition.vue
View file @
6f4f0bab
...
...
@@ -393,7 +393,7 @@
cropper
.
reset
()
}
const
ready
=
()
=>
{
console
.
log
(
'Cropper is ready.'
)
//
console.log('Cropper is ready.')
}
const
insertImageElement
=
async
(
files
:
FileList
,
index
:
number
)
=>
{
let
fileType
=
files
[
0
].
name
.
split
(
'.'
)
...
...
src/views/TeamCenter/OrgInfo.vue
View file @
6f4f0bab
...
...
@@ -62,7 +62,6 @@ const loading = ref(false)
const
handleChangeMakerImage
=
(
uploadFile
:
any
,
uploadFiles
:
any
)
=>
{
const
raw
=
uploadFile
.
raw
console
.
log
(
raw
.
type
)
if
(
raw
.
type
==
'image/jpeg'
||
raw
.
type
==
'image/png'
||
raw
.
type
==
'image/x-icon'
){
if
(
raw
.
size
<=
1024
*
1024
*
5
){
var
reader
=
new
FileReader
();
...
...
src/views/UserCenter/Setting.vue
View file @
6f4f0bab
...
...
@@ -204,7 +204,7 @@ const getUploadActionUrl=()=>{
}
const
handleAvatarSuccess
=
async
(
res
:
any
)
=>
{
console
.
log
(
"handleAvatarSuccess_res"
,
res
);
//
console.log("handleAvatarSuccess_res",res);
}
const
beforeAvatarUpload
=
async
(
res
:
any
)
=>
{
...
...
src/views/components/Team/InviteMember.vue
View file @
6f4f0bab
...
...
@@ -223,7 +223,6 @@ const getUploadActionUrl=()=>{
}
const
handleAvatarSuccess
=
(
res
:
any
)
=>
{
console
.
log
(
"handleAvatarSuccess_res"
,
res
);
if
(
res
.
data
){
UploadResults
.
value
=
res
.
data
if
(
res
.
data
.
successNum
>
0
)
emit
(
'imported'
)
...
...
@@ -234,7 +233,6 @@ const handleAvatarSuccess= (res:any)=>{
const
beforeAvatarUpload
=
(
res
:
any
)
=>
{
closeUploadRes
()
dialogVisible
.
value
=
true
console
.
log
(
"beforeAvatarUpload_res"
,
res
);
// fileList.value.unshift({
// name: res.name+new Date().getTime(),
// url: ''
...
...
src/views/components/element/ProsemirrorEditor.vue
View file @
6f4f0bab
...
...
@@ -70,6 +70,7 @@ const handleClick = debounce(function() {
color
:
props
.
defaultColor
,
fontname
:
props
.
defaultFontName
,
})
//console.log('handleClick-debounce',attrs)
mainStore
.
setRichtextAttrs
(
attrs
)
},
30
,
{
trailing
:
true
})
...
...
@@ -97,7 +98,8 @@ watch(() => props.editable, () => {
const
focus
=
()
=>
editorView
.
focus
()
const
selectAll
=
()
=>
autoSelectAll
(
editorView
)
const
clearSelect
=
()
=>
clearSelection
(
editorView
)
defineExpose
({
focus
,
selectAll
,
clearSelect
})
const
setClick
=
()
=>
handleClick
()
defineExpose
({
focus
,
selectAll
,
clearSelect
,
setClick
})
// 执行富文本命令(可以是一个或多个)
// 部分命令在执行前先判断当前选区是否为空,如果选区为空先进行全选操作
...
...
src/views/components/element/TextElement/index.vue
View file @
6f4f0bab
...
...
@@ -107,7 +107,8 @@ const handleSelectElement = (e: MouseEvent | TouchEvent, canMove = true) => {
if
(
e
.
button
&&
e
.
button
==
1
)
return
if
(
props
.
elementInfo
.
lock
)
return
e
.
stopPropagation
()
//console.log('触发选中元素:',props.elementInfo.defaultFontName)
editorRef
.
value
?.
setClick
()
// if(!searchData.value.isTeamManage) mainStore.setToolbarState(ToolbarStates.EL_NORMALDATA)
props
.
selectElement
(
e
,
props
.
elementInfo
,
canMove
)
}
...
...
yarn.lock
deleted
100644 → 0
View file @
cac29852
This diff is collapsed.
Click to expand it.
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