|
@@ -0,0 +1,60 @@
|
|
|
+<template>
|
|
|
+ <j-modal
|
|
|
+ :title="title"
|
|
|
+ :width="width"
|
|
|
+ v-bind:body-style="{height:'700px'}"
|
|
|
+ :visible="visible"
|
|
|
+ switchFullscreen
|
|
|
+ @ok="handleOk"
|
|
|
+ :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
|
|
|
+ @cancel="handleCancel"
|
|
|
+ cancelText="关闭">
|
|
|
+ <TpmTagFormPL></TpmTagFormPL>
|
|
|
+ </j-modal>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import TpmTagFormPL from './TpmTagFormPL'
|
|
|
+ export default {
|
|
|
+ name: 'TpmTagModalPL',
|
|
|
+ components: {
|
|
|
+ TpmTagFormPL
|
|
|
+ },
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ title:'',
|
|
|
+ width:1800,
|
|
|
+ visible: false,
|
|
|
+ disableSubmit: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // add () {
|
|
|
+ // this.visible=true
|
|
|
+ // this.$nextTick(()=>{
|
|
|
+ // this.$refs.realForm.add();
|
|
|
+ // })
|
|
|
+ // },
|
|
|
+ // edit (record) {
|
|
|
+ // this.visible=true
|
|
|
+ // this.$nextTick(()=>{
|
|
|
+ // this.$refs.realForm.edit(record);
|
|
|
+ // })
|
|
|
+ // },
|
|
|
+ close () {
|
|
|
+ this.$emit('close');
|
|
|
+ this.visible = false;
|
|
|
+ },
|
|
|
+ handleOk () {
|
|
|
+
|
|
|
+ },
|
|
|
+ // submitCallback(){
|
|
|
+ // this.$emit('ok');
|
|
|
+ // this.visible = false;
|
|
|
+ // },
|
|
|
+ handleCancel () {
|
|
|
+ this.close()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|