Blame view

src/views/bdcsj/fdcqqfsyq/index.vue 4.16 KB
任超 committed
1
<template>
1  
jiaozeping@pashanhoo.com committed
2
  <div class="fdcqqfsyq from-clues">
任超 committed
3 4
    <div class="from-clues-header">
      <el-form ref="form" :model="form" label-width="80px">
任超 committed
5 6 7
        <el-form-item>
          <Breadcrumb />
        </el-form-item>
任超 committed
8 9
        <el-row>
          <el-col :span="5">
1  
jiaozeping@pashanhoo.com committed
10
            <el-form-item label="业务号">
任超 committed
11
              <el-input v-model="form.YWH" clearable placeholder="业务号"></el-input>
任超 committed
12 13 14 15 16
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="权利类型">
              <el-select v-model="form.QLLX" ref="selectshareQL" @visible-change="isShowSelectOptions" clearable
17
                placeholder="权利类型">
任超 committed
18 19 20 21 22 23 24
                <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>
          <el-col :span="5">
            <el-form-item label="不动产单元号" label-width="105px">
任超 committed
25
              <el-input v-model="form.BDCDYH" clearable placeholder="不动产单元号"></el-input>
任超 committed
26 27
            </el-form-item>
          </el-col>
任超 committed
28
          <el-col :span="9" class="btnColRight">
yangwei committed
29
            <btn nativeType="cz" @click="resetForm">重置</btn>
任超 committed
30
            <btn nativeType="cx" @click="handleSearch">查询</btn>
任超 committed
31 32 33 34 35
          </el-col>
        </el-row>
      </el-form>
    </div>
    <div class="from-clues-content">
任超 committed
36 37 38
      <lb-table :page-size="pageData.size" :current-page.sync="pageData.current" :total="pageData.total"
        @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns"
        :data="tableData.data">
任超 committed
39 40
      </lb-table>
    </div>
任超 committed
41
    <dataDetails ref="editLog" :title="title" :tabsActiveName="'qlfFwFdcqQfsyq'" />
任超 committed
42 43 44 45 46 47
  </div>
</template>

<script>
//  建筑物区分所有权业主共有部分
import data from "./data"
yangwei committed
48
import qlfFwFdcqQfsyq from '@/api/qlfFwFdcqQfsyq'
49
import sjsbFunctionOper from '@/api/sjsbFunctionOper'
任超 committed
50
import tableMixin from '@/mixins/tableMixin.js'
51
import treeSelect from '@/components/TreeSelect.vue'
任超 committed
52
export default {
1  
jiaozeping@pashanhoo.com committed
53
  name: "fdcqqfsyq",
任超 committed
54 55
  mixins: [tableMixin],
  components: {
56
    treeSelect
任超 committed
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
  },
  data () {
    return {
      form: {
        YWH: '',
        QLLX: '',
        BDCDYH: '',
        currentPage: 1
      },
      tableData: {
        columns: [{
          label: '序号',
          type: 'index',
          width: '50',
          index: this.indexMethod,
        }].concat(data.columns()).concat([
          {
            label: "操作",
任超 committed
75
            width: 80,
任超 committed
76 77 78 79
            render: (h, scope) => {
              return (
                <div>
                  <el-button
任超 committed
80 81
                    type="text"
                    class='btnColor'
82 83 84
                    onClick={() => {
                      this.handleEdit(scope.row);
                    }}
任超 committed
85
                  >
86
                    详情
任超 committed
87
                    <i class="el-icon-d-arrow-right"></i>
任超 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
                  </el-button>
                </div>
              );
            },
          },

        ]),
        data: []
      },
      pageData: {
        total: 0,
        pageSize: 15,
        current: 1,
      },
      diaData: null,
      bsmSjsb: ''
    }
  },
  methods: {
    // 是否显示下拉框
    isShowSelectOptions (e) {
      if (!e) this.$refs.selectshareQL.blur()
    },
    async featchData () {
      try {
        this.form = Object.assign(this.form, this.formData)
        let { result: { list, total, pages: pageSize, pageNum: current }
yangwei committed
115
        } = await qlfFwFdcqQfsyq.getQlfFwFdcqQfsyqList(this.form)
任超 committed
116 117 118 119 120 121 122 123 124 125 126
        this.tableData.data = list
        this.pageData = {
          pageSize,
          current,
          total
        }
      } catch (error) {
        this.message = error
      }
    },
    async handlDatadetails (index, row) {
127
      let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB)
任超 committed
128 129 130 131 132 133 134 135 136 137
      if (res != null) {
        this.diaData = res
        this.bsmSjsb = row.BSM_SJSB
        this.$store.dispatch('business/setEdit'); this.$refs.editLog.isShow()
      } else {
        this.$message(message)
      }
    },
  }
}
任超 committed
138 139
</script>
<style scoped lang="scss">
任超 committed
140
// @import "~@/styles/public.scss";
xiaomiao committed
141
</style>