|
|
@@ -386,14 +386,8 @@
|
|
|
<!-- 手动添加对话框 -->
|
|
|
<el-dialog :title="this.tltName" :visible.sync="handAddVisible" width="30%">
|
|
|
<div class="handAddBtn" v-show="handAddState == 1">
|
|
|
- <i
|
|
|
- class="el-icon-circle-plus-outline"
|
|
|
- @click="handAddState = 2"
|
|
|
- ></i>
|
|
|
- <i
|
|
|
- class="el-icon-remove-outline"
|
|
|
- @click="handAddState = 3"
|
|
|
- ></i>xie
|
|
|
+ <i class="el-icon-circle-plus-outline" @click="handAddState = 2"></i>
|
|
|
+ <i class="el-icon-remove-outline" @click="handAddState = 3"></i>xie
|
|
|
</div>
|
|
|
<div class="handAddForm" v-show="handAddState == 1">
|
|
|
<el-form ref="ruleForm" :model="form" label-width="80px">
|
|
|
@@ -691,6 +685,7 @@
|
|
|
:close-on-press-escape="false"
|
|
|
:close-on-click-modal="false"
|
|
|
width="60%"
|
|
|
+ @close="imgclose"
|
|
|
>
|
|
|
<ul class="pictureDetails_ul">
|
|
|
<!-- 识别结果 -->
|
|
|
@@ -1470,7 +1465,7 @@ export default {
|
|
|
// if (val == false) {
|
|
|
// this.addFunData = {}
|
|
|
// }
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
@@ -1519,7 +1514,9 @@ export default {
|
|
|
if (flag == 3) {
|
|
|
//删除
|
|
|
if (this.idList.length == 0) {
|
|
|
- this.$message.warning("请选择要删除的图片!");
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.warning("请选择要删除的图片!");
|
|
|
+ }
|
|
|
} else {
|
|
|
this.delImgFun(this.idList);
|
|
|
}
|
|
|
@@ -1538,7 +1535,7 @@ export default {
|
|
|
this.delImgFun("");
|
|
|
}
|
|
|
if (flag == 6) {
|
|
|
- this.$router.push(`/index/messageWarn?id=`+this.id);
|
|
|
+ this.$router.push(`/index/messageWarn?id=` + this.id);
|
|
|
}
|
|
|
if (flag == 7) {
|
|
|
this.downBtnState = !this.downBtnState;
|
|
|
@@ -1634,6 +1631,7 @@ export default {
|
|
|
|
|
|
//改变page
|
|
|
changePage(val) {
|
|
|
+ this.checkAll = false;
|
|
|
this.listIndex = null;
|
|
|
this.queryInfo.page = val;
|
|
|
// this.imgListData(val)
|
|
|
@@ -1734,29 +1732,35 @@ export default {
|
|
|
return num;
|
|
|
});
|
|
|
this.pictureDetailsFunDataObj = obj;
|
|
|
- this.$message({
|
|
|
- showClose: true,
|
|
|
- message: "识别成功!",
|
|
|
- type: "success",
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: "识别成功!",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ }
|
|
|
} else {
|
|
|
// 识别失败
|
|
|
- this.$message({
|
|
|
- showClose: true,
|
|
|
- message: res.data.message,
|
|
|
- type: "warning",
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: res.data.message,
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
that.loading = false;
|
|
|
console.log(err);
|
|
|
// 识别失败
|
|
|
- this.$message({
|
|
|
- showClose: true,
|
|
|
- message: "识别失败!",
|
|
|
- type: "warning",
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: "识别失败!",
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
|
|
|
@@ -1819,7 +1823,7 @@ export default {
|
|
|
for (var i = 0; i < dar.length; i++) {
|
|
|
arr.push({
|
|
|
data: [dar[i].number, dar[i].nums],
|
|
|
- name:dar[i].result_list,
|
|
|
+ name: dar[i].result_list,
|
|
|
index: i,
|
|
|
});
|
|
|
}
|
|
|
@@ -1832,18 +1836,22 @@ export default {
|
|
|
this.pictureDetailsFunDataObj = {};
|
|
|
this.pictureDetailsFunDataObj = obj;
|
|
|
// console.log(this.pictureDetailsFunDataObj.indentify_photo);
|
|
|
- this.$message({
|
|
|
- showClose: true,
|
|
|
- message: "识别成功!",
|
|
|
- type: "success",
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: "识别成功!",
|
|
|
+ type: "success",
|
|
|
+ });
|
|
|
+ }
|
|
|
} else {
|
|
|
// 识别失败
|
|
|
- this.$message({
|
|
|
- showClose: true,
|
|
|
- message: res.data.message,
|
|
|
- type: "warning",
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ showClose: true,
|
|
|
+ message: res.data.message,
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
@@ -1897,7 +1905,9 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
.catch(() => {
|
|
|
- this.$message.error("获取数据失败!");
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.error("获取数据失败!");
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
// 手动控制弹框
|
|
|
@@ -1952,30 +1962,38 @@ export default {
|
|
|
var data = res.data.data;
|
|
|
if (data == true && res.data.message == "") {
|
|
|
//成功
|
|
|
- this.$message({
|
|
|
- message: "删除成功",
|
|
|
- type: "success",
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
// that.resetField('ruleForm')
|
|
|
that.statisticsData(that.addFunData.ids);
|
|
|
} else if (data == null && res.data.message !== "") {
|
|
|
//失败
|
|
|
- this.$message.error({
|
|
|
- message: res.data.message,
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.error({
|
|
|
+ message: res.data.message,
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
- this.$message.error(err);
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.error(err);
|
|
|
+ }
|
|
|
});
|
|
|
})
|
|
|
.catch(() => {
|
|
|
- that.$message({
|
|
|
- type: "info",
|
|
|
- message: "已取消删除",
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ that.$message({
|
|
|
+ type: "info",
|
|
|
+ message: "已取消删除",
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
//图片列表数据请求
|
|
|
@@ -2000,11 +2018,11 @@ export default {
|
|
|
this.disableVal = res.data.data.disable; // 该设备是否有识别功能 0 没有 1有
|
|
|
if (res.data.data.data.length !== 0 && res.data.data.num !== 0) {
|
|
|
// 有数据
|
|
|
- this.$message({
|
|
|
- showClose: true,
|
|
|
- message: "数据获取成功",
|
|
|
- type: "success",
|
|
|
- });
|
|
|
+ // this.$message({
|
|
|
+ // showClose: true,
|
|
|
+ // message: "数据获取成功",
|
|
|
+ // type: "success",
|
|
|
+ // });
|
|
|
var data = res.data.data.data;
|
|
|
this.totalNum = res.data.data.num;
|
|
|
var arr = [];
|
|
|
@@ -2083,7 +2101,9 @@ export default {
|
|
|
this.imgListShow = true;
|
|
|
|
|
|
if (res.data.message == "") {
|
|
|
- this.$message.success("图片刷新成功");
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.success("图片刷新成功");
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
// 没数据
|
|
|
@@ -2110,11 +2130,13 @@ export default {
|
|
|
let that = this;
|
|
|
console.log(that.addFunData);
|
|
|
if (!this.form.pest_name || !this.form.pest_num) {
|
|
|
- this.$message({
|
|
|
- message: "请将数据填写完整",
|
|
|
- type: "error",
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ message: "请将数据填写完整",
|
|
|
+ type: "error",
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
return false;
|
|
|
}
|
|
|
if (that.tltName == "编辑") {
|
|
|
@@ -2138,20 +2160,24 @@ export default {
|
|
|
var data = res.data.data;
|
|
|
if (data == true && res.data.message == "") {
|
|
|
//成功
|
|
|
- this.$message({
|
|
|
- message: "修改成功",
|
|
|
- type: "success",
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ message: "修改成功",
|
|
|
+ type: "success",
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
that.handAddVisible = false;
|
|
|
// that.resetField('ruleForm')
|
|
|
that.statisticsData(that.addFunData.ids);
|
|
|
} else if (data == null && res.data.message !== "") {
|
|
|
//失败
|
|
|
- this.$message.error({
|
|
|
- message: res.data.message,
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.error({
|
|
|
+ message: res.data.message,
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
@@ -2177,19 +2203,23 @@ export default {
|
|
|
var data = res.data.data;
|
|
|
if (data == true && res.data.message == "") {
|
|
|
//成功
|
|
|
- this.$message({
|
|
|
- message: "添加成功",
|
|
|
- type: "success",
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ message: "添加成功",
|
|
|
+ type: "success",
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
that.handAddVisible = false;
|
|
|
that.resetField("ruleForm");
|
|
|
} else if (data == null && res.data.message !== "") {
|
|
|
//失败
|
|
|
- this.$message.error({
|
|
|
- message: res.data.message,
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.error({
|
|
|
+ message: res.data.message,
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
@@ -2208,10 +2238,12 @@ export default {
|
|
|
let that = this;
|
|
|
//判断值是否为空
|
|
|
if (that.selectItem == "") {
|
|
|
- this.$message.error({
|
|
|
- message: "害虫名称不能为空!!",
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.error({
|
|
|
+ message: "害虫名称不能为空!!",
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
} else if (that.selectItem !== "") {
|
|
|
let postData = that.qs.stringify({
|
|
|
ret: "add_pest",
|
|
|
@@ -2228,16 +2260,22 @@ export default {
|
|
|
var data = res.data.data;
|
|
|
if (data !== null && res.data.message == "") {
|
|
|
that.selectItem = "";
|
|
|
- this.$message({
|
|
|
- message: "添加成功",
|
|
|
- type: "success",
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ message: "添加成功",
|
|
|
+ type: "success",
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
} else if (data == null && res.data.message !== "") {
|
|
|
- this.$message.error({
|
|
|
- message: res.data.message,
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.error({
|
|
|
+ message: res.data.message,
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
@@ -2285,18 +2323,22 @@ export default {
|
|
|
.then((res) => {
|
|
|
var data = res.data.data;
|
|
|
if (data && res.data.message == "") {
|
|
|
- this.$message({
|
|
|
- message: "删除成功",
|
|
|
- type: "success",
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ message: "删除成功",
|
|
|
+ type: "success",
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
that.handAddState = 1;
|
|
|
that.getBack(); //重新请求害虫名称数据
|
|
|
} else if (data == null && res.data.message == "删除失败") {
|
|
|
- this.$message.error({
|
|
|
- message: "删除失败",
|
|
|
- duration: 1500,
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.error({
|
|
|
+ message: "删除失败",
|
|
|
+ duration: 1500,
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
@@ -2357,20 +2399,24 @@ export default {
|
|
|
}),
|
|
|
}).then((res) => {
|
|
|
if (res.data.message == "") {
|
|
|
- this.$message({
|
|
|
- type: "success",
|
|
|
- message: "删除成功!",
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ type: "success",
|
|
|
+ message: "删除成功!",
|
|
|
+ });
|
|
|
+ }
|
|
|
this.equipStatusCheck("4");
|
|
|
this.imgListData(); //图片列表数据请求
|
|
|
}
|
|
|
});
|
|
|
})
|
|
|
.catch(() => {
|
|
|
- this.$message({
|
|
|
- type: "info",
|
|
|
- message: "已取消删除",
|
|
|
- });
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message({
|
|
|
+ type: "info",
|
|
|
+ message: "已取消删除",
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
//返回上一页
|
|
|
@@ -2559,7 +2605,9 @@ export default {
|
|
|
console.log(this.imgDataList[0].name);
|
|
|
let that = this;
|
|
|
let id = that.$route.query.id;
|
|
|
- this.$message.success("图片下载中!");
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.success("图片下载中!");
|
|
|
+ }
|
|
|
var idList = JSON.stringify(id_list.length == 0 ? "" : id_list);
|
|
|
var timeList = JSON.stringify(time_list.length == 0 ? "" : time_list);
|
|
|
var file_path = "";
|
|
|
@@ -2637,11 +2685,12 @@ export default {
|
|
|
url: "/api/api_gateway?method=monitor_manage.cbd_manage.cbd_photo_discern",
|
|
|
data: this.qs.stringify({
|
|
|
img_id: this.addFunData.ids,
|
|
|
- ret:"see",
|
|
|
+ ret: "see",
|
|
|
}),
|
|
|
}).then((res) => {
|
|
|
if (res.data.message == "") {
|
|
|
- this.currentImage = res.data.data.indentify_photo || res.data.data.addr;
|
|
|
+ this.currentImage =
|
|
|
+ res.data.data.indentify_photo || res.data.data.addr;
|
|
|
this.tagImgId = this.addFunData.ids;
|
|
|
// this.mgMark = data.mark;
|
|
|
// console.log(data);
|
|
|
@@ -2653,8 +2702,12 @@ export default {
|
|
|
this.renderData(JSON.parse(this.addFunData.mark));
|
|
|
});
|
|
|
} else {
|
|
|
- this.$message.warning(res.data.message);
|
|
|
- this.currentImage = this.pictureDetailsFunDataObj.indentify_photo || this.pictureDetailsFunDataObj.addr;
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.warning(res.data.message);
|
|
|
+ }
|
|
|
+ this.currentImage =
|
|
|
+ this.pictureDetailsFunDataObj.indentify_photo ||
|
|
|
+ this.pictureDetailsFunDataObj.addr;
|
|
|
this.imgTagDataVisible = true;
|
|
|
}
|
|
|
});
|
|
|
@@ -2702,23 +2755,29 @@ export default {
|
|
|
data: this.qs.stringify({
|
|
|
img_id: this.addFunData.ids,
|
|
|
mark: JSON.stringify(this.setdata),
|
|
|
- device_type:"cbd"
|
|
|
+ device_type: "cbd",
|
|
|
}),
|
|
|
}).then((res) => {
|
|
|
if (res.data.data) {
|
|
|
- this.$message.success("提交成功!");
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.success("提交成功!");
|
|
|
+ }
|
|
|
this.$nextTick(() => {
|
|
|
this.renderData(JSON.parse(res.data.data));
|
|
|
});
|
|
|
} else {
|
|
|
- this.$message.warning(res.data.message);
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
+ this.$message.warning(res.data.message);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
this.imgTagDataVisible = false;
|
|
|
this.imgListData();
|
|
|
- var obj={
|
|
|
- ids:this.addFunData.ids
|
|
|
- }
|
|
|
- this.pictureDetailsFunAxios(obj)
|
|
|
+ var obj = {
|
|
|
+ ids: this.addFunData.ids,
|
|
|
+ };
|
|
|
+ this.pictureDetailsFunAxios(obj);
|
|
|
});
|
|
|
},
|
|
|
|
|
|
@@ -2742,7 +2801,9 @@ export default {
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
console.log(err);
|
|
|
+ if (document.getElementsByClassName("el-message").length == 0) {
|
|
|
this.$message.error("操作失败,请重试!");
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
|
|
|
@@ -2758,7 +2819,7 @@ export default {
|
|
|
method: "POST",
|
|
|
url: "/api/api_gateway?method=monitor_manage.cbd_manage.cbd_control_info",
|
|
|
data: that.qs.stringify({
|
|
|
- d_id:that.$route.query.d_id,
|
|
|
+ d_id: that.$route.query.d_id,
|
|
|
}),
|
|
|
})
|
|
|
.then((res) => {
|
|
|
@@ -3081,9 +3142,15 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
+ imgclose() {
|
|
|
+ // console.log(1)
|
|
|
+ // this.pictureDetailsFunDataObj= {}
|
|
|
+ // this.pictureDetailsFunDataObj.indentify_photo = ""
|
|
|
+ },
|
|
|
// 图片详情
|
|
|
pictureDetailsFun(data) {
|
|
|
// console.log(data.mark);
|
|
|
+ this.pictureDetailsFunDataObj = {};
|
|
|
this.$viewer.hide();
|
|
|
this.loading = true;
|
|
|
this.pictureDetails = true;
|
|
|
@@ -3105,7 +3172,7 @@ export default {
|
|
|
pictureDetailsFunAxios(data) {
|
|
|
var postData = this.qs.stringify({
|
|
|
img_id: data.ids,
|
|
|
- cmd:"cbd"
|
|
|
+ cmd: "cbd",
|
|
|
});
|
|
|
this.$axios({
|
|
|
method: "POST",
|
|
|
@@ -3153,7 +3220,7 @@ export default {
|
|
|
|
|
|
pictureDetailsFunData(data) {
|
|
|
// 处理mark中的列表数据
|
|
|
- if (data&&data.mark) {
|
|
|
+ if (data && data.mark) {
|
|
|
var list = JSON.parse(data.mark);
|
|
|
var arr = [];
|
|
|
if (isArray(list)) {
|
|
|
@@ -3192,7 +3259,12 @@ export default {
|
|
|
}
|
|
|
|
|
|
// 判断当前是否有手动标注数据
|
|
|
- if (data &&data.mark !== null && data.mark !== undefined && data.mark !== "") {
|
|
|
+ if (
|
|
|
+ data &&
|
|
|
+ data.mark !== null &&
|
|
|
+ data.mark !== undefined &&
|
|
|
+ data.mark !== ""
|
|
|
+ ) {
|
|
|
this.imgShow = false;
|
|
|
this.imgDiscern = data.indentify_photo || data.addr;
|
|
|
this.$nextTick(() => {
|
|
|
@@ -3204,8 +3276,9 @@ export default {
|
|
|
// this.imgDiscern = data.addr;
|
|
|
}
|
|
|
this.pictureDetailsFunDataObj = data;
|
|
|
- if(this.pictureDetailsFunDataObj.indentify_photo==""){
|
|
|
- this.pictureDetailsFunDataObj.indentify_photo = this.pictureDetailsFunDataObj.addr
|
|
|
+ if (this.pictureDetailsFunDataObj.indentify_photo == "") {
|
|
|
+ this.pictureDetailsFunDataObj.indentify_photo =
|
|
|
+ this.pictureDetailsFunDataObj.addr;
|
|
|
}
|
|
|
console.log(this.pictureDetailsFunDataObj);
|
|
|
// console.log(this.pictureDetailsFunDataObj.indentify_photo);
|