Sndp.vue 1.64 KB
Newer Older
fukai 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
<template>
  <div class="eibs-tab">
    <!-- S0000097 : 业务主键 -->
    <c-col :span="12">
      <el-form-item label="业务主键" prop="rmbselp.levyno">
        <c-input v-model="model.rmbselp.levyno" maxlength="24" placeholder="请输入业务主键"></c-input>
      </el-form-item>
    </c-col>
    <el-col :span="24" style="margin-top: 10px;margin-bottom: 10px;">
      <c-button @click="onSerbut" class="medium_bcs" size="medium" type="primary" style="margin-left: 0px">
        Search
      </c-button>
      <c-button @click="onSndbut" class="medium_bcs" size="medium" type="primary" style="margin-left: 30px">
        Generate
      </c-button>
      <c-button @click="onLogdspButdsp" style="margin-left: 30px" class="medium_bcs" size="medium" type="primary">
        View Log
      </c-button>
      <c-button @click="onMakfil" class="medium_bcs" size="medium" type="primary" style="margin-left: 30px">
        Send
      </c-button>
    </el-col>
    <!-- S0000004 : Waiting Message -->
    <c-col :span="24">
      Waiting Message
    </c-col>
    <c-col :span="24" style="margin-top:5px;">
      <el-form-item label-width="0px" prop="msgstm">
        <c-input v-model="model.msgstm" type="textarea" rows="20"></c-input>
      </el-form-item>
    </c-col>

    <!-- <c-col :span="12">
      <c-button size="small" type="primary" @click="onExtbut">
        {{$t('cfarcv.CG000007')}}
      </c-button>
    </c-col>-->
  </div>
</template>
<script>
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
  created: function() {}
};
</script>
<style>
</style>