Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
najiu-skynet-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
najiu-frontend
najiu-skynet-admin
Commits
f5abc10d
Commit
f5abc10d
authored
Oct 26, 2021
by
朱松文
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove log
parent
4c1b5376
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
8 deletions
+4
-8
index.vue
src/components/MyVideo/index.vue
+0
-1
index.ts
src/components/MyVideo/track/index.ts
+3
-3
index.vue
src/views/aiSearch/index.vue
+0
-3
index.vue
src/views/dashboard/index.vue
+1
-1
No files found.
src/components/MyVideo/index.vue
View file @
f5abc10d
...
@@ -64,7 +64,6 @@ export default class MyVideo extends Vue {
...
@@ -64,7 +64,6 @@ export default class MyVideo extends Vue {
function
onPlayerReady
()
{
function
onPlayerReady
()
{
// const myContainer = this.addChild("MyContainer");
// const myContainer = this.addChild("MyContainer");
this
.
addChild
(
"
DogTrack
"
);
this
.
addChild
(
"
DogTrack
"
);
console
.
log
(
"
showCloseButton
"
,
_this
.
showCloseButton
);
if
(
_this
.
showCloseButton
)
{
if
(
_this
.
showCloseButton
)
{
this
.
addChild
(
"
CloseButton
"
);
this
.
addChild
(
"
CloseButton
"
);
this
.
getChild
(
"
CloseButton
"
).
on
(
"
close
"
,
function
()
{
this
.
getChild
(
"
CloseButton
"
).
on
(
"
close
"
,
function
()
{
...
...
src/components/MyVideo/track/index.ts
View file @
f5abc10d
...
@@ -22,9 +22,9 @@ class DogTrack extends Component {
...
@@ -22,9 +22,9 @@ class DogTrack extends Component {
player
.
on
(
"
ended
"
,
()
=>
{
player
.
on
(
"
ended
"
,
()
=>
{
this
.
arrayIndex
=
0
;
this
.
arrayIndex
=
0
;
})
})
player
.
on
(
"
ready
"
,
()
=>
{
//
player.on("ready", () => {
console
.
log
(
"
ready
"
)
//
console.log("ready")
})
//
})
}
}
// fullScreenChange(e, player) {
// fullScreenChange(e, player) {
...
...
src/views/aiSearch/index.vue
View file @
f5abc10d
...
@@ -175,8 +175,6 @@ export default class AiSearch extends BaseVue {
...
@@ -175,8 +175,6 @@ export default class AiSearch extends BaseVue {
for
(
let
i
=
0
;
i
<
keys
.
length
;
i
++
)
{
for
(
let
i
=
0
;
i
<
keys
.
length
;
i
++
)
{
const
key
=
keys
[
i
];
const
key
=
keys
[
i
];
const
val
=
newVal
[
key
];
const
val
=
newVal
[
key
];
const
typeStr
=
typeof
val
;
console
.
log
(
"
aaa
"
,
key
,
val
,
typeStr
);
if
(
if
(
key
===
"
current
"
||
key
===
"
current
"
||
key
===
"
size
"
||
key
===
"
size
"
||
...
@@ -216,7 +214,6 @@ export default class AiSearch extends BaseVue {
...
@@ -216,7 +214,6 @@ export default class AiSearch extends BaseVue {
this
.
total
=
rp
.
data
.
total
;
this
.
total
=
rp
.
data
.
total
;
}
}
handleQuery
()
{
handleQuery
()
{
console
.
log
(
"
query
"
,
this
.
queryData
);
if
(
this
.
queryData
.
beginTime
&&
this
.
queryData
.
endTime
)
{
if
(
this
.
queryData
.
beginTime
&&
this
.
queryData
.
endTime
)
{
if
(
this
.
queryData
.
beginTime
>
this
.
queryData
.
endTime
)
{
if
(
this
.
queryData
.
beginTime
>
this
.
queryData
.
endTime
)
{
this
.
myDialog
.
show
();
this
.
myDialog
.
show
();
...
...
src/views/dashboard/index.vue
View file @
f5abc10d
...
@@ -121,7 +121,7 @@ export default class Dashboard extends BaseVue {
...
@@ -121,7 +121,7 @@ export default class Dashboard extends BaseVue {
async
handlePlay
(
dog
:
DogData
):
Promise
<
void
>
{
async
handlePlay
(
dog
:
DogData
):
Promise
<
void
>
{
if
(
!
dog
)
return
;
if
(
!
dog
)
return
;
console
.
log
(
"
dogInfo
"
,
dog
);
//
console.log("dogInfo", dog);
this
.
currentDogId
=
dog
.
id
;
this
.
currentDogId
=
dog
.
id
;
const
this_
=
this
;
const
this_
=
this
;
//用异步是为了防止my-vidoe控件还没有挂载好
//用异步是为了防止my-vidoe控件还没有挂载好
...
...
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