Decrea.vue 1.91 KB
Newer Older
liyixun committed
1
<template>
huangxin committed
2
  <div class="eibs">
3 4
<!-- ============左边================= -->
        <c-col :span="12" style="padding-right: 20px;">
liyixun committed
5 6
          <c-col :span="24">
            <el-form-item
wangna committed
7
              label="预备声明有效期"
liyixun committed
8 9 10 11 12 13
              prop="decreadat"
            >
              <c-date-picker
                type="date"
                v-model="model.decreadat"
                style="width: 100%"
wangna committed
14
                placeholder="请选择预备声明有效期"
liyixun committed
15 16 17 18
              ></c-date-picker>
            </el-form-item>
          </c-col>
        </c-col>
liyixun committed
19

20 21
        <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
22 23
          <c-col :span="24">
            <el-form-item
wangna committed
24
              label="预备声明文本"
liyixun committed
25 26 27 28 29 30 31 32 33
              prop="decreatxt"
            >
              <c-fullbox>
                <c-input
                  type="textarea"
                  rows="5s"
                  v-model="model.decreatxt"
                  maxlength="32500"
                  show-word-limit
wangna committed
34
                  placeholder="请输入预备声明文本"
liyixun committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
                ></c-input>
                <template slot="footer">
                  <c-button
                    size="small"
                    type="primary"
                    icon="el-icon-search"
                    @click="onDecblkButtxmsel"
                  >
                    ...
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
        </c-col>
liyixun committed
50 51 52
  </div>
</template>
<script>
liyixun committed
53
import Api from "~/service/Api";
liyixun committed
54
import commonProcess from "~/mixin/commonProcess";
liyixun committed
55 56
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitpop/Event";
liyixun committed
57 58

export default {
liyixun committed
59 60 61 62 63 64 65 66 67
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
68 69 70
</script>
<style>
</style>