继续完善文件结构

This commit is contained in:
2026-02-05 18:25:15 +08:00
parent 6b416e6a0a
commit 0970fdbac3
25 changed files with 101 additions and 625 deletions

View File

@@ -182,6 +182,10 @@ export default {
}
},
methods: {
getStatusLabel(val : number) : string {
const item = this.statusOptions.find((opt: any) => opt.value === val)
return item ? item.label : '全部'
},
getStatusText(status : number) : string {
switch(status) {
case 0: return '未发货';