feat: 工具详情页添加描述
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
<script setup lang="ts">
|
||||
import { reactive } from 'vue'
|
||||
import DetailHeader from '@/components/Layout/DetailHeader/DetailHeader.vue'
|
||||
import ToolDetail from '@/components/Layout/ToolDetail/ToolDetail.vue'
|
||||
// import { copy } from '@/utils/string'
|
||||
const info = reactive({
|
||||
title: "ASCII码表",
|
||||
@@ -311,6 +312,14 @@ const tableDataNonStandard = reactive([
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
|
||||
<!-- desc -->
|
||||
<ToolDetail title="描述">
|
||||
<el-text>
|
||||
ASCII(American Standard Code for Information Interchange,美国信息交换标准代码)是一种字符编码标准,它使用一个字节(8位二进制数)来表示128个不同的字符。这些字符包括33个控制字符(具有特殊功能但不可直接显示的字符)和95个可打印字符。ASCII码表中的字符从0到127编号,其中0代表空字符(NULL),1代表开始头(SOH),2代表正文开始(STX),依此类推。ASCII码表的最小值是0,代表空字符。
|
||||
</el-text>
|
||||
</ToolDetail>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user