123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <template>
- <div>
- <div class="sty">
- <el-page-header @back="goBack" content="销售返利单"> </el-page-header>
- </div>
- <el-divider></el-divider>
- <!-- 表头 -->
- <div>
- <el-form ref="searchForm" :model="searchForm" label-width="100px" size="small" label-position="left">
- <el-row :gutter="20">
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="返利单号" prop="">
- <el-input disabled v-model="searchForm.rebateOrderId" placeholder=""></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="返利日期" prop="">
- <el-input disabled v-model="searchForm.theTime" placeholder=""></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="备注" prop="">
- <el-input disabled v-model="searchForm.remark" placeholder=""></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="制单人" prop="">
- <el-input disabled v-model="searchForm.createBy" placeholder=""></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="制单日期" prop="">
- <el-input disabled v-model="searchForm.createTime" placeholder=""></el-input>
- </el-form-item>
- </el-col>
- <!-- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="审批人" prop="">
- <el-input placeholder=""></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="审批日期" prop="">
- <el-input placeholder=""></el-input>
- </el-form-item>
- </el-col> -->
- </el-row>
- </el-form>
- </div>
- <!-- 列表 -->
- <div class="mymain-container">
- <div class="table">
- <el-table v-loading="listLoading" :data="dataList" element-loading-text="Loading" border fit highlight-current-row stripe>
- <el-table-column label="序号" align="center" width="100" type="index" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="经销商编码" prop="customerNumber" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="经销商名称" prop="customerName" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="返利类型" prop="walletName" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="返利总金额" prop="amount" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="暂扣返利" prop="withholdAmount" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="政策文件流水号" prop="policyFileNo" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="政策文号" prop="policyDocNo" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="政策年份" prop="policyYear" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="政策月份" prop="policyMonth" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="政策归属部门" prop="policyOrg" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="客户区域" prop="customerArea" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="客户属性" prop="customerAttr" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="奖励实际归属客户" prop="rewardActualCustomers" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="备注1" prop="remark1" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="备注2" prop="remark2" min-width="160" show-overflow-tooltip></el-table-column>
- </el-table>
- </div>
- </div>
- <!-- <div v-if="isShow">
- <span>审批记录</span>
- <el-divider></el-divider>
- <div class="diy-table-1">
- <el-row :gutter="0">
- <el-col :span="12" class="item">
- <div class="label">审批人</div>
- <div class="value">{{ examineBy }}</div>
- </el-col>
- <el-col :span="12" class="item">
- <div class="label">审批结果</div>
- <div class="value">
- <el-radio v-model="examineStatus" label="OK">通过</el-radio>
- <el-radio v-model="examineStatus" label="FAIL">驳回</el-radio>
- </div>
- </el-col>
- <el-col :span="24" class="item">
- <div class="label">审批说明</div>
- <div class="value">
- <el-input
- v-model="examineRemark"
- placeholder="请输入内容"
- ></el-input>
- </div>
- </el-col>
- </el-row>
- </div>
- </div> -->
- </div>
- </template>
- <script>
- import { getRebateOrderDetail } from "@/api/finance/rebate_list";
- export default {
- props: {
- detailId: {
- type: String,
- required: true,
- },
- },
- data() {
- return {
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- dataList: [], // 列表数据
- searchForm: {}, //搜索表单
- listLoading: false, // 列表加载loading
- examineBy: "",
- examineRemark: "",
- examineStatus: "",
- isShow: false,
- };
- },
- created() {
- this.getDataList();
- },
- methods: {
- goBack() {
- this.$parent.showPage = 1;
- },
- //获取详情数据
- async getDataList() {
- let res = await getRebateOrderDetail({ id: this.detailId });
- console.log(res, 11111);
- this.searchForm.rebateOrderId = res.data.id;
- this.searchForm.theTime = res.data.theTime;
- this.searchForm.createBy = res.data.createBy;
- this.searchForm.createTime = res.data.createTime;
- this.searchForm.remark = res.data.remark;
- this.dataList = res.data.items;
- this.examineBy = res.data.examineBy;
- this.examineRemark = res.data.examineRemark;
- // if (
- // res.data.examineStatus == "SAVE" ||
- // res.data.examineStatus == "WAIT"
- // ) {
- // this.isShow = false;
- // }
- },
- },
- };
- </script>
- <style></style>
|