|
@@ -19,6 +19,17 @@
|
|
|
class="btn-list-sticky"
|
|
class="btn-list-sticky"
|
|
|
@click="openComponent" />
|
|
@click="openComponent" />
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- applytype 类型-->
|
|
|
|
|
+ <template #applytype="{ record }">
|
|
|
|
|
+ <span>{{ getPickUpStatusName(record.applytype) }}</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- applystatus 状态 -->
|
|
|
|
|
+ <template #applystatus="{ record }">
|
|
|
|
|
+ <span>{{ getPickUpTypeName(record.applystatus) }}</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+
|
|
|
</a-table>
|
|
</a-table>
|
|
|
<component :is="componentId"
|
|
<component :is="componentId"
|
|
|
v-if="componentId"
|
|
v-if="componentId"
|
|
@@ -37,6 +48,7 @@ import { handleComposeOrderTable } from '@/common/setup/table/compose';
|
|
|
import { ComposeOrderTableParam } from '@/common/setup/table/interface';
|
|
import { ComposeOrderTableParam } from '@/common/setup/table/interface';
|
|
|
import { expandIcon } from '@/common/setup/table/clolumn';
|
|
import { expandIcon } from '@/common/setup/table/clolumn';
|
|
|
import { BtnList as BtnListType } from '@/common/components/btnList/interface';
|
|
import { BtnList as BtnListType } from '@/common/components/btnList/interface';
|
|
|
|
|
+import {getPickUpStatusName, getPickUpTypeName} from "@/common/constants/enumsName";
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: enumOrderComponents.spot_warrant_in_and_out_warehouse,
|
|
name: enumOrderComponents.spot_warrant_in_and_out_warehouse,
|
|
@@ -74,6 +86,8 @@ export default defineComponent({
|
|
|
tableList,
|
|
tableList,
|
|
|
expandIcon,
|
|
expandIcon,
|
|
|
handleBtnList,
|
|
handleBtnList,
|
|
|
|
|
+ getPickUpStatusName,
|
|
|
|
|
+ getPickUpTypeName
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|