123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <template>
- <div 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="设备新号">{{ model.no }}</detail-list-item>
- <detail-list-item term="设备型号">{{ model.model }}</detail-list-item>
- <detail-list-item term="设备名称">{{ model.name }}</detail-list-item>
- <detail-list-item term="检定日期">{{ model.checkDate }}</detail-list-item>
- <detail-list-item term="检定周期">{{ model.checkPeriod }}个月</detail-list-item>
- <detail-list-item term="检定有效期">{{ model.nextCheckDate }}</detail-list-item>
- <!-- <detail-list-item term="准确度等级">{{ model.fdjxh }}</detail-list-item>-->
- <detail-list-item term="预警天数">{{ model.seatNumber }}天</detail-list-item>
- <!-- <detail-list-item term="管理状态"> <badge
- :status="DictCache.COLOR.SB_MEASURE_STATUS[model.status]"
- :text="statusMap[model.status]" /></detail-list-item>-->
- </detail-list>
- <title-divider title="检定信息" width="90px"></title-divider>
- <div class="table-operator" style="margin-bottom: 8px;">
- <a-button type="primary" @click="handleAdd">
- <a-icon type="plus"/>
- 添加
- </a-button>
- </div>
- <a-table
- :data-source="data"
- :columns="columns"
- tableLayout="auto"
- rowKey="id">
- <span slot="action" slot-scope="record">
- <template>
- <a v-if="$auth('sb-infos-edit')" @click="handleView(record)">查看</a>
- <a-divider type="vertical" />
- <a v-if="$auth('sb-infos-edit')" @click="handleEdit(record)">修改</a>
- <a-divider type="vertical" />
- <a-popconfirm v-if="$auth('sb-infos-del')" title="是否要删除该条数据?" @confirm="batchDelete(record.id)">
- <a>删除</a>
- </a-popconfirm>
- </template>
- </span>
- </a-table>
- <base-form ref="baseModal" :type="1" @ok="handleOk"/>
- <base-form-insert ref="baseModalInsert" @ok="handleOk"/>
- <detail ref="detailModal"/>
- </div>
- </template>
- <script>
- import DetailList from '@/components/tools/DetailList'
- import {
- queryCheckStandard,
- deleteCheckStandards,
- exportCheckStandard,
- fetchCheckStandard
- } from '@/api/sb/measurelog'
- import BaseForm from './BaseForm'
- import BaseFormInsert from './BaseFormInsert'
- import Detail from './Detail'
- import { fetchSbInfo } from '@/api/sb/info'
- const DetailListItem = DetailList.Item
- export default {
- name: 'DetailSbMeasure',
- components: {
- DetailList,
- DetailListItem,
- BaseForm,
- Detail,
- BaseFormInsert
- },
- props: {
- },
- data () {
- return {
- confirmLoading: false,
- mdl: {},
- model: {
- 'id': null,
- 'modelId': null,
- 'no': null,
- 'zbh': null,
- 'name': null,
- 'nameModel': null,
- 'unit': null,
- 'level': null,
- 'useType': null
- },
- modalTitle: null,
- visible: false,
- typeMap: {},
- statusMap: {},
- // 表头
- columns: [
- {
- title: '序号',
- dataIndex: 'index',
- customRender: (text, record, index) => {
- return index + 1
- }
- },
- {
- title: '检定单号',
- dataIndex: 'no'
- },
- {
- title: '检定人',
- dataIndex: 'name'
- },
- {
- title: '检定单位',
- dataIndex: 'requirement'
- },
- {
- title: '检定日期',
- dataIndex: 'lastDate'
- },
- {
- title: '操作',
- key: 'action',
- checked: true,
- align: 'center',
- // fixed: 'right',
- scopedSlots: { customRender: 'action' }
- }
- ],
- data: []
- }
- },
- created () {
- // 下拉框map
- this.typeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_STANDARD_TYPE)
- this.statusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_MEASURE_STATUS)
- this.actionTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_PLAN_ACTION_TYPE)
- },
- methods: {
- base (record) {
- this.visible = true
- this.model = record
- this.modalTitle = '详情2'
- queryCheckStandard({ sbId: record.id }).then(res => {
- this.data = res.data
- })
- },
- handleOk () {
- queryCheckStandard({ sbId: this.model.id }).then(res => {
- this.data = res.data
- })
- fetchSbInfo({ id: this.model.id }).then(res => {
- this.model = res.data
- })
- },
- handleAdd () {
- const modal = this.$refs.baseModal
- modal.base(null, this.model)
- },
- handleView (record) {
- fetchCheckStandard({ id: record.id }).then(res => {
- const modal = this.$refs.detailModal
- res.data.partName = record.partName
- modal.base(res.data)
- })
- },
- handleEdit (record) {
- fetchCheckStandard({ id: record.id }).then(res => {
- const modal = this.$refs.baseModal
- modal.base(res.data)
- })
- },
- handleCopy (record) {
- const modal = this.$refs.baseModal
- const data = record
- data.id = null
- modal.base(data)
- },
- handleGenerate (record) {
- const modal = this.$refs.baseModalInsert
- modal.base(null, record.id)
- },
- handleCancel () {
- this.visible = false
- this.confirmLoading = false
- this.$emit('ok')
- },
- batchDelete (id) {
- let ids = []
- if (this.BaseTool.String.isBlank(id)) {
- if (length === 0) {
- this.$message.info('请选择要删除的记录')
- return
- }
- ids = this.selectedRows.map(item => item.id)
- } else {
- ids = [id]
- }
- deleteCheckStandards(ids).then(res => {
- this.$message.info('删除成功')
- this.handleOk()
- })
- },
- doExport () {
- const parameter = {
- ...this.queryParam
- }
- parameter.modelId = this.model.id
- exportCheckStandard(parameter).then(file => {
- this.BaseTool.UPLOAD.downLoadExportExcel(file)
- })
- }
- /* handleSbSelect () {
- this.$refs.sbInfoSelectModal.base()
- },
- handleSbSelectd (keys, rows) {
- const [ key ] = keys
- const [ row ] = rows
- // 日期处理
- copy({ sbId: this.model.id, copySbId: row.id })
- .then((response) => {
- this.$message.info(response.data)
- this.handleOk()
- }).catch(() => {
- this.confirmLoading = false
- })
- } */
- }
- }
- </script>
|