|
@@ -38,6 +38,12 @@
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<el-table :data="tableData" style="min-height:400px;" v-loading="loading" stripe @sort-change="sortChange" @selection-change="handleSelectionChange">
|
|
<el-table :data="tableData" style="min-height:400px;" v-loading="loading" stripe @sort-change="sortChange" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
+ <el-table-column label="状态" width="80">
|
|
|
|
|
+ <template slot-scope="{row}">
|
|
|
|
|
+ <span v-if="row.status" style="color: green;">已完成</span>
|
|
|
|
|
+ <span v-else style="color: red;">未完成</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="customerName" label="客户" width="180"></el-table-column>
|
|
<el-table-column prop="customerName" label="客户" width="180"></el-table-column>
|
|
|
<el-table-column prop="number" label="编号" width="180"></el-table-column>
|
|
<el-table-column prop="number" label="编号" width="180"></el-table-column>
|
|
|
<el-table-column prop="name" label="品种及规格" width="180"></el-table-column>
|
|
<el-table-column prop="name" label="品种及规格" width="180"></el-table-column>
|