{% extends 'ewoooc_base.html' %} {% block title %}EwoooC 商品看板{% endblock %} {% block extra_css %} {% endblock %} {% block ewooo_content %}
| 分類 | 商品名稱 | MOMO 價格 | PChome 價格 | 競價判讀 | 昨日漲跌 | 週漲跌 | 更新時間 | 上架時間 |
|---|---|---|---|---|---|---|---|---|
| {{ product.category or '未分類' }} |
{{ product.name }}
MOMO {{ product.i_code }}
{% if competitor and competitor.product_url %}
PChome {{ competitor.product_id }}
{% elif competitor and competitor.product_id %}
PChome {{ competitor.product_id }}
{% else %}
PChome 待比對
{% endif %}
{% if competitor and competitor.product_name %}
PChome:{{ competitor.product_name }}
{% endif %}
|
{% if competitor and competitor.price %}
${{ competitor.price | int | number_format }}
{% if competitor.match_score %}
match {{ (competitor.match_score * 100) | round(0) | int }}%
{% endif %}
{% else %}
待比對
{% endif %}
|
{{ decision.label }}
{% if decision.gap_pct is not none %}
{% endif %}
|
{% if item.yesterday_diff > 0 %} ▲ +{{ item.yesterday_diff | abs | int | number_format }} {% elif item.yesterday_diff < 0 %} ▼ -{{ item.yesterday_diff | abs | int | number_format }} {% else %} -- {% endif %} | {% set week_diff = item.stats.get('7d_diff', 0) %} {% if week_diff > 0 %} +{{ week_diff | int | number_format }} {% elif week_diff < 0 %} -{{ week_diff | abs | int | number_format }} {% else %} -- {% endif %} | {{ item.record.timestamp.strftime('%m-%d %H:%M') if item.record.timestamp else '--' }} | {{ item.safe_created_at.strftime('%m-%d %H:%M') if item.safe_created_at else '--' }} | |
|
{% if search_query %}
找不到與「{{ search_query }}」相關的商品
{% else %}
目前沒有符合條件的商品
{% endif %}
|
||||||||