Blame view

src/views/zhcx/jdcx/jdcx.vue 4.1 KB
1 2 3 4 5 6 7 8
<template>
  <div class="from-clues">
    <!-- 表单部分 -->
    <div class="from-clues-header">
      <el-form :model="queryForm" ref="queryForm" label-width="70px">
        <el-row>
          <el-col :span="5">
            <el-form-item label="业务来源">
任超 committed
9
              <el-select v-model="queryForm.ywly" 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" 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" 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" clearable class="width200px">
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
              </el-input>
            </el-form-item>
          </el-col>

          <el-col :span="4" class="btnCol">
            <el-form-item>
              <el-button type="primary" @click="queryClick()">查询</el-button>
              <el-button @click="moreQueryClick()">高级查询</el-button>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <!-- 表格 -->
    <div class="from-clues-content">
liangyifan committed
49
      <lb-table :page-size="pageData.pageSize" @sort-change="handleSort" :current-page.sync="pageData.currentPage"
任超 committed
50 51
        :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 67
    sendThis(this);
  },
任超 committed
68 69 70
  computed: {
    ...mapGetters(['dictData'])
  },
任超 committed
71
  data () {
72 73 74 75 76 77 78
    return {
      queryForm: {
        ywly: "",
        qllx: "",
        djlx: "",
        ywh: "",
      },
liangyifan committed
79 80 81 82 83
      pageData: {
        currentPage: 1,
        pageSize: 10,
        total: 0,
      },
84 85
      tableData: {
        columns: datas.columns(),
liangyifan committed
86
        data: []
任超 committed
87 88
      }
    }
89 90 91
  },
  methods: {
    // 初始化数据
liangyifan committed
92 93 94 95 96 97 98 99 100 101 102
    fetchData () {
      getJdcxBysearch({ ...this.queryForm, ...this.pageData }).then(res => {
        if (res.code === 200) {
          console.log(res)
          let { total, records } = res.result
          let str = ''
          records.forEach(item=>{
            if(item.userNameList.length!=0){
               str = String(item.userNameList)
               item.blStatus = item.zbhj + '('+ str.replace(/,/g,"+") + ')'
            }
蔡俊立 committed
103 104 105 106 107 108
            if(item.qlrmc.length!=0){
               item.qlrmcStr = String(item.qlrmc)
            }
            if(item.ywrmc.length!=0){
               item.ywrmcStr = String(item.ywrmc)
            }
liangyifan committed
109 110 111 112 113 114
          })
          this.pageData.total = total;
          this.tableData.data = records
        }
      })
     },
任超 committed
115
    handleSort (name, sort) {
116
      console.log(name, sort);
任超 committed
117
    },
118 119
    openDialog (item) {
      const { href } = this.$router.resolve('/fqsq?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness  + '&viewtype=3')
任超 committed
120
      window.open(href, '_blank');
任超 committed
121 122 123
    }
  }
}
124 125 126 127
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
</style>