123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <template>
- <div>
- <avue-crud
- ref="crudRef"
- v-model:search="search"
- v-model="form"
- :data="data"
- :option="option"
- v-model:page="page"
- @row-save="createRow"
- @row-update="updateRow"
- @row-del="deleteRow"
- @selection-change="selectionChange"
- @sortable-change="onSortChange"
- @search-change="searchChange"
- @search-reset="resetChange"
- @size-change="dataList"
- @current-change="dataList"
- />
- <CommonTable
- ref="commonTableRef"
- :tableTitle="tableTitle"
- :tableType="commonTableType"
- @selected-sure="onSelectedFinish"
- />
- </div>
- </template>
- <script setup>
- import { ref, getCurrentInstance } from "vue";
- import { useCrud } from "@/hooks/userCrud";
- import { getTableConfig } from "./configs";
- import { saveCompoents } from "@/api/craft/process/index";
- const props = defineProps({
- tableTitle: {
- default: "",
- type: String,
- },
- tableType: {
- default: "",
- type: String,
- },
- });
- const route = useRoute();
- const tableConfig = getTableConfig(route.params.id);
- // 传入一个url,后面不带/
- const { url, form, data, option, search, page, toDeleteIds, Methords, Utils } =
- useCrud({
- src: tableConfig[props.tableType].url,
- });
- const { dataList, createRow, updateRow, deleteRow, searchChange, resetChange } =
- Methords; //增删改查
- const { selectionChange, multipleUpdate } = Methords; //选中和批量删除事件
- const crudRef = ref(null); //crudRef.value 获取avue-crud对象
- const startCreat = () => {
- if (props.tableType === "wuliaocaiji") {
- commonTableRef.value && commonTableRef.value.startSelect();
- } else {
- crudRef.value && crudRef.value.rowAdd();
- }
- };
- const saveSortData = async () => {
- multipleUpdate();
- };
- defineExpose({ startCreat, saveSortData });
- const onSortChange = () => {
- data.value.forEach((item) => {
- console.log(item.id);
- });
- };
- // ============公共弹窗table选择相关,物料采集等使用===============
- const commonTableRef = ref({});
- const commonTableType = ref("MARTERIAL");
- const onSelectedFinish = (itemValue) => {
- crudRef.value && crudRef.value.rowAdd();
- if (props.tableType === "wuliaocaiji") {
- form.value.itemName = itemValue.materialName;
- form.value.itemCode = itemValue.materialCode;
- form.value.itemModel = itemValue.spec;
- form.value.num = 1;
- form.value.traceType = "S";
- form.value.unit = itemValue.unitDictValue;
- }
- };
- onMounted(() => {
- url.value = tableConfig[props.tableType].url;
- option.value = Object.assign(option.value, {
- addBtn: false,
- searchShow: false,
- header: false,
- sortable: true,
- column: tableConfig[props.tableType].column,
- });
- dataList();
- });
- watch(
- () => props.tableType,
- () => {
- console.log("faslegb");
- url.value = tableConfig[props.tableType].url;
- option.value = Object.assign(option.value, {
- addBtn: false,
- searchShow: false,
- header: false,
- sortable: true,
- column: tableConfig[props.tableType].column,
- });
- dataList();
- }
- );
- </script>
|