|
|
|
@ -713,10 +713,12 @@ export default {
|
|
|
|
|
async next() {
|
|
|
|
|
let arr = [];
|
|
|
|
|
let arr2 = [];
|
|
|
|
|
let arr3 = [];
|
|
|
|
|
let keyCount = 0;
|
|
|
|
|
this.multipleSelection.map((item) => {
|
|
|
|
|
arr.push(item.subdistrict);
|
|
|
|
|
arr2.push(item.uscCode);
|
|
|
|
|
arr3.push(item.entprName);
|
|
|
|
|
if (item.isPoint == "1") {
|
|
|
|
|
keyCount++;
|
|
|
|
|
}
|
|
|
|
@ -753,12 +755,14 @@ export default {
|
|
|
|
|
|
|
|
|
|
let district = arr.join(",");
|
|
|
|
|
let enterpriseId = arr2.join(",");
|
|
|
|
|
let enterpriseName = arr3.join(",");
|
|
|
|
|
let createTime = this.getData();
|
|
|
|
|
let planNumb = this.multipleSelection.length;
|
|
|
|
|
let obj = {
|
|
|
|
|
...this.form2,
|
|
|
|
|
district,
|
|
|
|
|
enterpriseId,
|
|
|
|
|
enterpriseName,
|
|
|
|
|
createTime,
|
|
|
|
|
planNumb,
|
|
|
|
|
};
|
|
|
|
|