123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- <template>
- <div>
- <el-card class="box-card">
- <byTable
- :source="sourceList.data"
- :pagination="sourceList.pagination"
- :config="config"
- :loading="loading"
- :searchConfig="searchConfig"
- highlight-current-row
- @get-list="getList"
- @clickReset="clickReset">
- <template #code="{ item }">
- <div>
- <a style="color: #409eff; cursor: pointer; word-break: break-all" @click="clickCode(item)">{{ item.code }}</a>
- </div>
- </template>
- <template #exceptionTypeDetail="{ item }">
- <div>{{ item.exceptionTypeDetail }}</div>
- </template>
- </byTable>
- </el-card>
- </div>
- </template>
- <script setup>
- import byTable from "/src/components/byTable/index";
- import { ElMessage, ElMessageBox } from "element-plus";
- const { proxy } = getCurrentInstance();
- const departmentList = ref([]);
- const exceptionTypeList = ref([]);
- const sourceList = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- departmentId: "",
- code: "",
- wlnCode: "",
- exception: "1",
- exceptionType: "",
- },
- });
- const loading = ref(false);
- const searchConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "code",
- label: "订单号",
- },
- {
- type: "input",
- prop: "wlnCode",
- label: "E10单号",
- },
- {
- type: "select",
- prop: "departmentId",
- data: departmentList.value,
- label: "事业部",
- },
- {
- type: "select",
- prop: "exceptionType",
- data: exceptionTypeList.value,
- label: "异常类型",
- },
- ];
- });
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "事业部",
- prop: "departmentName",
- width: 140,
- },
- },
- {
- attrs: {
- label: "订单号",
- slot: "code",
- width: 220,
- },
- },
- {
- attrs: {
- label: "E10单号",
- prop: "wlnCode",
- width: 180,
- },
- },
- {
- attrs: {
- label: "订单状态",
- prop: "status",
- width: 140,
- },
- render(val) {
- return proxy.dictKeyValue(val, proxy.useUserStore().allDict["order_status"]);
- },
- },
- {
- attrs: {
- label: "异常明细",
- slot: "exceptionTypeDetail",
- "min-width": 240,
- },
- },
- {
- attrs: {
- label: "异常时间",
- prop: "exceptionTime",
- width: 160,
- },
- },
- {
- attrs: {
- label: "操作",
- width: 200,
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return [
- ["1", "2", "3"].includes(row.exceptionType)
- ? {
- attrs: {
- label: "转为正常",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickNormalize(row);
- },
- }
- : {},
- // row.status == 0 || row.status == 10 || row.status == 20
- {
- attrs: {
- label: "删除",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- clickDelete(row);
- },
- },
- {
- attrs: {
- label: "重新同步",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickResynchronization(row);
- },
- },
- ];
- },
- },
- ];
- });
- const getDemandData = () => {
- proxy.post("/department/page", { pageNum: 1, pageSize: 999 }).then((res) => {
- if (res.rows && res.rows.length > 0) {
- departmentList.value = res.rows.map((item) => {
- return {
- dictKey: item.id,
- dictValue: item.name,
- };
- });
- }
- });
- proxy.post("/orderInfo/getExceptionTypeList", {}).then((res) => {
- if (res && res.length > 0) {
- exceptionTypeList.value = res.map((item) => {
- return {
- dictKey: item.key,
- dictValue: item.value,
- };
- });
- }
- });
- };
- getDemandData();
- const getList = async (req, status) => {
- if (status) {
- sourceList.value.pagination = {
- pageNum: sourceList.value.pagination.pageNum,
- pageSize: sourceList.value.pagination.pageSize,
- exception: "1",
- };
- } else {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- }
- loading.value = true;
- proxy.post("/orderInfo/page", sourceList.value.pagination).then((res) => {
- sourceList.value.data = res.rows;
- sourceList.value.pagination.total = res.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- getList();
- const clickReset = () => {
- getList("", true);
- };
- const clickCode = (row) => {
- proxy.$router.replace({
- path: "/order-detail",
- query: {
- detailId: row.id,
- text: "订单详情",
- random: proxy.random(),
- },
- });
- };
- const clickDelete = (row) => {
- ElMessageBox.confirm("你是否确认此操作", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- proxy.post("/orderInfo/deleteAndStore", { id: row.id }).then(() => {
- ElMessage({ message: "删除成功", type: "success" });
- getList();
- });
- })
- .catch(() => {});
- };
- const clickResynchronization = (row) => {
- ElMessageBox.confirm("你是否确认此操作", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- proxy.post("/orderInfo/deleteAndStore", { id: row.id }).then(() => {
- proxy.post("/orderHandle/resynchronization", { wlnCode: row.wlnCode }).then(() => {
- ElMessage({ message: "万里牛订单同步完成", type: "success" });
- getList();
- });
- });
- })
- .catch(() => {});
- };
- const clickNormalize = (row) => {
- proxy.post("/orderInfo/turnToRegularOrder", { id: row.id }).then(() => {
- ElMessage({ message: "操作成功", type: "success" });
- getList();
- });
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- :deep(.el-dialog) {
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
- .select-card {
- height: calc(100vh - 184px);
- overflow-y: auto;
- overflow-x: hidden;
- }
- </style>
|