diff --git a/app/views/admins/platform_communicates/_td.html.erb b/app/views/admins/platform_communicates/_td.html.erb
index 2c50e36df..ee290773a 100644
--- a/app/views/admins/platform_communicates/_td.html.erb
+++ b/app/views/admins/platform_communicates/_td.html.erb
@@ -1,11 +1,15 @@
<%= page_no %> |
<%= c.title %> |
<%= c.content.truncate(50) %> |
-<%= c.fake_id %> |
-<%= c.tag_field %> |
+<%= c.url_or_uuid.present? ? c.url_or_uuid.truncate(50) : "" %> |
<%= c.order_index %> |
<%= c.tag_field.to_s.include?("活动") ? link_to(c.watchers_count, "/admins/platform_communicates/#{c.id}") : "--"%> |
+ <% if c.vote.present? %>
+ <%= link_to "编辑投票", edit_vote_admins_platform_communicate_path(c), class: "action" %>
+ <% else %>
+ <%= link_to "新增投票", new_vote_admins_platform_communicate_path(c), class: "action" %>
+ <% end %>
<%= link_to c.status ? "下架" : "上架", "/admins/platform_communicates/#{c.id}/online_switch.js", style: "#{c.status? ? 'color:#FF6800;' : ''}", method: :post, remote: true%>
<%= link_to "编辑", edit_admins_platform_communicate_path(c), remote: true, class: "action" %>
<%= link_to "删除", admins_platform_communicate_path(c), method: :delete, data:{confirm: "确认删除的吗?"}, class: "action" %>
|