|
|
@ -114,14 +114,14 @@ |
|
|
|
<el-table-column :label="$t('business.userManager.userRegister.address')" align="center" prop="addressInfo"/> |
|
|
|
<el-table-column :label="$t('common.tableMsg.operation')" align="center" width="200" class-name="small-padding fixed-width"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button v-if="(scope.row.addressInfo == '')" |
|
|
|
<el-button v-if="(scope.row.addressInfo == '' || scope.row.addressInfo == null)" |
|
|
|
size="mini" |
|
|
|
type="text" |
|
|
|
icon="el-icon-document-add" |
|
|
|
@click="handleAddInfo(scope.row)" |
|
|
|
>{{ $t('business.userManager.userRegister.supplement') }} |
|
|
|
</el-button> |
|
|
|
<el-button v-if="(scope.row.addressInfo != '')" |
|
|
|
<el-button v-if="(scope.row.addressInfo != '' && scope.row.addressInfo != null)" |
|
|
|
size="mini" |
|
|
|
type="text" |
|
|
|
icon="el-icon-view" |
|
|
|