This commit is contained in:
caoxinyu
2019-09-25 20:11:52 +08:00
parent c90acc6a85
commit e3035b1d55
8 changed files with 18 additions and 14 deletions

View File

@@ -28,7 +28,7 @@
v-loading="loading"
:data="tableData"
:summary-method="getSummaries"
style="width: 100%"
style="width: 100%;margin-top: 6px"
highlight-current-row
height="400"
size="mini"
@@ -89,7 +89,7 @@
</el-card>
<el-card>
<h3 style="text-align: center;">采购部采购</h3>
<el-tabs v-model="PartType" type="border-card" @tab-click="searchTable()">
<el-tabs v-model="PartType" type="border-card" style="margin-top: 10px" @tab-click="searchTable()">
<el-tab-pane label="标准件" name="标准件">
<el-table :data="tableData00" size="mini" height="400px" border stripe>
<el-table-column align="center" label="机床图号">
@@ -268,7 +268,7 @@
<el-table
:data="tableData1"
border
style="width: 100%;"
style="width: 100%;margin-top: 6px;"
height="400">
<el-table-column label="机床图号" align="center" min-width="80">
<template slot-scope="scope">

View File

@@ -1064,7 +1064,7 @@ export default {
<style scoped>
.el-card{
margin-bottom: 15px;
margin-bottom: 0px;
}
.el-date-editor{
width:150px

View File

@@ -602,7 +602,7 @@
</el-table-column>
<el-table-column label="更新" size="mini" align="center" width="90">
<template slot-scope="scope">
<el-button size="mini" type="primary" style="" @click="updateDate(scope.$index)">更新</el-button>
<el-button size="mini" type="primary" plain style="" @click="updateDate(scope.$index)">更新</el-button>
</template>
</el-table-column>
</el-table>

View File

@@ -172,9 +172,13 @@
</el-row>
<el-divider content-position="right">跳转链接</el-divider>
<el-row style="margin-left: 20px">
<el-button size="medium" type="text" @click="toStatusQuery">零件状态查询</el-button>
<el-tooltip :open-delay="1000" effect="dark" content="转到零件状态查询模块" placement="top">
<el-button size="medium" type="text" @click="toStatusQuery">零件状态查询</el-button>
</el-tooltip>
<el-divider direction="vertical"/>
<el-button size="medium" type="text" @click="toProcessingStatus">加工进度查询</el-button>
<el-tooltip :open-delay="1000" effect="dark" content="转到加工进度查询模块" placement="top">
<el-button size="medium" type="text" @click="toProcessingStatus">加工进度查询</el-button>
</el-tooltip>
</el-row>
</div>
</div>