|
@@ -55,12 +55,12 @@
|
|
|
/>
|
|
|
<label-text
|
|
|
label="位置"
|
|
|
- line="2"
|
|
|
+ :line="2"
|
|
|
:text="formatTxt(state.deviceInfo.locationStr)"
|
|
|
/>
|
|
|
<label-text
|
|
|
label="描述"
|
|
|
- line="3"
|
|
|
+ :line="3"
|
|
|
:text="formatTxt(state.deviceInfo.description)"
|
|
|
/>
|
|
|
</view>
|
|
@@ -75,8 +75,9 @@
|
|
|
<template v-slot:content>
|
|
|
<up-cell-group :border="false">
|
|
|
<up-cell
|
|
|
- v-for="item in state.metaInfo.dataMetaRunInfo"
|
|
|
+ v-for="(item,index) in state.metaInfo.dataMetaRunInfo"
|
|
|
:title="`${item.name}(${item.identifier})`"
|
|
|
+ :key="index"
|
|
|
size="small"
|
|
|
>
|
|
|
<template v-slot:label>
|
|
@@ -115,6 +116,7 @@
|
|
|
<up-cell
|
|
|
v-if="state.selectedService && state.selectedService.inputData"
|
|
|
v-for="item in state.selectedService.inputData"
|
|
|
+ :key="item.identifier"
|
|
|
:title="item.name"
|
|
|
:isLink="false"
|
|
|
>
|