| | |
| | | <el-table-column label="手机" prop="phone" sortable width="120" align="center" > |
| | | <template slot-scope="scope">{{scope.row.phone? scope.row.phone: '————'}}</template> |
| | | </el-table-column> |
| | | <el-table-column label="其它联系方式" prop="wx qq twitter" sortable width="180" align="center" > |
| | | <el-table-column label="其它联系方式" prop="wx qq twitter" sortable :show-overflow-tooltip="true" width="150" align="center" > |
| | | <template slot-scope="scope"> |
| | | <span v-if="scope.row.wx || scope.row.qq || scope.row.twitter == true"> |
| | | {{scope.row.wx}}<br> |
| | | {{scope.row.qq}}<br> |
| | | {{scope.row.twitter}} |
| | | {{scope.row.wx}}/{{scope.row.qq}}/{{scope.row.twitter}} |
| | | </span> |
| | | <span v-else>————</span> |
| | | </template> |