update 国内标准

This commit is contained in:
赵霄
2023-08-28 18:03:33 +08:00
parent 0b366ab9a1
commit 3e18b33453
9 changed files with 458 additions and 63 deletions
@@ -0,0 +1,55 @@
<template>
<a-drawer
:title="title"
:width="width"
placement="right"
:closable="true"
@close="handleCancel"
:visible="visible"
:maskClosable="false"
style="height: 100%;overflow: auto;"
>
<a-spin :spinning="confirmLoading" style="width: 100%;height:100%">
<div class="drawer-container">
</div>
<div class="drawer-footer">
<a-button @click="handleOk" type="primary" style="margin-bottom: 0;">
{{ $t('preservation') }}
</a-button>
<a-button @click="handleCancel" style="margin-bottom: 0;">{{ $t('close') }}</a-button>
</div>
</a-spin>
</a-drawer>
</template>
<script>
export default {
name: 'DomesticStandardModal',
data () {
return {
visible: false,
title: '',
width: 800,
// 存储表单的数据
form: {},
confirmLoading: false
}
},
methods: {
add () {
this.edit({})
},
edit (record) {
this.visible = true
},
close () {
this.visible = false
}
}
}
</script>
<style scoped>
</style>