Update index.vue
This commit is contained in:
@@ -26,15 +26,26 @@
|
||||
<el-table :data="surveys" style="width: 100%">
|
||||
<el-table-column type="index" label="#"> </el-table-column>
|
||||
|
||||
<el-table-column prop="title" label="کاربر" width="">
|
||||
<el-table-column prop="title" label="نام و نام خانوادگی" width="">
|
||||
<template slot-scope="scope">
|
||||
|
||||
{{ scope.row.fullName }}
|
||||
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column prop="code" label="کد پذیرش دایم" width="" align="center">
|
||||
<el-table-column prop="phoneNumber" label=" شماره تماس " width="" align="center">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.phoneNumber }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column prop="email" label=" ایمیل " width="" align="center">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.email || '-' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
|
||||
<el-table-column prop="code" label="کد پذیرش " width="" align="center">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.code || '-' }}</span>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user