web建站教程
  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. AIGC工具
  6. 前端知识
  7. 百度echarts
  8. 更多
    php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站
    手机应用

vuejs前端文本对比不同痕迹

1537 ℃

功能需求:痕迹对比,就是当前文本和历史修改过的文本有什么区别?把2边不同的文字用不同颜色标记出来!

1、template代码

复制代码<div class="dialog-mark-diff">
<el-card>
  <h3>上次修改</h3>
  <div class="compare-report-info" v-html="preReportInfo"></div>
</el-card>
<el-card>
  <h3>选中记录</h3>
  <div class="compare-report-info" v-html="nowReportInfo"></div>
</el-card>
</div>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

2、main.js

复制代码import compareReportInfo from "@/utils/compareReportInfo.js";
global.compareReportInfo = compareReportInfo;
  • 1
  • 2

3、compareReportInfo.js

复制代码export default {
  //判断preReportInfo
  eq(op) {
    if (!op) {
      return op;
    }
    if (!op.preReportInfo_style) {
      op.preReportInfo_style = "background:#00c0ef;color:#fff";
    }
    if (!op.preReportInfoLabel_style) {
      op.preReportInfoLabel_style = "background:red;color:#fff";
    }
    var ps = {
      v1_i: 0,
      v1_new_value: "",
      v2_i: 0,
      v2_new_value: ""
    };
    while (
      ps.v1_i < op.preReportInfo.length &&
      ps.v2_i < op.preReportInfoLabel.length
    ) {
      if (op.preReportInfo[ps.v1_i] == op.preReportInfoLabel[ps.v2_i]) {
        ps.v1_new_value += op.preReportInfo[ps.v1_i]
          .replace(/", ">");
        ps.v2_new_value += op.preReportInfoLabel[ps.v2_i]
          .replace(/", ">");
        ps.v1_i += 1;
        ps.v2_i += 1;
        if (ps.v1_i >= op.preReportInfo.length) {
          ps.v2_new_value +=
            "" +
            op.preReportInfoLabel
              .substr(ps.v2_i)
              .replace(/", ">") +
            "";
          break;
        }
        if (ps.v2_i >= op.preReportInfoLabel.length) {
          ps.v1_new_value +=
            "" +
            op.preReportInfo
              .substr(ps.v1_i)
              .replace(/", ">") +
            "";
          break;
        }
      } else {
        ps.v1_index = ps.v1_i + 1;
        ps.v1_eq_length = 0;
        ps.v1_eq_max = 0;
        ps.v1_start = ps.v1_i + 1;
        while (ps.v1_index < op.preReportInfo.length) {
          if (
            op.preReportInfo[ps.v1_index] ==
            op.preReportInfoLabel[ps.v2_i + ps.v1_eq_length]
          ) {
            ps.v1_eq_length += 1;
          } else if (ps.v1_eq_length > 0) {
            if (ps.v1_eq_max < ps.v1_eq_length) {
              ps.v1_eq_max = ps.v1_eq_length;
              ps.v1_start = ps.v1_index - ps.v1_eq_length;
            }
            ps.v1_eq_length = 0;
            break; //只寻找最近的
          }
          ps.v1_index += 1;
        }
        if (ps.v1_eq_max < ps.v1_eq_length) {
          ps.v1_eq_max = ps.v1_eq_length;
          ps.v1_start = ps.v1_index - ps.v1_eq_length;
        }

        ps.v2_index = ps.v2_i + 1;
        ps.v2_eq_length = 0;
        ps.v2_eq_max = 0;
        ps.v2_start = ps.v2_i + 1;
        while (ps.v2_index < op.preReportInfoLabel.length) {
          if (
            op.preReportInfoLabel[ps.v2_index] ==
            op.preReportInfo[ps.v1_i + ps.v2_eq_length]
          ) {
            ps.v2_eq_length += 1;
          } else if (ps.v2_eq_length > 0) {
            if (ps.v2_eq_max < ps.v2_eq_length) {
              ps.v2_eq_max = ps.v2_eq_length;
              ps.v2_start = ps.v2_index - ps.v2_eq_length;
            }
            ps.v1_eq_length = 0;
            break; //只寻找最近的
          }
          ps.v2_index += 1;
        }
        if (ps.v2_eq_max < ps.v2_eq_length) {
          ps.v2_eq_max = ps.v2_eq_length;
          ps.v2_start = ps.v2_index - ps.v2_eq_length;
        }
        if (ps.v1_eq_max < op.eq_min && ps.v1_start - ps.v1_i > op.eq_index) {
          ps.v1_eq_max = 0;
        }
        if (ps.v2_eq_max < op.eq_min && ps.v2_start - ps.v2_i > op.eq_index) {
          ps.v2_eq_max = 0;
        }
        if (ps.v1_eq_max == 0 && ps.v2_eq_max == 0) {
          ps.v1_new_value +=
            "" +
            op.preReportInfo[ps.v1_i].replace(/", ">") +
            "";
          ps.v2_new_value +=
            "" +
            op.preReportInfoLabel[ps.v2_i]
              .replace(/", ">") +
            "";
          ps.v1_i += 1;
          ps.v2_i += 1;

          if (ps.v1_i >= op.preReportInfo.length) {
            ps.v2_new_value +=
              "" +
              op.preReportInfoLabel
                .substr(ps.v2_i)
                .replace(/", ">") +
              "";
            break;
          }
          if (ps.v2_i >= op.preReportInfoLabel.length) {
            ps.v1_new_value +=
              "" +
              op.preReportInfo
                .substr(ps.v1_i)
                .replace(/", ">") +
              "";
            break;
          }
        } else if (ps.v1_eq_max > ps.v2_eq_max) {
          ps.v1_new_value +=
            "" +
            op.preReportInfo
              .substr(ps.v1_i, ps.v1_start - ps.v1_i)
              .replace(/", ">") +
            "";
          ps.v1_i = ps.v1_start;
        } else {
          ps.v2_new_value +=
            "" +
            op.preReportInfoLabel
              .substr(ps.v2_i, ps.v2_start - ps.v2_i)
              .replace(/", ">") +
            "";
          ps.v2_i = ps.v2_start;
        }
      }
    }
    op.preReportInfo = ps.v1_new_value;
    op.preReportInfoLabel = ps.v2_new_value;
    return op;
  },
  //判断preReportInfo2
  eq2(op) {
    if (!op) {
      return op;
    }
    if (!op.preReportInfo2_style) {
      op.preReportInfo2_style = "background:#00c0ef;color:#fff";
    }
    if (!op.preReportInfoLabel2_style) {
      op.preReportInfoLabel2_style = "background:red;color:#fff";
    }
    var ps = {
      v1_i: 0,
      v1_new_value: "",
      v2_i: 0,
      v2_new_value: ""
    };
    while (
      ps.v1_i < op.preReportInfo2.length &&
      ps.v2_i < op.preReportInfoLabel2.length
    ) {
      if (op.preReportInfo2[ps.v1_i] == op.preReportInfoLabel2[ps.v2_i]) {
        ps.v1_new_value += op.preReportInfo2[ps.v1_i]
          .replace(/", ">");
        ps.v2_new_value += op.preReportInfoLabel2[ps.v2_i]
          .replace(/", ">");
        ps.v1_i += 1;
        ps.v2_i += 1;
        if (ps.v1_i >= op.preReportInfo2.length) {
          ps.v2_new_value +=
            "" +
            op.preReportInfoLabel2
              .substr(ps.v2_i)
              .replace(/", ">") +
            "";
          break;
        }
        if (ps.v2_i >= op.preReportInfoLabel2.length) {
          ps.v1_new_value +=
            "" +
            op.preReportInfo2
              .substr(ps.v1_i)
              .replace(/", ">") +
            "";
          break;
        }
      } else {
        ps.v1_index = ps.v1_i + 1;
        ps.v1_eq_length = 0;
        ps.v1_eq_max = 0;
        ps.v1_start = ps.v1_i + 1;
        while (ps.v1_index < op.preReportInfo2.length) {
          if (
            op.preReportInfo2[ps.v1_index] ==
            op.preReportInfoLabel2[ps.v2_i + ps.v1_eq_length]
          ) {
            ps.v1_eq_length += 1;
          } else if (ps.v1_eq_length > 0) {
            if (ps.v1_eq_max < ps.v1_eq_length) {
              ps.v1_eq_max = ps.v1_eq_length;
              ps.v1_start = ps.v1_index - ps.v1_eq_length;
            }
            ps.v1_eq_length = 0;
            break; //只寻找最近的
          }
          ps.v1_index += 1;
        }
        if (ps.v1_eq_max < ps.v1_eq_length) {
          ps.v1_eq_max = ps.v1_eq_length;
          ps.v1_start = ps.v1_index - ps.v1_eq_length;
        }

        ps.v2_index = ps.v2_i + 1;
        ps.v2_eq_length = 0;
        ps.v2_eq_max = 0;
        ps.v2_start = ps.v2_i + 1;
        while (ps.v2_index < op.preReportInfoLabel2.length) {
          if (
            op.preReportInfoLabel2[ps.v2_index] ==
            op.preReportInfo2[ps.v1_i + ps.v2_eq_length]
          ) {
            ps.v2_eq_length += 1;
          } else if (ps.v2_eq_length > 0) {
            if (ps.v2_eq_max < ps.v2_eq_length) {
              ps.v2_eq_max = ps.v2_eq_length;
              ps.v2_start = ps.v2_index - ps.v2_eq_length;
            }
            ps.v1_eq_length = 0;
            break; //只寻找最近的
          }
          ps.v2_index += 1;
        }
        if (ps.v2_eq_max < ps.v2_eq_length) {
          ps.v2_eq_max = ps.v2_eq_length;
          ps.v2_start = ps.v2_index - ps.v2_eq_length;
        }
        if (ps.v1_eq_max < op.eq_min && ps.v1_start - ps.v1_i > op.eq_index) {
          ps.v1_eq_max = 0;
        }
        if (ps.v2_eq_max < op.eq_min && ps.v2_start - ps.v2_i > op.eq_index) {
          ps.v2_eq_max = 0;
        }
        if (ps.v1_eq_max == 0 && ps.v2_eq_max == 0) {
          ps.v1_new_value +=
            "" +
            op.preReportInfo2[ps.v1_i].replace(/", ">") +
            "";
          ps.v2_new_value +=
            "" +
            op.preReportInfoLabel2[ps.v2_i]
              .replace(/", ">") +
            "";
          ps.v1_i += 1;
          ps.v2_i += 1;

          if (ps.v1_i >= op.preReportInfo2.length) {
            ps.v2_new_value +=
              "" +
              op.preReportInfoLabel2
                .substr(ps.v2_i)
                .replace(/", ">") +
              "";
            break;
          }
          if (ps.v2_i >= op.preReportInfoLabel2.length) {
            ps.v1_new_value +=
              "" +
              op.preReportInfo2
                .substr(ps.v1_i)
                .replace(/", ">") +
              "";
            break;
          }
        } else if (ps.v1_eq_max > ps.v2_eq_max) {
          ps.v1_new_value +=
            "" +
            op.preReportInfo2
              .substr(ps.v1_i, ps.v1_start - ps.v1_i)
              .replace(/", ">") +
            "";
          ps.v1_i = ps.v1_start;
        } else {
          ps.v2_new_value +=
            "" +
            op.preReportInfoLabel2
              .substr(ps.v2_i, ps.v2_start - ps.v2_i)
              .replace(/", ">") +
            "";
          ps.v2_i = ps.v2_start;
        }
      }
    }
    op.preReportInfo2 = ps.v1_new_value;
    op.preReportInfoLabel2 = ps.v2_new_value;
    return op;
  }
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346

4、script代码

复制代码data() {
  return {
    preReportInfo: "",
    preReportInfoLabel: "",
    nowReportInfo: "",
    nowReportInfoLabel: ""
  }
}
//报告痕迹对比列表点击事件
openMarkTableDetails(row) {
  var newsListData1 = [];
  newsListData1.push({
	currentDate: row.Ftime.replace(/T/g, " "),
	nowReportInfo: row.Describle.replace(/null/g, " "),
  });
  var newsListData2 = [];
  for (var i = 0; i < this.dialogTableData.length; i++) {
	if (this.dialogTableData[i].tid == row.tid - 1) {
	  newsListData2.push({
		prevDate: this.dialogTableData[i].Ftime.replace(/T/g, " "),
		preReportInfo: this.dialogTableData[i].Describle.replace(
		  /null/g,
		  " "
		)" "
		)
	  });
	}
  }
  if (newsListData2[0] == undefined) {
	this.prevDate = "";
	this.preReportInfoLabel = "无";
	this.currentDate = newsListData1[0].currentDate;
	this.nowReportInfoLabel = newsListData1[0].nowReportInfo;
  } else {
	this.prevDate = newsListData2[0].prevDate;
	this.preReportInfoLabel = newsListData2[0].preReportInfo;
	this.currentDate = newsListData1[0].currentDate;
	this.nowReportInfoLabel = newsListData1[0].nowReportInfo;
  }
  let op = compareReportInfo.eq({
	preReportInfo: this.preReportInfoLabel,
	preReportInfoLabel: this.nowReportInfoLabel
  });
  this.preReportInfo = op.preReportInfo;
  this.nowReportInfo = op.preReportInfoLabel;
  let op1 = compareReportInfo.eq({
	preReportInfo: this.preReportInfoLabel,
	preReportInfoLabel: this.nowReportInfoLabel
  });
  this.preReportInfo = op1.preReportInfo;
  this.nowReportInfo = op1.preReportInfoLabel;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52

Vue结合MVVM模型的实现方法

利用vue实现一个图片水平瀑布流效果

运行vue函数提示将“vue”项识别为 cmdlet、函数、脚本文件或可运行程序的名称解决方法

vue-roter路由配置的3种模式介绍

vue项目优化之防抖案例分析

标签: vue, 文本对比

上面是“vuejs前端文本对比不同痕迹”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_2188.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

当前位置: 网站首页 > vuejs
本文共计7265个字,预计阅读时长49分钟
生活小工具,收录了80多款小工具
上一篇: 抖音联合方正打造免费可商用品牌字体——抖音美好体
下一篇: 推荐一个在线图文转视频、AI 数字人工具——一帧秒创(免费赠送100分钟)
回到顶部
x 打工人ai神器