diff --git a/src/components/common/Search.vue b/src/components/common/Search.vue index 6f52b81..3aa9ce2 100644 --- a/src/components/common/Search.vue +++ b/src/components/common/Search.vue @@ -115,7 +115,7 @@ const handleBlur = () => { diff --git a/src/views/mould/handleFee/index.vue b/src/views/mould/handleFee/index.vue index 5224771..cfbff8d 100644 --- a/src/views/mould/handleFee/index.vue +++ b/src/views/mould/handleFee/index.vue @@ -11,11 +11,11 @@
-
-
+
diff --git a/src/views/mould/risk/index.vue b/src/views/mould/risk/index.vue index 2b63876..1c14efd 100644 --- a/src/views/mould/risk/index.vue +++ b/src/views/mould/risk/index.vue @@ -8,26 +8,27 @@ v-auth="'riskControl_editRiskControlSetting'">停用 启用 - + 同步风控模板
- + - +
- + @@ -194,7 +195,7 @@ const syncLoading = ref(false) const handleSyncRiskControl = async () => { syncLoading.value = true try { - await syncRiskControlApi() + await syncRiskControlApi() } finally { syncLoading.value = false } @@ -251,7 +252,7 @@ const handleModifyRisk = () => { } as any } -const handleChangeStatus = async (status:any) => { +const handleChangeStatus = async (status: any) => { dialogTitle.value = '停用' dialogType.value = 'status' await editRiskApi({ ...selectedRow.value, status: status }) @@ -272,7 +273,7 @@ const handleRowClick = (row: any) => { } selectedRowId.value = row.id // 找到对应的数据并更新右侧内容 - const targetItem:any = tableTreeContent.value.find((item: any) => item.id === row.id) + const targetItem: any = tableTreeContent.value.find((item: any) => item.id === row.id) const fields = [ { text: '单笔开仓最大数量' + targetItem.maxOpenPosition }, diff --git a/src/views/profile/business/index.vue b/src/views/profile/business/index.vue index 0edd49d..7d7ee9c 100644 --- a/src/views/profile/business/index.vue +++ b/src/views/profile/business/index.vue @@ -28,6 +28,7 @@ :table-data="marketTree" :columns="marketTableColumnsOptions" row-key="id" + :show-column-setting="true" :loading="loading" @row-click="handleRowClick" @row-contextmenu="handleRowContextMenu" @@ -35,7 +36,7 @@ -