|
|
|
@ -49,19 +49,9 @@
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in tdOptions"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="
|
|
|
|
|
item.alias !== null && item.alias !== ''
|
|
|
|
|
? item.alias
|
|
|
|
|
: item.name
|
|
|
|
|
"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
>
|
|
|
|
|
{{
|
|
|
|
|
item.alias !== null && item.alias !== ""
|
|
|
|
|
? item.alias
|
|
|
|
|
: item.name
|
|
|
|
|
}}
|
|
|
|
|
</el-option>
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="日期">
|
|
|
|
@ -107,7 +97,7 @@
|
|
|
|
|
拍照时间:{{
|
|
|
|
|
$moment(item.photoTime).format("MM-DD HH:mm")
|
|
|
|
|
}}
|
|
|
|
|
/ {{ item.channnelname }}
|
|
|
|
|
/
|
|
|
|
|
{{
|
|
|
|
|
item.alias !== null && item.alias !== ""
|
|
|
|
|
? item.alias
|
|
|
|
@ -137,7 +127,9 @@
|
|
|
|
|
}}
|
|
|
|
|
</p>
|
|
|
|
|
<p class="infoBottom">
|
|
|
|
|
拍照时间:{{ $moment(item.photoTime).format("MM-DD HH:mm") }}
|
|
|
|
|
拍照时间:{{
|
|
|
|
|
$moment(item.photoTime).format("MM-DD HH:mm")
|
|
|
|
|
}}
|
|
|
|
|
/
|
|
|
|
|
{{
|
|
|
|
|
item.alias !== null && item.alias !== ""
|
|
|
|
@ -192,7 +184,7 @@ export default {
|
|
|
|
|
xlOptions: [{ id: 0, name: "全部" }], //线路数据
|
|
|
|
|
gtOptions: [{ id: 0, name: "全部" }], //杆塔数据
|
|
|
|
|
zzOptions: [{ id: 0, name: "全部" }], //装置数据
|
|
|
|
|
tdOptions: [{ id: 0, name: "全部", alias: "" }], //通道数据
|
|
|
|
|
tdOptions: [{ id: 0, name: "全部" }], //通道数据
|
|
|
|
|
formdata: {
|
|
|
|
|
dyid: "",
|
|
|
|
|
lineid: "",
|
|
|
|
@ -272,7 +264,7 @@ export default {
|
|
|
|
|
getSearchtd() {
|
|
|
|
|
getSearchInfo({ type: 5, id: this.formdata.termid })
|
|
|
|
|
.then((res) => {
|
|
|
|
|
this.tdOptions = [{ id: 0, name: "全部", alias: "" }];
|
|
|
|
|
this.tdOptions = [{ id: 0, name: "全部" }];
|
|
|
|
|
this.tdOptions = this.tdOptions.concat(res.data.list);
|
|
|
|
|
this.formdata.channelid = this.tdOptions[0].id;
|
|
|
|
|
// if (this.signtype == 0) {
|
|
|
|
|