iotgateway/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/Spa/Vue/index.txt
2021-12-14 14:10:44 +08:00

56 lines
1.7 KiB
Plaintext

<template>
<card>
<wtm-search-box :ref="searchRefName" :events="searchEvent" :formOptions="SEARCH_DATA" :needCollapse="true" :isActive.sync="isActive" />
<!-- 操作按钮 -->
<wtm-but-box :assembly="assembly" :action-list="actionList" :selected-data="selectData" :events="actionEvent" />
<!-- 列表 -->
<wtm-table-box :attrs="{...searchAttrs, actionList}" :events="{...searchEvent, ...actionEvent}">
$actions$
</wtm-table-box>
<!-- 弹出框 -->
<dialog-form :is-show.sync="dialogIsShow" :dialog-data="dialogData" :status="dialogStatus" @onSearch="onHoldSearch" />
<!-- 导入 -->
<upload-box :is-show.sync="uploadIsShow" @onImport="onImport" @onDownload="onDownload" />
</card>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import { Action, State } from "vuex-class";
import searchMixin from "@/vue-custom/mixin/search";
import actionMixin from "@/vue-custom/mixin/action-mixin";
import DialogForm from "./views/dialog-form.vue";
import store from "./store/index";
// 查询参数, table列 ★★★★★
import { ASSEMBLIES, TABLE_HEADER, $enums$ } from "./config";
import i18n from "@/lang";
@Component({
name: "$modelname$",
mixins: [searchMixin(TABLE_HEADER), actionMixin(ASSEMBLIES)],
store,
components: {
DialogForm
}
})
export default class Index extends Vue {
isActive: boolean = false;
$acts$
get SEARCH_DATA() {
return {
formProps: {
"label-width": "75px",
inline: true
},
formItem: {
$fields$
}
};
}
mounted() {
$runactions$
}
}
</script>