소스 검색

fix: 产品下新增命名table下的column写错

lvkun996 2 년 전
부모
커밋
c635a998f9
2개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. BIN
      src/assets/logo/logo-blue.png
  2. 1 3
      src/pages/Iot/model/components/modelDefine.vue

BIN
src/assets/logo/logo-blue.png


+ 1 - 3
src/pages/Iot/model/components/modelDefine.vue

@@ -208,7 +208,6 @@ import { nextTick, onMounted, reactive } from 'vue'
 import { Form } from 'ant-design-vue'
 import { useRoute } from 'vue-router'
 import { useId } from '@/hooks'
-import { Item } from 'ant-design-vue/lib/menu'
 
 const columns = [
   {
@@ -281,7 +280,7 @@ const columnsCmdParams = [
     dataIndex: 'dataType'
   },
   {
-    title: '数据类型',
+    title: '参数描述',
     key: 'description',
     dataIndex: 'description'
   },
@@ -381,7 +380,6 @@ const delCmdParams = (type: 'request' | 'response', id: string) => {
 const openModalCmdp = (type: 'request' | 'response', opraState: 'add' | 'update', record: any = {}) => {
   state.cmdParamsOpraState = type
   state.cmdParamsvisible = true
-  console.log('resetFieldsCmdP:', record)
 
   resetFieldsCmdP(record)
 }