|
@@ -1,16 +1,498 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="app-container">
|
|
<div class="app-container">
|
|
|
- <doc-alert title="【商机】商机管理、商机状态" url="https://doc.iocoder.cn/crm/business/" />
|
|
|
|
|
- <doc-alert title="【通用】数据权限" url="https://doc.iocoder.cn/crm/permission/" />
|
|
|
|
|
-
|
|
|
|
|
- <el-link type="danger" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
|
|
|
|
- 该功能支持 Vue3 + element-plus 版本!
|
|
|
|
|
- </el-link>
|
|
|
|
|
- <br />
|
|
|
|
|
- <el-text>
|
|
|
|
|
- 可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/crm/business/index.vue 代码,pull request 贡献给我们!
|
|
|
|
|
- </el-text>
|
|
|
|
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
+ <el-form-item label="付款标题" prop="paymentTitle">
|
|
|
|
|
+ <el-input v-model="queryParams.paymentTitle" placeholder="请输入付款标题" clearable style="width: 250px"
|
|
|
|
|
+ @keyup.enter.native="handleQuery" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="付款编号" prop="paymentInfoUuid">
|
|
|
|
|
+ <el-input v-model="queryParams.paymentInfoUuid" placeholder="请输入付款编号" clearable style="width: 250px"
|
|
|
|
|
+ @keyup.enter.native="handleQuery" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="创建人" prop="creatorName">
|
|
|
|
|
+ <el-input v-model="queryParams.creatorName" placeholder="创建人" clearable style="width: 250px"
|
|
|
|
|
+ @keyup.enter.native="handleQuery" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="付款日期" prop="paymentDate">
|
|
|
|
|
+ <el-date-picker v-model="queryParams.paymentDate" style="width: 250px" value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
+ type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"
|
|
|
|
|
+ :default-time="['00:00:00', '23:59:59']" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item>
|
|
|
|
|
+ <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
+ <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+
|
|
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
|
|
|
|
+ v-hasPermi="['cash:payment-info:create']">新增</el-button>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button type="warning" icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
|
|
|
|
|
+ v-hasPermi="['cash:payment-info:export']">导出</el-button>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+
|
|
|
|
|
+ <el-table v-loading="loading" :data="dataList">
|
|
|
|
|
+ <el-table-column label="付款标题" align="center" prop="paymentTitle" min-width="150" />
|
|
|
|
|
+ <el-table-column label="付款编号" align="center" prop="paymentInfoUuid" min-width="250" />
|
|
|
|
|
+ <el-table-column label="付款日期" align="center" prop="paymentDate" min-width="100" />
|
|
|
|
|
+ <el-table-column label="付款金额" align="center" prop="paymentMoney" min-width="100" />
|
|
|
|
|
+ <el-table-column label="创建人" align="center" prop="creatorName" min-width="80" />
|
|
|
|
|
+ <el-table-column label="创建时间" align="center" prop="createTime" min-width="150">
|
|
|
|
|
+ <template v-slot="scope">
|
|
|
|
|
+ <span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" min-width="150">
|
|
|
|
|
+ <template v-slot="scope">
|
|
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
|
|
+ v-hasPermi="['cash:payment-info:update']">修改</el-button>
|
|
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
|
|
+ v-hasPermi="['cash:payment-info:delete']">删除</el-button>
|
|
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-detail" @click="handleDetail(scope.row)">详情</el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ </el-table>
|
|
|
|
|
+
|
|
|
|
|
+ <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
|
|
|
|
+ @pagination="getList" />
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 添加或修改对话框 -->
|
|
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
|
|
+ <el-row>
|
|
|
|
|
+ <el-col :span="24">
|
|
|
|
|
+ <el-form-item label="付款标题" prop="paymentTitle">
|
|
|
|
|
+ <el-input maxlength="20" v-model="form.paymentTitle" placeholder='请输入付款标题'></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="24">
|
|
|
|
|
+ <el-form-item label="付款日期" prop="paymentDate">
|
|
|
|
|
+ <el-date-picker value-format="yyyy-MM-dd" v-model="form.paymentDate" type="date" placeholder="选择日期"
|
|
|
|
|
+ style="width: 100%;">
|
|
|
|
|
+ </el-date-picker>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="24">
|
|
|
|
|
+ <el-form-item label="付款金额" prop="paymentMoney">
|
|
|
|
|
+ <el-input v-model="form.paymentMoney" placeholder='预估费用' oninput="value=value.match(/\d+\.?\d{0,2}/,'')"></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="24">
|
|
|
|
|
+ <el-form-item label="收款信息" prop="payee">
|
|
|
|
|
+ <el-input maxlength="200" rows="4" show-word-limit type="textarea" v-model="form.payee"
|
|
|
|
|
+ placeholder="请输入收款方信息" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="24">
|
|
|
|
|
+ <el-form-item label="付款事由" prop="reason">
|
|
|
|
|
+ <el-input maxlength="50" rows="2" show-word-limit type="textarea" v-model="form.reason"
|
|
|
|
|
+ placeholder="请输入付款事由" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="24">
|
|
|
|
|
+ <el-form-item label="附件">
|
|
|
|
|
+ <el-upload :action="fileUrl" :headers="headers" :file-list="files" :on-success="handleFileSuccessCite"
|
|
|
|
|
+ :before-upload="beforeUploadFile" :on-remove="handleRemove">
|
|
|
|
|
+ <el-button size="small" type="primary">点击上传</el-button>
|
|
|
|
|
+ </el-upload>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="24">
|
|
|
|
|
+ <el-form-item label="备注">
|
|
|
|
|
+ <el-input maxlength="200" rows="4" show-word-limit type="textarea" v-model="form.remarks"
|
|
|
|
|
+ placeholder="请输入" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+ <!-- 详情对话框 -->
|
|
|
|
|
+ <el-dialog :title="title" :visible.sync="openDetail" width="800px" append-to-body>
|
|
|
|
|
+ <div class="widget-wrapper">
|
|
|
|
|
+ <div class="widget-list">
|
|
|
|
|
+ <div class="fx-field x-grid-col-12">
|
|
|
|
|
+ <div class="field-label">
|
|
|
|
|
+ <span class="field-required">*</span>
|
|
|
|
|
+ <div class="field-name">付款标题</div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="field-component">
|
|
|
|
|
+ <span :title="form.paymentTitle">{{ form.paymentTitle }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="fx-field x-grid-col-12">
|
|
|
|
|
+ <div class="field-label">
|
|
|
|
|
+ <span class="field-required">*</span>
|
|
|
|
|
+ <div class="field-name">付款日期</div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="field-component">
|
|
|
|
|
+ <span :title="form.paymentDate">{{ form.paymentDate }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="fx-field x-grid-col-12">
|
|
|
|
|
+ <div class="field-label">
|
|
|
|
|
+ <span class="field-required">*</span>
|
|
|
|
|
+ <div class="field-name">付款金额</div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="field-component">
|
|
|
|
|
+ <span :title="form.paymentMoney">{{ form.paymentMoney }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <div class="fx-field x-grid-col-12">
|
|
|
|
|
+ <div class="field-label">
|
|
|
|
|
+ <span class="field-required">*</span>
|
|
|
|
|
+ <div class="field-name">收款方信息</div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="field-component">
|
|
|
|
|
+ <span :title="form.payee">{{ form.payee }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="fx-field x-grid-col-12">
|
|
|
|
|
+ <div class="field-label">
|
|
|
|
|
+ <span class="field-required">*</span>
|
|
|
|
|
+ <div class="field-name">付款事由</div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="field-component">
|
|
|
|
|
+ <span :title="form.reason">{{ form.reason }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="fx-field x-grid-col-12">
|
|
|
|
|
+ <div class="field-label">
|
|
|
|
|
+ <div class="field-name">附件</div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="field-component">
|
|
|
|
|
+ <div v-for="(item, index) in form.fileList" :key="index">
|
|
|
|
|
+ <a :href="item.url" target="_blank" :title="item.name" style="color: #5094d5;">{{ item.name }}</a>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="fx-field x-grid-col-12">
|
|
|
|
|
+ <div class="field-label">
|
|
|
|
|
+ <div class="field-name">备注</div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="field-component">
|
|
|
|
|
+ <span :title="form.remarks">{{ form.remarks }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+
|
|
|
<script>
|
|
<script>
|
|
|
|
|
+import { listSimplePosts } from "@/api/system/post";
|
|
|
|
|
+import { listPaymentInfo, getPaymentInfo, delPaymentInfo, addPaymentInfo, updatePaymentInfo, exportPaymentInfo } from "@/api/finance/cash/paymentInfo";
|
|
|
|
|
+import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
|
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
+import { listDept } from "@/api/system/dept";
|
|
|
|
|
+import { getBaseHeader } from "@/utils/request";
|
|
|
|
|
+export default {
|
|
|
|
|
+ name: "SystemDictType",
|
|
|
|
|
+ components: {
|
|
|
|
|
+ Treeselect,
|
|
|
|
|
+ },
|
|
|
|
|
+ data() {
|
|
|
|
|
+ return {
|
|
|
|
|
+ files: [],
|
|
|
|
|
+ // 设置上传的请求头部
|
|
|
|
|
+ headers: getBaseHeader(),
|
|
|
|
|
+ // 上传的地址
|
|
|
|
|
+ fileUrl: process.env.VUE_APP_BASE_API + '/admin-api/infra/file/uploaData',
|
|
|
|
|
+ // 遮罩层
|
|
|
|
|
+ loading: true,
|
|
|
|
|
+ // 导出遮罩层
|
|
|
|
|
+ exportLoading: false,
|
|
|
|
|
+ // 显示搜索条件
|
|
|
|
|
+ showSearch: true,
|
|
|
|
|
+ // 总条数
|
|
|
|
|
+ total: 0,
|
|
|
|
|
+ // 字典表格数据
|
|
|
|
|
+ dataList: [],
|
|
|
|
|
+ // 弹出层标题
|
|
|
|
|
+ title: "",
|
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
|
+ open: false,
|
|
|
|
|
+ openDetail: false,
|
|
|
|
|
+ // 查询参数
|
|
|
|
|
+ queryParams: {
|
|
|
|
|
+ pageNo: 1,
|
|
|
|
|
+ pageSize: 10,
|
|
|
|
|
+ paymentTitle: undefined,
|
|
|
|
|
+ paymentInfoUuid: undefined,
|
|
|
|
|
+ creatorName: undefined,
|
|
|
|
|
+ paymentDate: [],
|
|
|
|
|
+ },
|
|
|
|
|
+ // 表单参数
|
|
|
|
|
+ form: {},
|
|
|
|
|
+ // 表单校验
|
|
|
|
|
+ rules: {
|
|
|
|
|
+ paymentTitle: [
|
|
|
|
|
+ { required: true, message: '请输入付款标题', trigger: 'blur' },
|
|
|
|
|
+ ],
|
|
|
|
|
+ paymentDate: [
|
|
|
|
|
+ { required: true, message: '请选择付款日期', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ paymentMoney: [
|
|
|
|
|
+ { required: true, message: '请输入金额', trigger: 'blur' },
|
|
|
|
|
+ {
|
|
|
|
|
+ pattern: /^(([1-9]{1}\d{0,9})|(0{1}))(\.\d{1,2})?$/,
|
|
|
|
|
+ message: "请输入合法的金额数字,最多两位小数",
|
|
|
|
|
+ trigger: "blur"
|
|
|
|
|
+ }
|
|
|
|
|
+ ],
|
|
|
|
|
+ payee: [
|
|
|
|
|
+ { required: true, message: '请输入收款方信息', trigger: 'blur' },
|
|
|
|
|
+ ],
|
|
|
|
|
+ reason: [
|
|
|
|
|
+ { required: true, message: '请输入付款事由', trigger: 'blur' },
|
|
|
|
|
+ ],
|
|
|
|
|
+ },
|
|
|
|
|
+ };
|
|
|
|
|
+ },
|
|
|
|
|
+ created() {
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ },
|
|
|
|
|
+ methods: {
|
|
|
|
|
+ handleRemove(file, fileList) {
|
|
|
|
|
+ console.log(file, fileList);
|
|
|
|
|
+ let fileIds = [];
|
|
|
|
|
+ for (let i in fileList) {
|
|
|
|
|
+ let id = fileList[i].response.data.id;
|
|
|
|
|
+ fileIds.push(id);
|
|
|
|
|
+ }
|
|
|
|
|
+ this.form.fileIdList = fileIds;
|
|
|
|
|
+ },
|
|
|
|
|
+ beforeUploadFile(file) {
|
|
|
|
|
+ console.log(file);
|
|
|
|
|
+ const size = file.size / 1024 / 1024;
|
|
|
|
|
+ console.log(size);
|
|
|
|
|
+ if (size > 5) {
|
|
|
|
|
+ this.$message.error("文件大小不能超过5MB!");
|
|
|
|
|
+ return false;
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ handleFileSuccessCite(res, file, fileList) {
|
|
|
|
|
+ console.log(file, fileList);
|
|
|
|
|
+ console.log("------", "==========");
|
|
|
|
|
+ console.log("res = ", res);
|
|
|
|
|
+
|
|
|
|
|
+ let fileIds = [];
|
|
|
|
|
+ for (let i in fileList) {
|
|
|
|
|
+ let response = fileList[i].response;
|
|
|
|
|
+ if (response.errno && response.errno != "0") {
|
|
|
|
|
+ this.$message.error("该文件上传失败,已被移除,请重新上传!");
|
|
|
|
|
+ // 上传失败移除该 file 对象
|
|
|
|
|
+ fileList.splice(i, 1);
|
|
|
|
|
+ } else {
|
|
|
|
|
+ let id = fileList[i].response.data.id;
|
|
|
|
|
+ fileIds.push(id);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ this.form.fileIdList = fileIds;
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 查询列表 */
|
|
|
|
|
+ getList() {
|
|
|
|
|
+ this.loading = true;
|
|
|
|
|
+ // 执行查询
|
|
|
|
|
+ listPaymentInfo(this.queryParams).then(response => {
|
|
|
|
|
+ this.dataList = response.data.list;
|
|
|
|
|
+ this.total = response.data.total;
|
|
|
|
|
+ this.loading = false;
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ // 取消按钮
|
|
|
|
|
+ cancel() {
|
|
|
|
|
+ this.open = false;
|
|
|
|
|
+ this.reset();
|
|
|
|
|
+ },
|
|
|
|
|
+ // 表单重置
|
|
|
|
|
+ reset() {
|
|
|
|
|
+ this.form = {
|
|
|
|
|
+ paymentTitle: undefined,
|
|
|
|
|
+ customerId: undefined,
|
|
|
|
|
+ contractId: undefined,
|
|
|
|
|
+ contractCode: undefined,
|
|
|
|
|
+ paymentDate: undefined,
|
|
|
|
|
+ paymentMoney: undefined,
|
|
|
|
|
+ refundCycle: undefined,
|
|
|
|
|
+ overdueDay: undefined,
|
|
|
|
|
+ fileIdList: undefined,
|
|
|
|
|
+ remarks: undefined,
|
|
|
|
|
+ };
|
|
|
|
|
+ this.resetForm("form");
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 搜索按钮操作 */
|
|
|
|
|
+ handleQuery() {
|
|
|
|
|
+ this.queryParams.pageNo = 1;
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 重置按钮操作 */
|
|
|
|
|
+ resetQuery() {
|
|
|
|
|
+ this.resetForm("queryForm");
|
|
|
|
|
+ this.handleQuery();
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 新增按钮操作 */
|
|
|
|
|
+ handleAdd() {
|
|
|
|
|
+ this.reset();
|
|
|
|
|
+ this.open = true;
|
|
|
|
|
+ this.title = "添加";
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ /** 详情按钮操作 */
|
|
|
|
|
+ handleDetail(row) {
|
|
|
|
|
+ this.reset();
|
|
|
|
|
+ const id = row.id;
|
|
|
|
|
+ getPaymentInfo(id).then(response => {
|
|
|
|
|
+ this.form = response.data;
|
|
|
|
|
+ this.openDetail = true;
|
|
|
|
|
+ this.title = "详情";
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 修改按钮操作 */
|
|
|
|
|
+ handleUpdate(row) {
|
|
|
|
|
+ this.reset();
|
|
|
|
|
+ const id = row.id;
|
|
|
|
|
+ getPaymentInfo(id).then(response => {
|
|
|
|
|
+ let files = response.data.fileList;
|
|
|
|
|
+ if (files) {
|
|
|
|
|
+ this.files = [];
|
|
|
|
|
+ for (let i in files) {
|
|
|
|
|
+ let url = files[i].url;
|
|
|
|
|
+ let name = files[i].name;
|
|
|
|
|
+ let id = files[i].id;
|
|
|
|
|
+
|
|
|
|
|
+ this.files.push({
|
|
|
|
|
+ name: name,
|
|
|
|
|
+ url: url,
|
|
|
|
|
+ response: { error: "0", data: { url: url, id: id } },
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ this.form = response.data;
|
|
|
|
|
+ this.open = true;
|
|
|
|
|
+ this.title = "修改";
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 提交按钮 */
|
|
|
|
|
+ submitForm: function () {
|
|
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
|
|
+ if (valid) {
|
|
|
|
|
+ if (this.form.id !== undefined) {
|
|
|
|
|
+ updatePaymentInfo(this.form).then(response => {
|
|
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
|
|
+ this.open = false;
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ });
|
|
|
|
|
+ } else {
|
|
|
|
|
+ addPaymentInfo(this.form).then(response => {
|
|
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
|
|
+ this.open = false;
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
|
+ handleDelete(row) {
|
|
|
|
|
+ const ids = row.id || this.ids;
|
|
|
|
|
+ this.$modal.confirm('是否确认删除数据项?').then(function () {
|
|
|
|
|
+ return delPaymentInfo(ids);
|
|
|
|
|
+ }).then(() => {
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
|
|
+ }).catch(() => { });
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
|
+ handleExport() {
|
|
|
|
|
+ // 处理查询参数
|
|
|
|
|
+ let params = { ...this.queryParams };
|
|
|
|
|
+ params.pageNo = undefined;
|
|
|
|
|
+ params.pageSize = undefined;
|
|
|
|
|
+ // 执行导出
|
|
|
|
|
+ this.$modal.confirm('是否确认导出所有数据项?').then(() => {
|
|
|
|
|
+ this.exportLoading = true;
|
|
|
|
|
+ return exportPaymentInfo(params);
|
|
|
|
|
+ }).then(response => {
|
|
|
|
|
+ this.$download.excel(response, '付款信息.xls');
|
|
|
|
|
+ this.exportLoading = false;
|
|
|
|
|
+ }).catch(() => { });
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+};
|
|
|
</script>
|
|
</script>
|
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
|
+.widget-wrapper>.widget-list {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.x-grid-col-6 {
|
|
|
|
|
+ width: 50%;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.x-grid-col-12 {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.fx-field {
|
|
|
|
|
+ line-height: 20px;
|
|
|
|
|
+ padding: 7px 12px 12px;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.fx-field .field-label {
|
|
|
|
|
+ word-wrap: break-word;
|
|
|
|
|
+ color: #141e31;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ line-height: 20px;
|
|
|
|
|
+ padding: 5px 0;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ word-break: break-word;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.fx-field .field-label .field-required {
|
|
|
|
|
+ color: #eb5050;
|
|
|
|
|
+ margin-left: -6px;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.fx-field .field-label .field-name {
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.field-component {
|
|
|
|
|
+ word-wrap: break-word;
|
|
|
|
|
+ background: #f5f6f8;
|
|
|
|
|
+ border-radius: 2px;
|
|
|
|
|
+ color: #141e31;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ line-height: 20px;
|
|
|
|
|
+ min-height: 32px;
|
|
|
|
|
+ padding: 6px 8px;
|
|
|
|
|
+ white-space: pre-wrap;
|
|
|
|
|
+ word-break: break-word;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+ul {
|
|
|
|
|
+ padding-left: 0px !important;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.el-tag+.el-tag {
|
|
|
|
|
+ margin-left: 10px;
|
|
|
|
|
+}
|
|
|
|
|
+</style>
|