123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- <template>
- <div>
- <el-card class="box-card">
- <byTable
- :source="sourceList.data"
- :pagination="sourceList.pagination"
- :config="config"
- :loading="loading"
- :searchConfig="searchConfig"
- highlight-current-row
- :action-list="[
- {
- text: '新建订单',
- action: () => clickAddOrder(),
- },
- ]"
- @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 #totalAmount="{ item }">
- <div style="color: #409eff">{{ moneyFormat(item.totalAmount) }}</div>
- </template>
- <template #address="{ item }">
- <div>{{ item.province }}, {{ item.city }}, {{ item.county }}, {{ item.detailedAddress }}</div>
- </template>
- </byTable>
- </el-card>
- </div>
- </template>
- <script setup>
- import byTable from "@/components/byTable/index";
- import { ElMessage, ElMessageBox } from "element-plus";
- const { proxy } = getCurrentInstance();
- const sourceList = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- departmentId: proxy.useUserStore().user.dept.deptId,
- code: "",
- wlnCode: "",
- status: "",
- settlementStatus: "",
- exception: "0",
- },
- });
- const loading = ref(false);
- const searchConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "code",
- label: "订单号",
- },
- {
- type: "input",
- prop: "wlnCode",
- label: "万里牛单号",
- },
- {
- type: "select",
- prop: "status",
- dictKey: "order_status",
- label: "订单状态",
- },
- {
- type: "select",
- prop: "settlementStatus",
- label: "结算状态",
- data: proxy.useUserStore().allDict["settlement_status"],
- },
- ];
- });
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "事业部",
- prop: "departmentName",
- width: 120,
- },
- },
- {
- attrs: {
- label: "订单号",
- slot: "code",
- width: 200,
- },
- },
- {
- attrs: {
- label: "万里牛单号",
- prop: "wlnCode",
- width: 160,
- },
- },
- {
- attrs: {
- label: "快递单号",
- prop: "expressDeliveryCode",
- width: 140,
- },
- },
- {
- attrs: {
- label: "订单状态",
- prop: "status",
- width: 120,
- },
- render(val) {
- return proxy.dictKeyValue(val, proxy.useUserStore().allDict["order_status"]);
- },
- },
- {
- attrs: {
- label: "结算状态",
- prop: "settlementStatus",
- width: 120,
- },
- render(val) {
- return proxy.dictKeyValue(val, proxy.useUserStore().allDict["settlement_status"]);
- },
- },
- {
- attrs: {
- label: "税率",
- prop: "taxRate",
- width: 80,
- },
- render(val) {
- return val + "%";
- },
- },
- {
- attrs: {
- label: "订单总金额 ¥",
- slot: "totalAmount",
- width: 120,
- align: "right",
- },
- },
- {
- attrs: {
- label: "产品总金额 ¥",
- prop: "productTotalAmount",
- width: 120,
- align: "right",
- },
- render(val) {
- return proxy.moneyFormat(val);
- },
- },
- {
- attrs: {
- label: "定制加工费 ¥",
- prop: "customProcessingFee",
- width: 120,
- align: "right",
- },
- render(val) {
- return proxy.moneyFormat(val);
- },
- },
- {
- attrs: {
- label: "代发费 ¥",
- prop: "lssueFee",
- width: 120,
- align: "right",
- },
- render(val) {
- return proxy.moneyFormat(val);
- },
- },
- {
- attrs: {
- label: "快递包材费 ¥",
- prop: "deliveryMaterialsFee",
- width: 120,
- align: "right",
- },
- render(val) {
- return proxy.moneyFormat(val);
- },
- },
- {
- attrs: {
- label: "包装人工费 ¥",
- prop: "packingLabor",
- width: 120,
- align: "right",
- },
- render(val) {
- return proxy.moneyFormat(val);
- },
- },
- {
- attrs: {
- label: "包材费 ¥",
- prop: "packagingMaterialCost",
- width: 120,
- align: "right",
- },
- render(val) {
- return proxy.moneyFormat(val);
- },
- },
- {
- attrs: {
- label: "管理费 ¥",
- prop: "managementFee",
- width: 120,
- align: "right",
- },
- render(val) {
- return proxy.moneyFormat(val);
- },
- },
- {
- attrs: {
- label: "交期",
- prop: "deliveryTime",
- width: 160,
- align: "center",
- },
- },
- {
- attrs: {
- label: "发货时间",
- prop: "shippingTime",
- width: 160,
- align: "center",
- },
- },
- {
- attrs: {
- label: "收货人",
- prop: "consignee",
- width: 140,
- },
- },
- {
- attrs: {
- label: "收货人电话",
- prop: "consigneeNumber",
- width: 140,
- },
- },
- {
- attrs: {
- label: "收货人地址",
- slot: "address",
- width: 220,
- },
- },
- {
- attrs: {
- label: "操作",
- width: 160,
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return [
- row.status == 10
- ? {
- attrs: {
- label: "上传设计稿",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickUpload(row);
- },
- }
- : {},
- row.status == 0
- ? {
- attrs: {
- label: "编辑",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickUpdate(row);
- },
- }
- : {},
- row.status == 10
- ? {
- attrs: {
- label: "删除",
- type: "danger",
- text: true,
- },
- el: "button",
- click() {
- clickDelete(row);
- },
- }
- : {},
- ];
- },
- },
- ];
- });
- const getList = async (req, status) => {
- if (status) {
- sourceList.value.pagination = {
- pageNum: sourceList.value.pagination.pageNum,
- pageSize: sourceList.value.pagination.pageSize,
- };
- } 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 clickAddOrder = () => {
- proxy.$router.replace({
- path: "/addOrder",
- query: {
- random: proxy.random(),
- },
- });
- };
- const clickCode = (row) => {
- proxy.$router.replace({
- path: "/addOrder",
- query: {
- detailId: row.id,
- text: "订单详情",
- random: proxy.random(),
- },
- });
- };
- const clickDelete = (row) => {
- ElMessageBox.confirm("你是否确认此操作", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- proxy.post("/orderInfo/delete", { id: row.id }).then(() => {
- ElMessage({ message: "删除成功", type: "success" });
- getList();
- });
- })
- .catch(() => {});
- };
- const clickUpdate = (row) => {
- proxy.$router.replace({
- path: "/addOrder",
- query: {
- id: row.id,
- text: "编辑订单",
- random: proxy.random(),
- },
- });
- };
- const clickUpload = (row) => {
- proxy.$router.replace({
- path: "/design-draft",
- query: {
- id: row.id,
- random: proxy.random(),
- },
- });
- };
- </script>
- <style lang="scss" scoped>
- :deep(.el-dialog) {
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
- </style>
|