|
@@ -314,6 +314,7 @@ export default {
|
|
|
const [nitems1, nitems2] = [ndatas.at(-1), ndatas.at(-2)]
|
|
|
if (nitems1.length > nitems2.length) {
|
|
|
const res = this.findRepetData(nitems1, nitems2)
|
|
|
+ console.log(res)
|
|
|
this.sendCheckData('add', res)
|
|
|
} else {
|
|
|
const res = this.findRepetData(nitems1, nitems2)
|
|
@@ -358,30 +359,13 @@ export default {
|
|
|
querys.push(modifyData(params))
|
|
|
} else {
|
|
|
const ids = []
|
|
|
- items.map(({ pagetype, children, serviceid, pageconfigurationid }) => {
|
|
|
- if (pagetype == 'module' || pagetype == 'page' || pagetype == 'button') {
|
|
|
- ids.push({
|
|
|
- pageconfigurationid,
|
|
|
- serviceid
|
|
|
- })
|
|
|
- } else {
|
|
|
- if (pagetype == 'table' && children) {
|
|
|
- const childs = children
|
|
|
- if (childs.length) {
|
|
|
- childs.map(citem => {
|
|
|
- ids.push({
|
|
|
- pageconfigurationid: citem.pageconfigurationid,
|
|
|
- serviceid: serviceid
|
|
|
- })
|
|
|
- })
|
|
|
- }
|
|
|
- ids.push({
|
|
|
- pageconfigurationid,
|
|
|
- serviceid
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- //if (item.children) delete item.children
|
|
|
+ items.map(item => {
|
|
|
+ const { serviceid, pageconfigurationid } = item
|
|
|
+ if (item.children) delete item.children
|
|
|
+ ids.push({
|
|
|
+ pageconfigurationid,
|
|
|
+ serviceid
|
|
|
+ })
|
|
|
})
|
|
|
const params = {
|
|
|
id,
|