修改包名
This commit is contained in:
parent
096aa4da2d
commit
2290c94fec
|
@ -14,13 +14,14 @@
|
||||||
"@fortawesome/vue-fontawesome": "^0.1.9",
|
"@fortawesome/vue-fontawesome": "^0.1.9",
|
||||||
"axios": "^0.19.0",
|
"axios": "^0.19.0",
|
||||||
"core-js": "^3.4.3",
|
"core-js": "^3.4.3",
|
||||||
|
"echarts": "^4.6.0",
|
||||||
"element-ui": "^2.13.0",
|
"element-ui": "^2.13.0",
|
||||||
"vue": "^2.6.10",
|
"vue": "^2.6.10",
|
||||||
|
"vue-echarts": "^4.1.0",
|
||||||
"vue-i18n": "^8.15.3",
|
"vue-i18n": "^8.15.3",
|
||||||
"vue-router": "^3.1.3",
|
"vue-router": "^3.1.3",
|
||||||
"vuex": "^3.1.2",
|
"vuedraggable": "^2.23.2",
|
||||||
"echarts": "^4.6.0",
|
"vuex": "^3.1.2"
|
||||||
"vue-echarts": "^4.1.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vue/cli-plugin-babel": "^4.1.0",
|
"@vue/cli-plugin-babel": "^4.1.0",
|
||||||
|
@ -42,7 +43,7 @@
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"vue/no-unused-components": "off",
|
"vue/no-unused-components": "off",
|
||||||
"no-console":"off",
|
"no-console": "off",
|
||||||
"no-unused-vars": "off"
|
"no-unused-vars": "off"
|
||||||
},
|
},
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
|
|
|
@ -26,7 +26,7 @@ import PerformanceReportView from "../../performance/report/PerformanceReportVie
|
||||||
import ApiReportView from "../../api/report/ApiReportView";
|
import ApiReportView from "../../api/report/ApiReportView";
|
||||||
import TrackHome from "../../track/home/TrackHome";
|
import TrackHome from "../../track/home/TrackHome";
|
||||||
import TestPlan from "../../track/plan/TestPlan";
|
import TestPlan from "../../track/plan/TestPlan";
|
||||||
import TestPlanView from "../../track/plan/TestPlanView";
|
import TestPlanView from "../../track/plan/view/TestPlanView";
|
||||||
import TestCase from "../../track/case/TestCase";
|
import TestCase from "../../track/case/TestCase";
|
||||||
import TestTrack from "../../track/TestTrack";
|
import TestTrack from "../../track/TestTrack";
|
||||||
|
|
||||||
|
|
|
@ -37,10 +37,10 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
import NodeTree from "../common/NodeTree";
|
import NodeTree from "../../common/NodeTree";
|
||||||
import TestPlanTestCaseList from "./components/TestPlanTestCaseList";
|
import TestPlanTestCaseList from "./comonents/TestPlanTestCaseList";
|
||||||
import TestCaseRelevance from "./components/TestCaseRelevance";
|
import TestCaseRelevance from "./comonents/TestCaseRelevance";
|
||||||
import SelectMenu from "../common/SelectMenu";
|
import SelectMenu from "../../common/SelectMenu";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TestPlanView",
|
name: "TestPlanView",
|
|
@ -20,8 +20,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {WORKSPACE_ID} from '../../../../../common/js/constants'
|
import {WORKSPACE_ID} from '../../../../../../common/js/constants'
|
||||||
import MsDialogFooter from '../../../common/components/MsDialogFooter'
|
import MsDialogFooter from '../../../../common/components/MsDialogFooter'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "executorEdit",
|
name: "executorEdit",
|
|
@ -19,8 +19,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import TestPlanTestCaseStatusButton from '../common/TestPlanTestCaseStatusButton';
|
import TestPlanTestCaseStatusButton from '../../common/TestPlanTestCaseStatusButton';
|
||||||
import MsDialogFooter from '../../../common/components/MsDialogFooter'
|
import MsDialogFooter from '../../../../common/components/MsDialogFooter'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "statusEdit",
|
name: "statusEdit",
|
|
@ -54,8 +54,8 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
import NodeTree from '../../common/NodeTree';
|
import NodeTree from '../../../common/NodeTree';
|
||||||
import MsDialogFooter from '../../../common/components/MsDialogFooter'
|
import MsDialogFooter from '../../../../common/components/MsDialogFooter'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TestCaseRelevance",
|
name: "TestCaseRelevance",
|
|
@ -165,7 +165,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import TestPlanTestCaseStatusButton from '../common/TestPlanTestCaseStatusButton';
|
import TestPlanTestCaseStatusButton from '../../common/TestPlanTestCaseStatusButton';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TestPlanTestCaseEdit",
|
name: "TestPlanTestCaseEdit",
|
|
@ -109,19 +109,19 @@
|
||||||
<script>
|
<script>
|
||||||
import ExecutorEdit from './ExecutorEdit';
|
import ExecutorEdit from './ExecutorEdit';
|
||||||
import StatusEdit from './StatusEdit';
|
import StatusEdit from './StatusEdit';
|
||||||
import TestPlanTestCaseEdit from "../components/TestPlanTestCaseEdit";
|
import TestPlanTestCaseEdit from "./TestPlanTestCaseEdit";
|
||||||
import MsTipButton from '../../../../components/common/components/MsTipButton';
|
import MsTipButton from '../../../../common/components/MsTipButton';
|
||||||
import MsTablePagination from '../../../../components/common/pagination/TablePagination';
|
import MsTablePagination from '../../../../common/pagination/TablePagination';
|
||||||
import MsTableHeader from '../../../../components/common/components/MsTableHeader';
|
import MsTableHeader from '../../../../common/components/MsTableHeader';
|
||||||
import MsTableButton from '../../../../components/common/components/MsTableButton';
|
import MsTableButton from '../../../../common/components/MsTableButton';
|
||||||
import NodeBreadcrumb from '../../common/NodeBreadcrumb';
|
import NodeBreadcrumb from '../../../common/NodeBreadcrumb';
|
||||||
|
|
||||||
import {TokenKey} from '../../../../../common/js/constants';
|
import {TokenKey} from '../../../../../../common/js/constants';
|
||||||
import {tableFilter} from '../../../../../common/js/utils';
|
import {tableFilter} from '../../../../../../common/js/utils';
|
||||||
import PriorityTableItem from "../../common/TableItems/PriorityTableItem";
|
import PriorityTableItem from "../../../common/TableItems/PriorityTableItem";
|
||||||
import StatusTableItem from "../../common/TableItems/StatusTableItem";
|
import StatusTableItem from "../../../common/TableItems/StatusTableItem";
|
||||||
import TypeTableItem from "../../common/TableItems/TypeTableItem";
|
import TypeTableItem from "../../../common/TableItems/TypeTableItem";
|
||||||
import MethodTableItem from "../../common/TableItems/MethodTableItem";
|
import MethodTableItem from "../../../common/TableItems/MethodTableItem";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "TestPlanTestCaseList",
|
name: "TestPlanTestCaseList",
|
Loading…
Reference in New Issue