车间设备管理

This commit is contained in:
jiangfuzhuang
2020-02-05 11:29:03 +08:00
parent a87eefe580
commit 8487abecf2
3 changed files with 73 additions and 50 deletions

View File

@@ -7,8 +7,8 @@ export function getData(check, equipmentName, pageCurrent, pageSize) {
data: { data: {
type: '1', type: '1',
name: '设备管理_设备加工能力_查询数据_设备维护NEW', name: '设备管理_设备加工能力_查询数据_设备维护NEW',
param: '设备名称_check=' + check + '=int&设备名称=' + equipmentName, param: '设备名称_check=' + check + '=int&设备名称=' + equipmentName
pagination: pageCurrent + '&' + pageSize // pagination: pageCurrent + '&' + pageSize
} }
}) })
} }

View File

@@ -3,14 +3,27 @@
<el-card> <el-card>
<span>设备名称:</span> <span>设备名称:</span>
<el-input v-model="equipmentName" placeholder="设备名称" size="small" clearable style="width:200px;margin-left: 10px"/> <el-input v-model="equipmentName" placeholder="设备名称" size="small" clearable style="width:200px;margin-left: 10px"/>
<el-button type="success" size="small" icon="el-icon-search" style="margin-left:30px" @click="pageCurrent = 1;fetchData()">查询</el-button> <el-button type="success" size="small" icon="el-icon-search" style="margin-left:30px;background: #ecf5ff;border-color: #2d72d5;color: #2d72d5;" @click="pageCurrent = 1;fetchData()">查询</el-button>
<el-tooltip effect="dark" content="添加新设备" placement="top"> <el-tooltip effect="dark" content="添加新设备" placement="top">
<el-button type="primary" size="small" icon="el-icon-circle-plus-outline" style="margin-left:10px" @click="handleAdd()">新增</el-button> <el-button type="primary" size="small" icon="el-icon-circle-plus-outline" style="margin-left:10px;background: #fdf6ec;border-color: #ff9759;color: #ff9759;" @click="handleAdd()">新增</el-button>
</el-tooltip>
<span style="margin-left: 40px">有效时间</span>
<el-date-picker
v-model="time"
type="date"
size="small"
value-format="yyyy-MM-dd"
placeholder="选择日期"/>
<el-tooltip :open-delay="1200" effect="dark" content="设定设备参数有效时间" placement="top">
<el-button type="primary" size="small" icon="el-icon-setting" style="margin-left:10px;background: #fdf6ec;border-color: #ff9759;color: #ff9759;" @click="setUp">设定</el-button>
</el-tooltip>
<el-tooltip effect="dark" content="生成有效时间内设备加工能力" placement="top">
<el-button type="success" size="small" icon="el-icon-edit-outline" style="margin-left:10px;background: #ecf5ff;border-color: #2d72d5;color: #2d72d5;" @click="generate">生成设备加工能力</el-button>
</el-tooltip> </el-tooltip>
</el-card> </el-card>
<el-card> <el-card>
<el-table :data="List" border size="small" stripe highlight-current-row height="500px"> <el-table :data="List" border size="small" stripe highlight-current-row height="700px">
<el-table-column label="设备名称" prop="设备名称" align="center" > <el-table-column label="设备名称" prop="设备名称" align="center" >
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.设备名称 }} {{ scope.row.设备名称 }}
@@ -68,32 +81,32 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="block" style="margin-top: 10px;"> <!-- <div class="block" style="margin-top: 10px;">-->
<el-pagination <!-- <el-pagination-->
:current-page="pageCurrent" <!-- :current-page="pageCurrent"-->
:page-sizes="[10, 20, 30, 40]" <!-- :page-sizes="[10, 20, 30, 40]"-->
:page-size="pageSize" <!-- :page-size="pageSize"-->
:total="total" <!-- :total="total"-->
layout="total, sizes, prev, pager, next, jumper" <!-- layout="total, sizes, prev, pager, next, jumper"-->
@size-change="handleSizeChange" <!-- @size-change="handleSizeChange"-->
@current-change="handleCurrentChange"/> <!-- @current-change="handleCurrentChange"/>-->
</div> <!-- </div>-->
</el-card>
<el-card>
<span>有效时间</span>
<el-date-picker
v-model="time"
type="date"
size="small"
value-format="yyyy-MM-dd"
placeholder="选择日期"/>
<el-tooltip :open-delay="1200" effect="dark" content="设定设备参数有效时间" placement="top">
<el-button type="primary" size="small" icon="el-icon-setting" style="margin-left:10px" @click="setUp">设定</el-button>
</el-tooltip>
<el-tooltip effect="dark" content="生成有效时间内设备加工能力" placement="top">
<el-button type="success" size="small" icon="el-icon-edit-outline" style="margin-left:10px" @click="generate">生成设备加工能力</el-button>
</el-tooltip>
</el-card> </el-card>
<!-- <el-card>-->
<!-- <span>有效时间</span>-->
<!-- <el-date-picker-->
<!-- v-model="time"-->
<!-- type="date"-->
<!-- size="small"-->
<!-- value-format="yyyy-MM-dd"-->
<!-- placeholder="选择日期"/>-->
<!-- <el-tooltip :open-delay="1200" effect="dark" content="设定设备参数有效时间" placement="top">-->
<!-- <el-button type="primary" size="small" icon="el-icon-setting" style="margin-left:10px" @click="setUp">设定</el-button>-->
<!-- </el-tooltip>-->
<!-- <el-tooltip effect="dark" content="生成有效时间内设备加工能力" placement="top">-->
<!-- <el-button type="success" size="small" icon="el-icon-edit-outline" style="margin-left:10px" @click="generate">生成设备加工能力</el-button>-->
<!-- </el-tooltip>-->
<!-- </el-card>-->
<el-dialog v-el-drag-dialog :title="title" :visible.sync="dialogFormVisible" center style="min-height: 300px" width="800px"> <el-dialog v-el-drag-dialog :title="title" :visible.sync="dialogFormVisible" center style="min-height: 300px" width="800px">
<el-form ref="form" :model="form" :rules="rules" label-position="left" label-width="120px" class="demo-ruleForm"> <el-form ref="form" :model="form" :rules="rules" label-position="left" label-width="120px" class="demo-ruleForm">
@@ -240,8 +253,8 @@ export default {
this.check = 0 this.check = 0
} }
getData(this.check, this.equipmentName, this.pageCurrent, this.pageSize).then(response => { getData(this.check, this.equipmentName, this.pageCurrent, this.pageSize).then(response => {
this.List = response.data.rows this.List = response.data
this.total = response.data.total // this.total = response.data.total
}) })
}, },
initialization() { initialization() {
@@ -399,4 +412,14 @@ export default {
.el-card{ .el-card{
margin-bottom: 1px; margin-bottom: 1px;
} }
/*.el-button--success {*/
/* background: #ecf5ff;*/
/* border-color: #2d72d5;*/
/* color: #2d72d5;*/
/*}*/
/*.el-button--primary {*/
/* background: #fdf6ec;*/
/* border-color: #ff9759;*/
/* color: #ff9759;*/
/*}*/
</style> </style>

View File

@@ -39,11 +39,11 @@
<!-- size="small"--> <!-- size="small"-->
<!-- type="date"--> <!-- type="date"-->
<!-- placeholder="请选择结束日期"/>--> <!-- placeholder="请选择结束日期"/>-->
<el-button type="success" icon="el-icon-search" size="small" style="margin-left: 10px" @click="PageSize = 10;PageCurrent = 1;fetchTableData1()">查询</el-button> <el-button type="success" icon="el-icon-search" size="small" style="margin-left: 10px;background: #ecf5ff;border-color: #2d72d5;color: #2d72d5;" @click="PageSize = 10;PageCurrent = 1;fetchTableData1()">查询</el-button>
<el-tooltip :open-delay="1200" effect="dark" content="新增项目" placement="top"> <el-tooltip :open-delay="1200" effect="dark" content="新增项目" placement="top">
<el-button type="primary" icon="el-icon-circle-plus-outline" size="small" style="margin-left: 10px" @click="ADD()">新增</el-button> <el-button type="primary" icon="el-icon-circle-plus-outline" size="small" style="margin-left: 10px;background: #fdf6ec;border-color: #ff9759;color: #ff9759;" @click="ADD()">新增</el-button>
</el-tooltip> </el-tooltip>
<!-- <el-button type="info" size="small" style="margin-left: 10px">导出Excel</el-button>--> <!-- <el-button type="info" size="small" style="margin-left: 10px">导出Excel</el-button>-->
</div> </div>
</el-card> </el-card>
<el-row> <el-row>
@@ -456,21 +456,21 @@ export default {
</script> </script>
<style scoped> <style scoped>
.el-button--success { /*.el-button--success {*/
background: #ffffff; /* background: #ecf5ff;*/
border-color: #2d72d5; /* border-color: #2d72d5;*/
color: #2d72d5; /* color: #2d72d5;*/
} /*}*/
.el-button--primary { /*.el-button--primary {*/
background: #ffffff; /* background: #fdf6ec;*/
border-color: #ff9759; /* border-color: #ff9759;*/
color: #ff9759; /* color: #ff9759;*/
} /* }*/
.el-button--info { /*.el-button--info {*/
background: #ffffff; /* background: #f0f9eb;*/
border-color: #67c23a; /* border-color: #67c23a;*/
color: #67c23a; /* color: #67c23a;*/
} /*}*/
</style> </style>
<style lang="scss"> <style lang="scss">
.subTableHeader { .subTableHeader {