12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <!-- 添加右轴指标 -->
- <el-dialog
- :visible.sync="isShow"
- :close-on-click-modal="false"
- :append-to-body="true"
- @close="$emit('close')"
- custom-class="average-edit-dialog"
- center
- width="650px"
- v-dialogDrag
- top="8vh"
- title="添加右轴指标"
- >
- <div class="container">
- 添加右轴指标
- </div>
- <div slot="footer" class="dialog-footer" style="text-align: center;">
- <el-button @click="$emit('close')">取消</el-button>
- <el-button type="primary" @click="confirmPerson">保存</el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- export default {
- props:{
- isShow:{
- type:Boolean,
- default:false
- },
- },
- data() {
- return {
- };
- },
- methods: {
- },
- };
- </script>
- <style scoped lang="scss">
- </style>
|