2023-05-16 09:08:13 +08:00
|
|
|
<template>
|
|
|
|
<a-card :bordered="false">
|
|
|
|
<!-- 搜索栏 -->
|
|
|
|
<search-form :items="formItems" v-model="queryParam" @search="searchQuery">
|
2023-05-23 16:30:09 +08:00
|
|
|
<a-space style="float: right" class="btn-group" slot="additional">
|
2023-05-16 09:08:13 +08:00
|
|
|
<a-button @click="onAdd" type="primary">
|
|
|
|
<img src="@/assets/images/global/add.png" alt="" />
|
|
|
|
Add
|
|
|
|
</a-button>
|
|
|
|
<a-button @click="onEdit" type="primary">
|
|
|
|
<img src="@/assets/images/global/edit.png" alt="" />
|
|
|
|
Edit
|
|
|
|
</a-button>
|
|
|
|
<a-button @click="onDel" type="primary">
|
|
|
|
<img src="@/assets/images/global/delete.png" alt="" />
|
|
|
|
Delete
|
|
|
|
</a-button>
|
|
|
|
</a-space>
|
|
|
|
</search-form>
|
|
|
|
<!-- 搜索栏结束 -->
|
|
|
|
<!-- 列表 -->
|
|
|
|
<div>
|
|
|
|
<custom-table
|
|
|
|
size="middle"
|
|
|
|
rowKey="facilityId"
|
|
|
|
:columns="columns"
|
|
|
|
:list="dataSource"
|
|
|
|
:pagination="ipagination"
|
|
|
|
:loading="loading"
|
|
|
|
@change="handleTableChange"
|
|
|
|
:selectedRowKeys.sync="selectedRowKeys"
|
2023-07-07 17:45:51 +08:00
|
|
|
:scroll="{ y: 'calc(100vh - 370px)' }"
|
2023-05-16 09:08:13 +08:00
|
|
|
>
|
|
|
|
<template slot="index" slot-scope="{ index }">
|
|
|
|
{{ index + 1 }}
|
|
|
|
</template>
|
|
|
|
<template slot="roles" slot-scope="{ text }">
|
|
|
|
<span v-for="role of text" :key="role.id">
|
|
|
|
{{ role.roleName }}
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
</custom-table>
|
|
|
|
</div>
|
|
|
|
<!-- 列表结束 -->
|
|
|
|
<!-- 新增/编辑 -->
|
|
|
|
<custom-modal :title="isAdd ? 'Add' : 'Edit'" v-model="visible" :width="475" :okHandler="submit">
|
|
|
|
<a-form-model
|
|
|
|
ref="form"
|
|
|
|
layout="horizontal"
|
|
|
|
:model="model"
|
|
|
|
:rules="rules"
|
|
|
|
:colon="false"
|
|
|
|
:labelCol="{ style: { width: '105px' } }"
|
|
|
|
:wrapperCol="{ style: { width: '300px' } }"
|
|
|
|
>
|
2023-05-16 10:14:27 +08:00
|
|
|
<a-form-model-item label="Facility Id" prop="facilityId">
|
|
|
|
<a-input v-model="model.facilityId" type="number"></a-input>
|
|
|
|
</a-form-model-item>
|
2023-05-16 09:08:13 +08:00
|
|
|
<a-form-model-item label="Facility Name" prop="facilityName">
|
|
|
|
<a-input v-model="model.facilityName"></a-input>
|
|
|
|
</a-form-model-item>
|
|
|
|
<a-form-model-item label="Type" prop="type">
|
|
|
|
<a-input v-model="model.type"></a-input>
|
|
|
|
</a-form-model-item>
|
|
|
|
<a-form-model-item label="Location" prop="location">
|
|
|
|
<a-input v-model="model.location"></a-input>
|
|
|
|
</a-form-model-item>
|
|
|
|
<a-form-model-item label="Longitude" prop="longitude">
|
|
|
|
<a-input v-model="model.longitude"></a-input>
|
|
|
|
</a-form-model-item>
|
|
|
|
<a-form-model-item label="Latitude" prop="latitude">
|
|
|
|
<a-input v-model="model.latitude"></a-input>
|
|
|
|
</a-form-model-item>
|
|
|
|
<a-form-model-item label="Status" prop="status">
|
|
|
|
<j-dict-select-tag v-model="model.status" dictCode="NUCLEARFACILITY_STATUS"></j-dict-select-tag>
|
|
|
|
</a-form-model-item>
|
|
|
|
</a-form-model>
|
|
|
|
</custom-modal>
|
|
|
|
<!-- 新增/编辑 结束 -->
|
|
|
|
</a-card>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
|
import FormMixin from '@/mixins/FormMixin'
|
|
|
|
import { cloneDeep } from 'lodash'
|
2023-05-23 16:30:09 +08:00
|
|
|
import { getAction } from '../../api/manage'
|
2023-05-16 09:08:13 +08:00
|
|
|
|
|
|
|
const columns = [
|
|
|
|
{
|
|
|
|
title: 'NO',
|
2023-05-25 19:43:05 +08:00
|
|
|
align: 'left',
|
2023-05-16 09:08:13 +08:00
|
|
|
width: 100,
|
|
|
|
scopedSlots: {
|
|
|
|
customRender: 'index'
|
2023-05-25 19:43:05 +08:00
|
|
|
},
|
|
|
|
customHeaderCell: () => {
|
|
|
|
return {
|
|
|
|
style: {
|
|
|
|
'padding-left': '60px !important'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
customCell: () => {
|
|
|
|
return {
|
|
|
|
style: {
|
|
|
|
'padding-left': '60px !important'
|
|
|
|
}
|
|
|
|
}
|
2023-05-16 09:08:13 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'FACILITY ID',
|
2023-05-25 19:43:05 +08:00
|
|
|
align: 'left',
|
2023-05-16 09:08:13 +08:00
|
|
|
dataIndex: 'facilityId',
|
|
|
|
width: 100
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'FACILITY NAME',
|
2023-05-25 19:43:05 +08:00
|
|
|
align: 'left',
|
2023-05-16 09:08:13 +08:00
|
|
|
width: 100,
|
|
|
|
dataIndex: 'facilityName'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'TYPE',
|
2023-05-25 19:43:05 +08:00
|
|
|
align: 'left',
|
2023-05-16 09:08:13 +08:00
|
|
|
width: 100,
|
|
|
|
dataIndex: 'type'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'LOCATION',
|
2023-05-25 19:43:05 +08:00
|
|
|
align: 'left',
|
2023-05-16 09:08:13 +08:00
|
|
|
width: 100,
|
|
|
|
dataIndex: 'location'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'LONGITUDE',
|
2023-05-25 19:43:05 +08:00
|
|
|
align: 'left',
|
2023-05-16 09:08:13 +08:00
|
|
|
width: 100,
|
|
|
|
dataIndex: 'longitude'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'LATITUDE',
|
2023-05-25 19:43:05 +08:00
|
|
|
align: 'left',
|
2023-05-16 09:08:13 +08:00
|
|
|
width: 100,
|
|
|
|
dataIndex: 'latitude'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'STATUS',
|
2023-05-25 19:43:05 +08:00
|
|
|
align: 'left',
|
2023-05-16 09:08:13 +08:00
|
|
|
width: 100,
|
|
|
|
dataIndex: 'status'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
export default {
|
|
|
|
mixins: [JeecgListMixin, FormMixin],
|
|
|
|
data() {
|
|
|
|
this.columns = columns
|
|
|
|
return {
|
|
|
|
queryParam: {},
|
|
|
|
rules: {
|
2023-05-16 10:14:27 +08:00
|
|
|
facilityId: [{ required: true, message: 'Please Enter Facility Id' }],
|
2023-05-16 09:08:13 +08:00
|
|
|
facilityName: [{ required: true, message: 'Please Enter Facility Name' }]
|
|
|
|
},
|
|
|
|
url: {
|
|
|
|
list: '/gardsNuclearfacility/findPage',
|
|
|
|
delete: '/gardsNuclearfacility/deleteById',
|
|
|
|
add: '/gardsNuclearfacility/create',
|
|
|
|
edit: '/gardsNuclearfacility/update'
|
2023-05-23 16:30:09 +08:00
|
|
|
},
|
|
|
|
typeList: [],
|
|
|
|
locationList: []
|
2023-05-16 09:08:13 +08:00
|
|
|
}
|
|
|
|
},
|
2023-05-23 16:30:09 +08:00
|
|
|
created() {
|
|
|
|
this.getTypeList()
|
|
|
|
this.getLocationList()
|
|
|
|
},
|
2023-05-16 09:08:13 +08:00
|
|
|
methods: {
|
2023-05-23 16:30:09 +08:00
|
|
|
async getTypeList() {
|
|
|
|
try {
|
|
|
|
const res = await getAction('/gardsNuclearfacility/findType')
|
|
|
|
this.typeList = res.filter(item => item).map(item => ({ label: item, value: item }))
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async getLocationList() {
|
|
|
|
try {
|
|
|
|
const res = await getAction('/gardsNuclearfacility/findLocation')
|
|
|
|
this.locationList = res.filter(item => item).map(item => ({ label: item, value: item }))
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
filterOption(input, option) {
|
|
|
|
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
},
|
|
|
|
|
2023-05-16 09:08:13 +08:00
|
|
|
onAdd() {
|
|
|
|
this.isAdd = true
|
|
|
|
this.model = {}
|
|
|
|
this.visible = true
|
|
|
|
},
|
|
|
|
onEdit() {
|
|
|
|
if (this.selectedRowKeys && this.selectedRowKeys.length) {
|
|
|
|
this.isAdd = false
|
|
|
|
this.visible = true
|
2023-05-16 10:14:27 +08:00
|
|
|
const find = this.dataSource.find(item => item.facilityId === this.selectedRowKeys[0])
|
2023-05-16 09:08:13 +08:00
|
|
|
this.model = cloneDeep(find)
|
|
|
|
} else {
|
|
|
|
this.$message.warn('Please Select An Item To Edit')
|
|
|
|
}
|
|
|
|
},
|
2023-05-16 10:14:27 +08:00
|
|
|
onDel() {
|
|
|
|
if (this.selectedRowKeys && this.selectedRowKeys.length) {
|
|
|
|
this.$confirm({
|
|
|
|
title: 'Do You Want To Delete This Item?',
|
|
|
|
okText: 'OK',
|
|
|
|
cancelText: 'Cancel',
|
|
|
|
onOk: () => {
|
|
|
|
this.handleDelete(this.selectedRowKeys[0])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.$message.warn('Please Select An Item To Delete')
|
|
|
|
}
|
|
|
|
}
|
2023-05-23 16:30:09 +08:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
formItems() {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
label: 'Name',
|
|
|
|
type: 'a-input',
|
|
|
|
name: 'facilityName',
|
|
|
|
props: {
|
2023-05-25 19:43:05 +08:00
|
|
|
allowClear: true,
|
|
|
|
style: {
|
|
|
|
width: '261px'
|
|
|
|
}
|
2023-05-23 16:30:09 +08:00
|
|
|
},
|
|
|
|
style: {
|
2023-05-25 19:43:05 +08:00
|
|
|
width: 'auto'
|
2023-05-23 16:30:09 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Type',
|
|
|
|
type: 'custom-select',
|
|
|
|
name: 'type',
|
|
|
|
props: {
|
|
|
|
options: this.typeList,
|
|
|
|
allowClear: true,
|
|
|
|
showSearch: true,
|
2023-05-25 19:43:05 +08:00
|
|
|
filterOption: this.filterOption,
|
|
|
|
style: {
|
|
|
|
width: '261px'
|
|
|
|
}
|
2023-05-23 16:30:09 +08:00
|
|
|
},
|
|
|
|
style: {
|
2023-05-25 19:43:05 +08:00
|
|
|
width: 'auto'
|
2023-05-23 16:30:09 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Location',
|
|
|
|
type: 'custom-select',
|
|
|
|
name: 'location',
|
|
|
|
props: {
|
|
|
|
options: this.locationList,
|
|
|
|
allowClear: true,
|
|
|
|
showSearch: true,
|
2023-05-25 19:43:05 +08:00
|
|
|
filterOption: this.filterOption,
|
|
|
|
style: {
|
|
|
|
width: '261px'
|
|
|
|
}
|
2023-05-23 16:30:09 +08:00
|
|
|
},
|
|
|
|
style: {
|
2023-05-25 19:43:05 +08:00
|
|
|
width: 'auto'
|
2023-05-23 16:30:09 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Status',
|
|
|
|
type: 'j-dict-select-tag',
|
|
|
|
name: 'status',
|
|
|
|
props: {
|
|
|
|
getPopupContainer: () => {
|
|
|
|
return document.body
|
|
|
|
},
|
2023-05-25 19:43:05 +08:00
|
|
|
dictCode: 'NUCLEARFACILITY_STATUS',
|
|
|
|
style: {
|
|
|
|
width: '261px'
|
|
|
|
}
|
2023-05-23 16:30:09 +08:00
|
|
|
},
|
|
|
|
style: {
|
2023-05-25 19:43:05 +08:00
|
|
|
width: 'auto'
|
2023-05-23 16:30:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2023-05-16 09:08:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
.btn-group {
|
|
|
|
img {
|
|
|
|
margin-right: 12px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|