@newview/permission-service 1.2.42 → 1.2.44
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/README.md
CHANGED
|
@@ -12320,11 +12320,10 @@ class UserinforInstance2 extends BaseInstance {
|
|
|
12320
12320
|
content: "确定要清除该印章图片吗?",
|
|
12321
12321
|
onOk: async () => {
|
|
12322
12322
|
await new FileApi().deleteByToken(this.userSignFormModel.CAUserSealImg);
|
|
12323
|
-
const apiResult = await this.userSignApi.save({ Id: this.userSignFormModel.Id, CAUserSealImg: ""
|
|
12323
|
+
const apiResult = await this.userSignApi.save({ Id: this.userSignFormModel.Id, CAUserSealImg: "" });
|
|
12324
12324
|
const result = this.utilities.parseApiResult(apiResult);
|
|
12325
12325
|
if (result) {
|
|
12326
12326
|
this.userSignFormModel.CAUserSealImg = "";
|
|
12327
|
-
this.userSignFormModel.CAUserSealToken = "";
|
|
12328
12327
|
}
|
|
12329
12328
|
}
|
|
12330
12329
|
});
|
|
@@ -12361,11 +12360,10 @@ class UserinforInstance2 extends BaseInstance {
|
|
|
12361
12360
|
content: "确定要清除该圆章图片吗?",
|
|
12362
12361
|
onOk: async () => {
|
|
12363
12362
|
await new FileApi().deleteByToken(this.userSignFormModel.CAUserYZToken);
|
|
12364
|
-
const apiResult = await this.userSignApi.save({ Id: this.userSignFormModel.Id, CAUserYZImg: ""
|
|
12363
|
+
const apiResult = await this.userSignApi.save({ Id: this.userSignFormModel.Id, CAUserYZImg: "" });
|
|
12365
12364
|
const result = this.utilities.parseApiResult(apiResult);
|
|
12366
12365
|
if (result) {
|
|
12367
12366
|
this.userSignFormModel.CAUserYZImg = "";
|
|
12368
|
-
this.userSignFormModel.CAUserYZToken = "";
|
|
12369
12367
|
}
|
|
12370
12368
|
}
|
|
12371
12369
|
});
|