Blame view

src/views/ywbl/dbx/dbx.vue 10.4 KB
1
<!--
xiaomiao committed
2
 * @Description:
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-07-25 09:21:53
5
-->
6
<template>
任超 committed
7 8
  <div class="from-clues">
    <div class="from-clues-header">
xiaomiao committed
9 10 11 12 13 14
      <el-form
        :model="queryForm"
        ref="queryForm"
        @submit.native.prevent
        label-width="100px"
      >
任超 committed
15 16
        <el-row>
          <el-col :span="5">
17
            <el-form-item label="业务来源">
xiaomiao committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
              <el-select
                v-model="queryForm.ywly"
                class="width100"
                filterable
                @change="handleSelect('ywly', 'ywlymc', 'ywly')"
                @clear="handleEmpty('ywlymc')"
                clearable
                placeholder="请选择业务来源"
              >
                <el-option
                  v-for="item in dictData['ywly']"
                  :key="item.dcode"
                  :label="item.dname"
                  :value="item.dcode"
                >
任超 committed
33 34 35 36 37 38
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="权利类型">
xiaomiao committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
              <el-select
                v-model="queryForm.qllx"
                class="width100"
                @change="handleSelect('A8', 'qllxmc', 'qllx')"
                @clear="handleEmpty('qllxmc')"
                filterable
                clearable
                placeholder="请选择权利类型"
              >
                <el-option
                  v-for="item in dictData['A8']"
                  :key="item.dcode"
                  :label="item.dname"
                  :value="item.dcode"
                >
任超 committed
54 55 56 57 58 59
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="5">
            <el-form-item label="登记类型">
xiaomiao committed
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
              <el-select
                v-model="queryForm.djlx"
                class="width100"
                @change="handleSelect('A21', 'djlxmc', 'djlx')"
                @clear="handleEmpty('djlxmc')"
                filterable
                clearable
                placeholder="请选择登记类型"
              >
                <el-option
                  v-for="item in dictData['A21']"
                  :key="item.dcode"
                  :label="item.dname"
                  :value="item.dcode"
                >
任超 committed
75 76 77 78
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
79
          <el-col :span="6">
任超 committed
80
            <el-form-item label="业务号">
xiaomiao committed
81 82 83 84 85 86
              <el-input
                placeholder="请输入业务号"
                v-model="queryForm.ywh"
                clearable
                class="width100"
              >
任超 committed
87 88 89
              </el-input>
            </el-form-item>
          </el-col>
jiaozeping@pashanhoo.com committed
90

91
          <el-col :span="3" class="btnColRight">
任超 committed
92
            <el-form-item>
xiaomiao committed
93 94 95 96 97 98
              <el-button
                type="primary"
                native-type="submit"
                @click="handleSearch"
                >查询</el-button
              >
任超 committed
99
              <el-button @click="moreQueryClick">高级查询</el-button>
任超 committed
100 101 102
            </el-form-item>
          </el-col>
        </el-row>
103
        <el-row>
104
          <el-col :span="5">
105
            <el-form-item label="不动产单元号">
xiaomiao committed
106 107 108 109 110 111
              <el-input
                placeholder="请输入不动产单元号"
                v-model="queryForm.bdcdyh"
                clearable
                class="width100"
              >
112 113 114
              </el-input>
            </el-form-item>
          </el-col>
115
          <el-col :span="5">
116
            <el-form-item label="申请人">
xiaomiao committed
117 118 119 120 121 122
              <el-input
                placeholder="如需要模糊查询,前后输入%"
                v-model="queryForm.sqrmc"
                clearable
                class="width100"
              >
123 124 125
              </el-input>
            </el-form-item>
          </el-col>
126
          <el-col :span="5">
127
            <el-form-item label="申请人证件号">
xiaomiao committed
128 129 130 131 132 133
              <el-input
                placeholder="如需要模糊查询,前后输入%"
                v-model="queryForm.sqrzjhm"
                clearable
                class="width100"
              >
134 135 136
              </el-input>
            </el-form-item>
          </el-col>
137
          <el-col :span="6">
138
            <el-form-item label="坐落">
xiaomiao committed
139 140 141 142 143 144
              <el-input
                placeholder="如需要模糊查询,前后输入%"
                v-model.trim="queryForm.zl"
                clearable
                class="width100"
              >
145 146 147 148
              </el-input>
            </el-form-item>
          </el-col>
        </el-row>
任超 committed
149
        <el-row class="advanced-search">
任超 committed
150
          <span>搜索条件:</span>
任超 committed
151
          <ul>
任超 committed
152 153
            <li v-for="(item, index) in searchList" :key="index">
              {{ item.name }}:{{ item.value }}
xiaomiao committed
154 155 156 157
              <i
                class="el-icon-circle-close"
                @click="handelItem(item, index)"
              ></i>
任超 committed
158
            </li>
任超 committed
159
          </ul>
xiaomiao committed
160 161 162 163 164 165
          <el-button
            class="clean-btn"
            type="text"
            v-if="searchList.length > 0"
            @click.native="hanldeCleanAll"
            >清除全部
任超 committed
166
          </el-button>
任超 committed
167
        </el-row>
任超 committed
168
      </el-form>
169
    </div>
任超 committed
170
    <div class="from-clues-content">
xiaomiao committed
171 172 173 174 175 176 177 178 179 180 181
      <lb-table
        :page-size="pageData.size"
        class="loadingtext"
        @sort-change="handleSort"
        :current-page.sync="pageData.currentPage"
        :total="tableData.total"
        @size-change="handleSizeChange"
        @p-current-change="handleCurrentChange"
        :column="tableData.columns"
        :data="tableData.data"
      >
任超 committed
182 183
      </lb-table>
    </div>
xiaomiao committed
184 185 186 187 188
    <searchBox
      v-model="isSearch"
      @getSearch="getSearch"
      :advancedForm="otherForm"
    />
任超 committed
189
  </div>
190 191
</template>
<script>
xiaomiao committed
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
import { mapGetters } from "vuex";
import searchBox from "../components/search.vue";
import table from "@/utils/mixin/table";
import searchMin from "../components/mixin/index";
import { datas, sendThis } from "./dbxdata";
import { searchTaskToDo } from "@/api/workflow/search.js";
import {
  judgeUserTaskPermission,
  deleteFlow,
  claimTask,
} from "@/api/workFlow.js";
export default {
  name: "dbx",
  components: { searchBox },
  mixins: [table, searchMin],
  computed: {
    ...mapGetters(["dictData", "transfer"]),
  },
  data() {
    return {
      queryForm: {},
      searchForm: {
        ywlymc: "",
        qllxmc: "",
        djlxmc: "",
        ywh: "",
218
      },
xiaomiao committed
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
      tableData: {
        total: 0,
        columns: datas.columns(),
        data: [],
      },
      jumpid: "",
    };
  },
  mounted() {
    sendThis(this);
  },
  watch: {
    queryForm: {
      handler(newName, oldName) {},
      immediate: true,
xiaomiao committed
234
    },
xiaomiao committed
235 236 237 238
  },
  activated() {
    this.queryClick();
    window["getBpageList"] = () => {
239
      this.queryClick();
xiaomiao committed
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
    };
  },
  methods: {
    // 列表渲染接口
    /**
     * @description: 列表渲染接口
     * @author: renchao
     */
    queryClick() {
      this.$startLoading();
      this.searchForm.ywh = this.queryForm.ywh;
      this.iterationData();
      searchTaskToDo({
        ...this.queryForm,
        ...this.otherForm,
        ...this.pageData,
      }).then((res) => {
        this.$endLoading();
        if (res.code === 200) {
          let { total, records } = res.result;
          this.tableData.total = total ? total : 0;
          this.tableData.data = records ? records : [];
        }
      });
264
    },
xiaomiao committed
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 293 294 295 296 297 298 299 300
    /**
     * @description: handleSort
     * @param {*} val
     * @author: renchao
     */
    handleSort(val) {
      this.queryForm.sortField = val.prop;
      this.queryForm.sortOrder = val.order == "ascending" ? "asc" : "desc";
      this.queryClick();
    },
    /**
     * @description: del
     * @param {*} item
     * @author: renchao
     */
    del(item) {
      let formdata = new FormData();
      formdata.append("bsmSlsq", item.bsmSlsq);
      this.$confirm("确定要删除吗, 是否继续?", "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning",
      })
        .then(() => {
          deleteFlow(formdata).then((res) => {
            if (res.code === 200) {
              this.handleDel();
              this.$message({
                type: "success",
                message: "删除成功!",
              });
              this.queryClick();
            } else {
              this.$message.error(res.message);
            }
          });
301
        })
xiaomiao committed
302 303 304 305
        .catch(() => {
          this.$message({
            type: "info",
            message: "已取消删除",
306
          });
xiaomiao committed
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
        });
    },
    /**
     * @description: ywhClick
     * @param {*} item
     * @author: renchao
     */
    ywhClick(item) {
      //判断用户是否拥有该任务的权限,若有则跳转,无权限则给予提示并刷新页面
      judgeUserTaskPermission({
        bsmSlsq: item.bsmSlsq,
        bestepid: item.bestepid,
      }).then((res) => {
        if (res.code == 200) {
          if (res.result) {
            //有任务权限
            if (item.sjlx == "3") {
              const { href } = this.$router.resolve(
                "/djbworkFrame?bsmSlsq=" +
326 327 328 329 330
                  item.bsmSlsq +
                  "&bestepid=" +
                  item.bestepid +
                  "&bsmBusiness=" +
                  "&sqywbm=" +
xiaomiao committed
331 332 333 334 335 336 337 338
                  item.djywbm +
                  "&zbhj=" +
                  item.zbhj
              );
              window.open(href, `djbworkFrame${item.bsmSlsq}`);
            } else {
              const { href } = this.$router.resolve(
                "/workFrame?bsmSlsq=" +
339 340 341 342 343
                  item.bsmSlsq +
                  "&bestepid=" +
                  item.bestepid +
                  "&bsmBusiness=" +
                  "&sqywbm=" +
xiaomiao committed
344 345 346 347 348 349
                  item.djywbm +
                  "&zbhj=" +
                  item.zbhj
              );
              window.open(href, `workFrame${item.bsmSlsq}`);
            }
xiaomiao committed
350

xiaomiao committed
351
            localStorage.setItem("ywbl", JSON.stringify(item));
xiaomiao committed
352

xiaomiao committed
353 354
            //从待办箱进入的调取任务领取接口
            claimTask(item.bsmSlsq, item.bestepid);
任超 committed
355
          } else {
xiaomiao committed
356 357 358 359
            //无任务权限
            this.$message.error("无该任务操作权限,或已被他人抢办,请重新操作");
            //刷新页面
            this.queryClick();
蔡俊立 committed
360
          }
xiaomiao committed
361 362 363 364 365 366 367
        } else {
          this.$message.error("用户任务权限判断失败,请联系管理员");
        }
      });
    },
  },
};
368 369
</script>
<style scoped lang="scss">
xiaomiao committed
370
@import "~@/styles/public.scss";
371
</style>