|
@@ -154,42 +154,44 @@
|
|
|
height="40"
|
|
|
align="center"
|
|
|
style="font-family: 'fangsong'"
|
|
|
+ v-for="(item, i) in message"
|
|
|
+ :key="i"
|
|
|
>
|
|
|
- <td class="JR_right">{{ message.name }}</td>
|
|
|
+ <td class="JR_right">{{ item.name }}</td>
|
|
|
<td class="JR_right">
|
|
|
<dict-tag
|
|
|
:options="dict.type.post_Level"
|
|
|
- :value="message.postId"
|
|
|
+ :value="item.postId"
|
|
|
/>
|
|
|
</td>
|
|
|
<td class="JR_right">
|
|
|
<dict-tag
|
|
|
:options="dict.type.post_Level"
|
|
|
- :value="message.rankId"
|
|
|
+ :value="item.rankId"
|
|
|
/>
|
|
|
</td>
|
|
|
<td class="JR_right">
|
|
|
<dict-tag
|
|
|
:options="dict.type.sys_familyName"
|
|
|
- :value="message.nationId"
|
|
|
+ :value="item.nationId"
|
|
|
/>
|
|
|
</td>
|
|
|
- <td class="JR_right">{{ message.origin }}</td>
|
|
|
- <td class="JR_right">{{ message.birthDate }}</td>
|
|
|
- <td class="JR_right">{{ message.enlistDate }}</td>
|
|
|
- <td class="JR_right">{{ message.partyDate }}</td>
|
|
|
+ <td class="JR_right">{{ item.origin }}</td>
|
|
|
+ <td class="JR_right">{{ item.birthDate }}</td>
|
|
|
+ <td class="JR_right">{{ item.enlistDate }}</td>
|
|
|
+ <td class="JR_right">{{ item.partyDate }}</td>
|
|
|
<td class="JR_right">
|
|
|
<dict-tag
|
|
|
:options="dict.type.Degree_level"
|
|
|
- :value="message.educationId"
|
|
|
+ :value="item.educationId"
|
|
|
/>
|
|
|
</td>
|
|
|
<td class="JR_right">
|
|
|
<dict-tag
|
|
|
:options="dict.type.marryList"
|
|
|
- :value="message.marryList"
|
|
|
+ :value="item.marryList"
|
|
|
/></td>
|
|
|
- <td class="JR_right">{{ message.live }}{{ message.phone }}</td>
|
|
|
+ <td class="JR_right">{{ item.live }}{{ item.phone }}</td>
|
|
|
<td class="JR_right"></td>
|
|
|
</tr>
|
|
|
<tr class="JR_tr" height="40" align="center">
|