|
@@ -898,8 +898,18 @@ export default {
|
|
|
arr.forEach((elm) => {
|
|
|
if (elm.domKey === domKey) {
|
|
|
// console.log(elm, res.data)
|
|
|
- if (title.search(/上月问题跟进|线上问题/) > -1) {
|
|
|
+ if (title.search(/上月问题跟进/) > -1) {
|
|
|
elm.content = [{ ...res.data.content[0] }]
|
|
|
+ } else if (title.search(/线上问题/) > -1) {
|
|
|
+ const value = `${elm.content[0].value}`
|
|
|
+ // console.log(elm.content, 904)
|
|
|
+ // elm.content[0].tableRows = res.data.content[0].tableRows
|
|
|
+ elm.content = [{ ...res.data.content[0], value }]
|
|
|
+ // console.log(elm.content, res.data.content[0], 907)
|
|
|
+ // elm.content = [{
|
|
|
+ // ...elm.content[0],
|
|
|
+ // tableRows: res.data.content[0].tableRows
|
|
|
+ // }]
|
|
|
} else if (title.search(/线下缺陷|发布&回滚/) > -1) {
|
|
|
const value = `${elm.content[0].value}`
|
|
|
elm.content = [{ ...res.data.content[0], value }]
|