提交 d3fccb25 编写于 作者: F fit2-zhao

feat(场景自动化,测试用例,): 测试用例、 接口定义、场景自动化 增加“默认模块” 创建测试用例、接口定义、场景时 所属模块默认值为“默认模块”

上级 e2ead6e0
...@@ -234,6 +234,10 @@ public class ApiAutomationService { ...@@ -234,6 +234,10 @@ public class ApiAutomationService {
} else { } else {
scenario.setUserId(request.getUserId()); scenario.setUserId(request.getUserId());
} }
if (StringUtils.isEmpty(request.getApiScenarioModuleId()) || StringUtils.isEmpty(request.getModulePath())) {
scenario.setApiScenarioModuleId("root");
scenario.setModulePath("/默认模块");
}
return scenario; return scenario;
} }
......
...@@ -189,7 +189,7 @@ ...@@ -189,7 +189,7 @@
let label = this.$t('api_test.automation.add_scenario'); let label = this.$t('api_test.automation.add_scenario');
let name = getUUID().substring(0, 8); let name = getUUID().substring(0, 8);
this.activeName = name; this.activeName = name;
this.tabs.push({label: label, name: name, currentScenario: {apiScenarioModuleId: "", id: getUUID()}}); this.tabs.push({label: label, name: name, currentScenario: {apiScenarioModuleId: "root", id: getUUID()}});
} }
if (tab.name === 'edit') { if (tab.name === 'edit') {
let label = this.$t('api_test.automation.add_scenario'); let label = this.$t('api_test.automation.add_scenario');
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
@refresh="refresh" @refresh="refresh"
ref="basisScenario"/> ref="basisScenario"/>
<api-import ref="apiImport" :moduleOptions="moduleOptions" @refreshAll="$emit('refreshAll')"/> <api-import ref="apiImport" :moduleOptions="extendTreeNodes" @refreshAll="$emit('refreshAll')"/>
</div> </div>
</template> </template>
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
import SelectMenu from "../../../track/common/SelectMenu"; import SelectMenu from "../../../track/common/SelectMenu";
import MsAddBasisScenario from "@/business/components/api/automation/scenario/AddBasisScenario"; import MsAddBasisScenario from "@/business/components/api/automation/scenario/AddBasisScenario";
import MsNodeTree from "../../../track/common/NodeTree"; import MsNodeTree from "../../../track/common/NodeTree";
import {buildNodePath} from "../../definition/model/NodeTree"; import {buildNodePath, buildTree} from "../../definition/model/NodeTree";
import ModuleTrashButton from "../../definition/components/module/ModuleTrashButton"; import ModuleTrashButton from "../../definition/components/module/ModuleTrashButton";
import ApiImport from "./common/ScenarioImport"; import ApiImport from "./common/ScenarioImport";
import MsSearchBar from "@/business/components/common/components/search/MsSearchBar"; import MsSearchBar from "@/business/components/common/components/search/MsSearchBar";
...@@ -82,9 +82,10 @@ ...@@ -82,9 +82,10 @@
trashEnable: false trashEnable: false
}, },
data: [], data: [],
extendTreeNodes: [],
currentModule: undefined, currentModule: undefined,
moduleOptions: [], moduleOptions: [],
operators: [ operators: [
{ {
label: this.$t('api_test.automation.add_scenario'), label: this.$t('api_test.automation.add_scenario'),
callback: this.addScenario callback: this.addScenario
...@@ -97,7 +98,7 @@ ...@@ -97,7 +98,7 @@
label: this.$t('report.export'), label: this.$t('report.export'),
children: [ children: [
{ {
label: this.$t('report.export_to_ms_format') , label: this.$t('report.export_to_ms_format'),
callback: () => { callback: () => {
this.$emit('exportAPI'); this.$emit('exportAPI');
} }
...@@ -187,11 +188,17 @@ ...@@ -187,11 +188,17 @@
this.result = this.$get(url, response => { this.result = this.$get(url, response => {
if (response.data != undefined && response.data != null) { if (response.data != undefined && response.data != null) {
this.data = response.data; this.data = response.data;
let moduleOptions = []; this.extendTreeNodes = [];
this.data.forEach(node => { this.extendTreeNodes.unshift({
buildNodePath(node, {path: ''}, moduleOptions); "id": "root",
"name": this.$t('commons.module_title'),
"level": 0,
"children": this.data,
}); });
this.$emit('setModuleOptions', moduleOptions); this.extendTreeNodes.forEach(node => {
buildTree(node, {path: ''});
});
this.$emit('setModuleOptions', this.extendTreeNodes);
this.$emit('setNodeTree', this.data); this.$emit('setNodeTree', this.data);
if (this.$refs.nodeTree) { if (this.$refs.nodeTree) {
this.$refs.nodeTree.filter(this.condition.filterText); this.$refs.nodeTree.filter(this.condition.filterText);
......
...@@ -22,9 +22,7 @@ ...@@ -22,9 +22,7 @@
</el-col> </el-col>
<el-col :span="7"> <el-col :span="7">
<el-form-item :label="$t('test_track.module.module')" prop="apiScenarioModuleId"> <el-form-item :label="$t('test_track.module.module')" prop="apiScenarioModuleId">
<el-select class="ms-scenario-input" size="small" v-model="currentScenario.apiScenarioModuleId"> <ms-select-tree size="small" :data="moduleOptions" :defaultKey="currentScenario.apiScenarioModuleId" @getValue="setModule" :obj="moduleObj" clearable checkStrictly/>
<el-option v-for="item in moduleOptions" :key="item.id" :label="item.path" :value="item.id"/>
</el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="7"> <el-col :span="7">
...@@ -244,6 +242,7 @@ ...@@ -244,6 +242,7 @@
import MaximizeScenario from "./maximize/MaximizeScenario"; import MaximizeScenario from "./maximize/MaximizeScenario";
import ScenarioHeader from "./maximize/ScenarioHeader"; import ScenarioHeader from "./maximize/ScenarioHeader";
import MsDrawer from "../../../common/components/MsDrawer"; import MsDrawer from "../../../common/components/MsDrawer";
import MsSelectTree from "../../../common/select-tree/SelectTree";
let jsonPath = require('jsonpath'); let jsonPath = require('jsonpath');
export default { export default {
...@@ -266,7 +265,8 @@ ...@@ -266,7 +265,8 @@
EnvPopover, EnvPopover,
MaximizeScenario, MaximizeScenario,
ScenarioHeader, ScenarioHeader,
MsDrawer MsDrawer,
MsSelectTree
}, },
data() { data() {
return { return {
...@@ -274,6 +274,10 @@ ...@@ -274,6 +274,10 @@
label: "label", label: "label",
children: "hashTree" children: "hashTree"
}, },
moduleObj: {
id: 'id',
label: 'name',
},
rules: { rules: {
name: [ name: [
{required: true, message: this.$t('test_track.case.input_name'), trigger: 'blur'}, {required: true, message: this.$t('test_track.case.input_name'), trigger: 'blur'},
...@@ -450,6 +454,10 @@ ...@@ -450,6 +454,10 @@
}, },
}, },
methods: { methods: {
setModule(id,data) {
this.currentScenario.apiScenarioModuleId = id;
this.currentScenario.modulePath = data.path;
},
setHideBtn() { setHideBtn() {
this.isBtnHide = false; this.isBtnHide = false;
}, },
...@@ -905,15 +913,6 @@ ...@@ -905,15 +913,6 @@
this.expandedNode.splice(this.expandedNode.indexOf(data.resourceId), 1); this.expandedNode.splice(this.expandedNode.indexOf(data.resourceId), 1);
} }
}, },
getPath(id) {
if (id === null) {
return null;
}
let path = this.moduleOptions.filter(function (item) {
return item.id === id ? item.path : "";
});
return path[0].path;
},
setFiles(item, bodyUploadFiles, obj) { setFiles(item, bodyUploadFiles, obj) {
if (item.body) { if (item.body) {
if (item.body.kvs) { if (item.body.kvs) {
...@@ -1071,7 +1070,6 @@ ...@@ -1071,7 +1070,6 @@
setParameter() { setParameter() {
this.currentScenario.stepTotal = this.scenarioDefinition.length; this.currentScenario.stepTotal = this.scenarioDefinition.length;
this.currentScenario.projectId = this.projectId; this.currentScenario.projectId = this.projectId;
this.currentScenario.modulePath = this.getPath(this.currentScenario.apiScenarioModuleId);
// 构建一个场景对象 方便引用处理 // 构建一个场景对象 方便引用处理
let scenario = { let scenario = {
id: this.currentScenario.id, id: this.currentScenario.id,
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
</el-form-item> </el-form-item>
<el-form-item :label="$t('test_track.module.module')" prop="moduleId"> <el-form-item :label="$t('test_track.module.module')" prop="moduleId">
<ms-select-tree size="small" :data="moduleOptions" @getValue="setModule" :obj="moduleObj" clearable checkStrictly/> <ms-select-tree size="small" :data="moduleOptions" :defaultKey="httpForm.moduleId" @getValue="setModule" :obj="moduleObj" clearable checkStrictly/>
</el-form-item> </el-form-item>
<el-form-item :label="$t('commons.description')" prop="description" style="margin-bottom: 29px"> <el-form-item :label="$t('commons.description')" prop="description" style="margin-bottom: 29px">
...@@ -64,6 +64,7 @@ ...@@ -64,6 +64,7 @@
import {createComponent, Request} from "../../../definition/components/jmeter/components"; import {createComponent, Request} from "../../../definition/components/jmeter/components";
import {getUUID} from "@/common/js/utils"; import {getUUID} from "@/common/js/utils";
import MsSelectTree from "@/business/components/common/select-tree/SelectTree"; import MsSelectTree from "@/business/components/common/select-tree/SelectTree";
import {buildTree} from "../../../definition/model/NodeTree";
export default { export default {
...@@ -83,7 +84,7 @@ ...@@ -83,7 +84,7 @@
callback(); callback();
}; };
return { return {
httpForm: {environmentId: ""}, httpForm: {environmentId: "", moduleId: "root"},
moduleOptions: [], moduleOptions: [],
httpVisible: false, httpVisible: false,
currentModule: {}, currentModule: {},
...@@ -250,13 +251,23 @@ ...@@ -250,13 +251,23 @@
let url = "/api/module/list/" + getCurrentProjectID() + "/" + data.protocol; let url = "/api/module/list/" + getCurrentProjectID() + "/" + data.protocol;
this.result = this.$get(url, response => { this.result = this.$get(url, response => {
if (response.data != undefined && response.data != null) { if (response.data != undefined && response.data != null) {
this.moduleOptions = response.data; let data = response.data;
this.moduleOptions = [];
this.moduleOptions.unshift({
"id": "root",
"name": this.$t('commons.module_title'),
"level": 0,
"children": data,
});
this.moduleOptions.forEach(node => {
buildTree(node, {path: ''});
});
} }
}); });
}, },
setModule(id) { setModule(id, data) {
this.httpForm.moduleId = id; this.httpForm.moduleId = id;
//this.reload(); this.httpForm.modulePath = data.path;
}, },
reload() { reload() {
this.loading = true this.loading = true
...@@ -271,7 +282,7 @@ ...@@ -271,7 +282,7 @@
data.protocol = "DUBBO"; data.protocol = "DUBBO";
} }
data.id = getUUID(); data.id = getUUID();
this.httpForm = {id: data.id, name: data.name, protocol: data.protocol, path: data.path, method: api.method, userId: getCurrentUser().id, request: data}; this.httpForm = {id: data.id, name: data.name, protocol: data.protocol, path: data.path, method: api.method, userId: getCurrentUser().id, request: data, moduleId: "root"};
this.getMaintainerOptions(); this.getMaintainerOptions();
this.list(data); this.list(data);
this.httpVisible = true; this.httpVisible = true;
......
...@@ -22,11 +22,9 @@ ...@@ -22,11 +22,9 @@
<el-row> <el-row>
<el-col :span="11"> <el-col :span="11">
<el-form-item :label="$t('commons.import_module')"> <el-form-item :label="$t('commons.import_module')">
<el-select size="small" v-model="formData.moduleId" class="project-select" clearable> <ms-select-tree size="small" :data="moduleOptions" :defaultKey="formData.moduleId" @getValue="setModule" :obj="moduleObj" clearable checkStrictly/>
<el-option v-for="item in moduleOptions" :key="item.id" :label="item.path" :value="item.id"/>
</el-select>
</el-form-item> </el-form-item>
<el-form-item v-if="!isHar" :label="$t('commons.import_mode')"> <el-form-item v-if="!isHar" :label="$t('commons.import_mode')">
<el-select size="small" v-model="formData.modeId" class="project-select" clearable> <el-select size="small" v-model="formData.modeId" class="project-select" clearable>
<el-option v-for="item in modeOptions" :key="item.id" :label="item.name" :value="item.id"/> <el-option v-for="item in modeOptions" :key="item.id" :label="item.name" :value="item.id"/>
</el-select> </el-select>
...@@ -70,16 +68,17 @@ ...@@ -70,16 +68,17 @@
<script> <script>
import MsDialogFooter from "../../../../common/components/MsDialogFooter"; import MsDialogFooter from "../../../../common/components/MsDialogFooter";
import {listenGoBack, removeGoBackListener} from "@/common/js/utils"; import {listenGoBack, removeGoBackListener} from "@/common/js/utils";
import MsSelectTree from "../../../../common/select-tree/SelectTree";
export default { export default {
name: "ScenarioImport", name: "ScenarioImport",
components: {MsDialogFooter}, components: {MsDialogFooter, MsSelectTree},
props: { props: {
saved: { saved: {
type: Boolean, type: Boolean,
default: true, default: true,
}, },
moduleOptions: {} moduleOptions: Array,
}, },
data() { data() {
return { return {
...@@ -140,7 +139,11 @@ ...@@ -140,7 +139,11 @@
}, },
rules: {}, rules: {},
currentModule: {}, currentModule: {},
fileList: [] fileList: [],
moduleObj: {
id: 'id',
label: 'name',
},
} }
}, },
activated() { activated() {
...@@ -257,7 +260,11 @@ ...@@ -257,7 +260,11 @@
this.fileList = []; this.fileList = [];
removeGoBackListener(this.close); removeGoBackListener(this.close);
this.visible = false; this.visible = false;
} },
setModule(id, data) {
this.formData.moduleId = id;
this.formData.modulePath = data.path;
},
} }
} }
</script> </script>
......
...@@ -281,7 +281,7 @@ ...@@ -281,7 +281,7 @@
let data = this.api; let data = this.api;
data.name = this.apiCase.name; data.name = this.apiCase.name;
data.moduleId = module; data.moduleId = module;
data.modulePath = '/默认模块'; data.modulePath ="/"+ this.$t('commons.module_title');
this.setParameters(data); this.setParameters(data);
let bodyFiles = this.getBodyUploadFiles(data); let bodyFiles = this.getBodyUploadFiles(data);
this.$fileUpload("/api/definition/create", null, bodyFiles, data, () => { this.$fileUpload("/api/definition/create", null, bodyFiles, data, () => {
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
v-loading="result.loading" v-loading="result.loading"
:tree-nodes="data" :tree-nodes="data"
:type="isReadOnly ? 'view' : 'edit'" :type="isReadOnly ? 'view' : 'edit'"
:allLabel="'默认模块'"
@add="add" @add="add"
@edit="edit" @edit="edit"
@drag="drag" @drag="drag"
...@@ -135,7 +134,7 @@ ...@@ -135,7 +134,7 @@
this.extendTreeNodes = []; this.extendTreeNodes = [];
this.extendTreeNodes.unshift({ this.extendTreeNodes.unshift({
"id": "root", "id": "root",
"name": "默认模块", "name": this.$t('commons.module_title'),
"level": 0, "level": 0,
"children": this.data, "children": this.data,
}); });
......
...@@ -236,7 +236,9 @@ ...@@ -236,7 +236,9 @@
setKey(thisKey) { setKey(thisKey) {
this.$refs.tree.setCurrentKey(thisKey); this.$refs.tree.setCurrentKey(thisKey);
let node = this.$refs.tree.getNode(thisKey); let node = this.$refs.tree.getNode(thisKey);
this.setData(node.data); if (node && node.data) {
this.setData(node.data);
}
}, },
//单选:设置、初始化对象 //单选:设置、初始化对象
setData(data) { setData(data) {
...@@ -287,7 +289,7 @@ ...@@ -287,7 +289,7 @@
}, },
//下拉框关闭执行 //下拉框关闭执行
popoverHide() { popoverHide() {
this.$emit('getValue', this.returnDataKeys, this.returnDatas); this.$emit('getValue', this.returnDataKeys, this.returnDatas ? this.returnDatas : {});
}, },
// 多选,清空所有勾选 // 多选,清空所有勾选
clearSelectedNodes() { clearSelectedNodes() {
......
...@@ -35,20 +35,8 @@ ...@@ -35,20 +35,8 @@
<el-col :span="7"> <el-col :span="7">
<el-form-item :label="$t('test_track.case.module')" :label-width="formLabelWidth" prop="module"> <el-form-item :label="$t('test_track.case.module')" :label-width="formLabelWidth" prop="module">
<el-select <ms-select-tree :disabled="readOnly" :data="moduleOptions" :defaultKey="form.module" :obj="moduleObj"
v-model="form.module" @getValue="setModule" clearable checkStrictly size="small" />
:disabled="readOnly"
:placeholder="$t('test_track.case.input_module')"
filterable
class="ms-case-input">
<el-option
v-for="item in moduleOptions"
:key="item.id"
:label="item.path"
:value="item.id"
>
</el-option>
</el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="7"> <el-col :span="7">
...@@ -292,7 +280,7 @@ import MsDialogFooter from '../../../common/components/MsDialogFooter' ...@@ -292,7 +280,7 @@ import MsDialogFooter from '../../../common/components/MsDialogFooter'
import {getCurrentUser, handleCtrlSEvent, listenGoBack, removeGoBackListener} from "@/common/js/utils"; import {getCurrentUser, handleCtrlSEvent, listenGoBack, removeGoBackListener} from "@/common/js/utils";
import {Message} from "element-ui"; import {Message} from "element-ui";
import TestCaseAttachment from "@/business/components/track/case/components/TestCaseAttachment"; import TestCaseAttachment from "@/business/components/track/case/components/TestCaseAttachment";
import {buildNodePath} from "../../../api/definition/model/NodeTree"; import {buildNodePath,buildTree} from "../../../api/definition/model/NodeTree";
import CaseComment from "@/business/components/track/case/components/CaseComment"; import CaseComment from "@/business/components/track/case/components/CaseComment";
import MsInputTag from "@/business/components/api/automation/scenario/MsInputTag"; import MsInputTag from "@/business/components/api/automation/scenario/MsInputTag";
import MsPreviousNextButton from "../../../common/components/MsPreviousNextButton"; import MsPreviousNextButton from "../../../common/components/MsPreviousNextButton";
...@@ -301,12 +289,13 @@ import TestCaseComment from "@/business/components/track/case/components/TestCas ...@@ -301,12 +289,13 @@ import TestCaseComment from "@/business/components/track/case/components/TestCas
import ReviewCommentItem from "@/business/components/track/review/commom/ReviewCommentItem"; import ReviewCommentItem from "@/business/components/track/review/commom/ReviewCommentItem";
import {API_STATUS, REVIEW_STATUS, TEST} from "@/business/components/api/definition/model/JsonData"; import {API_STATUS, REVIEW_STATUS, TEST} from "@/business/components/api/definition/model/JsonData";
import MsTableButton from "@/business/components/common/components/MsTableButton"; import MsTableButton from "@/business/components/common/components/MsTableButton";
import MsSelectTree from "../../../common/select-tree/SelectTree";
export default { export default {
name: "TestCaseEdit", name: "TestCaseEdit",
components: { components: {
MsTableButton, MsTableButton,
MsSelectTree,
ReviewCommentItem, ReviewCommentItem,
TestCaseComment, MsPreviousNextButton, MsInputTag, CaseComment, MsDialogFooter, TestCaseAttachment TestCaseComment, MsPreviousNextButton, MsInputTag, CaseComment, MsDialogFooter, TestCaseAttachment
}, },
...@@ -325,7 +314,8 @@ export default { ...@@ -325,7 +314,8 @@ export default {
dialogFormVisible: false, dialogFormVisible: false,
form: { form: {
name: '', name: '',
module: '', module: 'root',
nodePath:'',
maintainer: getCurrentUser().id, maintainer: getCurrentUser().id,
priority: 'P0', priority: 'P0',
type: '', type: '',
...@@ -381,6 +371,10 @@ export default { ...@@ -381,6 +371,10 @@ export default {
index: 0, index: 0,
showInputTag: true, showInputTag: true,
tableType:"", tableType:"",
moduleObj: {
id: 'id',
label: 'name',
},
}; };
}, },
props: { props: {
...@@ -435,6 +429,10 @@ export default { ...@@ -435,6 +429,10 @@ export default {
this.addListener(); // 添加 ctrl s 监听 this.addListener(); // 添加 ctrl s 监听
}, },
methods: { methods: {
setModule(id,data) {
this.form.module = id;
this.form.nodePath = data.path;
},
clearInput() { clearInput() {
//this.$refs['cascade'].panel.clearCheckedNodes() //this.$refs['cascade'].panel.clearCheckedNodes()
}, },
...@@ -761,11 +759,6 @@ export default { ...@@ -761,11 +759,6 @@ export default {
Object.assign(param, this.form); Object.assign(param, this.form);
param.steps = JSON.stringify(this.form.steps); param.steps = JSON.stringify(this.form.steps);
param.nodeId = this.form.module; param.nodeId = this.form.module;
this.moduleOptions.forEach(item => {
if (this.form.module === item.id) {
param.nodePath = item.path;
}
});
if (this.projectId) { if (this.projectId) {
param.projectId = this.projectId; param.projectId = this.projectId;
} }
...@@ -838,11 +831,16 @@ export default { ...@@ -838,11 +831,16 @@ export default {
this.getTestOptions() this.getTestOptions()
}, },
getModuleOptions() { getModuleOptions() {
let moduleOptions = []; this.moduleOptions = [];
this.treeNodes.forEach(node => { this.moduleOptions.unshift({
buildNodePath(node, {path: ''}, moduleOptions); "id": "root",
"name": this.$t('commons.module_title'),
"level": 0,
"children": this.treeNodes,
});
this.moduleOptions.forEach(node => {
buildTree(node, {path: ''});
}); });
this.moduleOptions = moduleOptions;
}, },
getMaintainerOptions() { getMaintainerOptions() {
let workspaceId = localStorage.getItem(WORKSPACE_ID); let workspaceId = localStorage.getItem(WORKSPACE_ID);
......
...@@ -92,7 +92,7 @@ export default { ...@@ -92,7 +92,7 @@ export default {
allLabel: { allLabel: {
type: String, type: String,
default() { default() {
return this.$t("commons.all_label.case"); return this.$t('commons.module_title');
} }
}, },
nameLimit: { nameLimit: {
......
...@@ -5,6 +5,7 @@ export default { ...@@ -5,6 +5,7 @@ export default {
pass_rate: 'Pass rate', pass_rate: 'Pass rate',
execution_times: 'Execution times', execution_times: 'Execution times',
cover: 'Cover', cover: 'Cover',
module_title: 'Default module',
not_cover: 'Not Cover', not_cover: 'Not Cover',
import: 'Import', import: 'Import',
import_success: 'Import success', import_success: 'Import success',
......
...@@ -5,6 +5,7 @@ export default { ...@@ -5,6 +5,7 @@ export default {
pass_rate: '通过率', pass_rate: '通过率',
execution_times: '执行次数', execution_times: '执行次数',
cover: '覆盖', cover: '覆盖',
module_title: '默认模块',
not_cover: '不覆盖', not_cover: '不覆盖',
import: '导入', import: '导入',
import_success: '导入成功', import_success: '导入成功',
......
...@@ -5,6 +5,7 @@ export default { ...@@ -5,6 +5,7 @@ export default {
pass_rate: '通過率', pass_rate: '通過率',
execution_times: '執行次數', execution_times: '執行次數',
cover: '覆蓋', cover: '覆蓋',
module_title: '默認模塊',
not_cover: '不覆蓋', not_cover: '不覆蓋',
import: '導入', import: '導入',
import_success: '導入成功', import_success: '導入成功',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册