Errp.vue 4.19 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
liushikai committed
3
    <!-- <c-list-search
4 5 6
      @form-reset="errpHandleReset"
      @form-search="errpHandleSearch"
    >
liushikai committed
7
      <template v-slot="searchSlot"> -->
潘际乾 committed
8 9 10
      <el-form
        class="m-table-search-form"
        ref="paramsForm"
jianglong committed
11
        
潘际乾 committed
12 13 14 15 16 17
        label-position="right"
        label-width="110px"
        size="small"
      >
      
      <el-row>
潘际乾 committed
18
        <c-col :span="24" style="">
潘际乾 committed
19 20 21 22 23 24 25 26 27
        <c-col :span="8">
          <el-form-item label="申报编号" prop="errsel.rptno"  style="width: 100%">
            <c-input
              v-model="model.errsel.rptno"
              maxlength="22"
              placeholder="请输入申报编号"
            ></c-input>
          </el-form-item>
        </c-col>
28

潘际乾 committed
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
        <c-col :span="8">
              <el-form-item label="起止日期" style="width: 100%">
                <c-col :span="11">
                  <c-date-picker
                    type="date"
                    v-model="model.bopquep.frmdat"
                    value-format="yyyy-MM-dd"
                    style="width: 100%"
                    placeholder="请选择From"
                  ></c-date-picker>
                </c-col>
                <c-col :span="2" style="text-align: center">
                  <label style="display: inline-block; width: 100%">-</label>
                </c-col>
                <c-col :span="11">
                  <c-date-picker
                    type="date"
                    v-model="model.bopquep.tildat"
                    value-format="yyyy-MM-dd"
                    style="width: 100%"
                    placeholder="请选择Until"
                  ></c-date-picker>
                </c-col>
              </el-form-item>
            </c-col>
liushikai committed
54

潘际乾 committed
55 56 57 58 59 60
        <c-col :span="8">
          <el-form-item label="业务所属行" prop="bopquep.ownextkey"  style="width: 100%">
            <c-select
              v-model="model.bopquep.ownextkey"
              style="width: 100%"
              placeholder="请选择业务所属行"
liushikai committed
61
            >
潘际乾 committed
62 63 64 65
            </c-select>
          </el-form-item>
        </c-col>
            </c-col>
潘际乾 committed
66
        <c-col :span="24" style="text-align: right;height:36.8px">
潘际乾 committed
67 68 69 70 71 72 73 74 75 76 77
          <el-button size="small" @click="errpHandleReset">重置</el-button>
          <el-button
            type="primary"
            icon="el-icon-search"
            size="small"
            @click="errpHandleSearch"
            >查询</el-button
          >
        </c-col>
      </el-row>
      </el-form>
liushikai committed
78 79
      <!-- </template>
    </c-list-search> -->
潘际乾 committed
80
    <c-col :span="24" style="">
潘际乾 committed
81 82 83
      <div style="border-bottom: 10px solid rgb(232, 232, 232)">
      </div>
    </c-col>
84

jianglong committed
85 86 87 88 89 90

<c-row style="margin-top: 20px">
      <c-col style="">
        <c-button size="small" type="primary" style="margin-left:0">修复</c-button> </c-col>
    </c-row>

潘际乾 committed
91
    <el-row>
潘际乾 committed
92
      <c-col :span="24" style="">
潘际乾 committed
93 94 95 96 97 98 99 100 101 102
        <c-istream-table :list="stmData.data" :columns="stmData.columns" :showButtonFlg="true">
          <el-table-column fixed="right" prop="op" label="操作" width="120px">
            <template slot="header">
                <c-col :span="11" style="text-align:left"><span>操作</span></c-col>
                <!-- <c-col :span="12" style="text-align:right"><c-button icon="el-icon-s-tools"></c-button></c-col> -->
              </template>
            <template slot-scope="scope">
              <a href="javascript:void(0)" @click="continueEdit(scope.row)"
                >correct</a
              >
liushikai committed
103
            </template>
潘际乾 committed
104 105 106
          </el-table-column>
        </c-istream-table>
      </c-col>
107
    </el-row>
jianglong committed
108
    
109 110 111
  </div>
</template>
<script>
112
import Api from "~/service/Api";
wangren committed
113
import commonProcess from "~/mixin/commonProcess";
114 115
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bopsel/Event";
116 117

export default {
118 119
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
120
  mixins: [commonProcess],
121 122 123 124
  data() {
     return {
      stmData: {
        columns: [
jianglong committed
125 126 127 128 129
          '0 1 "申报编号" 150 ',
          '1 2 "反馈日期" 120',
          '5 3 "业务编号" 120',
          '4 4 "错误信息" 250',
          '2 5 "接口反馈文件" 250',
130 131 132 133 134 135 136 137
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
138 139 140
</script>
<style>
</style>