Blame view

src/views/jsbwcx/index.vue 10.1 KB
任超 committed
1 2 3
<template>
  <!-- 接收报文查询 -->
  <div class="reportLog from-clues">
任超 committed
4
    <!-- 头部搜索 -->
任超 committed
5 6
    <div class="from-clues-header">
      <el-form ref="ruleForm" :model="form" label-width="100px">
7
        <el-form-item v-if="BASE_API.THEME == 'jg'">
8 9
          <Breadcrumb />
        </el-form-item>
10
        <el-row class="mb-5">
任超 committed
11
          <el-col :span="6">
田浩浩 committed
12
            <el-form-item label="行政区" prop="qxdm">
任超 committed
13 14 15
              <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'">
田浩浩 committed
16
                <el-option v-for="item in dicData['A20']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
田浩浩 committed
17
                </el-option>
任超 committed
18 19 20 21
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="6">
任超 committed
22
            <el-form-item label="接收日期" prop="receiveStartTime">
任超 committed
23
              <el-date-picker type="date" class="width100" placeholder="开始日期" :picker-options="pickerOptionsStart"
24
                clearable v-model="form.receiveStartTime" value-format="yyyy-MM-dd HH:mm:ss"></el-date-picker>
任超 committed
25 26 27
            </el-form-item>
          </el-col>
          <el-col :span="6">
任超 committed
28
            <el-form-item label="至" prop="receiveEndTime" label-width="35px">
任超 committed
29 30
              <el-date-picker type="date" class="width100" placeholder="结束日期" :picker-options="pickerOptionsEnd" clearable
                v-model="form.receiveEndTime" value-format="yyyy-MM-dd HH:mm:ss" @change="endTimeChange"></el-date-picker>
任超 committed
31 32 33 34
            </el-form-item>
          </el-col>
          <el-col :span="6">
            <el-form-item label="不动产单元号" prop="bdcdyh">
35
              <el-input v-model.trim="form.bdcdyh" clearable class="width100" placeholder="不动产单元号"></el-input>
任超 committed
36 37 38
            </el-form-item>
          </el-col>
        </el-row>
任超 committed
39
        <el-row class="mt-10">
任超 committed
40
          <el-col :span="6">
yangwei committed
41 42
            <el-form-item label="业务流水号" prop="ywh">
              <el-input v-model.trim="form.ywh" clearable class="width100" placeholder="业务流水号"></el-input>
田浩浩 committed
43 44 45 46
            </el-form-item>
          </el-col>
          <el-col :span="3">
            <el-form-item label="权利类型" prop="qllx">
田浩浩 committed
47
              <el-select v-model="form.qllx" class="width100" clearable placeholder="权利类型">
田浩浩 committed
48
                <el-option v-for="item in dicData['A8']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
任超 committed
49 50 51 52
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
田浩浩 committed
53 54
          <el-col :span="3">
            <el-form-item label="登记类型" prop="djlx">
田浩浩 committed
55
              <el-select v-model="form.djlx" class="width100" clearable placeholder="登记类型">
田浩浩 committed
56 57 58 59 60 61
                <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>
          <el-col :span="3">
任超 committed
62 63
            <el-form-item label="检查结果" prop="jcjg">
              <el-select v-model="form.jcjg" class="width100" clearable placeholder="检查结果">
xiaomiao committed
64
                <el-option v-for="item in dicData['sysSjsbCkeck']" class="lastdom" :key="item.DCODE" :label="item.DNAME"
田浩浩 committed
65
                  :value="item.DCODE">
任超 committed
66 67
                </el-option>
              </el-select>
田浩浩 committed
68

任超 committed
69 70
            </el-form-item>
          </el-col>
田浩浩 committed
71
          <el-col :span="3">
任超 committed
72 73
            <el-form-item label="入库结果" prop="rkjg">
              <el-select v-model="form.rkjg" class="width100" clearable placeholder="入库结果">
xiaomiao committed
74
                <el-option v-for="item in dicData['sysSjsbStorage']" class="lastdom" :key="item.DCODE" :label="item.DNAME"
田浩浩 committed
75
                  :value="item.DCODE">
任超 committed
76 77 78 79
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
任超 committed
80
          <!-- 按钮操作 -->
任超 committed
81 82
          <el-col :span="6" class="btnColRight">
            <el-form-item>
yangwei committed
83
              <btn nativeType="cz" @click="resetForm">重置</btn>
任超 committed
84
              <btn nativeType="cx" @click="handleSearch">查询</btn>
85
              <btn nativeType="cx">存量导入</btn>
任超 committed
86 87 88 89 90
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
任超 committed
91
    <!-- 列表区域 -->
任超 committed
92
    <div class="from-clues-content">
田浩浩 committed
93
      <lb-table ref="table" :page-size="pageData.size" :current-page.sync="pageData.current" :total="tableData.total"
任超 committed
94 95
        @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
        :data="tableData.data">
任超 committed
96 97
      </lb-table>
    </div>
任超 committed
98
    <!-- 编辑 -->
任超 committed
99
    <dataDetails ref="editLog" :title="title" :visiableXml="true" />
任超 committed
100 101 102 103
  </div>
</template>

<script>
任超 committed
104
import Vue from 'vue'
任超 committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
// 接收报文查询
// 引入表格头部数据
import data from "./data";
// 引入table混入方法
import tableMixin from "@/mixins/tableMixin.js";
import { getReceiveDataReportPage } from "@/api/dataReport.js";
// 引入详情弹框
import dataDetails from "@/components/EditDialog";
//引入日期处理方法
import { timeFormat } from "@/utils/operation";
export default {
  name: "jsbwcx",
  mixins: [tableMixin],
  // 注册组件
  components: {
    dataDetails,
  },
  data () {
    return {
任超 committed
124

任超 committed
125 126 127 128 129 130 131 132 133
      pickerOptionsStart: {
        disabledDate: (time) => {
          let endDateVal = this.form.receiveEndTime;
          if (endDateVal) {
            return (
              time.getTime() >=
              new Date(endDateVal).getTime()
            );
          }
xiaomiao committed
134 135
        },
      },
任超 committed
136 137 138 139 140 141 142 143
      pickerOptionsEnd: {
        disabledDate: (time) => {
          let beginDateVal = this.form.receiveStartTime;
          if (beginDateVal) {
            return (
              time.getTime() <
              new Date(beginDateVal).getTime()
            );
xiaomiao committed
144
          }
任超 committed
145
        },
xiaomiao committed
146
      },
任超 committed
147 148 149 150 151 152 153 154 155 156 157 158
      // 表格数据
      form: {
        qxdm: "", // 行政区
        receiveStartTime: "", // 开始日期
        receiveEndTime: "", // 结束日期
        bdcdyh: "", // 不动产单元号
        ywh: "", // 业务号
        qllx: "", // 权利类型
        djlx: "", // 登记类型
        jcjg: "", // 检查结果
        rkjg: "", //入库结果
        currentPage: 1
xiaomiao committed
159
      },
任超 committed
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
      // 校验规则
      rules: {
        pcode: [{ required: true, message: "请选择行政区", trigger: "change" }],
        startTime: [
          { required: true, message: "请选择开始日期", trigger: "change" },
        ],
        endTime: [
          { required: true, message: "请选择结束日期", trigger: "change" },
        ],
        bdcdyh: [
          { required: true, message: "不动产单元号", trigger: "change" },
        ],
        ywmc: [{ required: true, message: "业务名称", trigger: "change" }],
        jcjg: [{ required: true, message: "检查结果", trigger: "change" }],
        rkjg: [{ required: true, message: "入库结果", trigger: "change" }],
xiaomiao committed
175
      },
任超 committed
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
      // 表格数据
      tableData: {
        // 表格头部
        columns: [
          {
            label: "序号",
            type: "index",
            width: "50",
            index: this.indexMethod,
          }
        ]
          .concat(data.columns())
          .concat([
            {
              label: "操作",
              width: "90",
              render: (h, scope) => {
                return (
                  <div>
                    {
                      scope.row.receiveState == 2 ?
                        <el-button
                          type="text"
                          class='successColor'
                          onClick={() => {
                            this.handleDetails(scope.row);
                          }}
                        >
                          修改
                        </el-button> :
                        <el-button
                          type="text"
                          class='btnColor'
                          onClick={() => {
                            this.handleDetails(scope.row);
                          }}
                        >
                          详情
                        </el-button>
                    }
                  </div>
                )
              }
xiaomiao committed
219
            }
任超 committed
220 221 222 223
          ]),
        // 表格列表数据
        total: 0,
        data: [],
xiaomiao committed
224
      },
任超 committed
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
      // 分页
      pageData: {
        total: 0,
        pageSize: 10,
        current: 1
      },
      title: "",
    };
  },
  methods: {
    //截止日期变化
    endTimeChange (val) {
      this.form.receiveEndTime = timeFormat(new Date(val), true)
    },
    // 初始化数据
    queryClick () {
      getReceiveDataReportPage({ ...this.form, ...this.formData }).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
          }
        }
      )
    },
    // 重置
    resetForm () {
      this.$refs.ruleForm.resetFields();
      this.form.currentPage = 1
      this.queryClick();
    },
    featchData () {
      this.queryClick();
    },
    // 结果
    handleResult (row) {
      this.$popupDialog('响应结果', 'views/jsbwcx/components/result', row)
    },
    // 详情
    handleDetails (row) {
      if (row.rectypeName) {
        this.title = row.rectypeName
      } else {
        let Title = ''
        this.dicData['A21'].map(item => {
          if (item.DCODE == row.DJLX || item.DCODE == row.djlx) {
            Title = item.DNAME
            return
          }
        })

        this.dicData['A8'].map(item => {
          if (item.DCODE == row.QLLX || item.DCODE == row.qllx) {
            Title += '-' + item.DNAME
            return
          }
        })
        this.title = Title
      }
      this.$refs.editLog.isShow(row);
      if (row.receiveState == 2) {
        this.$store.dispatch('business/setReportLogEdit')
      } else {
        this.$store.dispatch('business/setEdit')
      }
    },
任超 committed
293
  }
任超 committed
294
}
任超 committed
295 296
</script>
<style scoped lang="scss">
任超 committed
297 298 299
.lastdom:nth-child(3) {
  margin-bottom: 0px;
}
任超 committed
300 301
</style>