全局重命名: 序列号→身份证 (product.serial_number)

This commit is contained in:
2026-08-06 09:00:15 +08:00
parent 3b29bb0bd1
commit ae720656b1
3 changed files with 136 additions and 15 deletions

View File

@ -10,7 +10,7 @@
<!-- 手动输入 -->
<view class="manual-input">
<input v-model="serialNumber" class="input" type="text" maxlength="16"
placeholder="手动输入16位序列号" @confirm="handleSearch" />
placeholder="手动输入16位身份证" @confirm="handleSearch" />
<button class="search-btn" @tap="handleSearch" :disabled="loading">
{{ loading ? '查询中' : '查询' }}
</button>
@ -24,7 +24,7 @@
<!-- 空状态 -->
<view v-if="!loading && !error" class="empty">
<text class="empty-icon">📱</text>
<text class="empty-text">扫码或手动输入序列号查询产品进度</text>
<text class="empty-text">扫码或手动输入身份证查询产品进度</text>
</view>
</view>
</template>
@ -43,7 +43,7 @@ export default {
},
methods: {
async doQuery(sn) {
if (!sn || sn.length < 8) { this.error = "序列号至少需要 8 位"; return; }
if (!sn || sn.length < 8) { this.error = "身份证至少需要 8 位"; return; }
this.serialNumber = sn;
this.lastScanned = sn;
this.loading = true;