ag-element-ui/src/App.vue

51 lines
1.1 KiB
Vue

<template>
<div>
<Pedestal ref="ref_Pedestal" v-model="value">
<!-- <template #operate="">
<el-button
class="excel"
type="success"
icon="el-icon-download"
size="small"
plain
@click="excel()"
>导出</el-button
>
</template> -->
</Pedestal>
</div>
</template>
<script>
import Pedestal from "../packages/pedestal/src/index.vue";
export default {
components: { Pedestal },
data() {
return {
value: "",
options: {
fnSearch: this.fnSearch,
formItemAttrs: {
order_sn: {
type: "input",
label: "订单号",
placeholder: "请输入订单号",
},
product_category_id: {
type: "select",
label: "商品分类",
multiple: false,
selectOpts: [{ label: "全部", value: "" }],
placeholder: "选择商品分类",
},
},
},
};
},
methods: {},
};
</script>
<style scoped lang='scss'>
</style>