|
@@ -523,6 +523,13 @@ export default {
|
|
|
)
|
|
|
return this.$refs.zjpage.parameterAnalysis({ querylist: querylist_ })
|
|
|
},
|
|
|
+ processString(input) {
|
|
|
+ // 去除首尾的空格和换行符
|
|
|
+ let trimmedString = input.trim()
|
|
|
+ // 将字符串中的换行符替换为逗号
|
|
|
+ let result = trimmedString.replace(/\n+/g, ',')
|
|
|
+ return result
|
|
|
+ },
|
|
|
// 导出
|
|
|
export() {
|
|
|
this.columnList = this.$refs.zjpage.columnList.filter(item => !item.hidden)
|
|
@@ -550,10 +557,10 @@ export default {
|
|
|
if (
|
|
|
// item.compare === '=' &&
|
|
|
typeof item.value === 'string' &&
|
|
|
- (~item.value.indexOf(',') || ~item.value.indexOf(','))
|
|
|
+ (item.value.includes(',') || item.value.includes(',') || item.value.includes('\n'))
|
|
|
) {
|
|
|
// 去除换行
|
|
|
- var str = item.value.replace(/\\n/g, '')
|
|
|
+ var str = this.processString(item.value)
|
|
|
// 去除空格
|
|
|
str = str.replace(/[\t\r\f\n\s]*/g, '')
|
|
|
// 转中文逗号
|