临时版本

This commit is contained in:
1378012178@qq.com 2025-03-21 10:54:16 +08:00
parent a2e32fac92
commit 79981c4db2
2 changed files with 3 additions and 3 deletions

View File

@ -48,8 +48,8 @@ export const columns: BasicColumn[] = [
width:150,
ellipsis: false,
format(text, record, index) {
if(!!text){
return text.map(item => item.tagName).join('');
if(!!text && text.length>0){
return text.map(item => item.tagName).join('');
}else{
return '暂未设置'
}

View File

@ -350,7 +350,7 @@ async function submitForm() {
}
//
if (model.tollPrice <= model.comPrice) {
if (!!model.comPrice && model.tollPrice <= model.comPrice) {
createMessage.warning('提成价格不能高于收费价格!');
confirmLoading.value = false;
retrun;