临时版本
This commit is contained in:
parent
a2e32fac92
commit
79981c4db2
|
@ -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 '暂未设置'
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue