Prtswtrp.vue 795 Bytes
Newer Older
liuxin committed
1 2 3
<template>
  <div class="eibs-tab">
                              
潘际乾 committed
4
       <c-col :span="12">
liuxin committed
5 6 7
        <el-form-item label="XMLPanel prtswtrp的内置block">
            <c-input type="textarea" v-model="model.docimm.prtswtrpblk" maxlength="200" show-word-limit placeholder="请输入XMLPanel prtswtrp的内置block" ></c-input>
        </el-form-item>
潘际乾 committed
8
        </c-col>
liuxin committed
9 10 11 12
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
13
import commonProcess from "~/mixin/commonProcess";
liuxin committed
14
import CodeTable from "~/config/CodeTable"
liuxin committed
15
import Event from "~/model/Trnrel/Event"
liuxin committed
16 17

export default {
18
    inject: ['root'],
liuxin committed
19
    props:["model","codes"],
wangren committed
20
    mixins: [commonProcess],
liuxin committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>