123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <template>
- <div class="tenant">
- <div class="content">
- <byTable
- :source="sourceList.data"
- :pagination="sourceList.pagination"
- :config="config"
- :loading="loading"
- highlight-current-row
- :table-events="{
- select: selectRow,
- 'select-all': selectRow,
- }"
- :action-list="[
- {
- text: '采购',
- disabled: selectData.length === 0,
- action: () => clickPurchase(),
- },
- ]"
- @get-list="getList">
- <template #claimTime="{ item }">
- <div>
- <span v-if="item.claimTime">{{ item.claimTime }}</span>
- <span v-else>未到账</span>
- </div>
- </template>
- </byTable>
- </div>
- <el-dialog title="交接单" v-if="openAllFile" v-model="openAllFile" width="500">
- <div>
- <div v-for="(file, index) in rowData.fileList" :key="index" style="padding: 8px 0;">
- <a style="color: #409eff; cursor: pointer" @click="openFile(file.fileUrl)">{{ file.fileName }}</a>
- </div>
- </div>
- <template #footer>
- <el-button @click="openAllFile = false" size="large">关 闭</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { computed, ref } from "vue";
- import byTable from "@/components/byTable/index";
- const { proxy } = getCurrentInstance();
- const sourceList = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- keyword: "",
- },
- });
- const loading = ref(false);
- const config = computed(() => {
- return [
- {
- type: "selection",
- },
- {
- attrs: {
- label: "订单类型",
- prop: "orderType",
- width: 140,
- },
- },
- {
- attrs: {
- label: "外销合同编码",
- prop: "contractCode",
- width: 180,
- },
- },
- {
- attrs: {
- label: "合同到账时间",
- slot: "claimTime",
- width: 160,
- },
- },
- {
- attrs: {
- label: "业务员",
- prop: "userName",
- width: 140,
- },
- },
- {
- attrs: {
- label: "版本号",
- prop: "contractVersion",
- width: 100,
- },
- },
- {
- attrs: {
- label: "产品编码",
- prop: "productCode",
- width: 160,
- },
- },
- {
- attrs: {
- label: "产品名称",
- prop: "productName",
- "min-width": 220,
- },
- },
- {
- attrs: {
- label: "单位",
- prop: "productUnit",
- width: 140,
- },
- },
- {
- attrs: {
- label: "待采购数量",
- prop: "expendQuantity",
- width: 140,
- },
- },
- {
- attrs: {
- label: "交接单",
- width: 80,
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return [
- {
- attrs: {
- label: "查看",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- checkTheTransferSlip(row);
- },
- },
- ];
- },
- },
- {
- attrs: {
- label: "操作",
- width: 80,
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return [
- {
- attrs: {
- label: "采购",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickPurchase(row);
- },
- },
- ];
- },
- },
- ];
- });
- const getList = async (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy.post("/delivery/page", sourceList.value.pagination).then((res) => {
- sourceList.value.data = res.rows;
- sourceList.value.pagination.total = res.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- getList();
- const clickPurchase = (item) => {
- console.log(item, selectData.value);
- // proxy.$router.replace({
- // path: "/platform_manage/process/processApproval",
- // query: {
- // flowKey: "contract_flow",
- // flowName: "销售合同审批流程",
- // random: proxy.random(),
- // tenantType: "EHSD",
- // },
- // });
- };
- const selectData = ref([]);
- const selectRow = (data) => {
- selectData.value = data;
- };
- const rowData = ref({
- fileList: [],
- });
- const openAllFile = ref(false);
- const checkTheTransferSlip = (item) => {
- rowData.value = item;
- rowData.value.fileList = [];
- openAllFile.value = true;
- proxy.post("/fileInfo/getList", { businessIdList: [item.contractId] }).then((fileObj) => {
- rowData.value.fileList = fileObj[item.contractId] || [];
- });
- };
- const openFile = (path) => {
- window.open(path, "_blank");
- };
- </script>
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- .baseRow {
- min-height: 24px;
- border-top: 1px solid black;
- border-left: 1px solid black;
- }
- .contentRow {
- border-right: 1px solid black;
- line-height: 24px;
- padding-left: 4px;
- }
- </style>
|