提交 46f49c0b 编写于 作者: WodahsOrez's avatar WodahsOrez

lxm--代码表分隔符从分号改为逗号

上级 ccba91ca
...@@ -43,7 +43,7 @@ export default class AppCheckBox extends Vue { ...@@ -43,7 +43,7 @@ export default class AppCheckBox extends Vue {
* @type {string} * @type {string}
* @memberof AppCheckBox * @memberof AppCheckBox
*/ */
@Prop({default:';'}) public valueSeparator?: string; @Prop({default:','}) public valueSeparator?: string;
/** /**
* 是否禁用 * 是否禁用
...@@ -115,7 +115,7 @@ export default class AppCheckBox extends Vue { ...@@ -115,7 +115,7 @@ export default class AppCheckBox extends Vue {
if (this.separator) { if (this.separator) {
return this.separator; return this.separator;
} else { } else {
return ';'; return ',';
} }
} }
......
...@@ -55,14 +55,14 @@ export default class AppSpan extends Vue { ...@@ -55,14 +55,14 @@ export default class AppSpan extends Vue {
* @type {boolean} * @type {boolean}
* @memberof AppSpan * @memberof AppSpan
*/ */
@Prop({default:"、"}) public textSeparator?: string; @Prop({default:'、'}) public textSeparator?: string;
/** /**
* 值分隔符 * 值分隔符
* @type {boolean} * @type {boolean}
* @memberof AppSpan * @memberof AppSpan
*/ */
@Prop({default:";"}) public valueSeparator?: string; @Prop({default:','}) public valueSeparator?: string;
/** /**
* 监控表单属性 data 值 * 监控表单属性 data 值
......
...@@ -61,14 +61,14 @@ export default class CodeList extends Vue { ...@@ -61,14 +61,14 @@ export default class CodeList extends Vue {
* @type {boolean} * @type {boolean}
* @memberof SelectPicker * @memberof SelectPicker
*/ */
@Prop({default:"、"}) public textSeparator?: string; @Prop({default:'、'}) public textSeparator?: string;
/** /**
* 值分隔符 * 值分隔符
* @type {boolean} * @type {boolean}
* @memberof SelectPicker * @memberof SelectPicker
*/ */
@Prop({default:";"}) public valueSeparator?: string; @Prop({default:','}) public valueSeparator?: string;
/** /**
* 是否为空 * 是否为空
......
...@@ -60,7 +60,7 @@ export default class DropDownListMpicker extends Vue { ...@@ -60,7 +60,7 @@ export default class DropDownListMpicker extends Vue {
* @type {string} * @type {string}
* @memberof DropDownListMpicker * @memberof DropDownListMpicker
*/ */
@Prop({default:';'}) public valueSeparator?: string; @Prop({default:','}) public valueSeparator?: string;
/** /**
* 是否禁用 * 是否禁用
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册