123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <template>
- <a-card :bordered="false" :title="modalTitle" v-show="visible">
- <a-row :gutter="48" slot="extra">
- <a-col :md="48" :sm="48">
- <span class="table-page-search-submitButtons" style="float: right">
- <a-button style="margin-left: 8px" @click="handleCancel()">返回</a-button>
- </span>
- </a-col>
- </a-row>
- <title-divider title="基础信息" width="90px"></title-divider>
- <detail-list title="" :col="3">
- <detail-list-item term="id">{{ model.id }}</detail-list-item>
- <detail-list-item term="集团统一编码">{{ model.uniteNo }}</detail-list-item>
- <detail-list-item term="自编号">{{ model.zbh }}</detail-list-item>
- <detail-list-item term="备件编码">{{ model.no }}</detail-list-item>
- <detail-list-item term="备件名称">{{ model.name }}</detail-list-item>
- <detail-list-item term="名称编码">{{ model.nameNo }}</detail-list-item>
- <detail-list-item term="规格型号">{{ model.ggxh }}</detail-list-item>
- <detail-list-item term="规格编码">{{ model.ggNo }}</detail-list-item>
- <detail-list-item term="备件类别">{{ model.typeName }}</detail-list-item>
- <detail-list-item term="备件等级">{{ BaseTool.Object.getField(levelMap,model.level) }}</detail-list-item>
- <detail-list-item term="备件价值">{{ BaseTool.Amount.formatter(model.initialValue) }}</detail-list-item>
- <detail-list-item term="生产商">{{ model.producerName }}</detail-list-item>
- <detail-list-item term="供应商">{{ model.supplierName }}</detail-list-item>
- <detail-list-item term="原厂编号">{{ model.initNo }}</detail-list-item>
- <detail-list-item term="计量单位">{{ model.unit }}</detail-list-item>
- <detail-list-item term="包装单位">{{ model.unitBz }}</detail-list-item>
- <detail-list-item term="折算系数">{{ model.unitRate }}</detail-list-item>
- <detail-list-item term="当前库存">{{ model.currentStock }}</detail-list-item>
- <detail-list-item term="采购周期">{{ model.purchasePeriod }}天</detail-list-item>
- <detail-list-item term="使用周期">{{ model.usePeriod }}月</detail-list-item>
- <detail-list-item term="寿命周期">{{ model.agePeriod }}月</detail-list-item>
- <detail-list-item term="当前库存">{{ model.currentStock }}</detail-list-item>
- <detail-list-item term="最高库存">{{ model.maxStock }}</detail-list-item>
- <detail-list-item term="最低库存">{{ model.minStock }}</detail-list-item>
- <detail-list-item term="初始库存">{{ model.initStock }}</detail-list-item>
- <detail-list-item term="英文名称">{{ model.englishName }}</detail-list-item>
- <detail-list-item term="助记码">{{ model.zjm }}</detail-list-item>
- <detail-list-item term="产地">{{ BaseTool.Object.getField(cdMap,model.cd) }}</detail-list-item>
- <detail-list-item term="用途">{{ BaseTool.Object.getField(ytMap,model.yt) }}</detail-list-item>
- <detail-list-item term="参数">{{ model.params }}</detail-list-item>
- <detail-list-item term="备注">{{ model.remark }}</detail-list-item>
- <detail-list-item term="创建人">{{ model.createdUserName }}</detail-list-item>
- <detail-list-item term="更新人">{{ model.updateUserName }}</detail-list-item>
- <detail-list-item term="更新日期">{{ model.updateTime }}</detail-list-item>
- </detail-list>
- <title-divider title="图片信息" width="90px"></title-divider>
- <detail-list title="" :col="1">
- <detail-list-item term="" v-if="model.applicationFileList != null && model.applicationFileList.length > 0">
- <viewer :images="model.applicationFileList" @inited="inited" ref="viewer" :index="1" >
- <img v-for="item in model.applicationFileList" :src="item.url" :key="item.id" class="image">
- </viewer>
- </detail-list-item>
- <detail-list-item term="" v-if="model.applicationFileList == null || model.applicationFileList.length === 0">
- 暂无
- </detail-list-item>
- </detail-list>
- <title-divider title="设备信息" width="100px"></title-divider>
- <div class="table-operator">
- </div>
- <a-table
- :data-source="data"
- :columns="columns"
- bordered
- tableLayout="auto"
- rowKey="id">
- </a-table>
- <template slot="footer">
- <a-button :loading="confirmLoading" type="primary" @click="handleCancel()">返回</a-button>
- </template>
- </a-card>
- </template>
- <script>
- import DetailList from '@/components/tools/DetailList'
- import { selectSbModelListBySpareId } from '@/api/sb/modelbom'
- const DetailListItem = DetailList.Item
- export default {
- name: 'SparePartInfoDetail',
- components: {
- DetailList,
- DetailListItem
- },
- data () {
- return {
- confirmLoading: false,
- mdl: {},
- modalTitle: null,
- visible: false,
- // 下拉框map
- levelMap: {},
- unitMap: {},
- cdMap: {},
- ytMap: {},
- model: {
- 'no': null,
- 'name': null,
- 'ggxh': null,
- 'typeId': null,
- 'level': null,
- 'initialValue': null,
- 'producerId': null,
- 'producerName': null,
- 'supplierId': null,
- 'supplierName': null,
- 'unit': null,
- 'unitBz': null,
- 'unitRate': null,
- 'currentStock': null,
- 'purchasePeriod': null,
- 'usePeriod': null,
- 'agePeriod': null,
- 'maxStock': null,
- 'qrCode': null,
- 'applicationFileList': [],
- 'minStock': null,
- 'initStock': null,
- 'params': null,
- 'remark': null,
- 'createdUserId': null,
- 'updateUserId': null,
- 'updateTime': null,
- 'createdUserName': null,
- 'updateUserName': null,
- 'typeName': null
- },
- periodTypeMap: {},
- // 表头
- columns: [
- {
- title: '型号',
- dataIndex: 'model'
- },
- {
- title: '名称',
- dataIndex: 'name'
- },
- {
- title: '新号',
- dataIndex: 'no'
- },
- {
- title: '旧号',
- dataIndex: 'zbh'
- },
- {
- title: '更换周期',
- dataIndex: 'period',
- customRender: (text, record, index) => {
- return text + this.BaseTool.Table.getMapText(this.periodTypeMap, record.periodType)
- }
- },
- {
- title: '数量',
- dataIndex: 'num'
- },
- {
- title: '操作',
- key: 'action',
- checked: true,
- align: 'center',
- // fixed: 'right',
- scopedSlots: { customRender: 'action' }
- }
- ],
- data: []
- }
- },
- created () {
- // 下拉框map
- this.levelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SPARE_PART_INFO_LEVEL)
- this.unitMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_UNIT)
- this.cdMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.PRODUCER_AREA)
- this.ytMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SPARE_USE_TYPE)
- this.periodTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_PLAN_PERIOD_TYPE)
- },
- methods: {
- base (record) {
- this.visible = true
- this.modalTitle = '详情'
- this.model = record
- selectSbModelListBySpareId({ id: record.id }).then(res => {
- this.data = res.data
- })
- },
- inited (viewer) {
- this.$viewer = viewer
- // this.$viewer.index = 0
- // // 不要他的按钮
- // this.$viewer.options.button = false
- // // 不要他的底部缩略图
- // this.$viewer.options.navbar = false
- // // 不要他的底部标题
- // this.$viewer.options.title = false
- // // 不要他的底部工具栏
- // this.$viewer.options.toolbar = false
- },
- handleCancel () {
- this.visible = false
- this.confirmLoading = false
- this.$emit('ok')
- }
- }
- }
- </script>
- <style scoped>
- .image {
- width: calc(20% - 10px);
- cursor: pointer;
- margin: 5px;
- display: inline-block;
- }
- </style>
|