From f5d4f999ba69421c3fb107561fe1ee4c29d3f680 Mon Sep 17 00:00:00 2001
From: buli <137736985@qq.com>
Date: 星期五, 07 七月 2023 17:26:18 +0800
Subject: [PATCH] CodeBackupStage
---
force-app/main/default/aura/CreateTarget/CreateTargetHelper.js | 40 ++++++++++++++++++++++++++++++----------
1 files changed, 30 insertions(+), 10 deletions(-)
diff --git a/force-app/main/default/aura/CreateTarget/CreateTargetHelper.js b/force-app/main/default/aura/CreateTarget/CreateTargetHelper.js
index 001c393..e021d2c 100644
--- a/force-app/main/default/aura/CreateTarget/CreateTargetHelper.js
+++ b/force-app/main/default/aura/CreateTarget/CreateTargetHelper.js
@@ -8,14 +8,19 @@
action.setParams({ recordId: recordId });
action.setCallback(this, function (response) {
var state = response.getState();
+ console.log("state1:" + state);
if (state === "SUCCESS") {
var ah = response.getReturnValue();
var select_ah = ah.Id;
var select_ah_name = ah.Name;
-
- component.set("v.record.Agency_Hospital__c", select_ah);
+ // component.set('v.record.Agency_Hospital__c', select_ah);
+ //add by Deloitte 2023-6-8
+ let agency = component.get("v.record");
+ agency.Agency_Hospital__c = select_ah;
+ // component.set("v.record", agency);
// alert(JSON.stringify(component.find('input-hos').get("v.body")[0].get('v.values')));
if ($A.get("$Browser.formFactor") == "DESKTOP") {
+ console.log("flag1");
var values = [
{
type: "Agency_Hospital_Link__c",
@@ -28,15 +33,29 @@
}
}
];
- component
- .find("input-hos")
- .get("v.body")[0]
- .set("v.values", values);
+ // component.find('input-hos').get("v.body")[0].set('v.values', values);
+ //add by Deloitte 2023-6-8
+ if (
+ component.find("input-hos").get("v.body") &&
+ component.find("input-hos").get("v.body").length > 0
+ ) {
+ component
+ .find("input-hos")
+ .get("v.body")[0]
+ .set("v.values", values);
+ }
} else {
- component
- .find("input-hos")
- .get("v.body")[0]
- .set("v.selectedLabel", select_ah_name);
+ // component.find('input-hos').get("v.body")[0].set('v.selectedLabel', select_ah_name);
+ //add by Deloitte 2023-6-8
+ if (
+ component.find("input-hos").get("v.body") &&
+ component.find("input-hos").get("v.body").length > 0
+ ) {
+ component
+ .find("input-hos")
+ .get("v.body")[0]
+ .set("v.selectedLabel", select_ah_name);
+ }
}
} else if (state === "ERROR") {
var errors = response.getError();
@@ -55,6 +74,7 @@
var action = component.get("c.getProductList");
action.setCallback(this, function (response) {
var state = response.getState();
+ console.log("state2:" + state);
if (state === "SUCCESS") {
var opts = response.getReturnValue();
// alert(JSON.stringify(opts["GI"]));
--
Gitblit v1.9.1