提交 53e46ff9 编写于 作者: ibizdev's avatar ibizdev

xignzi006 发布系统代码

上级 abf1987a
// 避免空文件,后台不让空文件过
.account-edit-view {
--account-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import AccountEditViewBase from './account-edit-view-base.vue';
import view_form from '@widgets/account/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class AccountEditView extends AccountEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.account-grid-view {
--account-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import AccountGridViewBase from './account-grid-view-base.vue';
import view_grid from '@widgets/account/main-grid/main-grid.vue';
import view_searchform from '@widgets/account/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class AccountGridView extends AccountGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.activity-pointer-edit-view {
--activity-pointer-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import ActivityPointerEditViewBase from './activity-pointer-edit-view-base.vue';
import view_form from '@widgets/activity-pointer/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class ActivityPointerEditView extends ActivityPointerEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.activity-pointer-grid-view {
--activity-pointer-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import ActivityPointerGridViewBase from './activity-pointer-grid-view-base.vue';
import view_grid from '@widgets/activity-pointer/main-grid/main-grid.vue';
import view_searchform from '@widgets/activity-pointer/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class ActivityPointerGridView extends ActivityPointerGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.contact-edit-view {
--contact-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import ContactEditViewBase from './contact-edit-view-base.vue';
import view_form from '@widgets/contact/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class ContactEditView extends ContactEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.contact-grid-view {
--contact-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import ContactGridViewBase from './contact-grid-view-base.vue';
import view_grid from '@widgets/contact/main-grid/main-grid.vue';
import view_searchform from '@widgets/contact/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class ContactGridView extends ContactGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.invoice-edit-view {
--invoice-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import InvoiceEditViewBase from './invoice-edit-view-base.vue';
import view_form from '@widgets/invoice/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class InvoiceEditView extends InvoiceEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.invoice-grid-view {
--invoice-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import InvoiceGridViewBase from './invoice-grid-view-base.vue';
import view_grid from '@widgets/invoice/main-grid/main-grid.vue';
import view_searchform from '@widgets/invoice/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class InvoiceGridView extends InvoiceGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.ibiz-list-edit-view {
--ibiz-list-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import IBizListEditViewBase from './ibiz-list-edit-view-base.vue';
import view_form from '@widgets/ibiz-list/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class IBizListEditView extends IBizListEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.ibiz-list-grid-view {
--ibiz-list-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import IBizListGridViewBase from './ibiz-list-grid-view-base.vue';
import view_grid from '@widgets/ibiz-list/main-grid/main-grid.vue';
import view_searchform from '@widgets/ibiz-list/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class IBizListGridView extends IBizListGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.competitor-edit-view {
--competitor-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import CompetitorEditViewBase from './competitor-edit-view-base.vue';
import view_form from '@widgets/competitor/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class CompetitorEditView extends CompetitorEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.competitor-grid-view {
--competitor-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import CompetitorGridViewBase from './competitor-grid-view-base.vue';
import view_grid from '@widgets/competitor/main-grid/main-grid.vue';
import view_searchform from '@widgets/competitor/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class CompetitorGridView extends CompetitorGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.goal-edit-view {
--goal-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import GoalEditViewBase from './goal-edit-view-base.vue';
import view_form from '@widgets/goal/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class GoalEditView extends GoalEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.goal-grid-view {
--goal-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import GoalGridViewBase from './goal-grid-view-base.vue';
import view_grid from '@widgets/goal/main-grid/main-grid.vue';
import view_searchform from '@widgets/goal/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class GoalGridView extends GoalGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.lead-edit-view {
--lead-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import LeadEditViewBase from './lead-edit-view-base.vue';
import view_form from '@widgets/lead/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class LeadEditView extends LeadEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.lead-grid-view {
--lead-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import LeadGridViewBase from './lead-grid-view-base.vue';
import view_grid from '@widgets/lead/main-grid/main-grid.vue';
import view_searchform from '@widgets/lead/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class LeadGridView extends LeadGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.opportunity-edit-view {
--opportunity-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import OpportunityEditViewBase from './opportunity-edit-view-base.vue';
import view_form from '@widgets/opportunity/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class OpportunityEditView extends OpportunityEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.opportunity-grid-view {
--opportunity-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import OpportunityGridViewBase from './opportunity-grid-view-base.vue';
import view_grid from '@widgets/opportunity/main-grid/main-grid.vue';
import view_searchform from '@widgets/opportunity/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class OpportunityGridView extends OpportunityGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.quote-edit-view {
--quote-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import QuoteEditViewBase from './quote-edit-view-base.vue';
import view_form from '@widgets/quote/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class QuoteEditView extends QuoteEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.quote-grid-view {
--quote-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import QuoteGridViewBase from './quote-grid-view-base.vue';
import view_grid from '@widgets/quote/main-grid/main-grid.vue';
import view_searchform from '@widgets/quote/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class QuoteGridView extends QuoteGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.sales-literature-edit-view {
--sales-literature-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import SalesLiteratureEditViewBase from './sales-literature-edit-view-base.vue';
import view_form from '@widgets/sales-literature/main-form/main-form.vue';
@Component({
components: {
view_form,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class SalesLiteratureEditView extends SalesLiteratureEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.sales-literature-grid-view {
--sales-literature-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import SalesLiteratureGridViewBase from './sales-literature-grid-view-base.vue';
import view_grid from '@widgets/sales-literature/main-grid/main-grid.vue';
import view_searchform from '@widgets/sales-literature/default-searchform/default-searchform.vue';
@Component({
components: {
view_grid,
view_searchform,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
vm.$store.commit('addCurPageViewtag', { route: to, viewtag: vm.viewtag });
});
},
})
export default class SalesLiteratureGridView extends SalesLiteratureGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.sales-order-edit-view {
--sales-order-edit-view: 0;
}
// 视图样式
// this is less
// 避免空文件,后台不让空文件过
.sales-order-grid-view {
--sales-order-grid-view: 0;
}
// 视图样式
// this is less
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册