123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- <template>
- <div class="app-container">
- <div v-if="showRecord">
- <!-- 筛选条件 -->
- <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="customerNumber">
- <el-input
- v-model="searchForm.customerNumber"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="经销商名称" prop="customerName">
- <el-input
- v-model="searchForm.customerName"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="关联钱包" prop="walletName">
- <el-input
- v-model="searchForm.walletName"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="总信用额度" prop="amount">
- <el-input
- v-model="searchForm.amount"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :lg="24">
- <el-form-item label="" class="fr">
- <el-button size="small" @click="clearFn">清空</el-button>
- <el-button size="small" type="primary" @click="searchFn"
- >搜索</el-button
- >
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </div>
- <!-- 按钮 -->
- <div class="btn-group clearfix">
- <div class="fr">
- <el-button type="primary" size="small" @click="exportList"
- >导出</el-button
- >
- <el-button type="primary" size="small">打印</el-button>
- </div>
- </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"
- type="index"
- width="100"
- 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="amount"
- min-width="160"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.usedCreditAmount + scope.row.freeCreditAmount }}
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="关联钱包"
- prop="name"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="操作"
- min-width="160"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <el-button
- type="text"
- class="textColor"
- @click="editFn(scope.row)"
- >设置额度</el-button
- >
- <el-button
- type="text"
- class="textColor"
- @click="recordFn(scope.row.customerWalletId)"
- >记录</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 分页
- <div class="fr">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-sizes="[10, 20, 30, 50]"
- :page-size="10"
- layout="total, sizes, prev, pager, next, jumper"
- :total="listTotal"
- >
- </el-pagination>
- </div> -->
- </div>
- </div>
- <CreditListDetail :recordsListId="recordsListId" v-else />
- <!-- 新增弹窗 -->
- <el-dialog
- title="经销商信用额度管理"
- :visible.sync="dialogForm"
- width="30%"
- :show-close="false"
- :close-on-click-modal="false"
- >
- <el-form
- ref="addForm"
- :rules="rules"
- :model="addForm"
- label-width="120px"
- >
- <el-form-item label="信用变更额度" prop="amount">
- <el-input v-model.number="addForm.amount"></el-input>
- </el-form-item>
- <el-form-item label="开始时间" prop="startTime">
- <el-date-picker
- class="selectStyle"
- v-model="addForm.startTime"
- type="datetime"
- placeholder="选择日期时间"
- default-time="00:00:00"
- value-format="yyyy-MM-dd HH:mm:ss"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item label="结束时间" prop="endTime">
- <el-date-picker
- class="selectStyle"
- v-model="addForm.endTime"
- type="datetime"
- placeholder="选择日期时间"
- default-time="00:00:00"
- value-format="yyyy-MM-dd HH:mm:ss"
- >
- </el-date-picker>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="cancelFn">取 消</el-button>
- <el-button type="primary" @click="addDataFn">确 定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- getCreditListEdit,
- getWalletCustomerList,
- } from "@/api/finance/credit_list";
- import CreditListDetail from "./components/credit_list-detail";
- import { downloadFiles } from "@/utils/util";
- export default {
- components: {
- CreditListDetail,
- },
- data() {
- return {
- // currentPage: 1, // 当前页码
- // pageSize: 10, // 每页数量
- // listTotal: 0, // 列表总数
- dataList: [], // 列表数据
- searchForm: {
- customerNumber: "",
- customerName: "",
- amount: "",
- walletName: "",
- }, //搜索表单
- listLoading: false, // 列表加载loading
- showRecord: true,
- dialogForm: false, //弹窗表单
- addForm: {
- startTime: "",
- endTime: "",
- amount: null,
- },
- data: null,
- recordsListId: {}, //记录
- rules: {
- startTime: [
- { required: true, message: "请选择开始时间", trigger: "blur" },
- ],
- endTime: [
- { required: true, message: "请选择结束时间", trigger: "blur" },
- ],
- amount: [
- {
- required: true,
- message: "请输入数字",
- type: "number",
- trigger: "blur",
- },
- ],
- customerId: [
- { required: true, message: "请选择经销商", trigger: "blur" },
- ],
- customerWalletId: [
- { required: true, message: "请选择钱包", trigger: "blur" },
- ],
- },
- };
- },
- created() {
- this.getDataList({ type: "COMMONLY" });
- },
- methods: {
- //设置额度
- editFn(value) {
- this.data = {
- customerId: value.customerId,
- customerWalletId: value.customerWalletId,
- };
- this.dialogForm = true;
- },
- //导出
- exportList() {
- let screenData = {
- amount: this.searchForm.amount,
- customerNumber: this.searchForm.customerNumber,
- customerName: this.searchForm.customerName,
- walletName: this.searchForm.walletName,
- };
- downloadFiles("/credit/exportData", screenData);
- },
- //清空
- clearFn() {
- this.$refs.searchForm.resetFields();
- },
- //搜索
- searchFn() {},
- // 更改每页数量
- handleSizeChange(val) {
- this.pageSize = val;
- this.currentPage = 1;
- this.getDataList({ pageNum: 1, pageSize: this.pageSize });
- },
- // 更改当前页
- handleCurrentChange(val) {
- this.currentPage = val;
- this.getDataList({ pageNum: val, pageSize: 10 });
- },
- //列表数据
- async getDataList(data) {
- const res = await getWalletCustomerList(data);
- console.log(res);
- this.dataList = res.data;
- },
- //确定
- async addDataFn() {
- await this.$refs.addForm.validate();
- await getCreditListEdit({ ...this.addForm, ...this.data });
- this.getDataList({ type: "COMMONLY" });
- this.$message.success("设置成功");
- this.dialogForm = false;
- },
- //取消
- async cancelFn() {
- await this.$refs.addForm.resetFields();
- this.dialogForm = false;
- },
- //记录
- recordFn(id) {
- console.log(id);
- this.recordsListId = id;
- this.showRecord = false;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .selectStyle {
- width: 100%;
- }
- </style>
|