feat:project 取消lastUpdate列

This commit is contained in:
wangwenrui
2020-04-17 13:58:00 +08:00
parent af138f576d
commit 134cc24ce4

View File

@@ -132,7 +132,7 @@
   
<span :title="$t('overall.edit')" @click="toEditEndpoint(scope.row)" class="content-right-option" :id="'edp-edit-'+scope.row.id"><i class="nz-icon nz-icon-edit"></i></span> <span :title="$t('overall.edit')" @click="toEditEndpoint(scope.row)" class="content-right-option" :id="'edp-edit-'+scope.row.id"><i class="nz-icon nz-icon-edit"></i></span>
</div> </div>
<span v-else-if="item.prop == 'lastUpdate'">{{dateFormat(scope.row.lastUpdate)}}</span> <!-- <span v-else-if="item.prop == 'lastUpdate'">{{dateFormat(scope.row.lastUpdate)}}</span>-->
<span v-else-if="item.prop == 'state'" > <span v-else-if="item.prop == 'state'" >
<el-popover placement="right" width="50" trigger="hover" :content="getStateContent(scope.row)"> <el-popover placement="right" width="50" trigger="hover" :content="getStateContent(scope.row)">
<div slot="reference" style="width: 20px"> <div slot="reference" style="width: 20px">
@@ -246,11 +246,11 @@
prop: 'state', prop: 'state',
show: true, show: true,
}, },
{ // {
label: this.$t("project.endpoint.lastUpdate"), // label: this.$t("project.endpoint.lastUpdate"),
prop: 'lastUpdate', // prop: 'lastUpdate',
show: true, // show: true,
}, // },
{ {
label: this.$t('config.account.option'), label: this.$t('config.account.option'),
prop: 'option', prop: 'option',
@@ -623,9 +623,9 @@
if(row){ if(row){
if(row.state == 1){ if(row.state == 1){
return 'up'+'['+this.formatUpdateTime(row.lastUpdate)+']'; return 'up';
}else{ }else{
return 'down'+'['+this.getStateErrorMsg(row)+']'; return 'down';
} }
} }
}, },