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