Commit f5abc10d authored by 朱松文's avatar 朱松文

remove log

parent 4c1b5376
...@@ -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 () {
......
...@@ -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) {
......
...@@ -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();
......
...@@ -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控件还没有挂载好
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment