Blame view

src/views/djbworkflow/djbBook/components/blxxtabs/lq.vue 23.2 KB
xiaomiao committed
1 2 3
<!--
 * @Description:
 * @Autor: renchao
4
 * @LastEditTime: 2023-11-03 14:48:15
xiaomiao committed
5 6 7 8 9 10 11
-->
<template>
  <!-- 受理信息 -->
  <div class="slxx">
    <el-form
      :model="ruleForm"
      :rules="rules"
xiaomiao committed
12
      :class="{ readonly: editDisabled }"
13
      v-Loading="loading"
xiaomiao committed
14 15
      ref="ruleForm"
      :label-position="flag ? 'top' : ''"
xiaomiao committed
16
      :show-message="false"
xiaomiao committed
17
      :inline="flag"
18
      label-width="190px">
xiaomiao committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
      <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>
        <div class="slxx_title title-block bdcqk">
          建设用地、宅基地使用权信息
          <div class="count" v-if="ssqlxxshow">
            <el-form-item
              label="上手权利信息:"
              prop="ssQlxx.bdcqzh"
47
              :rules="rules.ssQlxxrules">
xiaomiao committed
48 49 50 51
              <select-table
                v-model="ruleForm.ssQlxx"
                :tableData="ssQlxxList"
                :props="props"
52
                @change="ssQlxxchange">
xiaomiao committed
53 54 55
                <el-table-column
                  prop="qllxmc"
                  width="130"
56
                  label="权利类型"></el-table-column>
xiaomiao committed
57 58 59
                <el-table-column
                  prop="bdcqzh"
                  width="160"
60
                  label="不动产权证书"></el-table-column>
xiaomiao committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
                <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>
          <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">
            <el-form-item
              label="业务号:"
              prop="qlxx.ywh"
80
              :rules="rules.ywhrules">
xiaomiao committed
81 82 83
              <el-input
                maxlength="20"
                onkeyup="this.value=this.value.replace(/[^\w_]/g,'');"
84
                v-model="ruleForm.qlxx.ywh"></el-input>
xiaomiao committed
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="上手业务号:">
              <el-input disabled v-model="ruleForm.qlxx.ssywh"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
        <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="权利类型:">
              <el-input disabled v-model="ruleForm.qlxx.qllxmc"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item
              label="登记类型:"
              prop="qlxx.djlx"
103
              :rules="rules.djlxrules">
xiaomiao committed
104 105 106 107 108
              <el-select v-model="ruleForm.qlxx.djlx" @change="djlxchange">
                <el-option
                  v-for="item in djlxlist"
                  :key="item.dcode"
                  :label="item.dname"
109
                  :value="item.dcode">
xiaomiao committed
110 111 112 113 114 115 116 117 118 119 120
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="权属状态:">
              <el-select v-model="ruleForm.qlxx.qszt">
                <el-option
                  v-for="item in qsztlist"
                  :key="item.dcode"
                  :label="item.dname"
121
                  :value="item.dcode">
xiaomiao committed
122 123 124 125 126 127
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>

          <el-col :span="8">
xiaomiao committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
            <el-form-item label="发包方">
              <el-input v-model="ruleForm.lq.fbf"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="发包方代码">
              <el-input v-model="ruleForm.lq.fbfdm"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="林地使用(承包)起始时间">
              <el-input v-model="ruleForm.lq.ldsyqssj"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="林地使用(承包)结束时间">
              <el-input v-model="ruleForm.lq.ldsyjssj"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="林地使用(承包)期限">
              <el-input v-model="ruleForm.lq.ldsyqx"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="林地所有权性质">
              <el-input v-model="ruleForm.lq.ldsyqxz"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="森林类别">
              <el-input v-model="ruleForm.lq.sllb"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="森林林木所有权人">
              <el-input v-model="ruleForm.lq.sllmsyqr1"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="森林林木使用权人">
              <el-input v-model="ruleForm.lq.sllmsyqr2"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="主要树种">
              <el-input v-model="ruleForm.lq.zysz"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="株数">
              <el-input v-model="ruleForm.lq.sllb"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="林种">
              <el-input v-model="ruleForm.lq.sllb"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="起源">
              <el-input v-model="ruleForm.lq.sllb"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="造林年度">
              <el-input v-model="ruleForm.lq.sllb"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="林班">
              <el-input v-model="ruleForm.lq.lb"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="小班">
              <el-input v-model="ruleForm.lq.xb"></el-input>
xiaomiao committed
205 206
            </el-form-item>
          </el-col>
xiaomiao committed
207 208 209 210 211 212
          <el-col :span="8">
            <el-form-item label="小地名">
              <el-input v-model="ruleForm.lq.xdm"></el-input>
            </el-form-item>
          </el-col>

xiaomiao committed
213 214 215 216 217 218
          <!-- <el-col :span="8">
            <el-form-item label="房地坐落:">
              <el-input v-model="ruleForm.qlxx.zl"></el-input>
            </el-form-item>
          </el-col> -->
          <el-col :span="8">
xiaomiao committed
219
            <el-form-item label="使用(承包)面积">
xiaomiao committed
220 221 222
              <div class="flex">
                <el-input
                  maxlength="12"
xiaomiao committed
223
                  v-model="ruleForm.lq.syqmj"
224
                  oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
xiaomiao committed
225 226 227 228 229
                <el-select disabled v-model="mjdw" style="width: 68px">
                  <el-option
                    v-for="item in dictData['A7']"
                    :key="item.dcode"
                    :label="item.dname"
230
                    :value="item.dcode">
xiaomiao committed
231 232 233 234 235 236 237
                  </el-option>
                </el-select>
              </div>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="使用权起止时间:">
xiaomiao committed
238
              <el-input maxlength="20" v-model="ruleForm.lq.syqqzsj"></el-input>
xiaomiao committed
239 240 241 242
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="土地使用期限:">
xiaomiao committed
243
              <el-input maxlength="10" v-model="ruleForm.lq.tdsyqx"></el-input>
xiaomiao committed
244 245 246 247 248 249 250
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="取得价格:">
              <div style="display: flex">
                <el-input
                  maxlength="11"
xiaomiao committed
251
                  v-model="ruleForm.lq.qdjg"
252
                  style="width: 500%"></el-input>
xiaomiao committed
253
                <el-select v-model="ruleForm.lq.jedw">
xiaomiao committed
254 255 256 257
                  <el-option
                    v-for="item in dictData['A57']"
                    :key="item.dcode"
                    :label="item.dname"
258
                    :value="item.dcode">
xiaomiao committed
259 260 261 262 263 264 265 266 267 268
                  </el-option>
                </el-select>
              </div>
            </el-form-item>
          </el-col>

          <el-col :span="8">
            <el-form-item
              label="不动产权证号:"
              prop="qlxx.bdcqzh"
269
              :rules="rules.bdcqzhrules">
xiaomiao committed
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
              <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input>
            </el-form-item>
          </el-col>
          <!-- <el-col :span="8">
            <el-form-item
              label="区县代码:"
              prop="qlxx.qxdm"
              :rules="rules.qxdmrules"
            >
              <el-input v-model="ruleForm.qlxx.qxdm"></el-input>
            </el-form-item>
          </el-col> -->
          <el-col :span="8">
            <el-form-item
              label="登记机构:"
              prop="qlxx.djjg"
286
              :rules="rules.djjgrules">
xiaomiao committed
287 288 289 290 291 292 293
              <el-input v-model="ruleForm.qlxx.djjg"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item
              label="登簿人:"
              prop="qlxx.dbr"
294
              :rules="rules.dbrrules">
xiaomiao committed
295 296 297 298 299 300 301
              <el-input v-model="ruleForm.qlxx.dbr"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item
              label="登记时间:"
              prop="qlxx.djsj"
302
              :rules="rules.djsjrules">
xiaomiao committed
303 304 305 306 307 308
              <el-date-picker
                v-model="ruleForm.qlxx.djsj"
                type="date"
                class="width100"
                placeholder="选择日期"
                value-format="yyyy-MM-dd HH:mm:ss"
309
                format="yyyy-MM-dd">
xiaomiao committed
310 311 312 313 314 315 316
              </el-date-picker>
            </el-form-item>
          </el-col>
        </el-row>
        <el-row>
          <el-col :span="24">
            <el-form-item label="附记:">
xiaomiao committed
317 318 319 320
              <el-input
                v-model="ruleForm.lq.fj"
                type="textarea"
                maxlength="500"
321
                show-word-limit></el-input>
xiaomiao committed
322 323 324 325 326 327 328 329 330 331
            </el-form-item>
          </el-col>
        </el-row>
        <div class="slxx_title title-block">
          土地用途
          <div class="triangle"></div>
        </div>
        <tdytTable
          :tableData="ruleForm.tdytqxList"
          @upDateTdytxxList="upDateTdytxxList"
332
          :ableOperation="ableOperation" />
xiaomiao committed
333 334 335 336 337 338 339 340 341
        <div class="slxx_title title-block">
          权利人信息
          <div class="triangle"></div>
        </div>
        <el-row :gutter="10">
          <el-col :span="12">
            <el-form-item label="共有方式:">
              <el-radio-group
                :disabled="!ableOperation"
342
                v-model="ruleForm.qlxx.gyfs">
xiaomiao committed
343 344 345 346 347 348 349 350 351 352 353 354 355
                <el-radio label="0">单独所有</el-radio>
                <el-radio label="1">共同共有</el-radio>
                <el-radio label="2">按份所有</el-radio>
                <el-radio label="3">其它共有</el-radio>
              </el-radio-group>
            </el-form-item>
          </el-col>
        </el-row>
        <qlrCommonTable
          :tableData="ruleForm.qlrData"
          @upDateQlrxxList="upDateQlrxxList"
          :key="key"
          :ableOperation="ableOperation"
356
          :gyfs="ruleForm.qlxx.gyfs" />
xiaomiao committed
357 358 359 360 361 362 363 364 365 366
      </div>
      <el-row class="btn" v-if="ableOperation">
        <el-form-item>
          <el-button type="primary" @click="onSubmit">保存</el-button>
        </el-form-item>
      </el-row>
    </el-form>
  </div>
</template>
<script>
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
  import { mapGetters } from "vuex";
  import store from "@/store/index.js";
  import ywmix from "@/views/ywbl/mixin/index";
  import { init, getSsQlxx, getQlxxByQlxxBsm, save } from "@/api/djbRepair.js";
  import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable";
  import tdytTable from "@/views/workflow/components/tdytTable";
  import selectTable from "@/components/selectTable/index.vue";
  export default {
    mixins: [ywmix],
    components: { qlrCommonTable, tdytTable, selectTable },
    computed: {
      ...mapGetters(["dictData", "flag"]),
      // 根据流程判断表单是否为只读
      editDisabled () {
        if (!this.ableOperation) {
          //只读状态
          return true;
xiaomiao committed
384
        }
385
        return false;
xiaomiao committed
386
      },
387 388 389
    },
    data () {
      return {
390
        loading: false,
391 392 393 394 395
        mjdw: "1",
        ssqlxxshow: true,
        props: {
          label: "bdcqzh",
          value: "bdcdyid",
xiaomiao committed
396
        },
397 398 399 400 401 402 403 404 405 406
        // 键名转换,方法默认是label和children进行树状渲染
        normalizer (node) {
          //方法
          if (node.children == null || node.children == "null") {
            delete node.children;
          }
          return {
            id: node.dcode,
            label: node.dname,
          };
xiaomiao committed
407
        },
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
        //表单是否可操作
        propsParam: this.$attrs,
        ableOperation: false,
        key: 0,
        ssQlxxList: [],
        // 登记类型
        djlxlist: [
          {
            dcode: "100",
            dname: "首次登记",
          },
          {
            dcode: "200",
            dname: "转移登记",
          },
          {
            dcode: "300",
            dname: "变更登记",
          },
          {
            dcode: "500",
            dname: "更正登记",
          },
xiaomiao committed
431

432 433 434 435 436 437 438 439
          {
            dcode: "901",
            dname: "补证",
          },
          {
            dcode: "902",
            dname: "换证",
          },
xiaomiao committed
440
        ],
441 442 443 444 445 446 447 448 449 450
        // 权属状态
        qsztlist: [
          {
            dcode: "1",
            dname: "现势",
          },
          {
            dcode: "2",
            dname: "历史",
          },
xiaomiao committed
451
        ],
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
        tdxz: null,
        isShow: false,
        disabled: true,
        czrOptions: [],
        ruleForm: {},
        //传递参数\
        rules: {
          ssQlxxrules: [
            { required: true, message: "上手权利信息", trigger: "blur" },
          ],
          bdcqzhrules: [
            { required: true, message: "不动产权证号:", trigger: "blur" },
          ],
          // qxdmrules: [{ required: true, message: "区县代码", trigger: "blur" }],
          djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }],
          dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }],
          djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }],
          djlxrules: [{ required: true, message: "登记类型", trigger: "change" }],
          ywhrules: [{ required: true, message: "业务号", trigger: "blur" }],
        },
      };
    },
    created () {
      this.loadData();
xiaomiao committed
476
    },
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
    mounted () {
      this.ableOperation = this.$parent.ableOperation;
    },
    methods: {
      /**
       * @description: ssQlxxchange
       * @param {*} val
       * @author: renchao
       */
      ssQlxxchange (val) {
        this.ruleForm.ssQlxx = val;
        this.ruleForm.qlxx.ssywh = val.ywh;
        this.ssQlxxchangediolog(val);
      },
      // 弹框事件
      /**
       * @description: 弹框事件
       * @param {*} val
       * @author: renchao
       */
      ssQlxxchangediolog (val) {
        this.$confirm("是否将上手权利信息同步到表单", "提示", {
          iconClass: "el-icon-question", //自定义图标样式
          confirmButtonText: "确认", //确认按钮文字更换
          cancelButtonText: "取消", //取消按钮文字更换
          showClose: true, //是否显示右上角关闭按钮
          type: "warning",
        })
          .then(() => {
            getQlxxByQlxxBsm({ qlxxBsm: val.bsmQlxx }).then((res) => {
              if (res.code == 200) {
                this.nowlist = res.result;
                for (var key in this.ruleForm.lq) {
                  if (
                    this.ruleForm.lq[key] == "" ||
                    this.ruleForm.lq[key] == null
                  ) {
                    this.ruleForm.lq[key] = this.nowlist.lq[key];
                  }
xiaomiao committed
516
                }
517 518 519 520 521 522 523 524 525 526 527 528 529
                for (var key in this.ruleForm.qlxx) {
                  if (
                    this.ruleForm.qlxx[key] == "" ||
                    (this.ruleForm.qlxx[key] == null &&
                      key != "ywh" &&
                      key != "dbr" &&
                      key != "djsj" &&
                      key != "ssywh" &&
                      key != "ssywh" &&
                      key != "bdcqzh")
                  ) {
                    this.ruleForm.qlxx[key] = this.nowlist.qlxx[key];
                  }
xiaomiao committed
530
                }
531 532 533 534 535 536 537 538 539 540 541 542 543
                if (!this.ruleForm.tdytqxList.length) {
                  this.ruleForm.tdytqxList = this.nowlist.tdytqxList;
                }
                if (!this.ruleForm.qlrData.length) {
                  this.ruleForm.qlrData = this.nowlist.qlrData;
                }
                if (!this.ruleForm.ywrData.length) {
                  this.ruleForm.ywrData = this.nowlist.ywrData;
                }
                this.$message({
                  type: "success",
                  message: "同步成功!",
                });
xiaomiao committed
544 545
              }
            });
546 547
          })
          .catch(() => {
xiaomiao committed
548
            this.$message({
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
              type: "info",
              message: "已取消同步",
            });
          });
      },
      /**
       * @description: djlxchange
       * @param {*} val
       * @author: renchao
       */
      djlxchange (val) {
        if (val == null || val == 100) {
          this.ssqlxxshow = false;
        } else {
          this.ssqlxxshow = true;
        }
      },
      // 字典
      /**
       * @description: 字典
       * @param {*} val
       * @author: renchao
       */
      getDictData (val) {
        return store.getters.dictData[val];
      },
      /**
       * @description: loadData
       * @author: renchao
       */
      loadData () {
580
        this.loading = true
581 582
        this.propsParam.isEdit = this.$parent.isEdit;
        init(this.propsParam).then((res) => {
583
          this.loading = false
584 585 586 587 588 589
          if (res.code == 200) {
            this.ruleForm = res.result;
            let djlx = this.ruleForm.qlxx.djlx;
            if (djlx == null || djlx == 100) {
              this.ssqlxxshow = false;
            }
590

591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
            if (this.ruleForm.tdytqxList.length > 0) {
              this.tdxz = this.ruleForm.tdytqxList[0].qlxzbm;
            } else {
              this.tdxz = null;
            }
            this.isShow = true;
            //获取主体信息
            getSsQlxx({
              bdcdyid: this.propsParam.bdcdyid,
              qllx: this.propsParam.qllx,
              bsmQlxx: this.ruleForm.qlxx.bsmQlxx,
            }).then((res) => {
              if (res.code == 200) {
                this.ssQlxxList = res.result;
              }
xiaomiao committed
606 607
            });
          }
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
        });
      },
      /**
       * @description: 更新土地用途信息
       * @param {*} val
       * @author: renchao
       */
      upDateTdytxxList (val) {
        this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
        this.key++;
      },
      // 更新权利人信息
      /**
       * @description: 更新权利人信息
       * @param {*} val
       * @author: renchao
       */
      upDateQlrxxList (val) {
        this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val));
        this.czrOptions = this.ruleForm.qlrData;
        this.key++;
      },
      // 保存
      /**
       * @description: onSubmit
       * @author: renchao
       */
      onSubmit () {
        this.$refs.ruleForm.validate((valid) => {
          if (valid) {
            let arr = this.ruleForm.tdytqxList.filter((item) => !item.yt);
            if (arr.length > 0) {
xiaomiao committed
640 641
              this.$message({
                showClose: true,
642
                message: "土地用途不能为空",
xiaomiao committed
643 644 645 646
                type: "error",
              });
              return false;
            }
647
            if (this.ruleForm.qlrData.length == 0) {
xiaomiao committed
648 649
              this.$message({
                showClose: true,
650
                message: "请确认权利人信息",
xiaomiao committed
651 652 653 654
                type: "error",
              });
              return false;
            }
655 656 657 658 659 660 661 662 663
            if (this.ruleForm.qlxx.gyfs == "0") {
              if (this.ruleForm.qlrData.length > 1) {
                this.$message({
                  showClose: true,
                  message: "共有方式:单独所有,权利人只能是一个人",
                  type: "error",
                });
                return false;
              }
xiaomiao committed
664
            } else {
665 666 667 668 669 670 671 672 673
              if (this.ruleForm.qlrData.length <= 1) {
                this.$message({
                  showClose: true,
                  message:
                    "共有方式:共同所有,按份所有,其他所有,权利人必须是两个以上",
                  type: "error",
                });
                return false;
              }
xiaomiao committed
674
            }
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
            this.$store.dispatch("user/refreshPage", false);
            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 {
694 695 696 697 698
            this.$message({
              showClose: true,
              message: "请完善表单信息",
              type: "error"
            })
699 700
            return false;
          }
701 702 703 704
        })
      }
    }
  }
xiaomiao committed
705 706
</script>
<style scoped lang="scss">
707 708
  @import "~@/styles/public.scss";
  @import "~@/styles/slxx/slxx.scss";
xiaomiao committed
709
</style>