aldehyde 0.2.150 → 0.2.152
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/lib/module/dtmpl-edit-card.d.ts +3 -0
- package/lib/module/dtmpl-edit-card.d.ts.map +1 -1
- package/lib/module/dtmpl-edit-card.js +16 -3
- package/lib/module/dtmpl-edit-card.js.map +1 -1
- package/lib/table/query-table.d.ts.map +1 -1
- package/lib/table/query-table.js +11 -8
- package/lib/table/query-table.js.map +1 -1
- package/lib/tmpl/hcservice-v3.js +2 -2
- package/lib/tmpl/hcservice-v3.js.map +1 -1
- package/package.json +1 -1
- package/src/aldehyde/module/dtmpl-edit-card.tsx +29 -9
- package/src/aldehyde/table/query-table.tsx +1065 -1056
- package/src/aldehyde/tmpl/hcservice-v3.tsx +2 -2
|
@@ -30,7 +30,7 @@ export default class HcserviceV3 {
|
|
|
30
30
|
let res = await Super.super({
|
|
31
31
|
url: Units.joinPath("/v3", path),
|
|
32
32
|
serverKey,
|
|
33
|
-
|
|
33
|
+
data: {
|
|
34
34
|
mstrucIds,
|
|
35
35
|
},
|
|
36
36
|
});
|
|
@@ -279,7 +279,7 @@ export default class HcserviceV3 {
|
|
|
279
279
|
if (res.status === "success") {
|
|
280
280
|
return {sourceId,...res.entity};
|
|
281
281
|
} else {
|
|
282
|
-
message.error(translate("${实体不存在}!"),5);
|
|
282
|
+
//message.error(translate("${实体不存在}!"),5);
|
|
283
283
|
return null;
|
|
284
284
|
}
|
|
285
285
|
}
|