临时版本
This commit is contained in:
parent
a2e32fac92
commit
79981c4db2
|
@ -48,8 +48,8 @@ export const columns: BasicColumn[] = [
|
||||||
width:150,
|
width:150,
|
||||||
ellipsis: false,
|
ellipsis: false,
|
||||||
format(text, record, index) {
|
format(text, record, index) {
|
||||||
if(!!text){
|
if(!!text && text.length>0){
|
||||||
return text.map(item => item.tagName).join(',');
|
return text.map(item => item.tagName).join('、');
|
||||||
}else{
|
}else{
|
||||||
return '暂未设置'
|
return '暂未设置'
|
||||||
}
|
}
|
||||||
|
|
|
@ -350,7 +350,7 @@ async function submitForm() {
|
||||||
}
|
}
|
||||||
|
|
||||||
//提成价格不能高于收费价格
|
//提成价格不能高于收费价格
|
||||||
if (model.tollPrice <= model.comPrice) {
|
if (!!model.comPrice && model.tollPrice <= model.comPrice) {
|
||||||
createMessage.warning('提成价格不能高于收费价格!');
|
createMessage.warning('提成价格不能高于收费价格!');
|
||||||
confirmLoading.value = false;
|
confirmLoading.value = false;
|
||||||
retrun;
|
retrun;
|
||||||
|
|
Loading…
Reference in New Issue