This commit is contained in:
parent
1ab6209482
commit
fba797139a
|
|
@ -39,46 +39,79 @@
|
|||
import {ref} from "vue";
|
||||
|
||||
const props = defineProps({
|
||||
/**
|
||||
* @description 装备名称
|
||||
* */
|
||||
name:{
|
||||
type:String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备图片
|
||||
* */
|
||||
url:{
|
||||
type:String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备编码
|
||||
* */
|
||||
code:{
|
||||
type:String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备类别
|
||||
* */
|
||||
type:{
|
||||
type:String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备组别
|
||||
* */
|
||||
group:{
|
||||
type:String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备品牌
|
||||
* */
|
||||
brand:{
|
||||
type:String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备规格
|
||||
* */
|
||||
specifications:{
|
||||
type:String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备位置
|
||||
* */
|
||||
position:{
|
||||
type:String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备价格
|
||||
* */
|
||||
price:{
|
||||
type: [String, Number],
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备价格单位
|
||||
* */
|
||||
unit: {
|
||||
type: String,
|
||||
default:''
|
||||
},
|
||||
/**
|
||||
* @description 装备公司
|
||||
* */
|
||||
company: {
|
||||
type: String,
|
||||
default:''
|
||||
|
|
|
|||
Loading…
Reference in New Issue