提交 1f671605 编写于 作者: ibizdev's avatar ibizdev

xignzi006 发布系统代码

上级 d6c04508
// 避免空文件,后台不让空文件过
.campaign-activity-edit-view {
--campaign-activity-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import CampaignActivityEditViewBase from './campaign-activity-edit-view-base.vue';
import view_form from '@widgets/campaign-activity/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 CampaignActivityEditView extends CampaignActivityEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.campaign-activity-grid-view {
--campaign-activity-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import CampaignActivityGridViewBase from './campaign-activity-grid-view-base.vue';
import view_grid from '@widgets/campaign-activity/main-grid/main-grid.vue';
import view_searchform from '@widgets/campaign-activity/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 CampaignActivityGridView extends CampaignActivityGridViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.campaign-edit-view {
--campaign-edit-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import CampaignEditViewBase from './campaign-edit-view-base.vue';
import view_form from '@widgets/campaign/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 CampaignEditView extends CampaignEditViewBase {
}
</script>
\ No newline at end of file
// 避免空文件,后台不让空文件过
.campaign-grid-view {
--campaign-grid-view: 0;
}
// 视图样式
// this is less
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import CampaignGridViewBase from './campaign-grid-view-base.vue';
import view_grid from '@widgets/campaign/main-grid/main-grid.vue';
import view_searchform from '@widgets/campaign/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 CampaignGridView extends CampaignGridViewBase {
}
</script>
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册