f284ad8f by lihua

修改列表名称,解决疾病名称没带出来问题

1 parent 3ad84ff1
......@@ -622,9 +622,9 @@ const getModelInfo = (mGuid, valueInfo = null) => {
];
try {
loading.value = true;
Promise.all(promises).then(res => {
Promise.all(promises).then(async res => {
loading.value = false;
setFormItemData();
await setFormItemData();
if (guid && mGuid == flowDetail.value.modelGuid) {
dataTransactionPrice.value = flowDetail.value.dataTransactionPrice;
setTimeout(() => {
......@@ -633,6 +633,7 @@ const getModelInfo = (mGuid, valueInfo = null) => {
setdemandTableData(mGuid);
}, 200);
} else {
setFormItems(valueInfo);
setdemandTableData(mGuid);
}
});
......
<route lang="yaml">
name: priceCalculate
name: priceCalculateNew
</route>
<script lang="ts" setup name="priceCalculate">
<script lang="ts" setup name="priceCalculateNew">
import { ref } from 'vue';
import TableTools from '@/components/Tools/table_tools.vue';
import { TableColumnWidth, commonPageConfig } from '@/utils/enum';
......@@ -31,7 +31,7 @@ const searchItemList = ref([
label: "",
field: "dataResourceName",
default: "",
placeholder: "数据资源名称",
placeholder: "数据产品名称",
clearable: true,
},
{
......@@ -65,7 +65,7 @@ const page: any = ref({
const tableField: any = ref([
{ label: "序号", type: "index", width: TableColumnWidth.INDEX, align: "center" },
{ label: "定价模型名称", field: "modelName", width: 200 },
{ label: "数据资源名称", field: "dataResourceName", width: 200 },
{ label: "数据产品名称", field: "dataResourceName", width: 200 },
{ label: "疾病名称", field: "diseaseName", width: 200 },
{
label: "交易价格(元)", field: "dataTransactionPrice", width: 120, align: 'right', getName: (scope) => {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!