08 2022 档案
摘要:为合并表头模式, 数据格式如下: { title: '交强险', children: [ { title: '保单号', dataIndex: 'insuranceBillcode', key: 'insuranceBillcodeRisk', },] } { title: '商业险', child
阅读全文
摘要:export type OrcInsuranceRecordsTypeBarForm = { id?: number carNumber?: string subCompanyId?: string remarkDesc?: string insuranceVos?: { insuranceType
阅读全文
摘要:import { ref, reactive } from 'vue' // 引入ref reactive // ref定义 响应式数据中基础数据类型 reactive定义 响应式数据中复杂数据类型 // reactive定义时直接赋值会失去响应式 解决:1,使用ref定义 2,用对象包裹后再使用
阅读全文