123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- <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="购票人手机号" label-width="100px">
- <el-input
- v-model="queryParams.memberMobile"
- placeholder="请输入购票人手机号"
- clearable
- style="width: 240px;"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="剧目名称">
- <el-input
- v-model="queryParams.performName"
- placeholder="请输入剧目名称"
- clearable
- style="width: 240px;"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="票务名称">
- <el-input
- v-model="queryParams.goodsName"
- placeholder="请输入票务名称"
- clearable
- style="width: 240px;"
- @keyup.enter.native="handleQuery"
- />
- </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.order_status_type"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="购票渠道">
- <el-select
- v-model="queryParams.source"
- placeholder="购票渠道"
- clearable
- style="width: 100%"
- >
- <!-- <el-option
- v-for="dict in sourceMapList"
- :key="dict.value"
- :label="dict.name"
- :value="dict.value"
- /> -->
- <el-option
- v-for="dict in dict.type.order_form_type"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="支付时间">
- <el-date-picker
- style="width: 230px;"
- v-model="queryParams.time"
- type="daterange"
- value-format="yyyy-MM-dd"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="下单时间">
- <el-date-picker
- style="width: 230px;"
- v-model="queryParams.createTime"
- type="daterange"
- value-format="yyyy-MM-dd"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="场次时间">
- <el-date-picker
- style="width: 230px;"
- v-model="queryParams.performDate"
- @change="pagePerformTimeListFun"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择日期">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="场次">
- <el-select
- v-model="queryParams.performTimeId"
- placeholder="场次"
- clearable
- style="width: 100%"
- >
- <el-option
- v-for="dict in pagePerformTimeList"
- :key="dict.id"
- :label="dict.timeSnapshot"
- :value="dict.id"
- />
- </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">
- <el-button
- type="primary"
- size="mini"
- icon="el-icon-download"
- v-hasPermi="['order:orderMr:downloadExcel']"
- @click="handleExport"
- v-loading.fullscreen.lock="handleExportLoading"
- element-loading-text="正在拼命生成数据中..."
- element-loading-spinner="el-icon-loading"
- element-loading-background="rgba(0, 0, 0, 0.5)"
- >导出excel</el-button>
- <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="id" />
- <el-table-column label="购票人手机号" align="center" prop="memberMobile" />
- <el-table-column label="剧目名称" align="center" prop="performName" />
- <el-table-column label="票务名称" align="center" prop="goodsName" />
- <el-table-column label="票务类型" align="center" prop="seatTypeName" />
- <el-table-column label="购票渠道" align="center" prop="source">
- <template slot-scope="scope">
- <!-- <span>{{ sourceList[scope.row.source] }}</span> -->
- <dict-tag :options="dict.type.order_form_type" :value="scope.row.source"/>
- </template>
- </el-table-column>
- <el-table-column label="场次时间" align="center" prop="performDate" />
- <el-table-column label="场次" align="center" prop="timeSnapshot" />
- <el-table-column label="下单时间" align="center" prop="createTime" />
- <el-table-column label="购票数量" align="center" prop="quantity" />
- <el-table-column label="支付总额" align="center" prop="orderPrice">
- <template slot-scope="scope">
- <span>¥{{ scope.row.orderPrice }}</span>
- </template>
- </el-table-column>
- <!-- <el-table-column label="优惠信息" align="center" prop="refundReason" />-->
- <el-table-column label="支付方式" align="center" prop="payWay">
- <template slot-scope="scope">
- <dict-tag :options="dict.type.pay_way_type" :value="scope.row.payWay"/>
- </template>
- </el-table-column>
-
- <el-table-column label="支付时间" align="center" prop="payTime" width="160" >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.payTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="订单状态" align="center" prop="status">
- <template slot-scope="scope">
- <dict-tag :options="dict.type.order_status_type" :value="scope.row.status"/>
- </template>
- </el-table-column>
- <el-table-column label="已核销票数" align="center" prop="usedTotal">
- <template slot-scope="scope">
- <span>{{ scope.row.usedTotal }}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="100" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- @click="openDetails(scope.row)"
- v-hasPermi="['orderMr:orderMr:details']"
- >详情</el-button>
- <el-button
- size="mini"
- type="text"
- @click="handleOpen([scope.row])"
- v-hasPermi="['orderMr:orderMr:print']"
- >打印小票</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>
- <el-dialog
- title="选择小票机"
- :visible.sync="dialogVisible"
- width="30%"
- :before-close="handleClose">
- <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm">
- <el-form-item label="小票机" prop="region">
- <el-select v-model="ruleForm.region" placeholder="选择小票机">
- <el-option :label="item.deviceName" :key="item.id" :value="item.id" v-for="(item,index) in printList"></el-option>
- </el-select>
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" :loading="dialogVisibleLoading" @click="print(viewerList)">{{ dialogVisibleLoading?'打印中...':'打印' }}</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import { pageList,downOrderListXls, printApi } from '@/api/order/orderMr'
- import detailsDia from "./dialog/details";
- import { pagePerformTimeList } from "@/api/schedulingMr/schedulingMr"
- import { exportExcel } from '@/utils/exportexcel'
- import { pageList as getPrintListApi } from "@/api/device/pda";
- const https = require('https');
- const axios = require('axios');
- export default {
- name: "agreement",
- dicts: ['order_form_type','order_status_type','pay_way_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,
- },
- visibleStatus: false,
- newObj: {},
- visibleType: '',
- pagePerformTimeList: [], // 场次列表
- handleExportLoading: false,
- viewerList: [],
- printList: [],
- dialogVisible: false,
- ruleForm: {},
- rules: {
- region: [
- { required: true, message: '请选择打印机', trigger: ['change','blur' ]}
- ],
- },
- dialogVisibleLoading: false,
- };
- },
- 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;
- if(this.queryParams.time){
- this.queryParams.payBeginTime = this.queryParams.time[0];
- this.queryParams.payEndTime = this.queryParams.time[1];
- }
- if(this.queryParams.createTime&&this.queryParams.createTime.length>0){
- this.queryParams.createBeginTime = this.queryParams.createTime[0];
- this.queryParams.createEndTime = this.queryParams.createTime[1];
- }
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.dateRange = [];
- this.$set(this.queryParams, 'orderId', '');
- this.$set(this.queryParams, 'status', '');
- this.$set(this.queryParams, 'memberMobile', '');
- this.$set(this.queryParams, 'source', '');
- this.$set(this.queryParams, 'performName', '');
- this.$set(this.queryParams, 'payBeginTime', '');
- this.$set(this.queryParams, 'payEndTime', '');
- this.$set(this.queryParams, 'time', '');
- this.$set(this.queryParams, 'createTime', '');
- this.$set(this.queryParams, 'createBeginTime', '');
- this.$set(this.queryParams, 'createEndTime', '');
- this.$set(this.queryParams, 'goodsName', '');
- this.$set(this.queryParams, 'performDate', '');
- this.$set(this.queryParams, 'timeSnapshot', '');
- this.$set(this.queryParams, 'performTimeId', '');
- this.queryParams.pageNum = 1;
- this.handleQuery();
- },
- /** 详情按钮操作 */
- openDetails(row, type) {
- this.$refs["detailsDia"].openDialog("详情", row, type);
- },
- async pagePerformTimeListFun(value) {
- try {
- this.pagePerformTimeList = []
- this.$set(this.queryParams,'timeSnapshot',null)
- if(!value){
- return
- }
- let { data,code } = await pagePerformTimeList({
- performDate: value,
- pageNum: 1,
- pageSize: 999
- })
- this.pagePerformTimeList = [].concat(data.rows)
- } catch (error) {
-
- }
- },
- /**
- * 导出报表
- * @date 2022-10-24
- * @returns {any}
- */
- handleExport() {
- this.$confirm('您确定要导出当前查询的数据吗?', '提示', {
- confirmButtonText: '确定 ',
- cancelButtonText: '取消 ',
- type: 'warning'
- })
- .then(() => {
- this.handleExportLoading = true;
- // const { pageNum, pageSize} = this.params;
- let postMap = {}
- for (let key in this.queryParams) {
- if(key != 'pageNum' && key != 'pageSize'){
- postMap[key] = this.queryParams[key]
- }
- }
- downOrderListXls(postMap)
- .then((res) => {
- exportExcel(res, '订单管理', '.xlsx');
- this.handleExportLoading = false;
- })
- .catch((error) => {
- console.log("error===",error)
- this.handleExportLoading = false;
- });
- })
- .catch(() => {
- this.$message.info('您已取消导出!');
- });
- },
-
- handleOpen(list=[]){
- if(!list||list.length==0) return
- let idList = []
- list.forEach((item,index)=>{
- idList.push(item.id)
- })
- this.viewerList = idList
- this.getPrintListApi()
- this.$set(this.ruleForm, 'region', '');
- this.$nextTick(()=>{
- this.$refs.ruleForm.clearValidate('region')
- })
- this.dialogVisible = true
- },
- handleClose(){
- this.dialogVisible = false
- },
- /** 查询打印机列表 */
- getPrintListApi() {
- getPrintListApi({deviceType:5,pageNum: 1,
- pageSize: 999,})
- .then(response => {
- this.printList = response.data.rows;
- }
- );
- },
- /** 选择打印机 */
- selectPrint(){
- },
- // 打印
- async print(list = []){
- this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- this.dialogVisibleLoading = true
- try {
- let res = await printApi({
- //viewerList:list,
- orderId: list[0],
- source: 2,
- deviceId: this.ruleForm.region
- })
- if(res.code == 200) {
- let url = res.data.linkIp
- let printInfo = res.data.printInfo
- this.connectPrint(url,printInfo)
- }else {
- throw new Error(res)
- }
- } catch (error) {
- this.dialogVisible = false
- this.dialogVisibleLoading = false
- console.error("error=====",error)
- }
- } else {
- console.log('error submit!!');
- return false;
- }
- });
-
- },
- /** 连接打印机 */
- connectPrint(url,data){
- // let xhr = new XMLHttpRequest();
- // xhr.onreadystatechange = ()=>{
- // if(xhr.readyState == 4){ // 监听请求完成
- // if((xhr.status >=200 && xhr.status <300) || xhr.status == 304){
- // console.log(xhr.responseText)
- // this.dialogVisible = false
- // this.dialogVisibleLoading = false
- // }else{
- // console.log('请求失败')
- // this.dialogVisible = false
- // this.dialogVisibleLoading = false
- // }
- // }
- // }
- // xhr.open("post", url, true); // 异步请求
- // xhr.send(JSON.stringify(data));
- // 创建忽略 SSL 的 axios 实例
- const ignoreSSL = axios.create({
- httpsAgent: new https.Agent({
- rejectUnauthorized: false
- }),
- withCredentials: true, // 跨域请求时发送Cookie
- timeout: 60000, // 请求超时
- headers: {
- "Content-Type": "application/json; charset=UTF-8;"
- }
- });
- ignoreSSL.post(url,
- { ...data }
- ).then(()=>{
- this.dialogVisible = false
- this.dialogVisibleLoading = false
- }).catch(()=>{
- this.dialogVisible = false
- this.dialogVisibleLoading = false
- })
- }
- }
- };
- </script>
|