| | |
| | | <!-- 当前页面业务部分 --> |
| | | <a-card :bordered="false" :title="title" v-show="visable"> |
| | | <a-descriptions title="工具管理参数详情"> |
| | | <a-descriptions-item label="工具类型">{{ this.para == null || this.para.applicationType == null ? '' : this.para.applicationType }}</a-descriptions-item> |
| | | <a-descriptions-item label="工具类型">{{ this.para == null || this.para.applicationType == null ? '' : this.para.applicationType == '1' ? '通用工具' : '专用工具' }}</a-descriptions-item> |
| | | <a-descriptions-item label="标准级别">{{ this.para == null || this.para.standardLevel == null ? '' : this.para.standardLevel }}</a-descriptions-item> |
| | | <a-descriptions-item label="标准号">{{ this.para == null || this.para.standardCode == null ? '' : this.para.standardCode }}</a-descriptions-item> |
| | | <a-descriptions-item label="厂家">{{ this.para == null || this.para.supplierId == null ? '' : this.para.supplierId }}</a-descriptions-item> |
| | | <a-descriptions-item label="仓库省份城市">{{ this.para == null || this.para.provinceCity == null ? '' : this.para.provinceCity }}</a-descriptions-item> |
| | | <a-descriptions-item label="库位号">{{ this.para == null || this.para.positionCode == null ? '' : this.para.positionCode }}</a-descriptions-item> |
| | | <a-descriptions-item label="存储位置">{{ this.para == null || this.para.storageLocation == null ? '' : this.para.storageLocation }}</a-descriptions-item> |
| | | <a-descriptions-item label="计量主单位">{{ this.para == null || this.para.mainUnit == null ? '' : this.para.mainUnit }}</a-descriptions-item> |
| | | <a-descriptions-item label="计量辅单位">{{ this.para == null || this.para.auxiliaryUnit == null ? '' : this.para.auxiliaryUnit }}</a-descriptions-item> |
| | | <a-descriptions-item label="单价">{{ this.para == null || this.para.price == null ? '' : this.para.price }}</a-descriptions-item> |