144 lines
4.6 KiB
Vue
144 lines
4.6 KiB
Vue
<!-- 入库单 -->
|
|
<template>
|
|
<div class="table-box">
|
|
<div style="padding-bottom: 16px">
|
|
<PermissionButton
|
|
:buttons="dataStore.buttons"
|
|
@handleButtonClickCallback="handleButtonClickCallback"
|
|
></PermissionButton>
|
|
</div>
|
|
|
|
<ProTable
|
|
ref="proTable"
|
|
:columns="dataStore.columns"
|
|
:request-api="getSubscribeWrrListApi"
|
|
:init-param="dataStore.initParam"
|
|
@selectionChange="selectionChange"
|
|
>
|
|
<template v-slot:search>
|
|
<SearchForm
|
|
@search="handleSearch"
|
|
@reset="handleReset"
|
|
:searchParams="dataStore.initParam"
|
|
:formData="dataStore.formData"
|
|
/>
|
|
</template>
|
|
<template #notif_ret_text="scope">
|
|
<div
|
|
v-if="scope.row.notif_ret_text === '成功'"
|
|
style="color: #4178d5; cursor: pointer"
|
|
@click="handleClickSuccess(scope.row)"
|
|
>
|
|
{{ scope.row.notif_ret_text }}
|
|
</div>
|
|
<div
|
|
v-else-if="scope.row.notif_ret_text === '失败'"
|
|
style="color: red; cursor: pointer"
|
|
@click="handleClickError(scope.row)"
|
|
>
|
|
{{ scope.row.notif_ret_text }}
|
|
</div>
|
|
<div v-else-if="!scope.row.notif_ret_text">--</div>
|
|
</template>
|
|
</ProTable>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="foundationSubscribeWarehousing">
|
|
import ProTable from "@/components/ProTable/index.vue";
|
|
|
|
// import { useMsg } from "@/hooks/useMsg";
|
|
import PermissionButton from "@/components/PermissionButton/index.vue";
|
|
import { getSubscribeWrrListApi } from "@/api/modules/warehousing";
|
|
import SearchForm from "@/components/SearchForm/index.vue";
|
|
import { RULE_FORM, FORM_DATA, COLUMNS, BUTTON } from "./constant/list/index";
|
|
//表格TS
|
|
import { ProTableInstance } from "@/components/ProTable/interface";
|
|
import { useUserStore } from "@/stores/modules/user";
|
|
import { btnClick } from "./init";
|
|
//深拷贝方法
|
|
import { cloneDeep } from "lodash-es";
|
|
// 获取 ProTable 元素,调用其获取刷新数据方法(还能获取到当前查询参数,方便导出携带参数)
|
|
const proTable = ref<ProTableInstance>();
|
|
|
|
// 获取用户信息(组织id)
|
|
const userStore = useUserStore();
|
|
// 数据源
|
|
const dataStore = reactive<any>({
|
|
columns: COLUMNS, //列表配置项
|
|
initParam: cloneDeep(RULE_FORM), // 初始化搜索条件|重置搜索条件
|
|
ruleForm: cloneDeep(RULE_FORM), // 搜索条件
|
|
formData: FORM_DATA, //搜索配置项
|
|
buttons: cloneDeep(BUTTON),
|
|
options: [], //规格型号
|
|
selectionList: [], //选中表格的行
|
|
loading: false
|
|
});
|
|
|
|
const init = () => {
|
|
//设置组织数组
|
|
dataStore.formData[5].options = userStore.orgIdArr;
|
|
//设置仓库数据
|
|
dataStore.formData[6].options = userStore.warehouse;
|
|
//订阅人
|
|
dataStore.initParam.subscriber_name = userStore.userInfo.nickname;
|
|
};
|
|
init();
|
|
// 表格选择事件
|
|
const selectionChange = (selection: any) => {
|
|
dataStore.selectionList = selection;
|
|
};
|
|
const handleButtonClickCallback = (item: any) => {
|
|
const { type } = item;
|
|
btnClick[type]({
|
|
selectionList: dataStore.selectionList,
|
|
proTable,
|
|
initParam: dataStore.initParam
|
|
});
|
|
};
|
|
//搜索
|
|
const handleSearch = async (params: any) => {
|
|
dataStore.initParam = cloneDeep(params);
|
|
//这里需要等到表格刷新以后才去请求
|
|
nextTick(() => {
|
|
proTable?.value!.getTableList();
|
|
});
|
|
};
|
|
//重置
|
|
const handleReset = () => {
|
|
dataStore.initParam = cloneDeep(RULE_FORM);
|
|
init();
|
|
//这里需要等到表格刷新以后才去请求
|
|
nextTick(() => {
|
|
proTable?.value!.getTableList();
|
|
});
|
|
};
|
|
const handleClickSuccess = (row: any) => {
|
|
Array.isArray;
|
|
ElMessageBox.alert(
|
|
`<div style='font-size:16px'>${
|
|
Array.isArray(row?.notif_user_names) && row?.notif_user_names.length ? row?.notif_user_names.join(",") : ""
|
|
}</div>`,
|
|
"接收人",
|
|
{
|
|
dangerouslyUseHTMLString: true,
|
|
showConfirmButton: false
|
|
}
|
|
);
|
|
};
|
|
const handleClickError = (row: any) => {
|
|
ElMessageBox.alert(`<div style='font-size:16px'>${row.fail_msg}</div>`, "失败原因", {
|
|
dangerouslyUseHTMLString: true,
|
|
showConfirmButton: false
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<style scope lang="scss">
|
|
.down-dialog-box {
|
|
.el-dialog__body {
|
|
padding: 0 16px 40px;
|
|
}
|
|
}
|
|
</style>
|