提交
This commit is contained in:
@@ -92,9 +92,10 @@
|
||||
<!-- <el-table-column prop="field" label="Field"></el-table-column> -->
|
||||
<el-table-column label="State" align="center" width="120">
|
||||
<template slot-scope="scope">
|
||||
{{ revstate(scope.row) }}
|
||||
<span style="font-size: 16px;"v-html="revstate(scope.row)"></span>
|
||||
|
||||
<font
|
||||
style="color: #aaa; display: block; line-height: 18px; font-size: 13px; margin: 5px 0 0 0"
|
||||
style="color: #aaa; display: block; line-height: 18px; font-size: 13px; "
|
||||
v-html="formatDate(scope.row.ctime)"
|
||||
>
|
||||
</font>
|
||||
@@ -102,7 +103,7 @@
|
||||
</el-table-column>
|
||||
<el-table-column label="" width="100" align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="mini" type="primary" plain icon="el-icon-tickets" @click="showdetail(scope.row)">Detail</el-button>
|
||||
<el-button v-show="scope.row.state!=4"ize="mini" type="primary" plain icon="el-icon-tickets" @click="showdetail(scope.row)">Detail</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@@ -691,7 +692,7 @@ export default {
|
||||
} else if (row.state == 3) {
|
||||
frag = 'Accept';
|
||||
} else if (row.state == 4) {
|
||||
frag = 'invalid';
|
||||
frag = '<text style="color:#aaa">invalid</text>';
|
||||
} else if (row.state == 5) {
|
||||
frag = 'invitation';
|
||||
}
|
||||
@@ -779,7 +780,7 @@ export default {
|
||||
background: #f05555;
|
||||
}
|
||||
.tab_tie_col {
|
||||
margin-bottom: 5px;
|
||||
/* margin-bottom: 5px; */
|
||||
color: #333;
|
||||
word-wrap: break-word;
|
||||
word-break: normal;
|
||||
|
||||
Reference in New Issue
Block a user