|
|
@@ -79,7 +79,7 @@
|
|
|
<tr>
|
|
|
<th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">交易对</th>
|
|
|
<th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">当前状态</th>
|
|
|
- <th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider hidden md:table-cell">利润/阈值</th>
|
|
|
+ <th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider hidden md:table-cell">利润</th>
|
|
|
<th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider hidden sm:table-cell">创建时间</th>
|
|
|
<th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">操作</th>
|
|
|
</tr>
|
|
|
@@ -97,7 +97,7 @@
|
|
|
<tr>
|
|
|
<th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">交易对</th>
|
|
|
<th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">最终状态</th>
|
|
|
- <th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider hidden md:table-cell">利润/阈值</th>
|
|
|
+ <th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider hidden md:table-cell">利润</th>
|
|
|
<th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider hidden sm:table-cell">创建时间</th>
|
|
|
<th scope="col" class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">操作</th>
|
|
|
</tr>
|
|
|
@@ -215,7 +215,7 @@
|
|
|
function createTableRow(task) {
|
|
|
const tr = document.createElement('tr');
|
|
|
tr.className = 'hover:bg-gray-50 transition duration-150';
|
|
|
- const profitText = task.profit && task.profitLimit ? `${task.profit} (${task.profitLimit})` : (task.profit || 'N/A');
|
|
|
+ const profitText = task.profit ? `${task.profit}` : ('N/A');
|
|
|
|
|
|
tr.innerHTML = `
|
|
|
<td class="px-4 py-3 whitespace-nowrap text-sm font-medium text-gray-900">${task.symbol || 'N/A'}</td>
|
|
|
@@ -341,7 +341,7 @@
|
|
|
["目标代币", `${task.toTokenAmountHuman || 'N/A'} ${task.toToken || ''}`],
|
|
|
["创建时间", task.creationTime || 'N/A'],
|
|
|
["利润", task.profit || 'N/A'],
|
|
|
- ["利润阈值", task.profitLimit || 'N/A']
|
|
|
+ // ["利润阈值", task.profitLimit || 'N/A']
|
|
|
]);
|
|
|
|
|
|
infoMap.forEach((value, label) => {
|