|
@@ -872,7 +872,11 @@ export default {
|
|
|
params.transferAuthority = charge.map((el) =>
|
|
|
JSON.stringify({
|
|
|
allowEditingColumns: el.allowEditingColumns.length
|
|
|
- ? el.allowEditingColumns.join(",")
|
|
|
+ ? el.allowEditingColumns
|
|
|
+ .sort(function (a, b) {
|
|
|
+ return a - b;
|
|
|
+ })
|
|
|
+ .join(",")
|
|
|
: this.transfer_cols_orgin.join(","),
|
|
|
rowNum: this.transfer_rows_orgin.join(","),
|
|
|
principalId: el.person.split(",")[0],
|