Parcourir la source

fix(models): 模型库

wangxiao il y a 2 ans
Parent
commit
eb4afe0d59
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/pages/Iot/model/models.vue

+ 1 - 1
src/pages/Iot/model/models.vue

@@ -15,7 +15,7 @@
   >
   <template #bodyCell="{column, record}">
       <template v-if="column.key === 'id'" >
-          <a  @click="openModal()">{{record.id}}</a>
+          <a @click="goDetailPage(record.id)" >{{record.id}}</a>
         </template>
         <template v-if="column.key === 'createAt'" >
           {{dayjs(record.createAt).format('YYYY/MM/DD HH:MM:ss')}}