40 lines
861 B
Plaintext
40 lines
861 B
Plaintext
<template>
|
|
<cl-page>
|
|
<view class="p-10 flex flex-col items-center justify-center">
|
|
<cl-text :pt="{ className: 'text-center mb-5' }"
|
|
>我们期待与您携手,共同探索技术的边界,共同推动技术的进步</cl-text
|
|
>
|
|
|
|
<view class="p-2 bg-white mb-5 rounded-xl">
|
|
<cl-image
|
|
src="/static/cs.png"
|
|
:height="320"
|
|
:width="320"
|
|
show-menu-by-longpress
|
|
></cl-image>
|
|
</view>
|
|
|
|
<!-- #ifndef H5 -->
|
|
<cl-button type="light" icon="download-line" @tap="saveImage">保存图片</cl-button>
|
|
<!-- #endif -->
|
|
</view>
|
|
</cl-page>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useUi } from "@/uni_modules/cool-ui";
|
|
|
|
const ui = useUi();
|
|
|
|
function saveImage() {
|
|
uni.saveImageToPhotosAlbum({
|
|
filePath: "/static/cs.png",
|
|
success: () => {
|
|
ui.showToast({
|
|
message: "保存成功"
|
|
});
|
|
}
|
|
});
|
|
}
|
|
</script>
|