123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489 |
- <template>
- <div class="refund pagePadding">
- <ex-table
- v-loading="loading"
- v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
- :table="table"
- :data="tableData"
- :columns="columns"
- :page="pageInfo"
- :size="size"
- @page-curr-change="handlePageChange"
- @page-size-change="handleSizeChange"
- @screen-reset="
- pageInfo.curr = 1;
- searchList();
- "
- @screen-submit="
- pageInfo.curr = 1;
- searchList();
- "
- >
- <template #table-header="{}">
- <div style="width: 100%">
- <el-row>
- <el-col :span="24" style="padding: 0 0 10px 80px">
- <el-col :span="12" style="width: 470px">
- <el-select
- v-model="code"
- multiple
- filterable
- remote
- :multiple-limit="1"
- reserve-keyword
- :size="searchSize"
- style="width: 100%"
- placeholder="公司名称"
- :remote-method="remoteMethod"
- :loading="selectLoading"
- @change="selectChange"
- >
- <el-option
- v-for="item in activeOptions"
- :key="item.companyNo"
- :label="item.companyName"
- :value="item.companyNo"
- />
- </el-select>
- </el-col>
- <el-col
- :span="4"
- style="width: 66px; float: right"
- v-if="powers.some((item) => item == '002')"
- >
- <el-button
- :size="searchSize"
- type="primary"
- style="float: right"
- @click="searchList"
- >
- 刷新
- </el-button>
- </el-col>
- <el-col
- :span="4"
- style="width: 66px; float: right"
- v-if="powers.some((item) => item == '024')"
- >
- <el-button
- type="warning"
- style="float: right"
- :size="searchSize"
- @click="restSearch"
- >
- 重置
- </el-button>
- </el-col>
- </el-col>
- <el-col :span="24">
- <el-col :span="4" style="width: 190px">
- <el-select
- :size="searchSize"
- v-model="parmValue.refund_status"
- placeholder="退款状态"
- style="width: 100%"
- @change="
- pageInfo.curr = 1;
- parmValue.page = 1;
- searchList();
- "
- >
- <el-option
- v-for="item in billType"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- >
- </el-option>
- </el-select>
- </el-col>
- <el-col :span="4" style="width: 290px; padding-left: 10px">
- <el-input
- :size="searchSize"
- placeholder="请输入资金编号"
- v-model="parmValue.relaNo"
- class="input-with-select"
- >
- <el-button
- slot="append"
- @click="searchList"
- icon="el-icon-search"
- ></el-button>
- </el-input>
- </el-col>
- <el-col
- :span="4"
- style="width: 80px; float: right"
- v-if="powers.some((item) => item == '003')"
- >
- <el-button
- type="success"
- :size="searchSize"
- style="float: right"
- @click="openModal('add', '003')"
- >
- 添加
- </el-button>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #refund_status="{ scope }">
- <el-tag
- :type="
- scope.row.refund_status == '4'
- ? 'success'
- : scope.row.refund_status == '5' || scope.row.refund_status == '6'
- ? 'danger'
- : 'warning'
- "
- size="mini"
- v-text="
- (
- billType.find((item) => item.code == scope.row.refund_status) ||
- {}
- ).name || '--'
- "
- ></el-tag>
- </template>
- <template #operation="{ scope }">
- <el-tooltip
- v-if="
- powers.some((item) => item == '028') &&
- scope.row.refund_status === '1'
- "
- class="item"
- effect="dark"
- content="业务审核"
- placement="top"
- >
- <i
- class="el-icon-finished tb-icon"
- @click="
- openModal(scope.row.refundNo, '028', scope.row.refund_status)
- "
- ></i>
- </el-tooltip>
- <el-tooltip
- v-if="
- powers.some((item) => item == '029') &&
- scope.row.refund_status === '2'
- "
- class="item"
- effect="dark"
- content="财务审核"
- placement="top"
- >
- <i
- class="el-icon-finished tb-icon"
- @click="
- openModal(scope.row.refundNo, '029', scope.row.refund_status)
- "
- ></i>
- </el-tooltip>
- <el-tooltip
- v-if="
- (powers.some((item) => item == '027') &&
- scope.row.refund_status !== '3') &&
- (scope.row.refund_status !== '4')
- "
- class="item"
- effect="dark"
- content="取消申请"
- placement="top"
- >
- <i
- class="el-icon-error tb-icon"
- @click="changeStatus(scope.row.refundNo)"
- ></i>
- </el-tooltip>
- </template>
- </ex-table>
- <no-auth v-else></no-auth>
- <!-- 新建 /详情 /审核-->
- <add-edit
- :id="modelId"
- :show-model="showModel"
- :is-detail="isDetail"
- :dstatus="dstatus"
- @refresh="searchList"
- @cancel="showModel = false"
- />
- </div>
- </template>
- <script>
- import ExTable from "@/components/ExTableNew.vue";
- import addEdit from "./addEdit";
- import asyncRequest from "@/apis/service/InvoiceSales/refund";
- import mixinPage from "@/mixins/elPaginationHandle";
- import { mapGetters } from "vuex";
- import resToken from "@/mixins/resToken";
- import urlConfig from "@/apis/url-config";
- export default {
- name: "refund",
- mixins: [mixinPage, resToken],
- components: {
- ExTable,
- addEdit,
- },
- computed: {
- //组件SIZE设置
- ...mapGetters(["tablebtnSize", "searchSize", "size"]),
- powers() {
- let tran =
- this.$store.getters.btnList.find(
- (item) => item.menu_route == "refund"
- ) || {};
- if (tran && tran.action && tran.action.length > 0) {
- return tran.action;
- } else {
- return [];
- }
- },
- },
- data() {
- return {
- showModel: false,
- isDetail: false,
- selection: [],
- invNo: "0",
- dstatus: "0",
- modelId: 0,
- selectLoading: false,
- billType: [
- {
- code: "1",
- name: "待业务审核",
- },
- {
- code: "2",
- name: "待财务审核",
- },
- {
- code: "3",
- name: "待资金认领完成",
- },
- {
- code: "4",
- name: "退款已完成",
- },
- {
- code: "5",
- name: "业务已驳回",
- },
- {
- code: "6",
- name: "财务已驳回",
- },
- ],
- activeOptions: [],
- name: "",
- downLoading: false,
- code: [],
- loading: true,
- formValue: {
- company: "", // 账户
- page: 1, // 页码
- size: 100, // 每页显示条数
- },
- fileUrl:
- urlConfig.baseURL +
- "%E5%8F%91%E7%A5%A8%E5%AF%BC%E5%85%A5%E6%A8%A1%E6%9D%BF.xls",
- parmValue: {
- companyNo: "",
- type: "1",
- page: 1, // 页码
- size: 15, // 每页显示条数
- relaNo: "",
- inv_type: "",
- back_type: "",
- refund_status: "",
- },
- // 表格 - 数据
- tableData: [],
- // 表格 - 参数
- table: {
- stripe: true,
- border: true,
- _defaultHeader_: ["setcol"],
- },
- // 表格 - 分页
- pageInfo: {
- size: 15,
- curr: 1,
- total: 0,
- },
- // 表格 - 列参数
- columns: [
- {
- prop: "refundNo",
- label: "退款编号",
- width: "180px",
- fixed: "left",
- },
- {
- prop: "traNo",
- label: "原资金编号",
- width: "180px",
- },
- {
- prop: "customerNo",
- label: "客户企业编码",
- width: "130px",
- },
- {
- prop: "customer",
- label: "客户企业名称",
- "min-width": "180px",
- },
- {
- prop: "refund_fee",
- label: "退款总额度",
- width: "120px",
- },
- {
- prop: "back_fee",
- label: "退款认领额度",
- width: "120px",
- },
- {
- prop: "apply_name",
- label: "申请人",
- width: "85px",
- },
- {
- prop: "refund_status",
- label: "退款状态",
- _slot_: "refund_status",
- width: "120px",
- },
- {
- prop: "addtime",
- label: "申请时间",
- sortable: true,
- width: "150px",
- },
- {
- prop: "",
- label: "操作",
- fixed: "right",
- _noset_: true,
- _slot_: "operation",
- },
- ],
- };
- },
- mounted() {
- this.searchList();
- },
- methods: {
- async selectChange() {
- let arr = JSON.parse(JSON.stringify(this.code));
- this.parmValue.companyNo = arr.join(",");
- this.parmValue.page = 1;
- await this.searchList();
- },
- restSearch() {
- // 表格 - 分页
- this.pageInfo = {
- size: 15,
- curr: 1,
- total: 0,
- };
- this.parmValue = {
- companyNo: "",
- type: "1",
- page: 1, // 页码
- size: 15, // 每页显示条数
- relaNo: "",
- inv_type: "",
- back_type: "",
- refund_status: "",
- };
- this.searchList();
- },
- // 新建/编辑/详情
- openModal(id, isDetail, status) {
- this.modelId = id;
- this.dstatus = status;
- console.log(this.dstatus);
- this.isDetail = isDetail;
- this.showModel = true;
- },
- /**
- * 取消申请
- * @param {String} refundNo refundNo
- */
- async changeStatus(refundNo) {
- await this.$confirm(`确定要取消申请?`, {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(async () => {
- const model = {
- refundNo: refundNo,
- };
- const res = await asyncRequest.delete(model);
- if (res && res.code === 0) {
- this.$notify.success({
- title: "申请取消成功",
- message: "",
- });
- this.searchList();
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- })
- .catch(() => {
- console.log("取消");
- });
- },
- // 刷新表格
- async searchList() {
- this.loading = true;
- const res = await asyncRequest.list(this.parmValue);
- if (res && res.code === 0 && res.data) {
- this.tableData = res.data.list;
- this.pageInfo.total = Number(res.data.count);
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.tableData = [];
- this.pageInfo.total = 0;
- }
- this.loading = false;
- },
- async remoteMethod(query) {
- this.selectLoading = true;
- if (query !== "") {
- this.activeOptions = [];
- this.formValue.company = query;
- const res = await asyncRequest.clist(this.formValue);
- if (res && res.code === 0 && res.data && res.data.list) {
- this.activeOptions = res.data.list;
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- this.activeOptions = [];
- }
- this.selectLoading = false;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
|