Commit d1d92475 authored by 罗林杰's avatar 罗林杰

修改API安全

parent 6a580353
...@@ -6,6 +6,9 @@ ...@@ -6,6 +6,9 @@
:title="title" :title="title"
@ok="handleSubmit" @ok="handleSubmit"
> >
<template #footer v-if="isUpdate === false">
<a-button type="primary" @click="handleSubmit">关闭</a-button>
</template>
<div class="modal_top"> <div class="modal_top">
<div><Icon icon="ant-design:hdd-outlined" :size="30" :color="'#1091FE'" /></div> <div><Icon icon="ant-design:hdd-outlined" :size="30" :color="'#1091FE'" /></div>
<div> <div>
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
<BasicTable @register="registerTable1"> <BasicTable @register="registerTable1">
<template #form-slot> <template #form-slot>
<a-button <a-button
style="margin-left: 400px"
type="primary" type="primary"
@click="addReview" @click="addReview"
:disabled="getRowSelection().selectedRowKeys <= 0" :disabled="getRowSelection().selectedRowKeys <= 0"
......
...@@ -71,7 +71,7 @@ export const columns: BasicColumn[] = [ ...@@ -71,7 +71,7 @@ export const columns: BasicColumn[] = [
]; ];
export const columnsTable1: BasicColumn[] = [ export const columnsTable1: BasicColumn[] = [
{ {
title: '名称', title: '列名',
dataIndex: 'name', dataIndex: 'name',
edit: true, edit: true,
editable: true, editable: true,
...@@ -79,7 +79,7 @@ export const columnsTable1: BasicColumn[] = [ ...@@ -79,7 +79,7 @@ export const columnsTable1: BasicColumn[] = [
]; ];
export const columnsTable2: BasicColumn[] = [ export const columnsTable2: BasicColumn[] = [
{ {
title: '名称', title: '列名',
dataIndex: 'name', dataIndex: 'name',
edit: true, edit: true,
editable: true, editable: true,
......
<template> <template>
<PageWrapper :title="title" class="content-padding" contentBackground @back="goBack"> <PageWrapper class="content-padding" contentBackground>
<template #headerContent> <template #headerContent>
<div class="modal_top"> <div class="modal_top">
<div @click="goBack"><Icon icon="fluent-mdl2:back" :size="20" :color="'#2f3031'" /></div>
<div><Icon icon="ant-design:hdd-outlined" :size="30" :color="'#1091FE'" /></div> <div><Icon icon="ant-design:hdd-outlined" :size="30" :color="'#1091FE'" /></div>
<div> <div>
<div class="title">{{ formParams.fieldName }}</div> <div class="title">{{ formParams.fieldName }}</div>
...@@ -30,9 +31,6 @@ ...@@ -30,9 +31,6 @@
confirm: handleDelete.bind(null, record), confirm: handleDelete.bind(null, record),
}, },
}, },
{
label: '移动',
},
]" ]"
/> />
</template> </template>
...@@ -57,9 +55,6 @@ ...@@ -57,9 +55,6 @@
confirm: handleDelete.bind(null, record), confirm: handleDelete.bind(null, record),
}, },
}, },
{
label: '移动',
},
]" ]"
/> />
</template> </template>
...@@ -120,9 +115,6 @@ ...@@ -120,9 +115,6 @@
confirm: handleDelete.bind(null, record), confirm: handleDelete.bind(null, record),
}, },
}, },
{
label: '移动',
},
]" ]"
/> />
</template> </template>
...@@ -131,7 +123,7 @@ ...@@ -131,7 +123,7 @@
</template> </template>
</BasicForm> </BasicForm>
</div> </div>
<AddSensitiveRulersModal @register="registerModal"/> <AddSensitiveRulersModal @register="registerModal" />
</PageWrapper> </PageWrapper>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
...@@ -440,7 +432,6 @@ ...@@ -440,7 +432,6 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.modal_top { .modal_top {
padding: 20px 0 20px 20px;
display: flex; display: flex;
align-items: center; align-items: center;
.title { .title {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment