|
@@ -221,10 +221,9 @@ class publish_detail extends BaseUser
|
|
|
id="copy-bid"
|
|
|
data-popover="true"
|
|
|
data-content="<?= htmlspecialchars($row['in_bid']) ?>">
|
|
|
- <?= htmlspecialchars($row['in_bid']) ?>
|
|
|
- </span>
|
|
|
- <button class="info-copy"
|
|
|
- data-target="#copy-bid">复制</button>
|
|
|
+ <?= htmlspecialchars($row['in_bid']) ?></span>
|
|
|
+ <button class="copy info-copy" data-clipboard-action="copy"
|
|
|
+ data-clipboard-target="#copy-bid">复制</button>
|
|
|
</div>
|
|
|
|
|
|
<?php if ($row["in_form"] == "iOS" && strstr($row["in_app"], "ipa") && $this->action != "super"): ?>
|
|
@@ -234,10 +233,10 @@ class publish_detail extends BaseUser
|
|
|
id="copy-nick"
|
|
|
data-popover="true"
|
|
|
data-content="<?= htmlspecialchars($row['in_nick']) ?>">
|
|
|
- <?= htmlspecialchars($row['in_nick']) ?>
|
|
|
- </span>
|
|
|
- <button class="info-copy"
|
|
|
- data-target="#copy-nick">复制</button>
|
|
|
+ <?= htmlspecialchars($row['in_nick']) ?></span>
|
|
|
+ <button class="copy info-copy"
|
|
|
+ data-clipboard-action="copy"
|
|
|
+ data-clipboard-target="#copy-nick">复制</button>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
@@ -266,11 +265,11 @@ class publish_detail extends BaseUser
|
|
|
<span class="info-value"
|
|
|
id="copy-team"
|
|
|
data-popover="true"
|
|
|
- data-content="<?= htmlspecialchars($row['in_team']) ?>">
|
|
|
- <?= htmlspecialchars($row['in_team']) ?>
|
|
|
- </span>
|
|
|
- <button class="info-copy"
|
|
|
- data-target="#copy-team">复制</button>
|
|
|
+ data-content="<?= htmlspecialchars($row['in_team']) ?>"
|
|
|
+ ><?= htmlspecialchars($row['in_team']) ?></span>
|
|
|
+ <button class="copy info-copy"
|
|
|
+ data-clipboard-action="copy"
|
|
|
+ data-clipboard-target="#copy-team">复制</button>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
@@ -307,10 +306,13 @@ class publish_detail extends BaseUser
|
|
|
<a href="<?php echo $durl; ?>"
|
|
|
target="_blank"
|
|
|
data-popover="true"
|
|
|
- data-content="<?php echo $durl; ?>">
|
|
|
+ data-content="<?php echo $durl; ?>"
|
|
|
+ style="vertical-align: middle;display: inline-block;"
|
|
|
+ >
|
|
|
<?php echo $durl; ?>
|
|
|
</a>
|
|
|
- <button class="info-copy"
|
|
|
+ <button class="copy info-copy"
|
|
|
+ data-clipboard-action="copy"
|
|
|
data-clipboard-text="<?php echo $durl; ?>">复制</button>
|
|
|
<?php else: ?>
|
|
|
<?php echo [-1 => "审核中", "正常", "封禁"][$row["in_applock"]]; ?>
|