|
@@ -22,10 +22,6 @@
|
|
|
<template #deviceStatus="{ row }">
|
|
|
<status-tag :value="row.deviceStatus" type="runningStatus"></status-tag>
|
|
|
</template>
|
|
|
- <template #address="{ row }">
|
|
|
- <span v-if="!isOutType">{{ row.address }}</span>
|
|
|
- <span v-else>{{ row.address.join('') }}</span>
|
|
|
- </template>
|
|
|
<template #basePhotoPath="{ row }">
|
|
|
<t-image
|
|
|
v-if="row.basePhotoPath"
|
|
@@ -135,7 +131,8 @@ const handleAdd = () => {
|
|
|
deviceStatus: '',
|
|
|
scanCount: '',
|
|
|
location: '',
|
|
|
- address: isOutType.value ? ['', '', ''] : '',
|
|
|
+ address: '',
|
|
|
+ addressArr: isOutType.value ? ['', '', ''] : '',
|
|
|
basePhotoPath: '',
|
|
|
};
|
|
|
showEditColumnDialog.value = true;
|