10.10综合交易所原始源码-管理后台
1
admin
2026-01-07 e1e694369dabf557615669ce2f71e9af70277ff6
src/views/modules/user-relation/basics.vue
@@ -12,6 +12,13 @@
      @refresh-change="getDataList"
    >
      <template slot="menuLeft">
        <el-button
          type="primary"
          icon="el-icon-plus"
          size="small"
          @click.stop="addCertificationHandle()"
          >新增认证</el-button
        >
        <!-- 搜索 -->
        <!-- <el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList(this.page)">
          
@@ -348,6 +355,13 @@
        this.$refs.parameters.init(row);
      });
    },
    // 新增认证
    addCertificationHandle() {
      this.parametersFlag = true;
      this.$nextTick(() => {
        this.$refs.parameters.init(null);
      });
    },
  },
};
</script>