Blame view

src/views/djbworkflow/djbBook/components/blxxtabs/cfdj.vue 20.3 KB
xiaomiao committed
1 2 3
<!--
 * @Description:
 * @Autor: renchao
xiaomiao committed
4
 :show-message="false"
5
 * @LastEditTime: 2023-08-17 13:23:51
xiaomiao committed
6 7 8 9 10 11 12 13 14 15
-->
<template>
  <!-- 受理信息 -->
  <div class="slxx">
    <el-form
      :model="ruleForm"
      :rules="rules"
      ref="ruleForm"
      :label-position="flag ? 'top' : ''"
      :inline="flag"
xiaomiao committed
16
      label-width="145px"
xiaomiao committed
17
      inline-message
xiaomiao committed
18
      :show-message="false"
xiaomiao committed
19
      :class="{ readonly: editDisabled }"
xiaomiao committed
20
      class="loadingtext">
xiaomiao committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
      <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''">
        <div class="slxx_title title-block">
          补录信息
          <div class="triangle"></div>
        </div>
        <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="补录编号:">
              <el-input disabled v-model="ruleForm.repair.ywh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="补录人员:">
              <el-input disabled v-model="ruleForm.repair.slry"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="补录时间:">
              <el-input disabled v-model="ruleForm.repair.slsj"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
43
        <div class="slxx_title title-block bdcqk">
xiaomiao committed
44
          查封登记不动产情况
xiaomiao committed
45
          <div class="count">
xiaomiao committed
46 47 48
            <el-form-item
              label="查封不动产权信息:"
              prop="ztQlxx.bdcqzh"
xiaomiao committed
49
              :rules="rules.ztQlxxrules">
xiaomiao committed
50 51
              <select-table
                v-model="ruleForm.ztQlxx"
xiaomiao committed
52
                :table-width="730"
xiaomiao committed
53 54
                :tableData="ztQlxxList"
                :props="props"
xiaomiao committed
55
                @change="ztQlxxchange">
xiaomiao committed
56 57 58
                <el-table-column
                  prop="qllxmc"
                  width="130"
xiaomiao committed
59
                  label="权利类型"></el-table-column>
xiaomiao committed
60 61 62
                <el-table-column
                  prop="bdcqzh"
                  width="160"
xiaomiao committed
63
                  label="不动产权证书"></el-table-column>
xiaomiao committed
64 65
                <el-table-column
                  prop="qlrmc"
xiaomiao committed
66
                  label="被执行人"></el-table-column>
xiaomiao committed
67 68 69 70 71
                <el-table-column prop="mjmc" label="面积"></el-table-column>
                <el-table-column prop="ytmc" label="用途"></el-table-column>
                <el-table-column prop="zl" label="坐落"></el-table-column>
              </select-table>
            </el-form-item>
xiaomiao committed
72 73 74 75 76
          </div>

          <div class="triangle"></div>
        </div>

xiaomiao committed
77 78 79
        <el-row :gutter="10">

        </el-row>
xiaomiao committed
80
        <el-row :gutter="10" v-if="ruleForm.ztQlxx != null">
tianhaohao@pashanhoo.com committed
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
          <el-col :span="8">
            <el-form-item label="权利人:">
              <el-input disabled v-model="ruleForm.ztQlxx.qlrmc"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="证件种类:">
              <el-input disabled v-model="ruleForm.ztQlxx.qlrzjzl"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="证件号:">
              <el-input disabled v-model="ruleForm.ztQlxx.qlrzjhm"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
97
        <el-row :gutter="10" v-if="ruleForm.ztQlxx != null">
tianhaohao@pashanhoo.com committed
98 99 100 101 102 103
          <el-col :span="8">
            <el-form-item label="权利类型:">
              <el-input disabled v-model="ruleForm.ztQlxx.qllxmc"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
104
            <el-form-item label="不动产权证号:">
tianhaohao@pashanhoo.com committed
105 106 107 108 109
              <el-input disabled v-model="ruleForm.ztQlxx.bdcqzh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="坐落:">
xiaomiao committed
110
              <el-input disabled v-model="ruleForm.qlxx.zl"></el-input>
tianhaohao@pashanhoo.com committed
111 112 113
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
114
        <el-row :gutter="10" v-if="ruleForm.ztQlxx != null">
tianhaohao@pashanhoo.com committed
115 116 117 118 119 120 121
          <el-col :span="8">
            <el-form-item label="不动产单元号:">
              <el-input disabled v-model="ruleForm.ztQlxx.bdcdyh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="面积:">
xiaomiao committed
122
              <el-input disabled v-model="ruleForm.ztQlxx.mjmc"></el-input>
tianhaohao@pashanhoo.com committed
123 124 125 126 127 128 129 130
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="用途:">
              <el-input disabled v-model="ruleForm.ztQlxx.ytmc"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
131
        <div class="slxx_title title-block bdcqk">
xiaomiao committed
132
          查封登记信息
133
          <div class="count">
xiaomiao committed
134 135 136 137
            <el-form-item
              label="上手权利信息:"
              prop="ssQlxx.bdcqzh"
              :rules="rules.ssQlxxrules"
xiaomiao committed
138
              v-if="ruleForm.cfdj.sfbxf == '1'">
xiaomiao committed
139 140 141 142 143
              <select-table
                v-model="ruleForm.ssQlxx"
                :table-width="730"
                :tableData="ssQlxxList"
                :props="props"
xiaomiao committed
144
                @change="ssQlxxchange">
xiaomiao committed
145 146 147
                <el-table-column
                  prop="qllxmc"
                  width="130"
xiaomiao committed
148
                  label="权利类型"></el-table-column>
xiaomiao committed
149 150 151
                <el-table-column
                  prop="bdcqzh"
                  width="160"
xiaomiao committed
152
                  label="不动产权证书"></el-table-column>
xiaomiao committed
153 154 155 156 157 158 159
                <el-table-column prop="qlrmc" label="权利人"></el-table-column>
                <el-table-column prop="mjmc" label="面积"></el-table-column>
                <el-table-column prop="ytmc" label="用途"></el-table-column>
                <el-table-column prop="zl" label="坐落"></el-table-column>
              </select-table>
            </el-form-item>
          </div>
xiaomiao committed
160 161 162 163 164 165 166 167 168
          <div class="triangle"></div>
        </div>
        <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="不动产单元号:">
              <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
169 170 171
            <el-form-item
              label="业务号:"
              prop="qlxx.ywh"
xiaomiao committed
172
              :rules="rules.ywhrules">
xiaomiao committed
173
              <el-input maxlength="20" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');" v-model="ruleForm.qlxx.ywh"></el-input>
xiaomiao committed
174 175
            </el-form-item>
          </el-col>
xiaomiao committed
176
          <el-col :span="8">
xiaomiao committed
177
            <el-form-item label="上手业务号:">
xiaomiao committed
178
              <el-input disabled v-model="ruleForm.qlxx.ssywh"></el-input>
xiaomiao committed
179 180 181 182
            </el-form-item>
          </el-col>
        </el-row>
        <el-row :gutter="10">
xiaomiao committed
183
          <el-col :span="8">
xiaomiao committed
184 185 186 187 188
            <el-form-item label="权利类型:">
              <el-input disabled v-model="ruleForm.qlxx.qllxmc"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
189 190
            <el-form-item label="是否被续封:"
              prop="cfdj.sfbxf"
xiaomiao committed
191 192
              :rules="rules.sfbxfrules">
              <el-radio-group v-model="ruleForm.cfdj.sfbxf" @change="djlxchange">
xiaomiao committed
193 194 195
                <el-radio label="1"></el-radio>
                <el-radio label="2"></el-radio>
              </el-radio-group>
xiaomiao committed
196 197 198
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
199
            <el-form-item label="不动产坐落:">
xiaomiao committed
200 201 202 203
              <el-input v-model="ruleForm.qlxx.zl"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
204 205 206 207 208 209
            <el-form-item label="权属状态:">
              <el-select v-model="ruleForm.qlxx.qszt">
                <el-option
                  v-for="item in qsztlist"
                  :key="item.dcode"
                  :label="item.dname"
xiaomiao committed
210
                  :value="item.dcode"></el-option>
xiaomiao committed
211
              </el-select>
xiaomiao committed
212
            </el-form-item>
xiaomiao committed
213
          </el-col>
xiaomiao committed
214
          <el-col :span="8">
xiaomiao committed
215
            <el-form-item label="查封机关:">
xiaomiao committed
216 217 218 219
              <el-input v-model="ruleForm.cfdj.cfjg"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
220
            <el-form-item label="查封类型:">
xiaomiao committed
221 222 223 224 225
              <el-select v-model="ruleForm.cfdj.cflx">
                <el-option
                  v-for="item in dictData['A32']"
                  :key="item.dcode"
                  :label="item.dname"
xiaomiao committed
226
                  :value="item.dcode"></el-option>
xiaomiao committed
227 228 229 230
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
231
            <el-form-item label="查封文号:">
xiaomiao committed
232 233 234 235
              <el-input v-model="ruleForm.cfdj.cfwh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
236
            <el-form-item label="查封起始时间:">
xiaomiao committed
237 238 239 240 241 242
              <el-date-picker
                v-model="ruleForm.cfdj.cfqssj"
                class="width100"
                type="date"
                placeholder="选择日期"
                value-format="yyyy-MM-dd HH:mm:ss"
xiaomiao committed
243
                format="yyyy-MM-dd"></el-date-picker>
xiaomiao committed
244 245 246
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
247
            <el-form-item label="查封结束时间:">
xiaomiao committed
248 249 250 251 252 253
              <el-date-picker
                v-model="ruleForm.cfdj.cfjssj"
                class="width100"
                type="date"
                placeholder="选择日期"
                value-format="yyyy-MM-dd HH:mm:ss"
xiaomiao committed
254
                format="yyyy-MM-dd"></el-date-picker>
xiaomiao committed
255 256 257
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
258
            <el-form-item label="查封期限:">
xiaomiao committed
259 260 261 262
              <el-input v-model="ruleForm.cfdj.cfqx"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
263
            <el-form-item label="查封范围:">
xiaomiao committed
264 265
              <el-input v-model="ruleForm.cfdj.cffw"></el-input>
            </el-form-item>
xiaomiao committed
266 267
          </el-col>
          <el-col :span="8">
xiaomiao committed
268 269 270
            <el-form-item
              label="登记机构:"
              prop="qlxx.djjg"
xiaomiao committed
271
              :rules="rules.djjgrules">
xiaomiao committed
272 273 274
              <el-input v-model="ruleForm.qlxx.djjg"></el-input>
            </el-form-item>
          </el-col>
xiaomiao committed
275

xiaomiao committed
276
          <el-col :span="8">
xiaomiao committed
277 278 279
            <el-form-item
              label="登簿人:"
              prop="qlxx.dbr"
xiaomiao committed
280
              :rules="rules.dbrrules">
xiaomiao committed
281 282 283 284
              <el-input v-model="ruleForm.qlxx.dbr"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
285 286 287
            <el-form-item
              label="登记时间:"
              prop="qlxx.djsj"
xiaomiao committed
288
              :rules="rules.djsjrules">
xiaomiao committed
289 290 291 292
              <el-date-picker
                v-model="ruleForm.qlxx.djsj"
                type="date"
                placeholder="选择日期"
xiaomiao committed
293
                class="width100"
xiaomiao committed
294
                value-format="yyyy-MM-dd HH:mm:ss"
xiaomiao committed
295
                format="yyyy-MM-dd">
xiaomiao committed
296
              </el-date-picker>
xiaomiao committed
297 298
            </el-form-item>
          </el-col>
299
          <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'">
xiaomiao committed
300
            <el-form-item label="解封业务号:">
xiaomiao committed
301
              <el-input maxlength="11" v-model="ruleForm.qlxx.zxywh"></el-input>
xiaomiao committed
302 303
            </el-form-item>
          </el-col>
xiaomiao committed
304 305 306
        </el-row>
        <el-row :gutter="10">

xiaomiao committed
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
          <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'">
            <el-form-item label="解封机关:">
              <el-input v-model="ruleForm.cfdj.jfjg"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'">
            <el-form-item label="解封文件:">
              <el-input v-model="ruleForm.cfdj.jfwj"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'">
            <el-form-item label="解封文号:">
              <el-input v-model="ruleForm.cfdj.jfwh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'">
            <el-form-item label="解封登簿人:">
xiaomiao committed
324
              <el-input v-model="ruleForm.qlxx.zxdbr"></el-input>
xiaomiao committed
325 326 327 328
            </el-form-item>
          </el-col>
          <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'">
            <el-form-item label="解封登记时间:">
329
              <el-date-picker
xiaomiao committed
330
                v-model="ruleForm.qlxx.zxsj"
331
                class="width100"
xiaomiao committed
332 333 334
                type="date"
                placeholder="选择日期"
                value-format="yyyy-MM-dd HH:mm:ss"
xiaomiao committed
335
                format="yyyy-MM-dd">
xiaomiao committed
336 337 338
              </el-date-picker>
            </el-form-item>
          </el-col>
339
          <el-col :span="24">
xiaomiao committed
340 341 342 343
            <el-form-item label="附记:">
              <el-input v-model="ruleForm.cfdj.fj"></el-input>
            </el-form-item>
          </el-col>
xiaomiao committed
344
        </el-row>
xiaomiao committed
345
      </div>
xiaomiao committed
346
      <el-row class="btn" v-if="ableOperation">
xiaomiao committed
347 348 349 350 351 352 353 354
        <el-form-item>
          <el-button type="primary" @click="onSubmit">保存</el-button>
        </el-form-item>
      </el-row>
    </el-form>
  </div>
</template>
<script>
xiaomiao committed
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
  import { mapGetters } from "vuex";
  import { init, getSsQlxx, getZtQlxx, getQlxxByQlxxBsm, save } from "@/api/djbRepair.js";
  import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable";
  import ywrCommonTable from "@/views/djbworkflow/components/ywrCommonTable";
  import tdytTable from "@/views/workflow/components/tdytTable";
  import selectTable from "@/components/selectTable/index.vue";
  export default {
    components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable },
    computed: {
      ...mapGetters(["dictData", "flag"]),
      // 根据流程判断表单是否为只读
      editDisabled () {
        if (!this.ableOperation) {
          //只读状态
          return true;
        }
        return false;
xiaomiao committed
372
      },
xiaomiao committed
373 374 375 376 377 378 379
    },
    data () {
      return {
        //表单是否可操作
        props: {
          label: "bdcqzh",
          value: "bdcdyid",
xiaomiao committed
380
        },
xiaomiao committed
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
        propsParam: this.$attrs,
        key: 0,
        isShow: false,
        ssqlxxshow: true,
        disabled: true,
        czrOptions: [],
        ruleForm: {},
        rules: {},
        // 登记类型
        djlxlist: [
          {
            dcode: "100",
            dname: "首次登记",
          },
          {
            dcode: "200",
            dname: "转移登记",
          },
          {
            dcode: "300",
            dname: "变更登记",
          },
          {
            dcode: "500",
            dname: "更正登记",
          },
xiaomiao committed
407

xiaomiao committed
408 409 410 411 412 413 414 415
          {
            dcode: "901",
            dname: "补证",
          },
          {
            dcode: "902",
            dname: "换证",
          },
xiaomiao committed
416
        ],
xiaomiao committed
417 418 419 420 421 422 423 424 425 426 427

        // 权属状态
        qsztlist: [
          {
            dcode: "1",
            dname: "现势",
          },
          {
            dcode: "2",
            dname: "历史",
          },
xiaomiao committed
428
        ],
xiaomiao committed
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
        ableOperation: false,
        //传递参数\

        ssQlxxList: [],
        ztQlxxList: [],
        rules: {
          ztQlxxrules: [
            { required: true, message: "抵押不动产信息", trigger: "blur" },
          ],
          ssQlxxrules: [
            { required: true, message: "上手权利信息", trigger: "blur" },
          ],
          bdcqzhrules: [
            { required: true, message: "不动产登记证明号", trigger: "blur" },
          ],
          djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }],
          dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }],
          djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }],
          ywhrules: [{ required: true, message: "业务号", trigger: "blur" }],
          sfbxfrules: [
            { required: true, message: "是否被续封", trigger: "change" },
          ],
        },
      };
    },
    created () {
      this.loadData();
456
    },
xiaomiao committed
457 458
    mounted () {
      this.ableOperation = this.$parent.ableOperation;
459
    },
xiaomiao committed
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
    methods: {
      /**
       * @description: ztQlxxchange
       * @param {*} val
       * @author: renchao
       */
      ztQlxxchange (val) {
        this.ruleForm.ztQlxx = val;
      },
      /**
       * @description: ssQlxxchange
       * @param {*} val
       * @author: renchao
       */
      ssQlxxchange (val) {
        this.ruleForm.ssQlxx = val;
        this.ruleForm.qlxx.ssywh = val.ywh;
        this.ssQlxxchangediolog(val);
      },
      // 弹框事件
      ssQlxxchangediolog (val) {
        this.$confirm("是否将上手权利信息同步到表单", "提示", {
          iconClass: "el-icon-question", //自定义图标样式
          confirmButtonText: "确认", //确认按钮文字更换
          cancelButtonText: "取消", //取消按钮文字更换
          showClose: true, //是否显示右上角关闭按钮
          type: "warning",
        }).then(() => {
488 489 490 491 492 493 494 495 496 497
          getQlxxByQlxxBsm({ qlxxBsm: val.bsmQlxx }).then((res) => {
            if (res.code == 200) {
              this.nowlist = res.result;
              for (var key in this.ruleForm.cfdj) {
                if (
                  this.ruleForm.cfdj[key] == "" ||
                  this.ruleForm.cfdj[key] == null
                ) {
                  this.ruleForm.cfdj[key] = this.nowlist.cfdj[key];
                }
xiaomiao committed
498
              }
499 500 501 502 503 504 505 506
              for (var key in this.ruleForm.qlxx) {
                if (
                  (this.ruleForm.qlxx[key] == null && key != "ywh") ||
                  this.ruleForm.qlxx[key] == null
                ) {
                  if (key != "ywh") {
                    this.ruleForm.qlxx[key] = this.nowlist.qlxx[key];
                  }
xiaomiao committed
507
                }
508
              }
xiaomiao committed
509 510
              this.$message({
                type: "success",
511
                message: "同步成功!",
xiaomiao committed
512 513 514
              });
            }
          });
xiaomiao committed
515
        }).catch(() => {
516 517 518 519
          this.$message({
            type: "info",
            message: "已取消同步",
          });
xiaomiao committed
520 521 522 523 524 525 526 527 528 529
        })
      },
      /**
       * @description: djlxchange
       * @param {*} val
       * @author: renchao
       */
      djlxchange (val) {
        if (val == null || val == 100) {
          this.ssqlxxshow = false;
xiaomiao committed
530
        } else {
xiaomiao committed
531
          this.ssqlxxshow = true;
xiaomiao committed
532
        }
xiaomiao committed
533 534 535 536 537 538 539 540 541 542 543
      },
      /**
       * @description: loadData
       * @author: renchao
       */
      loadData () {
        this.$startLoading();
        this.propsParam.isEdit = this.$parent.isEdit;
        init(this.propsParam).then((res) => {
          if (res.code == 200) {
            this.ruleForm = res.result;
544 545 546
            if (this.ruleForm.cfdj) {
              this.ruleForm.cfdj.sfbxf = "2"
            }
xiaomiao committed
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
            this.isShow = true;
            let djlx = this.ruleForm.qlxx.djlx;
            this.$endLoading();
            if (djlx == null || djlx == 100) {
              this.ssqlxxshow = false;
            }

            //获取主体信息
            getSsQlxx({
              bdcdyid: this.propsParam.bdcdyid,
              qllx: this.propsParam.qllx,
              bsmQlxx: this.ruleForm.qlxx.bsmQlxx,
            }).then((res) => {
              if (res.code == 200) {
                this.ssQlxxList = res.result;
              }
            });
            //获取上手信息
            getZtQlxx({
              bdcdyid: this.propsParam.bdcdyid,
              bsmQlxx: this.ruleForm.qlxx.bsmQlxx,
            }).then((res) => {
              if (res.code == 200) {
                this.ztQlxxList = res.result;
              }
            });
          }
        });
      },
      /**
       * @description: onSubmit
       * @author: renchao
       */
      onSubmit () {
        this.$refs.ruleForm.validate((valid) => {
          console.log("valid", valid);
          if (valid) {
            save(this.ruleForm).then((res) => {
              if (res.code === 200) {
                this.$message({
                  showClose: true,
                  message: "保存成功!",
                  type: "success",
                });
                this.$parent.changeywh();
                this.$store.dispatch("user/refreshPage", true);
              } else {
                this.$message({
                  showClose: true,
                  message: res.message,
                  type: "error",
                });
              }
            });
          } else {
            return false;
          }
        });
      },
xiaomiao committed
606
    },
xiaomiao committed
607
  };
xiaomiao committed
608 609
</script>
<style scoped lang="scss">
xiaomiao committed
610 611
  @import "~@/styles/public.scss";
  @import "~@/styles/slxx/slxx.scss";
xiaomiao committed
612
</style>