|
|
@@ -978,7 +978,7 @@ export default {
|
|
|
addJXS(chainList,maxValue) {
|
|
|
let dataList = chainList ? chainList : [];
|
|
|
const isExceedLimit = dataList.length >= maxValue;
|
|
|
- if (isExceedLimit) {
|
|
|
+ if (maxValue !== null && isExceedLimit) {
|
|
|
this.$toast('选择经销商超过最大限制!');
|
|
|
} else {
|
|
|
this.agentValue = '';
|