| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <div class="ele-border-lighter form-content" v-loading="loading">
- <search-form @search="reload"> </search-form>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 375px)"
- full-height="calc(100vh - 116px)"
- tool-class="ele-toolbar-form"
- :selection.sync="selection"
- :page-size="20"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openEdit('add', {})"
- >
- 新增
- </el-button>
- </template>
- <template v-slot:ruleState="{ row }">
- <el-switch
- v-model="row.ruleState"
- active-color="#13ce66"
- inactive-color="#ff4949"
- active-value="1"
- inactive-value="0"
- @change="(val) => handleStatus(row, val)"
- >
- </el-switch>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-view"
- @click="openDetail(row)"
- >
- 详情
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit('edit', row)"
- >
- 修改
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此信息吗?"
- @confirm="remove([row.id])"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- </ele-pro-table>
- </div>
- </el-card>
- <add-dialog ref="addDialogRef" conditionType="rules" @done="reload"></add-dialog>
- </div>
- </template>
- <script>
- import searchForm from './components/searchForm.vue';
- import addDialog from './components/addDialog.vue';
- import tabMixins from '@/mixins/tableColumnsMixin';
- import {
- getTableList,
- deleteInformation,
- updateRuleState
- } from '@/api/rulesManagement/receiveTerms';
- import { calcReceiveDateTypeOp, payConfirmTypeOp, dateUnitOptions } from '@/enum/dict';
- export default {
- mixins: [tabMixins],
- components: {
- searchForm,
- addDialog
- },
- data() {
- return {
- selection: [],
- loading: false,
- columns: [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center'
- },
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '编码',
- align: 'center',
- // sortable: true,
- showOverflowTooltip: true,
- minWidth: 160
- },
- {
- prop: 'name',
- label: '收款条件名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 160
- },
- {
- prop: 'dateType',
- label: '收款日计算日期',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 160,
- formatter: (row) => {
- return calcReceiveDateTypeOp.find(item => item.value === row.dateType)?.label || '';
- }
- },
- {
- prop: 'rulesTypePOList',
- label: '支付方式',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140,
- formatter: (row) => {
- return this.buildPaymentMethod(row.rulesTypePOList);
- }
- },
- {
- prop: 'determinationMethod',
- label: '收款日确认方式',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140,
- formatter: (row) => {
- return payConfirmTypeOp.find(item => item.value === row.determinationMethod)?.label || '';
- }
- },
- {
- prop: 'remark',
- label: '备注',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 180
- },
- {
- prop: 'createUserName',
- label: '创建人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'ruleState',
- slot: 'ruleState',
- label: '状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 170,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true,
- fixed: 'right'
- }
- ],
- cacheKeyUrl: 'eos-receiveTerms-list'
- };
- },
- methods: {
- /* 表格数据源 */
- async datasource({ page, limit, where, order }) {
- const res = await getTableList({
- pageNum: page,
- size: limit,
- conditionConfigurationType: 'rules',
- ...where
- });
- console.log('res', res);
- return res
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where });
- },
- // 新增编辑
- openEdit(type, row) {
- this.$refs.addDialogRef.open(type, row);
- },
- // 查看详情
- openDetail(row) {
- this.$refs.addDialogRef.open('detail', row);
- },
- // 删除
- remove(delData) {
- deleteInformation(delData).then(() => {
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- // 构建支付方式字符串
- buildPaymentMethod(list) {
- return list
- .map(item => {
- const unit =
- (dateUnitOptions.find(opt => opt.value === item.dateType) || {}).label ||
- '月';
- return `${item.percentage}% ${item.paymentSum}${unit} ${item.paymentType}`;
- })
- .join(',');
- },
- handleStatus(row, val) {
- console.log('row', row);
- console.log('val', val);
- let msg = val == 1 ? '是否启用该规则' : '是否关闭该规则';
- this.$confirm(msg, '提示', {
- type: 'warning'
- })
- .then(async () => {
- await updateRuleState({
- id: row.id,
- ruleState: val
- });
- this.$message.success('操作成功');
- })
- .catch(() => {
- row.ruleState = val == 1 ? 0 : 1;
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- :deep(.el-link--inner) {
- margin-left: 0px !important;
- }
- </style>
|