|
@@ -21,28 +21,26 @@
|
|
|
</el-form>
|
|
|
</div>
|
|
|
|
|
|
- <el-table :data="tableData" fit style="width: 950%">
|
|
|
- <el-table-column label="ID" width="120" align="center">
|
|
|
- <template slot-scope="scope"><span>{{ scope.row.id }}</span></template>
|
|
|
+ <el-table :data="tableData" fit>
|
|
|
+ <el-table-column label="ID" min-width="120" align="center">
|
|
|
+ <template slot-scope="scope">{{ scope.row.id }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="主题" width="230" align="center">
|
|
|
+ <el-table-column label="主题" min-width="230" align="center">
|
|
|
<template slot-scope="scope"><a href="javascript:void(0)" style="color:#20a0ff" @click="toReportView(scope.row.id)">{{ scope.row.bugName }}</a></template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="处理人" width="150" align="center">
|
|
|
- <template slot-scope="scope"><span>{{ scope.row.currentHandler }}</span></template>
|
|
|
+ <el-table-column label="处理人" min-width="150" align="center">
|
|
|
+ <template slot-scope="scope">{{ scope.row.currentHandler }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="创建日期" width="250" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{ scope.row.gmtCreate }}</span>
|
|
|
- </template>
|
|
|
+ <el-table-column label="创建日期" min-width="250" align="center">
|
|
|
+ <template slot-scope="scope">{{ scope.row.gmtCreate }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="级别" width="150" align="center">
|
|
|
- <template slot-scope="scope"><span>{{ scope.row.priority }}</span></template>
|
|
|
+ <el-table-column label="级别" min-width="150" align="center">
|
|
|
+ <template slot-scope="scope">{{ scope.row.priority }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="状态" width="150" align="center">
|
|
|
- <template slot-scope="scope"><span>{{ scope.row.status }}</span></template>
|
|
|
+ <el-table-column label="状态" min-width="150" align="center">
|
|
|
+ <template slot-scope="scope">{{ scope.row.status }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column fixed="right" label="操作" width="150" align="center">
|
|
|
+ <el-table-column fixed="right" label="操作" min-width="250" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button size="mini" type="primary" @click="queryPresentation(scope.row)">更新</el-button>
|
|
|
<el-button size="mini" type="primary" @click="delePresentation(scope.row.id)">删除</el-button>
|