Blame view

src/views/djbworkflow/djbBook/components/blxxtabs/cfdj.vue 20.7 KB
xiaomiao committed
1 2 3
<!--
 * @Description:
 * @Autor: renchao
xiaomiao committed
4
 :show-message="false"
xiaomiao committed
5
 * @LastEditTime: 2023-06-25 15:52:42
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 }"
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 43
      <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">
tianhaohao@pashanhoo.com committed
44
          查封不动产情况
xiaomiao committed
45
          <div class="triangle"></div>
tianhaohao@pashanhoo.com committed
46
        </div>
xiaomiao committed
47 48
        <el-row :gutter="10">
          <el-col :span="8">
49
            <el-form-item label="查封不动产权信息:" prop="ztQlxx.bdcqzh" :rules="rules.ztQlxxrules">
xiaomiao committed
50 51 52 53 54
              <select-table
                v-model="ruleForm.ztQlxx"
                :table-width="550"
                :tableData="ztQlxxList"
                :props="props"
55
                @change="ztQlxxchange">
xiaomiao committed
56 57 58
                <el-table-column
                  prop="qllxmc"
                  width="130"
59
                  label="权利类型"></el-table-column>
xiaomiao committed
60 61 62
                <el-table-column
                  prop="bdcqzh"
                  width="160"
63
                  label="不动产权证书"></el-table-column>
xiaomiao committed
64 65
                <el-table-column
                  prop="qlrmc"
66
                  label="被执行人"></el-table-column>
xiaomiao committed
67 68 69 70 71 72
                <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>
          </el-col>
xiaomiao committed
73

xiaomiao committed
74 75 76 77 78 79 80
          <el-col :span="8" v-if="ruleForm.cfdj.sfbxf == '1'">
            <el-form-item label="上手权利信息:">
              <select-table
                v-model="ruleForm.ssQlxx"
                :table-width="550"
                :tableData="ssQlxxList"
                :props="props"
81
                @change="ssQlxxchange">
xiaomiao committed
82 83 84
                <el-table-column
                  prop="qllxmc"
                  width="130"
85
                  label="权利类型"></el-table-column>
xiaomiao committed
86 87 88
                <el-table-column
                  prop="bdcqzh"
                  width="160"
89
                  label="不动产权证书"></el-table-column>
xiaomiao committed
90 91 92 93 94 95 96 97
                <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>
          </el-col>
        </el-row>
xiaomiao committed
98
        <el-row :gutter="10" v-if="ruleForm.ztQlxx != null">
tianhaohao@pashanhoo.com committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
          <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
115
        <el-row :gutter="10" v-if="ruleForm.ztQlxx != null">
tianhaohao@pashanhoo.com committed
116 117 118 119 120 121
          <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">
122
            <el-form-item label="不动产权证号:">
tianhaohao@pashanhoo.com committed
123 124 125 126 127 128 129 130 131
              <el-input disabled v-model="ruleForm.ztQlxx.bdcqzh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="坐落:">
              <el-input disabled v-model="ruleForm.ztQlxx.zl"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
132
        <el-row :gutter="10" v-if="ruleForm.ztQlxx != null">
tianhaohao@pashanhoo.com committed
133 134 135 136 137 138 139
          <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
140
              <el-input disabled v-model="ruleForm.ztQlxx.mjmc"></el-input>
tianhaohao@pashanhoo.com committed
141 142 143 144 145 146 147 148 149
            </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>
        <div class="slxx_title title-block">
xiaomiao committed
150
          查封登记信息
xiaomiao committed
151 152 153 154 155 156 157 158 159 160 161 162 163
          <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="业务号:">
              <el-input v-model="ruleForm.qlxx.ywh"></el-input>
            </el-form-item>
          </el-col>
xiaomiao committed
164
          <el-col :span="8">
xiaomiao committed
165
            <el-form-item label="上手业务号:">
xiaomiao committed
166
              <el-input disabled v-model="ruleForm.qlxx.ssywh"></el-input>
xiaomiao committed
167 168 169 170
            </el-form-item>
          </el-col>
        </el-row>
        <el-row :gutter="10">
xiaomiao committed
171
          <el-col :span="8">
xiaomiao committed
172 173 174 175 176
            <el-form-item label="权利类型:">
              <el-input disabled v-model="ruleForm.qlxx.qllxmc"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
177 178 179
            <el-form-item label="是否被续封:"
              prop="cfdj.sfbxf"
              :rules="rules.sfbxfrules">
xiaomiao committed
180
              <el-select v-model="ruleForm.cfdj.sfbxf" @change="djlxchange">
tianhaohao@pashanhoo.com committed
181
                <el-option
xiaomiao committed
182
                  v-for="item in sfbxflist"
tianhaohao@pashanhoo.com committed
183 184
                  :key="item.dcode"
                  :label="item.dname"
185
                  :value="item.dcode"></el-option>
xiaomiao committed
186
              </el-select>
xiaomiao committed
187 188 189
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
190
            <el-form-item label="不动产坐落:">
xiaomiao committed
191 192 193 194
              <el-input v-model="ruleForm.qlxx.zl"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
195 196 197 198 199 200
            <el-form-item label="权属状态:">
              <el-select v-model="ruleForm.qlxx.qszt">
                <el-option
                  v-for="item in qsztlist"
                  :key="item.dcode"
                  :label="item.dname"
201
                  :value="item.dcode"></el-option>
xiaomiao committed
202
              </el-select>
xiaomiao committed
203
            </el-form-item>
xiaomiao committed
204
          </el-col>
xiaomiao committed
205
          <!-- <el-col :span="8">
xiaomiao committed
206 207 208 209 210
            <el-form-item
              label="不动产权证号:"
              prop="qlxx.bdcqzh"
              :rules="rules.bdcqzhrules"
            >
xiaomiao committed
211
              <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input>
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"
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"
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"
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
          </el-col>
xiaomiao committed
267
          <!-- <el-col :span="8">
xiaomiao committed
268 269 270 271 272
            <el-form-item
              label="区县代码:"
              prop="qlxx.qxdm"
              :rules="rules.qxdmrules"
            >
xiaomiao committed
273 274
              <el-input v-model="ruleForm.qlxx.qxdm"></el-input>
            </el-form-item>
xiaomiao committed
275
          </el-col> -->
xiaomiao committed
276
          <el-col :span="8">
xiaomiao committed
277 278 279
            <el-form-item
              label="登记机构:"
              prop="qlxx.djjg"
280
              :rules="rules.djjgrules">
xiaomiao committed
281 282 283
              <el-input v-model="ruleForm.qlxx.djjg"></el-input>
            </el-form-item>
          </el-col>
xiaomiao committed
284

xiaomiao committed
285
          <el-col :span="8">
xiaomiao committed
286 287 288
            <el-form-item
              label="登簿人:"
              prop="qlxx.dbr"
289
              :rules="rules.dbrrules">
xiaomiao committed
290 291 292 293
              <el-input v-model="ruleForm.qlxx.dbr"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
xiaomiao committed
294 295 296
            <el-form-item
              label="登记时间:"
              prop="qlxx.djsj"
297
              :rules="rules.djsjrules">
xiaomiao committed
298 299 300 301
              <el-date-picker
                v-model="ruleForm.qlxx.djsj"
                type="date"
                placeholder="选择日期"
xiaomiao committed
302
                class="width100"
xiaomiao committed
303
                value-format="yyyy-MM-dd HH:mm:ss"
304
                format="yyyy-MM-dd">
xiaomiao committed
305
              </el-date-picker>
xiaomiao committed
306 307
            </el-form-item>
          </el-col>
xiaomiao committed
308 309 310
          <el-col :span="24">
            <el-form-item label="附记:">
              <el-input v-model="ruleForm.cfdj.fj"></el-input>
xiaomiao committed
311 312 313
            </el-form-item>
          </el-col>
        </el-row>
xiaomiao committed
314
        <el-row :gutter="10">
xiaomiao committed
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
          <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'">
            <el-form-item label="解封业务号:">
              <el-input v-model="ruleForm.cfdj.jfywh"></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.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="解封登簿人:">
              <el-input v-model="ruleForm.cfdj.jfdbr"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'">
            <el-form-item label="解封登记时间:">
342
              <el-date-picker
xiaomiao committed
343
                v-model="ruleForm.cfdj.jfdjsj"
344
                class="width100"
xiaomiao committed
345 346 347
                type="date"
                placeholder="选择日期"
                value-format="yyyy-MM-dd HH:mm:ss"
348
                format="yyyy-MM-dd">
xiaomiao committed
349 350 351
              </el-date-picker>
            </el-form-item>
          </el-col>
xiaomiao committed
352
        </el-row>
xiaomiao committed
353
      </div>
xiaomiao committed
354
      <el-row class="btn" v-if="ableOperation">
xiaomiao committed
355 356 357 358 359 360 361 362
        <el-form-item>
          <el-button type="primary" @click="onSubmit">保存</el-button>
        </el-form-item>
      </el-row>
    </el-form>
  </div>
</template>
<script>
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
  import { mapGetters } from "vuex";
  import { init, getSsQlxx, getZtQlxx, 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
380
      },
381 382 383 384 385 386 387
    },
    data () {
      return {
        //表单是否可操作
        props: {
          label: "bdcqzh",
          value: "bdcdyid",
xiaomiao committed
388
        },
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
        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
415

416 417 418 419 420 421 422 423 424
          {
            dcode: "901",
            dname: "补证",
          },
          {
            dcode: "902",
            dname: "换证",
          },
        ],
xiaomiao committed
425

426 427 428 429 430 431 432 433 434 435
        // 权属状态
        qsztlist: [
          {
            dcode: "1",
            dname: "现势",
          },
          {
            dcode: "2",
            dname: "历史",
          },
xiaomiao committed
436
        ],
437 438 439 440 441 442 443 444 445 446
        // 是否被续封
        sfbxflist: [
          {
            dcode: "0",
            dname: "否",
          },
          {
            dcode: "1",
            dname: "是",
          },
xiaomiao committed
447
        ],
448 449
        ableOperation: false,
        //传递参数\
xiaomiao committed
450

451 452 453 454 455 456 457 458 459 460 461 462 463 464
        ssQlxxList: [],
        ztQlxxList: [],
        rules: {
          ztQlxxrules: [
            { required: true, message: "抵押不动产信息", trigger: "change" },
          ],
          bdcqzhrules: [
            { required: true, message: "不动产登记证明号", trigger: "blur" },
          ],
          djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }],
          dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }],
          djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }],
          sfbxfrules: [{ required: true, message: "是否被续封", trigger: "change" }]
        }
xiaomiao committed
465 466
      }
    },
467 468
    created () {
      this.loadData();
xiaomiao committed
469
    },
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
    mounted () {
      this.ableOperation = this.$parent.ableOperation;
    },
    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;
      },
      /**
       * @description: djlxchange
       * @param {*} val
       * @author: renchao
       */
      djlxchange (val) {
        if (val == null || val == 100) {
          this.ssqlxxshow = false;
xiaomiao committed
499
        } else {
500
          this.ssqlxxshow = true;
xiaomiao committed
501
        }
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 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 606 607 608 609 610 611 612 613 614 615 616 617
      },
      /**
       * @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;
            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,
        }).then((res) => {
          if (res.code == 200) {
            this.ssQlxxList = res.result;
          }
        });
        //获取上手信息
        getZtQlxx({ bdcdyid: this.propsParam.bdcdyid }).then((res) => {
          if (res.code == 200) {
            this.ztQlxxList = res.result;
          }
        });
      },
      // // 更新土地用途信息
      // upDateTdytxxList(val) {
      //   this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
      //   this.key++;
      // },
      // // 更新权利人信息
      // upDateQlrxxList(val) {
      //   this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val));
      //   this.czrOptions = this.ruleForm.qlrData;
      //   this.key++;
      // },
      // // 更新义务人信息
      // upDateYwrxxList(val) {
      //   this.ruleForm.ywrData && (this.ruleForm.ywrData = _.cloneDeep(val));
      //   this.key++;
      // },
      /**
       * @description: onSubmit
       * @author: renchao
       */
      onSubmit () {
        this.$refs.ruleForm.validate((valid) => {
          if (valid) {
            // if (this.ruleForm.qlrData.length == 0) {
            //   this.$message({
            //     showClose: true,
            //     message: "请确认权利人信息",
            //     type: "error",
            //   });
            //   return false;
            // }

            // if (this.ruleForm.qlxx.gyfs == "0") {
            //   if (this.ruleForm.qlrData.length > 1) {
            //     this.$message({
            //       showClose: true,
            //       message: "共有方式:单独所有,权利人只能是一个人",
            //       type: "error",
            //     });
            //     return false;
            //   }
            //   this.ruleForm.qlrData[0].sfczr = "1";
            // }
            // if (this.ruleForm.qlxx.gyfs == "1") {
            //   //是否分别持证
            //   if (this.ruleForm.qlxx.sqfbcz == "1") {
            //     //是
            //     this.ruleForm.qlrData.forEach((item, index) => {
            //       item.sfczr = "1";
            //     });
            //   } else {
            //     this.ruleForm.qlrData.forEach((item, index) => {
            //       if (item.zjh == this.ruleForm.czr) {
            //         item.sfczr = "1";
            //       } else {
            //         item.sfczr = "0";
            //       }
            //     });
            //   }
            // }
            save(this.ruleForm).then((res) => {
              if (res.code === 200) {
                this.$message({
                  showClose: true,
                  message: "保存成功!",
                  type: "success",
                });
                this.$store.dispatch("user/refreshPage", true);
              } else {
                this.$message({
                  showClose: true,
                  message: res.message,
                  type: "error",
                });
              }
            });
          } else {
            return false;
          }
        });
      },
xiaomiao committed
618
    },
619
  };
xiaomiao committed
620 621
</script>
<style scoped lang="scss">
622 623
  @import "~@/styles/public.scss";
  @import "~@/styles/slxx/slxx.scss";
xiaomiao committed
624
</style>