feat:模具管理-添加维修单模块
parent
aa71195250
commit
5723cd5697
@ -0,0 +1,67 @@
|
||||
import upload from '@/utils/upload'
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function getMoldRepairPage(params = {}) {
|
||||
return request({
|
||||
url: '/admin-api/mes/mold-repair/page',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
export function getMoldRepair(id) {
|
||||
return request({
|
||||
url: '/admin-api/mes/mold-repair/get',
|
||||
method: 'get',
|
||||
params: { id }
|
||||
})
|
||||
}
|
||||
|
||||
export function createMoldRepair(data) {
|
||||
return request({
|
||||
url: '/admin-api/mes/mold-repair/create',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function updateMoldRepair(data) {
|
||||
return request({
|
||||
url: '/admin-api/mes/mold-repair/update',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function deleteMoldRepair(ids) {
|
||||
return request({
|
||||
url: '/admin-api/mes/mold-repair/delete',
|
||||
method: 'delete',
|
||||
params: { ids }
|
||||
})
|
||||
}
|
||||
|
||||
export function updateMoldRepairStatus(data) {
|
||||
return request({
|
||||
url: '/admin-api/mes/mold-repair/updateMoldRepairStatus',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function getMoldRepairLineListByRepairId(repairId) {
|
||||
return request({
|
||||
url: '/admin-api/mes/mold-repair/mold-repair-line/list-by-repair-id',
|
||||
method: 'get',
|
||||
params: { repairId }
|
||||
})
|
||||
}
|
||||
|
||||
export function uploadRepairImage(filePath, name = 'file') {
|
||||
return upload({
|
||||
url: '/admin-api/infra/file/upload',
|
||||
name,
|
||||
filePath,
|
||||
showLoading: false
|
||||
})
|
||||
}
|
||||
@ -0,0 +1,612 @@
|
||||
<template>
|
||||
<view class="page-container">
|
||||
<NavBar :title="t('moldRepair.moduleName')" />
|
||||
|
||||
<view class="filter-bar">
|
||||
<view class="keyword-box">
|
||||
<input
|
||||
v-model="searchKeyword"
|
||||
class="keyword-input"
|
||||
type="text"
|
||||
:placeholder="t('moldRepair.searchPlaceholder')"
|
||||
placeholder-class="placeholder"
|
||||
:focus="keywordFocus"
|
||||
confirm-type="search"
|
||||
@blur="keywordFocus = false"
|
||||
@input="onSearchInput"
|
||||
@confirm="handleSearch"
|
||||
/>
|
||||
</view>
|
||||
<picker :range="statusLabels" :value="statusPickerIndex" @change="onStatusFilterChange">
|
||||
<view class="status-box">
|
||||
<text class="status-box-text">{{ selectedStatusLabel }}</text>
|
||||
<uni-icons type="bottom" size="14" color="#9ca3af"></uni-icons>
|
||||
</view>
|
||||
</picker>
|
||||
<view class="reset-filter-btn" @click="resetFilters">{{ t('functionCommon.reset') }}</view>
|
||||
<view class="scan-btn" @click="handleScan">
|
||||
<uni-icons type="scan" size="22" color="#111827"></uni-icons>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<scroll-view
|
||||
scroll-y
|
||||
class="list-scroll"
|
||||
:scroll-top="scrollTop"
|
||||
@scroll="onScroll"
|
||||
@scrolltolower="loadMore"
|
||||
:lower-threshold="80"
|
||||
>
|
||||
<view class="list-wrap">
|
||||
<view
|
||||
v-for="item in list"
|
||||
:key="item.id"
|
||||
class="repair-card"
|
||||
@click="openCard(item)"
|
||||
>
|
||||
<view class="card-main">
|
||||
<view class="card-top">
|
||||
<text class="repair-code">{{ textValue(item.repairCode) }}</text>
|
||||
<view :class="['repair-status-tag', getRepairStatusTagClass(item.repairStatus)]">{{ getRepairStatusText(item.repairStatus) }}</view>
|
||||
</view>
|
||||
<view class="equipment-row">
|
||||
<text class="equipment-label">{{ t('moldRepair.moldLabel') }}</text>
|
||||
<text class="equipment-value">{{ formatMoldDisplay(item) }}</text>
|
||||
</view>
|
||||
<view class="equipment-row">
|
||||
<text class="equipment-label">{{ t('moldRepair.reportTimeLabel') }}</text>
|
||||
<text class="repair-date">{{ formatDateValue(item.requireDate || item.createTime) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="card-actions">
|
||||
<view v-if="canEdit(item)" class="card-action edit" @click.stop="openForm('update', item.id)">
|
||||
<u-icon name="edit-pen" size="22" color="#1d4ed8"></u-icon>
|
||||
</view>
|
||||
<view class="card-action delete" @click.stop="confirmDelete(item)">
|
||||
<u-icon name="trash" size="22" color="#dc2626"></u-icon>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view v-if="loading && pageNo === 1" class="state-text">{{ t('functionCommon.loading') }}</view>
|
||||
<view v-else-if="!list.length" class="state-text empty">{{ t('moldRepair.empty') }}</view>
|
||||
<view v-else-if="loadingMore" class="state-text">{{ t('functionCommon.loadingMore') }}</view>
|
||||
<view v-else-if="finished" class="state-text">{{ t('functionCommon.noMore') }}</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
|
||||
<view v-if="showGoTop" class="go-top-btn" @click="goTop">
|
||||
<uni-icons type="top" size="20" color="#ffffff"></uni-icons>
|
||||
</view>
|
||||
|
||||
<view class="add-btn" @click="openForm('create')">
|
||||
<text class="add-icon">+</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { computed, nextTick, ref } from 'vue'
|
||||
import { onLoad, onReachBottom, onShow } from '@dcloudio/uni-app'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import NavBar from '@/components/common/NavBar.vue'
|
||||
import {
|
||||
deleteMoldRepair,
|
||||
getMoldRepairPage
|
||||
} from '@/api/mes/moldrepair'
|
||||
|
||||
const { t } = useI18n()
|
||||
const searchKeyword = ref('')
|
||||
const selectedStatus = ref('')
|
||||
const list = ref([])
|
||||
const loading = ref(false)
|
||||
const loadingMore = ref(false)
|
||||
const finished = ref(false)
|
||||
const pageNo = ref(1)
|
||||
const pageSize = ref(10)
|
||||
const total = ref(0)
|
||||
const initialized = ref(false)
|
||||
const scrollTop = ref(0)
|
||||
const showGoTop = ref(false)
|
||||
const keywordFocus = ref(false)
|
||||
const selectedMoldId = ref('')
|
||||
|
||||
const statusOptions = computed(() => [
|
||||
{ label: t('functionCommon.all'), value: '' },
|
||||
{ label: t('moldRepair.statusPending'), value: '0' },
|
||||
{ label: t('moldRepair.statusPassed'), value: '1' },
|
||||
{ label: t('moldRepair.statusRejected'), value: '2' }
|
||||
])
|
||||
|
||||
const statusLabels = computed(() => statusOptions.value.map((item) => item.label))
|
||||
const statusPickerIndex = computed(() => {
|
||||
const index = statusOptions.value.findIndex((item) => item.value === selectedStatus.value)
|
||||
return index >= 0 ? index : 0
|
||||
})
|
||||
const selectedStatusLabel = computed(() => {
|
||||
const current = statusOptions.value.find((item) => item.value === selectedStatus.value)
|
||||
return current ? current.label : t('functionCommon.all')
|
||||
})
|
||||
|
||||
onLoad(async () => {
|
||||
initialized.value = true
|
||||
activateKeywordFocus()
|
||||
await fetchList(true)
|
||||
})
|
||||
|
||||
onShow(async () => {
|
||||
activateKeywordFocus()
|
||||
if (!initialized.value) return
|
||||
await fetchList(true)
|
||||
})
|
||||
|
||||
onReachBottom(() => {
|
||||
loadMore()
|
||||
})
|
||||
|
||||
async function fetchList(reset) {
|
||||
if (reset) {
|
||||
pageNo.value = 1
|
||||
finished.value = false
|
||||
}
|
||||
|
||||
if (pageNo.value === 1) {
|
||||
loading.value = true
|
||||
} else {
|
||||
loadingMore.value = true
|
||||
}
|
||||
|
||||
try {
|
||||
const keyword = searchKeyword.value.trim()
|
||||
const params = {
|
||||
pageNo: pageNo.value,
|
||||
pageSize: pageSize.value,
|
||||
repairCode: keyword || undefined,
|
||||
moldId: selectedMoldId.value || undefined,
|
||||
repairStatus: selectedStatus.value === '' ? undefined : selectedStatus.value
|
||||
}
|
||||
const res = await getMoldRepairPage(params)
|
||||
const page = normalizePageData(res)
|
||||
total.value = page.total
|
||||
list.value = reset ? page.list : [...list.value, ...page.list]
|
||||
finished.value = list.value.length >= total.value || page.list.length < pageSize.value
|
||||
} catch (error) {
|
||||
if (!reset) {
|
||||
pageNo.value = Math.max(1, pageNo.value - 1)
|
||||
}
|
||||
uni.showToast({ title: t('functionCommon.loadFailed'), icon: 'none' })
|
||||
} finally {
|
||||
loading.value = false
|
||||
loadingMore.value = false
|
||||
}
|
||||
}
|
||||
|
||||
function normalizePageData(res) {
|
||||
const root = res && res.data !== undefined ? res.data : res
|
||||
const candidateList = root?.list || root?.rows || root?.records || root?.data?.list || root?.data?.rows || root?.data?.records || []
|
||||
const candidateTotal = root?.total ?? root?.data?.total ?? (Array.isArray(candidateList) ? candidateList.length : 0)
|
||||
return {
|
||||
list: Array.isArray(candidateList) ? candidateList : [],
|
||||
total: Number(candidateTotal || 0)
|
||||
}
|
||||
}
|
||||
|
||||
function activateKeywordFocus() {
|
||||
keywordFocus.value = false
|
||||
nextTick(() => {
|
||||
keywordFocus.value = true
|
||||
})
|
||||
}
|
||||
|
||||
function handleSearch() {
|
||||
uni.hideKeyboard()
|
||||
fetchList(true)
|
||||
}
|
||||
|
||||
let searchTimer = null
|
||||
function onSearchInput() {
|
||||
if (searchTimer) {
|
||||
clearTimeout(searchTimer)
|
||||
}
|
||||
searchTimer = setTimeout(() => {
|
||||
fetchList(true)
|
||||
}, 300)
|
||||
}
|
||||
|
||||
async function resetFilters() {
|
||||
searchKeyword.value = ''
|
||||
selectedStatus.value = ''
|
||||
selectedMoldId.value = ''
|
||||
activateKeywordFocus()
|
||||
await fetchList(true)
|
||||
}
|
||||
|
||||
function onStatusFilterChange(event) {
|
||||
const index = Number(event?.detail?.value || 0)
|
||||
selectedStatus.value = statusOptions.value[index]?.value ?? ''
|
||||
fetchList(true)
|
||||
}
|
||||
|
||||
async function handleScan() {
|
||||
try {
|
||||
const res = await uni.scanCode({ scanType: ['qrCode', 'barCode'] })
|
||||
const result = String(res?.result || '').trim()
|
||||
if (!result) {
|
||||
uni.showToast({ title: t('moldRepair.scanUnrecognized'), icon: 'none' })
|
||||
return
|
||||
}
|
||||
const scan = parseMoldScanResult(result)
|
||||
if (!scan.id) {
|
||||
uni.showToast({ title: t('moldRepair.scanMoldRequired'), icon: 'none' })
|
||||
return
|
||||
}
|
||||
selectedMoldId.value = scan.id
|
||||
searchKeyword.value = ''
|
||||
await fetchList(true)
|
||||
} catch (error) {
|
||||
const message = String(error?.errMsg || '')
|
||||
if (message.includes('cancel')) return
|
||||
uni.showToast({ title: t('moldRepair.scanFailed'), icon: 'none' })
|
||||
}
|
||||
}
|
||||
|
||||
function parseMoldScanResult(result) {
|
||||
const text = String(result || '').trim()
|
||||
const directMatch = text.match(/^([A-Z_]+)-(\d+)$/i)
|
||||
if (directMatch) {
|
||||
return {
|
||||
type: directMatch[1].toUpperCase(),
|
||||
id: directMatch[1].toUpperCase() === 'MOLD' ? directMatch[2] : ''
|
||||
}
|
||||
}
|
||||
try {
|
||||
const parsed = JSON.parse(text)
|
||||
const type = String(parsed?.type || parsed?.bizType || parsed?.codeType || '').toUpperCase()
|
||||
const id = String(parsed?.id || parsed?.moldId || parsed?.deviceId || '').trim()
|
||||
return {
|
||||
type,
|
||||
id: type === 'MOLD' && id ? id : ''
|
||||
}
|
||||
} catch {
|
||||
return { type: '', id: '' }
|
||||
}
|
||||
}
|
||||
|
||||
function canEdit(item) {
|
||||
return !isProcessedRepair(item?.repairStatus)
|
||||
}
|
||||
|
||||
function canRepair(item) {
|
||||
return String(item?.status ?? '0') !== '1' && !isProcessedRepair(item?.repairStatus)
|
||||
}
|
||||
|
||||
function isProcessedRepair(value) {
|
||||
const normalized = value === '' || value === null || value === undefined ? '0' : String(value)
|
||||
return normalized !== '0'
|
||||
}
|
||||
|
||||
function openCard(item) {
|
||||
if (item?.id === undefined || item?.id === null) {
|
||||
uni.showToast({ title: t('moldRepair.noId'), icon: 'none' })
|
||||
return
|
||||
}
|
||||
if (canRepair(item)) {
|
||||
openForm('repair', item.id)
|
||||
return
|
||||
}
|
||||
openForm('detail', item.id)
|
||||
}
|
||||
|
||||
function openForm(mode, id) {
|
||||
const query = [`mode=${encodeURIComponent(mode)}`]
|
||||
if (id !== undefined && id !== null) {
|
||||
query.push(`id=${encodeURIComponent(String(id))}`)
|
||||
}
|
||||
uni.navigateTo({
|
||||
url: `/pages_function/pages/moldRepair/form?${query.join('&')}`
|
||||
})
|
||||
}
|
||||
|
||||
function confirmDelete(item) {
|
||||
const id = item?.id
|
||||
if (id === undefined || id === null) return
|
||||
uni.showModal({
|
||||
title: t('functionCommon.confirmDelete'),
|
||||
content: t('moldRepair.confirmDeleteContent', { code: textValue(item?.repairCode) }),
|
||||
success: async (res) => {
|
||||
if (!res.confirm) return
|
||||
try {
|
||||
await deleteMoldRepair(String(id))
|
||||
uni.showToast({ title: t('functionCommon.deleteSuccess'), icon: 'success' })
|
||||
await fetchList(true)
|
||||
} catch (error) {
|
||||
uni.showToast({ title: t('functionCommon.deleteFailed'), icon: 'none' })
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
function onScroll(event) {
|
||||
const top = event?.detail?.scrollTop || 0
|
||||
showGoTop.value = top > 500
|
||||
}
|
||||
|
||||
function goTop() {
|
||||
scrollTop.value = 0
|
||||
}
|
||||
|
||||
async function loadMore() {
|
||||
if (loading.value || loadingMore.value || finished.value) return
|
||||
pageNo.value += 1
|
||||
await fetchList(false)
|
||||
}
|
||||
|
||||
function getRepairStatusText(value) {
|
||||
const normalized = value === '' || value === null || value === undefined ? '0' : String(value)
|
||||
if (normalized === '1') return t('moldRepair.statusPassed')
|
||||
if (normalized === '2') return t('moldRepair.statusRejected')
|
||||
return t('moldRepair.statusPending')
|
||||
}
|
||||
|
||||
function getRepairStatusTagClass(value) {
|
||||
const normalized = value === '' || value === null || value === undefined ? '0' : String(value)
|
||||
if (normalized === '1') return 'tag-success'
|
||||
if (normalized === '2') return 'tag-danger'
|
||||
return 'tag-warning'
|
||||
}
|
||||
|
||||
function formatDateValue(value) {
|
||||
if (value === null || value === undefined || value === '') return '-'
|
||||
const date = normalizeDate(value)
|
||||
if (!date) return textValue(value)
|
||||
const year = date.getFullYear()
|
||||
const month = String(date.getMonth() + 1).padStart(2, '0')
|
||||
const day = String(date.getDate()).padStart(2, '0')
|
||||
return `${year}-${month}-${day}`
|
||||
}
|
||||
|
||||
function normalizeDate(value) {
|
||||
if (value instanceof Date && !Number.isNaN(value.getTime())) return value
|
||||
if (typeof value === 'number' || /^\d+$/.test(String(value || ''))) {
|
||||
const numeric = Number(value)
|
||||
if (!Number.isNaN(numeric)) {
|
||||
const date = new Date(numeric)
|
||||
if (!Number.isNaN(date.getTime())) return date
|
||||
}
|
||||
}
|
||||
if (typeof value === 'string') {
|
||||
const date = new Date(value.replace(/-/g, '/'))
|
||||
if (!Number.isNaN(date.getTime())) return date
|
||||
}
|
||||
return null
|
||||
}
|
||||
|
||||
function formatMoldDisplay(item) {
|
||||
const name = String(item?.moldName ?? '').trim()
|
||||
const code = String(item?.moldCode ?? '').trim()
|
||||
if (name && code) return `${name}-${code}`
|
||||
if (name) return name
|
||||
if (code) return code
|
||||
return '-'
|
||||
}
|
||||
|
||||
function textValue(value) {
|
||||
if (value === 0) return '0'
|
||||
if (value === null || value === undefined) return '-'
|
||||
const text = String(value).trim()
|
||||
return text || '-'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.page-container {
|
||||
min-height: 100vh;
|
||||
background-color: #f3f4f6;
|
||||
}
|
||||
|
||||
.filter-bar {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) 150rpx 96rpx 64rpx;
|
||||
align-items: center;
|
||||
gap: 14rpx;
|
||||
padding: 18rpx 4rpx 20rpx;
|
||||
}
|
||||
|
||||
.keyword-box,
|
||||
.status-box,
|
||||
.reset-filter-btn,
|
||||
.scan-btn {
|
||||
height: 66rpx;
|
||||
background: #ffffff;
|
||||
border: 1rpx solid #d9dde5;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.keyword-box {
|
||||
padding: 0 20rpx;
|
||||
}
|
||||
|
||||
.keyword-input {
|
||||
width: 100%;
|
||||
font-size: 26rpx;
|
||||
color: #374151;
|
||||
}
|
||||
|
||||
.status-box {
|
||||
justify-content: space-between;
|
||||
padding: 0 18rpx;
|
||||
}
|
||||
|
||||
.status-box-text,
|
||||
.placeholder {
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.status-box-text {
|
||||
color: #374151;
|
||||
}
|
||||
|
||||
.placeholder {
|
||||
color: #a8adb7;
|
||||
}
|
||||
|
||||
.scan-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.reset-filter-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 24rpx;
|
||||
color: #4b5563;
|
||||
}
|
||||
|
||||
.list-scroll {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.list-wrap {
|
||||
padding: 0 4rpx 140rpx;
|
||||
}
|
||||
|
||||
.repair-card {
|
||||
margin-bottom: 18rpx;
|
||||
border-radius: 12rpx;
|
||||
background: #ffffff;
|
||||
box-shadow: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card-main {
|
||||
padding: 24rpx;
|
||||
}
|
||||
|
||||
.card-top,
|
||||
.card-bottom,
|
||||
.card-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.repair-code {
|
||||
max-width: 420rpx;
|
||||
font-size: 36rpx;
|
||||
line-height: 44rpx;
|
||||
color: #24456b;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.repair-status-tag {
|
||||
padding: 8rpx 18rpx;
|
||||
border-radius: 999rpx;
|
||||
font-size: 24rpx;
|
||||
font-weight: 600;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.equipment-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 20rpx;
|
||||
margin-top: 14rpx;
|
||||
}
|
||||
|
||||
.equipment-label {
|
||||
font-size: 28rpx;
|
||||
color: #9ca3af;
|
||||
font-weight: 600;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.equipment-value {
|
||||
flex: 1;
|
||||
text-align: right;
|
||||
font-size: 30rpx;
|
||||
color: #9ca3af;
|
||||
}
|
||||
|
||||
.tag-warning {
|
||||
color: #c2410c;
|
||||
background: #ffedd5;
|
||||
}
|
||||
|
||||
.tag-success {
|
||||
color: #15803d;
|
||||
background: #dcfce7;
|
||||
}
|
||||
|
||||
.tag-danger {
|
||||
color: #dc2626;
|
||||
background: #fee2e2;
|
||||
}
|
||||
|
||||
.repair-date {
|
||||
font-size: 26rpx;
|
||||
color: #9ca3af;
|
||||
}
|
||||
|
||||
.card-actions {
|
||||
padding: 18rpx 24rpx;
|
||||
border-top: 1rpx solid #f1f5f9;
|
||||
justify-content: flex-end;
|
||||
gap: 28rpx;
|
||||
}
|
||||
|
||||
.card-action {
|
||||
width: 56rpx;
|
||||
height: 56rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.state-text {
|
||||
padding: 28rpx 0;
|
||||
text-align: center;
|
||||
color: #9ca3af;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.state-text.empty {
|
||||
padding-top: 160rpx;
|
||||
}
|
||||
|
||||
.add-btn,
|
||||
.go-top-btn {
|
||||
position: fixed;
|
||||
right: 32rpx;
|
||||
width: 92rpx;
|
||||
height: 92rpx;
|
||||
border-radius: 46rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-shadow: 0 14rpx 30rpx rgba(24, 63, 108, 0.24);
|
||||
}
|
||||
|
||||
.add-btn {
|
||||
right: 28rpx;
|
||||
bottom: calc(56rpx + env(safe-area-inset-bottom));
|
||||
background: #1f4b79;
|
||||
}
|
||||
|
||||
.go-top-btn {
|
||||
bottom: calc(172rpx + env(safe-area-inset-bottom));
|
||||
background: rgba(31, 75, 121, 0.84);
|
||||
}
|
||||
|
||||
.add-icon {
|
||||
color: #ffffff;
|
||||
font-size: 64rpx;
|
||||
line-height: 1;
|
||||
margin-top: -4rpx;
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in New Issue