标准带入空格有问题

This commit is contained in:
zhangjun
2022-10-08 17:38:56 +08:00
parent f9d4a45c32
commit e5a80e573c
@@ -1108,9 +1108,9 @@ export default {
OkDrawer() {
if (this.selectedList.length === 1) {
if(this.selectedList[0].standYear){
this.listForm.standNumber = this.selectedList[0].standSortShow + "\xa0\xa0" + this.selectedList[0].standNumber + "-" + this.selectedList[0].standYear;
this.listForm.standNumber = this.selectedList[0].standSortShow + " " + this.selectedList[0].standNumber + "-" + this.selectedList[0].standYear;
}else{
this.listForm.standNumber = this.selectedList[0].standSortShow + "\xa0\xa0" + this.selectedList[0].standNumber ;
this.listForm.standNumber = this.selectedList[0].standSortShow + " " + this.selectedList[0].standNumber ;
}
this.listForm.standName = this.selectedList[0].standName;
this.listForm.standType = this.selectedList[0].standType;