正在显示
2 个修改的文件
包含
3 行增加
和
0 行删除
@@ -342,6 +342,7 @@ func (srv ExcelDataService) ImportCost(importDataCommand *command.ImportDataComm | @@ -342,6 +342,7 @@ func (srv ExcelDataService) ImportCost(importDataCommand *command.ImportDataComm | ||
342 | ProjectCode: strings.TrimSpace(v["projectCode"]), | 342 | ProjectCode: strings.TrimSpace(v["projectCode"]), |
343 | ItemName: strings.TrimSpace(v["itemName"]), | 343 | ItemName: strings.TrimSpace(v["itemName"]), |
344 | ChoiceId: choiceId, | 344 | ChoiceId: choiceId, |
345 | + Text: strings.TrimSpace(v["text"]), | ||
345 | Urls: []string{ossFile}, | 346 | Urls: []string{ossFile}, |
346 | Formula: strings.TrimSpace(v["formula"]), | 347 | Formula: strings.TrimSpace(v["formula"]), |
347 | ChargePersons: chargePersons, | 348 | ChargePersons: chargePersons, |
@@ -39,6 +39,8 @@ type CostManagemant struct { | @@ -39,6 +39,8 @@ type CostManagemant struct { | ||
39 | // 当前选择的节点类型 1、combination 组合框 2、staff 员工选取 3、text 文本框 4、BOM BOM表 | 39 | // 当前选择的节点类型 1、combination 组合框 2、staff 员工选取 3、text 文本框 4、BOM BOM表 |
40 | // 5、number数值框 6、calculate计算框 | 40 | // 5、number数值框 6、calculate计算框 |
41 | ChoiceId int `cname:"当前选择的节点类型 1、combination 组合框 2、staff 员工选取 3、text 文本框 4、BOM BOM表 5、number数值框 6、calculate计算框" json:"choiceId"` | 41 | ChoiceId int `cname:"当前选择的节点类型 1、combination 组合框 2、staff 员工选取 3、text 文本框 4、BOM BOM表 5、number数值框 6、calculate计算框" json:"choiceId"` |
42 | + // 文本内容 | ||
43 | + Text string `cname:"文本内容" json:"text"` | ||
42 | // 图片 | 44 | // 图片 |
43 | Urls []string `cname:"图片" json:"urls"` | 45 | Urls []string `cname:"图片" json:"urls"` |
44 | // calculate 计算框:计算框公式 | 46 | // calculate 计算框:计算框公式 |
-
请 注册 或 登录 后发表评论