This commit is contained in:
Lan
2024-10-07 15:45:20 +08:00
parent 78632563cd
commit 1a69c16030
+11 -7
View File
@@ -132,26 +132,30 @@
<option value="count">按查看次数</option> <option value="count">按查看次数</option>
<option value="forever">永久</option> <option value="forever">永久</option>
</select> </select>
<div <div v-if="expirationMethod !== 'forever'" class="flex items-center space-x-2">
v-if="expirationMethod !== 'forever'" <div class="relative flex-grow">
class="flex flex-wrap items-center space-x-2"
>
<input <input
v-model="expirationValue" v-model="expirationValue"
type="number" type="number"
:placeholder="getPlaceholder()" :placeholder="getPlaceholder()"
:class="[ :class="[
'flex-grow px-4 py-2 rounded-xl placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-indigo-500 mb-2 sm:mb-0', 'w-full px-4 py-2 pr-16 rounded-xl placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-indigo-500',
isDarkMode isDarkMode
? 'bg-gray-800 bg-opacity-50 text-white' ? 'bg-gray-800 bg-opacity-50 text-white'
: 'bg-white text-gray-900 border border-gray-300' : 'bg-white text-gray-900 border border-gray-300'
]" ]"
/> />
<span :class="['whitespace-nowrap', isDarkMode ? 'text-gray-300' : 'text-gray-700']"> <span
:class="[
'absolute right-3 top-1/2 transform -translate-y-1/2',
isDarkMode ? 'text-gray-300' : 'text-gray-700'
]"
>
{{ getUnit() }} {{ getUnit() }}
</span> </span>
</div> </div>
</div> </div>
</div>
<!-- 提交按钮 --> <!-- 提交按钮 -->
<button <button
type="submit" type="submit"
@@ -709,7 +713,7 @@ const copyRetrieveLink = async (code: string) => {
alertStore.showAlert('取件链接已复制到剪贴板', 'success') alertStore.showAlert('取件链接已复制到剪贴板', 'success')
} catch (err) { } catch (err) {
console.error('无法复制取件链接: ', err) console.error('无法复制取件链接: ', err)
alertStore.showAlert('复制失败,请动复制取件链接', 'error') alertStore.showAlert('复制失败,请动复制取件链接', 'error')
} }
} }