|
@@ -1,75 +1,75 @@
|
|
|
<template>
|
|
|
- <a-card :bordered="false" >
|
|
|
- <div class="table-page-search-wrapper">
|
|
|
- <a-form layout="inline">
|
|
|
- <a-row :gutter="48">
|
|
|
- <a-col :md="8" :sm="24">
|
|
|
- <a-form-item label="关键字">
|
|
|
- <a-input v-model.trim="queryParam.keyword" placeholder="请输入名称/类型名称"/>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :md="8 || 24" :sm="24">
|
|
|
- <span class="table-page-search-submitButtons">
|
|
|
- <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
|
|
|
- <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
|
|
|
- </span>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </a-form>
|
|
|
- </div>
|
|
|
+ <a-card :bordered="false" >
|
|
|
+ <div class="table-page-search-wrapper">
|
|
|
+ <a-form layout="inline">
|
|
|
+ <a-row :gutter="48">
|
|
|
+ <a-col :md="8" :sm="24">
|
|
|
+ <a-form-item label="关键字">
|
|
|
+ <a-input v-model.trim="queryParam.keyword" placeholder="请输入名称/类型名称"/>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :md="8 || 24" :sm="24">
|
|
|
+ <span class="table-page-search-submitButtons">
|
|
|
+ <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
|
|
|
+ <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
|
|
|
+ </span>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </a-form>
|
|
|
+ </div>
|
|
|
|
|
|
- <div class="table-operator" >
|
|
|
- <a-button type="primary" icon="plus" @click="handleAddSpecial()">新增专用备件</a-button>
|
|
|
- <a-button v-if="type == 2" type="primary" icon="plus" @click="handleAdd()">新增</a-button>
|
|
|
- <a-dropdown v-action:edit v-if=" type == 2 && selectedRowKeys.length > 0">
|
|
|
- <a-menu slot="overlay">
|
|
|
- <a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
|
|
|
- <a-menu-item key="1"><a-icon type="delete" /><a>删除</a></a-menu-item>
|
|
|
- </a-popconfirm>
|
|
|
- </a-menu>
|
|
|
- <a-button style="margin-left: 8px">
|
|
|
- 批量操作 <a-icon type="down" />
|
|
|
- </a-button>
|
|
|
- </a-dropdown>
|
|
|
- </div>
|
|
|
+ <div class="table-operator" >
|
|
|
+ <a-button type="primary" icon="plus" @click="handleAddSpecial()">新增专用备件</a-button>
|
|
|
+ <a-button v-if="type == 2" type="primary" icon="plus" @click="handleAdd()">新增</a-button>
|
|
|
+ <a-dropdown v-action:edit v-if=" type == 2 && selectedRowKeys.length > 0">
|
|
|
+ <a-menu slot="overlay">
|
|
|
+ <a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
|
|
|
+ <a-menu-item key="1"><a-icon type="delete" /><a>删除</a></a-menu-item>
|
|
|
+ </a-popconfirm>
|
|
|
+ </a-menu>
|
|
|
+ <a-button style="margin-left: 8px">
|
|
|
+ 批量操作 <a-icon type="down" />
|
|
|
+ </a-button>
|
|
|
+ </a-dropdown>
|
|
|
+ </div>
|
|
|
|
|
|
- <s-table
|
|
|
- ref="table"
|
|
|
- size="default"
|
|
|
- rowKey="id"
|
|
|
- :columns="columns"
|
|
|
- :data="loadData"
|
|
|
- :alert="options.alert"
|
|
|
- :customRow="options.customRow"
|
|
|
- :rowSelection="options.rowSelection"
|
|
|
- showPagination="auto"
|
|
|
- >
|
|
|
- <span slot="action" slot-scope="record1">
|
|
|
- <template>
|
|
|
- <a @click="handleView(record1)">查看</a>
|
|
|
- <a-divider type="vertical" />
|
|
|
- <a @click="handleEdit(record1)">修改</a>
|
|
|
- <a-divider type="vertical" />
|
|
|
- <a-popconfirm v-if="record1.status==1" @confirm="handleFeiqi(record1.id)">
|
|
|
- <a>废弃</a>
|
|
|
- </a-popconfirm>
|
|
|
- </template>
|
|
|
- </span>
|
|
|
- <span slot="status" slot-scope="text">
|
|
|
- <badge
|
|
|
- :status="DictCache.COLOR.SPARE_PART_USED_STATUS[text]"
|
|
|
- :text="statusMap[text]" />
|
|
|
- </span>
|
|
|
- </s-table>
|
|
|
- <base-form ref="baseModal" @ok="handleOk"/>
|
|
|
- <spare-store-select-modal ref="spareStoreSelectModal" @selected="handleSpareStoreSelected"/>
|
|
|
- <special-spare-base-form ref='specialSpareBaseForm' @ok='handleOk'/>
|
|
|
- <detail ref="detailModal"/>
|
|
|
- <template slot="footer">
|
|
|
- <a-button :loading="confirmLoading" type="primary" @click="handleCancel()">取消</a-button>
|
|
|
- <a-button :loading="confirmLoading" type="primary" @click="handleSelect()">选择</a-button>
|
|
|
- </template>
|
|
|
- </a-card>
|
|
|
+ <s-table
|
|
|
+ ref="table"
|
|
|
+ size="default"
|
|
|
+ rowKey="id"
|
|
|
+ :columns="columns"
|
|
|
+ :data="loadData"
|
|
|
+ :alert="options.alert"
|
|
|
+ :customRow="options.customRow"
|
|
|
+ :rowSelection="options.rowSelection"
|
|
|
+ showPagination="auto"
|
|
|
+ >
|
|
|
+ <span slot="action" slot-scope="record1">
|
|
|
+ <template>
|
|
|
+ <a @click="handleView(record1)">查看</a>
|
|
|
+ <a-divider type="vertical" />
|
|
|
+ <a @click="handleEdit(record1)">修改</a>
|
|
|
+ <a-divider type="vertical" />
|
|
|
+ <a-popconfirm v-if="record1.status==1" @confirm="handleFeiqi(record1.id)">
|
|
|
+ <a>废弃</a>
|
|
|
+ </a-popconfirm>
|
|
|
+ </template>
|
|
|
+ </span>
|
|
|
+ <span slot="status" slot-scope="text">
|
|
|
+ <badge
|
|
|
+ :status="DictCache.COLOR.SPARE_PART_USED_STATUS[text]"
|
|
|
+ :text="statusMap[text]" />
|
|
|
+ </span>
|
|
|
+ </s-table>
|
|
|
+ <base-form ref="baseModal" @ok="handleOk"/>
|
|
|
+ <spare-store-select-modal ref="spareStoreSelectModal" @selected="handleSpareStoreSelected"/>
|
|
|
+ <special-spare-base-form ref="specialSpareBaseForm" @ok="handleOk"/>
|
|
|
+ <detail ref="detailModal"/>
|
|
|
+ <template slot="footer">
|
|
|
+ <a-button :loading="confirmLoading" type="primary" @click="handleCancel()">取消</a-button>
|
|
|
+ <a-button :loading="confirmLoading" type="primary" @click="handleSelect()">选择</a-button>
|
|
|
+ </template>
|
|
|
+ </a-card>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -109,6 +109,10 @@ export default {
|
|
|
modelParams: {
|
|
|
type: Object,
|
|
|
default: () => ({})
|
|
|
+ },
|
|
|
+ sbId: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
@@ -132,7 +136,7 @@ export default {
|
|
|
sbId: null,
|
|
|
// 查询参数
|
|
|
queryParam: {
|
|
|
- sbId: this.$route.query.id
|
|
|
+ sbId: this.sbId
|
|
|
},
|
|
|
// 表头
|
|
|
columns: [
|
|
@@ -306,11 +310,11 @@ export default {
|
|
|
handleEdit (record) {
|
|
|
fetchSparePartUsed({ id: record.id }).then(res => {
|
|
|
const modal = this.$refs.baseModal
|
|
|
- modal.base(res.data,{sbId:record.id, modelId: record.modelId})
|
|
|
+ modal.base(res.data, { sbId: record.id, modelId: record.modelId })
|
|
|
})
|
|
|
},
|
|
|
handleFeiqi (id) {
|
|
|
- updateSparePartUsed({ id: id, status: 2}).then(res => {
|
|
|
+ updateSparePartUsed({ id: id, status: 2 }).then(res => {
|
|
|
this.$message.info('废弃成功')
|
|
|
this.handleOk()
|
|
|
this.$refs.table.clearSelected()
|
|
@@ -367,7 +371,7 @@ export default {
|
|
|
this.$refs.specialSpareBaseForm.base(params)
|
|
|
},
|
|
|
handleAdd () {
|
|
|
- this.$refs.baseModal.base(null,{sbId:this.tableParams.id, modelId:this.tableParams.modelId, repairId:this.tableParams.repairId})
|
|
|
+ this.$refs.baseModal.base(null, { sbId: this.tableParams.id, modelId: this.tableParams.modelId, repairId: this.tableParams.repairId })
|
|
|
},
|
|
|
handleCancel () {
|
|
|
this.visible = false
|