服装智能制造软件平台V3.0
http://182.92.169.222/hhxy/#/user/login
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
195 lines
6.3 KiB
195 lines
6.3 KiB
2 years ago
|
<template>
|
||
|
<a-card :bordered="false">
|
||
|
<!-- 查询区域 -->
|
||
|
<div class="table-page-search-wrapper">
|
||
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
||
|
<a-row :gutter="24">
|
||
|
<a-col :sm="5">
|
||
|
<a-form-model-item label="设备编号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="id">
|
||
|
<a-input v-model="queryParam.code" placeholder="请输入设备编号"></a-input>
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :sm="5">
|
||
|
<a-form-model-item label="设备名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name">
|
||
|
<a-input v-model="queryParam.name" placeholder="请输入设备名称"></a-input>
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
||
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
||
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
||
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
||
|
</span>
|
||
|
</a-col>
|
||
|
</a-row>
|
||
|
</a-form>
|
||
|
</div>
|
||
|
<!-- 查询区域-END -->
|
||
|
|
||
|
|
||
|
<!-- table区域-begin -->
|
||
|
<div>
|
||
|
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
||
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
|
||
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
|
||
|
</div>
|
||
|
|
||
|
<a-table
|
||
|
ref="table"
|
||
|
size="middle"
|
||
|
:scroll="{x:true}"
|
||
|
bordered
|
||
|
rowKey="id"
|
||
|
:columns="columns"
|
||
|
:dataSource="dataSource"
|
||
|
:pagination="ipagination"
|
||
|
:loading="loading"
|
||
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
|
||
|
class="j-table-force-nowrap"
|
||
|
@change="handleTableChange">
|
||
|
|
||
|
</a-table>
|
||
|
</div>
|
||
|
<!-- <ZyDeviceDetail ref="ZyDeviceDetail"></ZyDeviceDetail>-->
|
||
|
<!-- <zy-device-modal ref="modalForm" @ok="modalFormOk"></zy-device-modal>-->
|
||
|
</a-card>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
import { mixinDevice } from '@/utils/mixin'
|
||
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
||
|
import {getAction} from "@api/manage";
|
||
|
export default {
|
||
|
name: 'ZyDeviceListRef',
|
||
|
mixins:[JeecgListMixin],
|
||
|
components: {},
|
||
|
data () {
|
||
|
return {
|
||
|
description: '设备信息管理页面',
|
||
|
labelCol: {
|
||
|
xs: {span: 24},
|
||
|
sm: {span: 5},
|
||
|
},
|
||
|
wrapperCol: {
|
||
|
xs: {span: 24},
|
||
|
sm: {span: 16},
|
||
|
},
|
||
|
// 表头
|
||
|
columns: [
|
||
|
{
|
||
|
title:'设备编号',
|
||
|
align:"center",
|
||
|
dataIndex: 'code'
|
||
|
},
|
||
|
{
|
||
|
title: '名称',
|
||
|
align: "center",
|
||
|
dataIndex: 'name'
|
||
|
},
|
||
|
],
|
||
|
url: {
|
||
|
list: "/device/zyDevice/list",
|
||
|
delete: "/device/zyDevice/delete",
|
||
|
deleteBatch: "/device/zyDevice/deleteBatch",
|
||
|
exportXlsUrl: "/device/zyDevice/exportXls",
|
||
|
importExcelUrl: "device/zyDevice/importExcel",
|
||
|
|
||
|
},
|
||
|
dictOptions: {},
|
||
|
/* 分页参数 */
|
||
|
ipagination: {
|
||
|
current: 1,
|
||
|
pageSize: 5,
|
||
|
pageSizeOptions: ['5', '10', '50'],
|
||
|
showTotal: (total, range) => {
|
||
|
return range[0] + "-" + range[1] + " 共" + total + "条"
|
||
|
},
|
||
|
showQuickJumper: true,
|
||
|
showSizeChanger: true,
|
||
|
total: 0
|
||
|
},
|
||
|
selectedMainId: '',
|
||
|
superFieldList: [],
|
||
|
selectedRowKeys: [],
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
// this.getSuperFieldList();
|
||
|
// console.log(this.superFieldList)
|
||
|
},
|
||
|
computed: {
|
||
|
importExcelUrl: function(){
|
||
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
onSelectChange(selectedRowKeys) {
|
||
|
console.log('selectedRowKeys changed: ', selectedRowKeys);
|
||
|
this.selectedRowKeys = selectedRowKeys;
|
||
|
},
|
||
|
initDictConfig() {
|
||
|
},
|
||
|
clickThenSelect(record) {
|
||
|
return {
|
||
|
on: {
|
||
|
click: () => {
|
||
|
this.onSelectChange(record.id.split(","), [record]);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
onClearSelected() {
|
||
|
this.selectedRowKeys = [];
|
||
|
this.selectionRows = [];
|
||
|
this.selectedMainId = ''
|
||
|
},
|
||
|
// onSelectChange(selectedRowKeys, selectionRows) {
|
||
|
// this.selectedMainId=selectedRowKeys[0]
|
||
|
// this.selectedRowKeys = selectedRowKeys;
|
||
|
// this.selectionRows = selectionRows;
|
||
|
// },
|
||
|
loadData(arg) {
|
||
|
if (!this.url.list) {
|
||
|
this.$message.error("请设置url.list属性!")
|
||
|
return
|
||
|
}
|
||
|
//加载数据 若传入参数1则加载第一页的内容
|
||
|
if (arg === 1) {
|
||
|
this.ipagination.current = 1;
|
||
|
}
|
||
|
this.onClearSelected()
|
||
|
var params = this.getQueryParams();//查询条件
|
||
|
this.loading = true;
|
||
|
getAction(this.url.list, params).then((res) => {
|
||
|
if (res.success) {
|
||
|
this.dataSource = res.result.records;
|
||
|
this.ipagination.total = res.result.total;
|
||
|
}
|
||
|
if (res.code === 510) {
|
||
|
this.$message.warning(res.message)
|
||
|
}
|
||
|
this.loading = false;
|
||
|
})
|
||
|
},
|
||
|
getSuperFieldList(){
|
||
|
let fieldList=[];
|
||
|
fieldList.push({type:'string',value:'img',text:'设备图片',dictCode:''})
|
||
|
fieldList.push({type:'string',value:'typeid',text:'设备类型',dictCode:'zy_devicetype,name,id'})
|
||
|
fieldList.push({type:'string',value:'code',text:'设备编号',dictCode:''})
|
||
|
fieldList.push({type:'date',value:'buydate',text:'购买时间'})
|
||
|
fieldList.push({type:'sel_user',value:'agent',text:'经办人'})
|
||
|
fieldList.push({type:'string',value:'adress',text:'存放位置',dictCode:''})
|
||
|
fieldList.push({type:'string',value:'status',text:'设备状态',dictCode:''})
|
||
|
fieldList.push({type:'string',value:'maintenancecycle',text:'维护周期',dictCode:''})
|
||
|
fieldList.push({type:'sel_user',value:'administrator',text:'管理人'})
|
||
|
fieldList.push({type:'date',value:'maintenancedate',text:'上次维护时间'})
|
||
|
fieldList.push({type:'string',value:'img3d',text:'3d模型',dictCode:''})
|
||
|
this.superFieldList = fieldList
|
||
|
},
|
||
|
openDetail(id){
|
||
|
this.$refs.ZyDeviceDetail.showModal(id)
|
||
|
// this.$children[0].showModal(id)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|