| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="订单号">
- <el-input
- v-model="queryParams.orderId"
- placeholder="请输入订单号"
- clearable
- style="width: 240px;"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="抬头名称">
- <el-input
- v-model="queryParams.name"
- placeholder="请输入抬头名称"
- clearable
- style="width: 240px;"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="类型">
- <el-select
- v-model="queryParams.handlerType"
- placeholder="类型"
- clearable
- style="width: 100%"
- >
- <el-option
- v-for="dict in dict.type.lookup_type"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="状态">
- <el-select
- v-model="queryParams.status"
- placeholder="状态"
- clearable
- style="width: 100%"
- >
- <el-option
- v-for="dict in dict.type.Invoicing_type"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table ref="tables" v-loading="loading" :data="dataList" border>
- <el-table-column label="序号" align="center" type="index" width="60"></el-table-column>
- <el-table-column label="订单号" align="center" prop="orderId" />
- <el-table-column label="订单金额(元)" align="center" prop="invoiceAmount" />
- <el-table-column label="类型" align="center">
- <template slot-scope="scope">
- <dict-tag :options="dict.type.lookup_type" :value="scope.row.handlerType"/>
- </template>
- </el-table-column>
- <el-table-column label="抬头名称" align="center" prop="name" />
- <el-table-column label="税号" align="center" prop="creditCode" />
- <el-table-column label="状态" align="center">
- <template slot-scope="scope">
- <dict-tag :options="dict.type.Invoicing_type" :value="scope.row.status"/>
- </template>
- </el-table-column>
- <el-table-column label="申请时间" align="center">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.createTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- @click="openDetails(scope.row)"
- v-hasPermi="['finance:InvoiceRecords:details']"
- >详情</el-button>
- <el-button
- size="mini"
- type="text"
- v-if="scope.row.status == 1"
- @click="openRedBlood(scope.row)"
- v-hasPermi="['finance:InvoiceRecords:redblood']"
- >冲红</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 详情 -->
- <details-dia ref="detailsDia" @getList="getList"></details-dia>
- </div>
- </template>
- <script>
- import { pageList,orderInvoiceRed } from '@/api/financeMr/InvoiceRecords'
- import detailsDia from "./dialog/details.vue";
- export default {
- name: "InvoiceRecords",
- dicts: ['Invoicing_type','lookup_type'],
- components: { detailsDia },
- data() {
- return {
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 用户表格数据
- dataList: null,
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 日期范围
- dateRange: [],
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- }
- };
- },
- created() {
- this.getList();
- },
- methods: {
- /** 查询列表 */
- getList() {
- this.loading = true;
- pageList(this.addDateRange(this.queryParams, this.dateRange))
- .then(response => {
- this.dataList = response.data.rows;
- this.total = response.data.total;
- this.loading = false;
- }
- );
- },
- // 取消按钮
- cancel() {
- this.open = false;
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.dateRange = [];
- this.$set(this.queryParams, 'orderId', '');
- this.$set(this.queryParams, 'name', '');
- this.$set(this.queryParams, 'status', '');
- this.$set(this.queryParams, 'handlerType', '');
- this.queryParams.pageNum = 1;
- this.handleQuery();
- },
- /** 详情按钮操作 */
- openDetails(row, type) {
- this.$refs["detailsDia"].openDialog("详情", row, type);
- },
- openRedBlood(row){
- this.$confirm('您即将进行冲红操作,是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(async () => {
- try {
- let res = await orderInvoiceRed({
- orderId: row.orderId
- })
- if(res.code == 200){
- this.$message({
- type: 'success',
- message: '冲红成功!'
- });
- }else {
- this.$message.error(res.msg);
- }
- } catch (error) {
- this.$message.error('冲红失败!');
- }
-
- }).catch(() => {
- this.$message({
- type: 'info',
- message: '已取消冲红'
- });
- });
- }
- }
- };
- </script>
|