123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- <!-- 经销商授权信息管理--列表 -->
- <template>
- <el-card class="dealerAuthorization" v-loading="loading" :body-style="{ padding: 0 }">
- <authprivAdd ref="addDialogRef" @close="handleRefresh"></authprivAdd>
- <authprivSee ref="seeDialogRef"></authprivSee>
- <!-- 检索区 -->
- <el-form :inline="true" size="mini" label-position="right" label-width="100px" :model="searchParams"
- style="padding: 10px 0 0 0">
- <el-form-item v-for="column in searchColumns " :label="column.title" :key="column.key">
- <el-input v-if="column.type == 'Input'" v-model="searchParams[column.key]" clearable></el-input>
- <el-select v-else-if="column.type == 'Select'" v-model="searchParams[column.key]" clearable>
- <el-option v-for="op in column.options" :label="op.label" :value="op.value"></el-option>
- </el-select>
- <el-date-picker v-else-if="column.type == 'DateRange'" v-model="searchParams[column.key]" clearable
- type="daterange" format="yyyy-MM-dd " value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- <el-date-picker v-else-if="column.type == 'Date'" v-model="searchParams[column.key]" format="yyyy-MM-dd "
- clearable value-format="yyyy-MM-dd" type="date" :placeholder="column.config.placeholder" style="width: 192px;">
- </el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" @click="handelSearch"
- v-hasPermi="['pu:authorization:list']">查询</el-button>
- <el-button icon="el-icon-refresh" @click="handelResetSearch">重置</el-button>
- </el-form-item>
- </el-form>
- <!-- 操作区 -->
- <el-row :gutter="24" style="padding: 0 10px">
- <el-col :span="24" style="text-align: right">
- <el-button size="mini" type="primary" @click="handleOpenAddDialog"
- v-hasPermi="['pu:authorization:add']">新增</el-button>
- <!-- <el-button size="mini" @click="handleSubmit">提交</el-button> -->
- <el-button size="mini" @click="handleDownload">下载授权书</el-button>
- </el-col>
- </el-row>
- <!-- 数据展示 -->
- <el-table class="da-table" @row-dblclick="handleOpenSeeDialog" @select="handleSelect" :data="tableData"
- highlight-current-row max-height="500">
- <el-table-column type="selection" width="45"></el-table-column>
- <el-table-column type="index" width="55" label="序号"></el-table-column>
- <el-table-column v-for="column in tableColumns" :label="column.title" v-if="column.show"
- :width="column.width || 120" show-overflow-tooltip>
- <template slot-scope="scope">
- {{ column.key == 'status' ? judgeStatus(scope.row[column.key]) : scope.row[column.key] }}
- </template>
- </el-table-column>
- <el-table-column fixed="right" label="操作" width="120">
- <template slot-scope="scope">
- <el-button type="text" size="mini" @click="handleOpenAddDialog(scope.row)"
- v-hasPermi="['pu:authorization:edit']">编辑</el-button>
- <el-button type="text" size="mini" @click="handleDelDialog(scope.row)"
- v-if="scope.row.status == '0' || scope.row.status == '3'"
- v-hasPermi="['pu:authorization:remove']">删除</el-button>
- <!-- <el-button @click="handleOpenSeeDialog(scope.row)" type="text" size="small">查看</el-button> -->
- <el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3'"
- @click="handleSubmit(scope.row)">提交</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :total="page.total"
- :page-sizes="pageSizes" :page-size="page.pageSize" :current-page="page.pageNum" hide-on-single-page
- :layout="layout">
- </el-pagination>
- </el-card>
- </template>
- <script>
- import dealerApi from '@/api/marketing/dealer-authorization';
- import { TableColumns, SearchColumns } from './column';
- import { initParams } from '../utils/init';
- export default {
- name: 'dealerAuthorization',
- components: {
- authprivAdd: () => import('./authprivAdd.vue'),
- authprivSee: () => import('./authprivSee.vue'),
- },
- data() {
- const initTableColumns = () => TableColumns;
- const initSearchColumns = () => SearchColumns;
- return {
- loading: false,
- searchColumns: initSearchColumns(),
- searchParams: {
- ...initParams(initSearchColumns()),
- },
- tableColumns: initTableColumns(),
- tableData: [],
- checkedList: [],
- page: {
- pageNum: 1,
- pageSize: 25,
- total: 0
- },
- pageSizes: [10, 20, 50, 100],
- layout: 'total, prev, pager, next, sizes, jumper',
- }
- },
- methods: {
- // 查询---列表查询
- async handelSearch() {
- this.loading = true;
- console.log(this.searchParams, '查询');
- // let isTime = this.searchParams.time && this.searchParams.time != '' && this.searchParams.time.length;
- let { pageNum, pageSize } = this.page;
- let params = {
- ...this.searchParams,
- // startTime: isTime ? this.searchParams.time[0] : '',
- // endTime: isTime ? this.searchParams.time[1] : '',
- pageNum: pageNum,
- pageSize: pageSize,
- }
- delete params['time']
- console.log(params, 'params--------');
- await dealerApi.list(params).then(res => {
- console.log(res, '获取列表');
- let { code, rows, total } = res;
- this.loading = false;
- if (code == 200) {
- this.tableData = rows;
- this.page.total = total;
- }
- }).catch(error => {
- this.loading = false;
- })
- },
- // 重置
- handelResetSearch() {
- console.log('重置');
- for (const key in this.searchParams) {
- this.searchParams[key] = '';
- }
- },
- // 判断状态
- judgeStatus(status) {
- // 单据状态0=自由态,1=审批中,2=已审核,3=已驳回
- let statusName = '';
- switch (status) {
- case '0':
- statusName = '自由态';
- break;
- case '1':
- statusName = '审批中';
- break;
- case '2':
- statusName = '已审核';
- break;
- case '3':
- statusName = '已驳回';
- break;
- default:
- break;
- }
- return statusName;
- },
- // 刷新
- handleRefresh() {
- this.handelSearch();
- },
- handleSizeChange(e) {
- this.page.pageSize = e;
- this.handelSearch();
- },
- handleCurrentChange(e) {
- this.page.pageNum = e;
- this.handelSearch();
- },
- // 选择列表
- handleSelect(selection, row) {
- console.log('selection/////////', selection, 'row/////////', row);
- this.checkedList = [...selection];
- },
- // 新增、编辑授权信息
- handleOpenAddDialog(rows) {
- console.log(rows, '授权信息');
- const { setVisible, setFormData } = this.$refs.addDialogRef;
- setFormData(rows);
- setVisible(true);
- },
- // 查看
- handleOpenSeeDialog(rows) {
- console.log(rows, '编辑、查看');
- const { setVisible, setFormData } = this.$refs.seeDialogRef;
- setFormData(rows);
- setVisible(true);
- },
- // 删除
- async handleDelDialog(rows) {
- console.log(rows, '删除');
- let { id } = rows;
- try {
- this.loading = true;
- let { code, msg } = await dealerApi.remove({ id });
- if (code == 200) {
- this.handleRefresh();
- }
- } catch (error) {
- console.log(error);
- } finally {
- this.loading = false;
- }
- },
- // 提交
- handleSubmit(row) {
- console.log(row, '提交');
- let params = {
- id: '',
- status: ''
- }
- // try {
- // this.loading = true;
- // let { code, msg } = await dealerApi.submitOA();
- // if (code == 200) {
- // this.handleRefresh();
- // }
- // } catch (error) {
- // console.log(error);
- // } finally {
- // this.loading = false;
- // }
- },
- // 下载
- handleDownload() {
- console.log('下载');
- // try {
- // let { code, msg } = await dealerApi.download();
- // if (code == 200) {
- // }
- // } catch (error) {
- // console.log(error);
- // } finally {}
- },
- },
- created() {
- this.handelSearch();
- }
- }
- </script>
- <style lang="scss" scoped>
- .dealerAuthorization {
- width: calc(100% - 24px);
- height: 100%;
- margin: 10px;
- padding: 10px;
- box-sizing: border-box;
- .da-table {
- width: 100%;
- margin: 20px 0 0 0;
- }
- }
- </style>
|