cloud-web-corejs 1.0.54-dev.762 → 1.0.54-dev.763

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.54-dev.762",
4
+ "version": "1.0.54-dev.763",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -979,6 +979,23 @@ export default {
979
979
  addUserRows: [],
980
980
  };
981
981
  this.showCurrentTaskUserDialog = true;
982
+ this.initDelUsers();
983
+ },
984
+ initDelUsers() {
985
+ this.$http({
986
+ url: USER_PREFIX + "/wf_info/getDelUsers",
987
+ method: "post",
988
+ data: {
989
+ uuid: this.currentTaskUserUuids,
990
+ flag: 1,
991
+ },
992
+ success: (res) => {
993
+ let rows = (res.objx || []).map((row) => {
994
+ return { ...row, nickName: row.nickName || row.nick_name };
995
+ });
996
+ this.confirmDelUsers(rows);
997
+ },
998
+ });
982
999
  },
983
1000
  closeCurrentTaskUserDialog() {
984
1001
  this.showCurrentTaskUserDialog = false;