This commit is contained in:
liushuai
2020-05-15 18:05:34 +08:00
12 changed files with 118 additions and 375 deletions

View File

@@ -31,17 +31,17 @@
<el-card>
<el-col :span="16.5">
<el-table v-loading="listLoading" :data="tableData1" :header-cell-style="{fontFamily:'YouYuan',fontSize:'13px',fontWeight:200}" stripe highlight-current-row style="margin-top: 3px;width: 935px" height="580" border size="mini" @row-click="selectMachine">
<el-table-column align="center" label="项目名称" prop="项目名称" width="110" show-overflow-tooltip>
<el-table-column align="center" label="项目名称" prop="项目名称" width="110" fixed show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.项目名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="客户名称" prop="客户名称" width="130" show-overflow-tooltip>
<el-table-column align="center" label="客户名称" prop="客户名称" width="130" fixed show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.客户名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="付款方式" width="80">
<el-table-column align="center" label="付款方式" fixed width="80">
<template slot-scope="scope">
{{ scope.row.付款方式 }}
</template>

View File

@@ -51,18 +51,18 @@
stripe
size="mini"
@row-click="fetchTableData2">
<el-table-column align="center" label="合同编号" prop="合同编号" width="120">
<el-table-column align="center" label="合同编号" prop="合同编号" width="120" fixed>
<template slot-scope="scope">
<!-- <el-tag size="mini" type="primary">{{ scope.row.合同编号 }}</el-tag>-->
{{ scope.row.合同编号 }}
</template>
</el-table-column>
<el-table-column align="center" label="项目名称" prop="项目名称" width="110" show-overflow-tooltip>
<el-table-column align="center" label="项目名称" prop="项目名称" width="110" fixed show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.项目名称 }}
</template>
</el-table-column>
<el-table-column align="center" label="客户名称" width="160" show-overflow-tooltip>
<el-table-column align="center" label="客户名称" width="160" fixed show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.客户名称 }}
</template>