Blame view

src/views/zhcx/jdcx/jdcx.vue 4.4 KB
1 2 3 4
<template>
  <div class="from-clues">
    <!-- 表单部分 -->
    <div class="from-clues-header">
任超 committed
5
      <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="80px">
6 7 8
        <el-row>
          <el-col :span="5">
            <el-form-item label="业务来源">
任超 committed
9
              <el-select v-model="queryForm.ywly" class="width100" filterable clearable placeholder="请选择业务来源">
任超 committed
10
                <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode">
11 12 13 14 15 16
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="权利类型">
任超 committed
17
              <el-select v-model="queryForm.qllx" class="width100" filterable clearable placeholder="请选择权利类型">
任超 committed
18
                <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode">
19 20 21 22 23 24
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="登记类型">
任超 committed
25
              <el-select v-model="queryForm.djlx" class="width100" filterable clearable placeholder="请选择登记类型">
任超 committed
26
                <el-option v-for="item in  dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode">
27 28 29 30 31 32
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="业务号">
任超 committed
33
              <el-input placeholder="请输入业务号" v-model="queryForm.ywh" @clear="queryClick" clearable class="width200px">
34 35 36 37
              </el-input>
            </el-form-item>
          </el-col>

38
          <el-col :span="4" class="btnColRight">
39
            <el-form-item>
任超 committed
40
              <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button>
41 42 43 44 45 46 47 48
              <el-button @click="moreQueryClick()">高级查询</el-button>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <!-- 表格 -->
    <div class="from-clues-content">
任超 committed
49
      <lb-table :page-size="pageData.pageSize" class="loadingtext" @sort-change="handleSort"
任超 committed
50 51
        :current-page.sync="pageData.currentPage" :total="pageData.total" @size-change="handleSizeChange"
        @p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data">
52 53 54 55 56
      </lb-table>
    </div>
  </div>
</template>
<script>
任超 committed
57
import { mapGetters } from 'vuex'
58 59
import table from "@/utils/mixin/table";
import { datas, sendThis } from "./jdcxdata";
liangyifan committed
60
import { getJdcxBysearch } from "@/api/zhcx.js"
61 62 63 64
export default {
  name: "jdcx",
  components: {},
  mixins: [table],
任超 committed
65
  mounted () {
66
    sendThis(this);
任超 committed
67
    this.queryClick()
68
  },
任超 committed
69 70 71
  computed: {
    ...mapGetters(['dictData'])
  },
任超 committed
72
  data () {
73 74 75 76 77 78 79
    return {
      queryForm: {
        ywly: "",
        qllx: "",
        djlx: "",
        ywh: "",
      },
liangyifan committed
80 81 82 83 84
      pageData: {
        currentPage: 1,
        pageSize: 10,
        total: 0,
      },
85 86
      tableData: {
        columns: datas.columns(),
liangyifan committed
87
        data: []
任超 committed
88 89
      }
    }
90 91 92
  },
  methods: {
    // 初始化数据
任超 committed
93 94
    queryClick () {
      this.$startLoading()
liangyifan committed
95
      getJdcxBysearch({ ...this.queryForm, ...this.pageData }).then(res => {
任超 committed
96
        this.$endLoading()
liangyifan committed
97 98 99
        if (res.code === 200) {
          let { total, records } = res.result
          let str = ''
任超 committed
100 101 102 103
          records.forEach(item => {
            if (item.userNameList.length != 0) {
              str = String(item.userNameList)
              item.blStatus = item.zbhj + '(' + str.replace(/,/g, "+") + ')'
liangyifan committed
104
            }
任超 committed
105 106
            if (item.qlrmc.length != 0) {
              item.qlrmcStr = String(item.qlrmc)
蔡俊立 committed
107
            }
任超 committed
108 109
            if (item.ywrmc.length != 0) {
              item.ywrmcStr = String(item.ywrmc)
蔡俊立 committed
110
            }
任超 committed
111
            if (item.zlList.length != 0) {
蔡俊立 committed
112 113
              item.zlStr = String(item.zlList)
            }
liangyifan committed
114 115 116 117 118
          })
          this.pageData.total = total;
          this.tableData.data = records
        }
      })
任超 committed
119
    },
任超 committed
120
    handleSort (name, sort) {
121
      console.log(name, sort);
任超 committed
122
    },
123
    openDialog (item) {
任超 committed
124
      const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3')
任超 committed
125
      window.open(href, '_blank');
任超 committed
126 127 128
    }
  }
}
129 130 131 132
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
</style>