提交 1a10e6e8 编写于 作者: tony001's avatar tony001

调整代码表服务基类位置

上级 6ec1239f
import store from '@/store'; import store from '@/store';
import EntityService from '../entity-service'; import EntityService from '@/service/entity-service';
/** /**
* 动态代码表服务类 * 动态代码表服务类
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<script lang="ts"> <script lang="ts">
import { Component, Vue, Prop, Model, Watch } from 'vue-property-decorator'; import { Component, Vue, Prop, Model, Watch } from 'vue-property-decorator';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
@Component({ @Component({
}) })
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
<script lang="ts"> <script lang="ts">
import XLSX from 'xlsx'; import XLSX from 'xlsx';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
import EntityService from '@/service/entity-service'; import EntityService from '@/service/entity-service';
import { Vue, Component, Prop, Provide, Emit, Watch } from 'vue-property-decorator'; import { Vue, Component, Prop, Provide, Emit, Watch } from 'vue-property-decorator';
import { Environment } from '@/environments/environment'; import { Environment } from '@/environments/environment';
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<script lang = 'ts'> <script lang = 'ts'>
import { Vue, Component, Prop, Watch } from "vue-property-decorator"; import { Vue, Component, Prop, Watch } from "vue-property-decorator";
import { Http } from '@/utils'; import { Http } from '@/utils';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
import { observable } from 'rxjs'; import { observable } from 'rxjs';
@Component({}) @Component({})
export default class AppOrgSelect extends Vue { export default class AppOrgSelect extends Vue {
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
</template> </template>
<script lang = 'ts'> <script lang = 'ts'>
import { Component, Vue, Prop, Model,Watch } from 'vue-property-decorator'; import { Component, Vue, Prop, Model,Watch } from 'vue-property-decorator';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
@Component({}) @Component({})
export default class AppRadioGroup extends Vue { export default class AppRadioGroup extends Vue {
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<script lang="ts"> <script lang="ts">
import { Vue, Component, Watch, Prop, Model } from "vue-property-decorator"; import { Vue, Component, Watch, Prop, Model } from "vue-property-decorator";
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
import { ElSelect } from "element-ui/types/select"; import { ElSelect } from "element-ui/types/select";
@Component({}) @Component({})
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<script lang="ts"> <script lang="ts">
import { Vue, Component, Prop, Model, Watch } from 'vue-property-decorator'; import { Vue, Component, Prop, Model, Watch } from 'vue-property-decorator';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
@Component({}) @Component({})
export default class CodeList extends Vue { export default class CodeList extends Vue {
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<script lang="ts"> <script lang="ts">
import { Vue, Component, Watch, Prop, Model } from 'vue-property-decorator'; import { Vue, Component, Watch, Prop, Model } from 'vue-property-decorator';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
@Component({ @Component({
}) })
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<script lang="ts"> <script lang="ts">
import { Vue, Component, Prop, Model } from 'vue-property-decorator'; import { Vue, Component, Prop, Model } from 'vue-property-decorator';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
import { Util } from '@/utils'; import { Util } from '@/utils';
@Component({ @Component({
}) })
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
<script lang="ts"> <script lang="ts">
import { Vue, Component, Watch, Prop, Model } from 'vue-property-decorator'; import { Vue, Component, Watch, Prop, Model } from 'vue-property-decorator';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
import { Util } from '@/utils'; import { Util } from '@/utils';
import { Subject, Subscription } from 'rxjs'; import { Subject, Subscription } from 'rxjs';
......
import { Http } from '@/utils'; import { Http } from '@/utils';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
/** /**
* 实体服务基类 * 实体服务基类
......
import { Store } from 'vuex'; import { Store } from 'vuex';
import { Util } from '@/utils/util/util'; import { Util } from '@/utils/util/util';
import CodeListService from "@service/app/codelist-service"; import CodeListService from "@/codelist/codelist-service";
/** /**
* 部件服务基类 * 部件服务基类
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册