技术中心
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-card v-loading="loading">
|
||||
<el-col :span="6">
|
||||
<el-steps :active="5" direction="vertical" style="height: 260px;margin-left: 50px">
|
||||
<el-step title="选择项目"/>
|
||||
<el-step title="选择类型"/>
|
||||
<el-step title="浏览"/>
|
||||
<el-step title="导入到数据库"/>
|
||||
<el-step title="传递"/>
|
||||
</el-steps>
|
||||
</el-col>
|
||||
<div style="width: 620px;margin: 0 auto">
|
||||
<!-- <el-col :span="6">-->
|
||||
<!-- <el-steps :active="5" direction="vertical" style="height: 260px;margin-left: 50px">-->
|
||||
<!-- <el-step title="选择项目"/>-->
|
||||
<!-- <el-step title="选择类型"/>-->
|
||||
<!-- <el-step title="浏览"/>-->
|
||||
<!-- <el-step title="导入到数据库"/>-->
|
||||
<!-- <el-step title="传递"/>-->
|
||||
<!-- </el-steps>-->
|
||||
<!-- </el-col>-->
|
||||
<div style="width: 620px;margin: 0px 400px">
|
||||
<div style="overflow: hidden">
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span>项目:</span>
|
||||
|
||||
@@ -36,7 +36,6 @@
|
||||
<el-table
|
||||
v-loading="listLoading"
|
||||
:data="tableData"
|
||||
:row-class-name="tableRowClassName"
|
||||
size="mini"
|
||||
height="300"
|
||||
highlight-current-row
|
||||
@@ -618,12 +617,6 @@ export default {
|
||||
pagination(pageCurrent, pageSize) {
|
||||
this.tableData = this.tableDataAll.slice((pageCurrent - 1) * pageSize, pageCurrent * pageSize)
|
||||
},
|
||||
tableRowClassName({ row }) {
|
||||
if (this.unSpecification.data.indexOf(row) > -1) {
|
||||
return 'warning-row'
|
||||
}
|
||||
return ''
|
||||
},
|
||||
handleEdit(row) {
|
||||
this.editForm(row, 'form', [this.title = '编辑零件信息', this.dialogFormVisible = true])
|
||||
if (this.type === 2) {
|
||||
|
||||
Reference in New Issue
Block a user