| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template>
- <!-- 恢复仓库信息-->
- <a-modal class="commonModal modify-custom"
- title="恢复仓库信息"
- v-model:visible="visible"
- centered
- :maskClosable="false"
- @cancel="cancel"
- width="890px">
- <template #footer>
- <a-button key="submit"
- class="cancelBtn"
- @click="cancel">取消
- </a-button>
- <a-button key="submit"
- type="primary"
- :loading="loading"
- @click="submit">确认恢复
- </a-button>
- </template>
- <a-form class="inlineForm"
- :form="form"
- @submit="handleSearch">
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="仓库类型">
- <span class="white">{{ getWareHouseTypeName(selectedRow.warehousetype) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="仓库名称">
- <span class="white">{{ formatValue(selectedRow.warehousename)}}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="仓库简称">
- <span class="white">{{ formatValue(selectedRow.warehousecode) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="状态">
- <span class="white">{{ gerWareHouseStatusName(selectedRow.warehousestatus) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <template v-if="!isOemByEnum(OemType.pingan)">
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="联系电话">
- <span class="white">{{ formatValue(selectedRow.contactnum) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="联系人">
- <span class="white">{{ formatValue(selectedRow.contactname) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="所在地区">
- <span
- class="white">{{ getProvinceName(selectedRow.provinceid) + getCityName(selectedRow.cityid) + getDistrictName(selectedRow.districtid) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="详细地址">
- <span class="white">{{ formatValue(selectedRow.address) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- </template>
- </a-form>
- </a-modal>
- </template>
- <script lang="ts">
- import { defineComponent, PropType, ref } from 'vue';
- import { closeModal } from '@/common/setup/modal/index';
- import { ErmcpWareHouseInfo } from '@/services/go/ermcp/warehouse-info/interface';
- import { Modal } from 'ant-design-vue';
- import { gerWareHouseStatusName, getWareHouseTypeName } from '@/views/information/warehouse-info/setup';
- import { formatValue } from '@/common/methods';
- import { getSelectedAccountId } from '@/services/bus/account';
- import { WarehouseStateChangeReq } from '@/services/proto/warehouse/interface';
- import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
- import { warehouseStateChangeReq } from '@/services/proto/warehouse';
- import { isOemByEnum, OemType } from '@/common/config/projectName';
- export default defineComponent({
- name: 'warehouse_info_btn_recover',
- components: {},
- props: {
- selectedRow: {
- type: Object as PropType<ErmcpWareHouseInfo>,
- default: {},
- },
- },
- setup(props, context) {
- const { visible, cancel } = closeModal('warehouse_info_btn_recover');
- const loading = ref<boolean>(false);
- const maskClosableFlag = ref<boolean>(false);
- function submit() {
- loading.value = true;
- Modal.confirm({
- title: '是否确认恢复仓库信息',
- okText: '确认恢复',
- cancelText: '取消',
- onOk() {
- const accountid = getSelectedAccountId();
- const req: WarehouseStateChangeReq = {
- accountid: accountid === undefined ? 0 : accountid,
- warehouseid: props.selectedRow.autoid,
- warehousestatus: 1,
- };
- requestResultLoadingAndInfo(warehouseStateChangeReq, req, loading, ['恢复仓库成功', '恢复仓库失败:']).then(() => {
- context.emit('refresh');
- cancel();
- });
- },
- onCancel() {},
- });
- }
- return {
- visible,
- cancel,
- submit,
- loading,
- maskClosableFlag,
- gerWareHouseStatusName,
- getWareHouseTypeName,
- formatValue,
- isOemByEnum,
- OemType,
- };
- },
- });
- </script>
- <style lang="less">
- .modify-custom {
- }
- </style
- >;
|