Blame view

src/views/sthj/sbbwcx/index.vue 8.41 KB
任超 committed
1
<!-- 上报报文查询 -->
任超 committed
2
<template>
任超 committed
3 4
  <div class="from-clues">
    <!-- 头部搜索 -->
任超 committed
5
    <div class="from-clues-header">
任超 committed
6
      <el-form ref="ruleForm" :model="form" label-width="100px">
7 8
        <!-- 判断进入监管还是上报系统 -->
        <el-form-item v-if="BASE_API.THEME == 'jg'">
任超 committed
9 10
          <Breadcrumb />
        </el-form-item>
11
        <el-row class="mb-5">
任超 committed
12
          <el-col :span="6">
田浩浩 committed
13
            <el-form-item label="行政区" prop="qxdm">
14 15 16 17
              <el-select
                v-model="$store.state.user.userInfo.grade === 'county' ? form.qxdm = $store.state.user.userInfo.areaCode : form.qxdm"
                class="width100" clearable placeholder="行政区" :disabled="$store.state.user.userInfo.grade === 'county'">
                <el-option v-for="item in dicData['A20']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
田浩浩 committed
18 19
                </el-option>
              </el-select>
任超 committed
20 21
            </el-form-item>
          </el-col>
任超 committed
22 23
          <el-col :span="6">
            <el-form-item label="汇交时间" prop="exchangeStartTime">
任超 committed
24
              <el-date-picker type="date" class="width100 hjsj" placeholder="开始日期" clearable
任超 committed
25
                :picker-options="pickerOptionsStart" v-model="form.exchangeStartTime"
26
                value-format="yyyy-MM-dd HH:mm:ss"></el-date-picker>
任超 committed
27 28 29 30
            </el-form-item>
          </el-col>
          <el-col :span="6">
            <el-form-item label="至" prop="exchangeStartTime" label-width="35px">
任超 committed
31 32
              <el-date-picker type="date" class="width100" placeholder="结束日期" clearable :picker-options="pickerOptionsEnd"
                v-model="form.exchangeEndTime" value-format="yyyy-MM-dd HH:mm:ss"
任超 committed
33
                @change="endTimeChange"></el-date-picker>
任超 committed
34 35 36
            </el-form-item>
          </el-col>
          <el-col :span="6">
yangwei committed
37
            <el-form-item label="汇交状态" prop="hjjg">
田浩浩 committed
38
              <el-select v-model="form.hjjg" class="width100" clearable placeholder="汇交状态">
任超 committed
39
                <el-option v-for="item in dicData['sbhjzt']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
任超 committed
40 41
                </el-option>
              </el-select>
任超 committed
42 43
            </el-form-item>
          </el-col>
任超 committed
44
        </el-row>
任超 committed
45
        <el-row class="mt-10">
任超 committed
46
          <el-col :span="6">
yangwei committed
47 48
            <el-form-item label="业务流水号" prop="ywh">
              <el-input v-model.trim="form.ywh" class="width100" clearable placeholder="业务流水号"></el-input>
田浩浩 committed
49 50
            </el-form-item>
          </el-col>
任超 committed
51
          <el-col :span="6">
田浩浩 committed
52
            <el-form-item label="权利类型" prop="qllx">
任超 committed
53
              <el-select v-model="form.qllx" class="width100" clearable placeholder="权利类型">
田浩浩 committed
54 55 56 57 58
                <el-option v-for="item in dicData['A8']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
任超 committed
59
          <el-col :span="6">
田浩浩 committed
60
            <el-form-item label="登记类型" prop="djlx">
任超 committed
61
              <el-select v-model="form.djlx" class="width100" clearable placeholder="登记类型">
田浩浩 committed
62 63 64 65 66
                <el-option v-for="item in dicData['A21']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
任超 committed
67
          <!-- 操作按钮 -->
田浩浩 committed
68
          <el-col :span="6" class="btnColRight">
yangwei committed
69
            <btn nativeType="cz" @click="resetForm">重置</btn>
任超 committed
70
            <btn nativeType="cx" @click="handleSearch">查询</btn>
任超 committed
71 72 73 74
          </el-col>
        </el-row>
      </el-form>
    </div>
任超 committed
75
    <!-- 列表 -->
任超 committed
76
    <div class="from-clues-content">
任超 committed
77
      <lb-table ref="table" :page-size="pageData.size" :current-page.sync="pageData.current" :total="tableData.total"
任超 committed
78 79
        @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
        :data="tableData.data">
任超 committed
80 81
      </lb-table>
    </div>
任超 committed
82
    <!-- 引入详情组件 -->
任超 committed
83
    <!-- 编辑 -->
任超 committed
84
    <dataDetails ref="editLog" :title="title" :visiableXml="true" />
任超 committed
85
  </div>
任超 committed
86 87
</template>
<script>
xiaomiao committed
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
  // 上报报文查询
  // 引入表头数据
  import { datas, sendThis } from "./data";
  // 引入表格混入方法
  import tableMixin from "@/mixins/tableMixin.js";
  // 引入详情弹框
  import dataDetails from "@/components/EditDialog";
  import { getDataReportPage } from "@/api/dataReport.js";
  //引入日期处理方法
  import { timeFormat } from "@/utils/operation";
  export default {
    name: "sbbwcx",
    mixins: [tableMixin],
    // 注册组件
    components: {
      dataDetails,
    },
    data () {
      return {
        isShow: false,
        // 开始结束日期限制
        pickerOptionsStart: {
          disabledDate: (time) => {
            if (this.form.exchangeEndTime) {
              return time.getTime() >= new Date(this.form.exchangeEndTime).getTime();
            }
          },
田浩浩 committed
115
        },
xiaomiao committed
116 117 118 119 120 121 122
        // 结束日期限制
        pickerOptionsEnd: {
          disabledDate: (time) => {
            if (this.form.exchangeStartTime) {
              return time.getTime() < new Date(this.form.exchangeStartTime).getTime();
            }
          },
田浩浩 committed
123
        },
xiaomiao committed
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
        // 头部搜索
        form: {
          qxdm: "", // 行政区
          exchangeStartTime: "", // 开始日期
          exchangeEndTime: "", // 结束日期
          hjjg: "", //汇交状态
          bdcdyh: "", // 不动产单元号
          ywh: "", // 业务号
          qllx: "", // 权利类型
          djlx: "", // 登记类型
          jcjg: "", // 检查结果
          rkjg: "", //入库结果
          currentPage: 1
        },
        // 分页
        pageData: {
          total: 0,
          pageSize: 10,
          current: 1
        },
         // 表格数据
     tableData: {
          // 表头数据
          columns: [
任超 committed
148
            {
xiaomiao committed
149 150 151 152
              label: "序号",
              type: "index",
              width: "50",
              index: this.indexMethod,
任超 committed
153
            }
xiaomiao committed
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
          ]
            .concat(datas.columns().concat([
              {
                label: "操作",
                width: "80",
                fixed: "right",
                render: (h, scope) => {
                  return (
                    <div>
                      {
                        scope.row.exchangeState == 2 ?
                          <el-button
                            type="text"
                            class='successColor'
                            onClick={() => {
                              this.handleDetail(scope.row);
                            }}
                          >
                            修改
                          </el-button> :
                          <el-button
                            class='btnColor'
                            type="text"
                            onClick={() => {
                              this.handleDetail(scope.row);
                            }}
                          >
                            详情
                          </el-button>
                      }

                    </div>
                  );
                },
              }
            ])),
          total: 0,
          data: [],
        },
        title: "",
      };
任超 committed
195
    },
xiaomiao committed
196 197
    mounted () {
      sendThis(this);
田浩浩 committed
198
    },
xiaomiao committed
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
    methods: {
      //截止日期变化
      endTimeChange (val) {
        this.form.exchangeEndTime = timeFormat(new Date(val), true)
      },
      // 初始化数据
      featchData () {
        getDataReportPage({ ...this.form }).then((res) => {
          if (res.code === 200) {
            let { total, records, current } = res.result;
            this.tableData.total = total;
            this.tableData.data = records ? records : [];
            this.pageData.current = current
          }
        });
      },
      // 上报
      handleEscalation () { },
      // 详情
      handleDetail (row) {
        this.title = row.rectypeName;
        this.$refs.editLog.isShow(row);
        if (row.exchangeState == 2) {
          this.$store.dispatch('business/setReportLogEdit')
        } else {
          this.$store.dispatch('business/setEdit')
        }
      },
      // 重置
      resetForm () {
        this.$refs.ruleForm.resetFields();
        this.form.exchangeEndTime = ""
        this.form.currentPage = 1
        this.featchData();
      },
任超 committed
234
    },
xiaomiao committed
235 236 237
    destroyed () {
      this.$store.dispatch('business/setEdit')
    }
238
  }
任超 committed
239 240
</script>
<style scoped lang="scss">
xiaomiao committed
241 242
  // 引入页面公共样式
  @import "./index.scss";
任超 committed
243 244
</style>