Blame view

src/views/ywbl/ybx/ybx.vue 4.09 KB
jiaozeping@pashanhoo.com committed
1 2 3 4
<template>
  <div class="from-clues">
    <!-- 表单部分 -->
    <div class="from-clues-header">
任超 committed
5
      <el-form :model="queryForm" ref="queryForm" label-width="80px">
jiaozeping@pashanhoo.com committed
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">
jiaozeping@pashanhoo.com committed
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">
jiaozeping@pashanhoo.com committed
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">
jiaozeping@pashanhoo.com committed
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">
jiaozeping@pashanhoo.com committed
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">
1  
jiaozeping@pashanhoo.com committed
49
      <lb-table :page-size="pageData.size" @sort-change="handleSort" border :current-page.sync="pageData.current"
任超 committed
50 51
        :total="pageData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange"
        :column="tableData.columns" :data="tableData.data">
jiaozeping@pashanhoo.com committed
52 53 54 55 56
      </lb-table>
    </div>
  </div>
</template>
<script>
任超 committed
57
import { mapGetters } from 'vuex'
jiaozeping@pashanhoo.com committed
58 59
import table from "@/utils/mixin/table";
import { datas, sendThis } from "./ybxdata";
任超 committed
60
import { searchTaskDone } from "@/api/ywbl.js"
jiaozeping@pashanhoo.com committed
61
export default {
62
  name: "ybx",
jiaozeping@pashanhoo.com committed
63 64
  components: {},
  mixins: [table],
任超 committed
65
  mounted () {
jiaozeping@pashanhoo.com committed
66 67
    sendThis(this);
  },
任超 committed
68 69 70
  computed: {
    ...mapGetters(['dictData'])
  },
任超 committed
71
  data () {
jiaozeping@pashanhoo.com committed
72 73 74 75 76 77 78 79 80 81 82 83 84
    return {
      queryForm: {
        ywly: "",
        qllx: "",
        djlx: "",
        ywh: "",
      },
      pageData: {
        current: 1,
        size: 10,
        total: 2,
      },
      tableData: {
蔡俊立 committed
85
        total: 0,
jiaozeping@pashanhoo.com committed
86
        columns: datas.columns(),
蔡俊立 committed
87
        data: [],
jiaozeping@pashanhoo.com committed
88 89 90 91
      },
    };
  },
  methods: {
蔡俊立 committed
92 93 94 95 96 97 98 99 100
    init (e) {
      this.fetchData()
    },
    // 列表渲染接口
    fetchData () {
      searchTaskDone({ ...this.queryForm, ...this.pageData }).then(res => {
        if (res.code === 200) {
          let { total, records } = res.result
          this.pageData.total = total;
任超 committed
101 102 103 104 105 106
          records.forEach(item => {
            item.qlrmc = item.qlrmc.join(',')
            item.ywh = item.ywh.join(',')
            item.zl = item.zl.join(',')
            item.outstepdate = item.outstepdate[0]
          })
蔡俊立 committed
107 108 109
          this.tableData.data = records
        }
      })
任超 committed
110
    },
蔡俊立 committed
111 112 113
    queryClick () {
      this.fetchData()
    },
任超 committed
114 115 116 117
    handleSort (val) {
      this.queryForm.sortField = val.prop
      this.queryForm.sortOrder = val.order == "ascending" ? 'asc' : 'desc'
      this.fetchData()
jiaozeping@pashanhoo.com committed
118
    },
任超 committed
119 120
    ywhClick (item) {
      const { href } = this.$router.resolve('/workFrame?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + '&viewtype=1');
121
      window.open(href, '_blank');
任超 committed
122 123
    }
  }
jiaozeping@pashanhoo.com committed
124 125 126 127 128
};
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
</style>