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

remove log

parent 4c1b5376
......@@ -64,7 +64,6 @@ export default class MyVideo extends Vue {
function onPlayerReady() {
// const myContainer = this.addChild("MyContainer");
this.addChild("DogTrack");
console.log("showCloseButton", _this.showCloseButton);
if (_this.showCloseButton) {
this.addChild("CloseButton");
this.getChild("CloseButton").on("close", function () {
......
......@@ -22,9 +22,9 @@ class DogTrack extends Component {
player.on("ended", () => {
this.arrayIndex = 0;
})
player.on("ready", () => {
console.log("ready")
})
// player.on("ready", () => {
// console.log("ready")
// })
}
// fullScreenChange(e, player) {
......
......@@ -175,8 +175,6 @@ export default class AiSearch extends BaseVue {
for (let i = 0; i < keys.length; i++) {
const key = keys[i];
const val = newVal[key];
const typeStr = typeof val;
console.log("aaa", key, val, typeStr);
if (
key === "current" ||
key === "size" ||
......@@ -216,7 +214,6 @@ export default class AiSearch extends BaseVue {
this.total = rp.data.total;
}
handleQuery() {
console.log("query", this.queryData);
if (this.queryData.beginTime && this.queryData.endTime) {
if (this.queryData.beginTime > this.queryData.endTime) {
this.myDialog.show();
......
......@@ -121,7 +121,7 @@ export default class Dashboard extends BaseVue {
async handlePlay(dog: DogData): Promise<void> {
if (!dog) return;
console.log("dogInfo", dog);
// console.log("dogInfo", dog);
this.currentDogId = dog.id;
const this_ = this;
//用异步是为了防止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