Setpan.vue 1.4 KB
Newer Older
fanyanyan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
<template>
  <div class="eibs-tab">
                                                                
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onSetmodDet">
            细节
        </c-button>
       </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.setmod.retmsg"   data-path=".setmod.retmsg" > </span>
	</c-col>
                  
       <c-col :span="12">
        <el-form-item label="自�'�区主�'�号" prop="setmod.zmqacc">
            <c-input  v-model="model.setmod.zmqacc" maxlength="20"  placeholder="请输入自�'�区主�'�号"></c-input>
        </el-form-item>
       </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.setmod.zmqacclab"   data-path=".setmod.zmqacclab" > </span>
	</c-col>
                                                                     
	<c-col :span="12">
	    <span  v-text="model.setmod.setglg.labdspflg"   data-path=".setmod.setglg.labdspflg" > </span>
	</c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
31
import commonProcess from "~/mixin/commonProcess";
fanyanyan committed
32 33 34 35 36 37
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Lttdck/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
38
    mixins: [commonProcess],
fanyanyan committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52
    data(){
        return {

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

    }
}
</script>
<style>

</style>