<template>

</template>
<style></style>

<script>
  export default {
    //商城主页面
    name: "policy-status-list",
    // 定义组件名称,作为组件使用
    componentsUsed: {
      name: "policy-status-list",
    },
    // 定义路由路径
    routerUsed: {
      path: "/policy-status/list/:filterPolicyStatusIdCL",
      name: "policy-status-list",
      meta: {
        keepAlive: true,
        name: "policy-status-list",
      },
      component: (r) => require.ensure([], () => r(require("./index")), "bt-bs"),
    },
    data() {

    },
    created() {

    },
    computed: {

    },
    props: {
      //接收表格传递过来的数据参数
      scopeRow: {
        type: Object,
        default: function () {
          return {};
        },
      }
    },
    methods: {

    },
    watch: {
      "scopeRow.policyId": function (to, from) {
        let that = this;
        if (to !== undefined && to !== from) {
          let that = this;
          method.loadDataComm(that);
          //console.log("page");
        }
      }
    },
    components: {},
  };
</script>
文档更新时间: 2022-08-27 14:44   作者:admin