oil-station/fuintAdmin/src/views/setting/print/index.vue

362 lines
12 KiB
Vue
Raw Normal View History

2024-08-16 18:26:19 +08:00
<template>
<div class="app-container">
2024-09-14 11:46:31 +08:00
<div class="card-change">
2024-08-16 18:26:19 +08:00
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
<el-form-item label="" prop="name">
<el-input
v-model="queryParams.deviceName"
placeholder="设备名称"
clearable
style="width: 240px;"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item style="float: right; margin-right: 0px">
2024-09-14 11:46:31 +08:00
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
<el-button type="primary" icon="el-icon-search" @click="handleAdd">新增设备</el-button>
2024-08-16 18:26:19 +08:00
</el-form-item>
</el-form>
2024-09-14 11:46:31 +08:00
<div style="height: 69vh;overflow:auto;">
<el-table :data="tableData" style="width: 100%" border>
<el-table-column align="center" type="index" label="序号"></el-table-column>
<el-table-column align="center" prop="deviceName" label="设备名称"></el-table-column>
<el-table-column align="center" prop="deviceSi" label="品牌"></el-table-column>
<el-table-column align="center" prop="deviceAb" label="设备功能"></el-table-column>
<el-table-column align="center" prop="deptName" label="所属机构"></el-table-column>
<el-table-column align="center" prop="staffIds" label="关联员工">
<template slot-scope="scope">
{{ jsonChange(scope.row.staffIds) }}
</template>
</el-table-column>
<el-table-column align="center" prop="machineCode" label="设备终端号"></el-table-column>
<el-table-column align="center" prop="msign" label="设备密钥"></el-table-column>
<el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-view"
@click="edit(scope.row)"
>编辑
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="del(scope.row)"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
</div>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.page"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
2024-08-16 18:26:19 +08:00
2024-09-14 11:46:31 +08:00
</div>
2024-08-16 18:26:19 +08:00
<el-dialog :title="title" :close-on-click-modal="false" :visible.sync="open" width="30%" append-to-body>
2024-09-14 11:46:31 +08:00
<el-form ref="form" :model="deviceInfo" label-width="80px">
2024-09-13 17:47:41 +08:00
<el-form :model="deviceInfo" :rules="rules" ref="deviceForm" label-width="120px">
2024-09-14 11:46:31 +08:00
<el-form-item label="设备名称" prop="deviceName">
2024-08-16 18:26:19 +08:00
<el-input v-model="deviceInfo.deviceName" style="width: 300px"></el-input>
</el-form-item>
2024-09-14 11:46:31 +08:00
<el-form-item label="设备品牌" prop="deviceSi">
2024-08-16 18:26:19 +08:00
<el-input v-model="deviceInfo.deviceSi" style="width: 300px"></el-input>
</el-form-item>
2024-09-14 11:46:31 +08:00
<el-form-item label="设备功能" prop="deviceAb">
2024-08-16 18:26:19 +08:00
<el-radio-group v-model="deviceInfo.deviceAb">
<el-radio label="打印小票"></el-radio>
<el-radio label="语音播报"></el-radio>
</el-radio-group>
</el-form-item>
2024-09-14 11:46:31 +08:00
<el-form-item label="设备终端号" prop="machineCode">
2024-08-16 18:26:19 +08:00
<el-input v-model="deviceInfo.machineCode" style="width: 300px"></el-input>
</el-form-item>
2024-09-14 11:46:31 +08:00
<el-form-item label="设备密钥" prop="msign">
2024-08-16 18:26:19 +08:00
<el-input v-model="deviceInfo.msign" style="width: 300px"></el-input>
</el-form-item>
2024-09-14 11:46:31 +08:00
<el-form-item label="选择员工" prop="staffId">
2024-08-16 18:26:19 +08:00
<el-select
v-model="staffIds"
clearable
placeholder=""
style="width: 300px"
multiple
collapse-tags
>
<el-option v-for="item in staffList" :key="item.id" :label="item.realName" :value="item.id+''">
<span style="float: left">{{ item.realName }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.mobile }}</span>
</el-option>
</el-select>
</el-form-item>
2024-09-14 11:46:31 +08:00
<!-- <el-form-item label="用户id" prop="userId">-->
<!-- <el-input v-model="deviceInfo.userId"></el-input>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="应用id" prop="appKey">-->
<!-- <el-input v-model="deviceInfo.appKey"></el-input>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="应用密钥" prop="appSecret">-->
<!-- <el-input v-model="deviceInfo.appSecret"></el-input>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="应用公钥" prop="appPublicKey">-->
<!-- <el-input v-model="deviceInfo.appPublicKey"></el-input>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="平台公钥" prop="platformPublicKey">-->
<!-- <el-input v-model="deviceInfo.platformPublicKey"></el-input>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="token" prop="accessToken">-->
<!-- <el-input v-model="deviceInfo.accessToken"></el-input>-->
<!-- </el-form-item>-->
<el-form-item label="启用状态" prop="isAcquiesce">
2024-08-16 18:26:19 +08:00
<el-switch
v-model="deviceInfo.acquiesce"
active-color="#13ce66"
inactive-color="#ff4949">
</el-switch>
</el-form-item>
<el-form-item label="备注" prop="appPublicKey">
2024-09-14 11:46:31 +08:00
<el-input type="textarea" v-model="deviceInfo.appPublicKey" style="width: 300px"></el-input>
2024-08-16 18:26:19 +08:00
</el-form-item>
<el-form-item>
<el-button type="" @click="open = false">取消</el-button>
<el-button type="primary" @click="submitForm('deviceForm')">提交</el-button>
</el-form-item>
</el-form>
</el-form>
</el-dialog>
</div>
</template>
<script>
import {addPrintDeviceApi, delPrintDeviceApi, editPrintDeviceApi, getListByPageApi} from "@/api/print";
import {queryStaffs} from "@/api/order/staff";
export default {
name: "printIndex",
data() {
return {
tableData: [],
staffIds: '',
2024-09-14 11:46:31 +08:00
staffList: [],
2024-08-16 18:26:19 +08:00
deviceInfo: {
id: null, // 自增id
machineCode: '', // 设备终端号
msign: '', // 设备密钥
deviceName: '', // 设备名称
userId: null, // 用户id
appKey: '', // 应用id(APP_KEY)
appSecret: '', // 应用密钥(APP_SECRET)
appPublicKey: '', // 应用公钥(key)
platformPublicKey: '', // 平台公钥(publicKey)
accessToken: '', // token
deviceSi: '', // 设备品牌
staffIds: '', // 员工
deviceAb: '', // 设备功能
staffName: '', // 设备员工名字
acquiesce: false // token
},
2024-09-13 17:47:41 +08:00
rules: {
deviceName: [
2024-09-14 11:46:31 +08:00
{required: true, message: '设备名称不能为空', trigger: 'blur'}
2024-09-13 17:47:41 +08:00
],
deviceSi: [
2024-09-14 11:46:31 +08:00
{required: true, message: '设备品牌不能为空', trigger: 'blur'}
2024-09-13 17:47:41 +08:00
],
deviceAb: [
2024-09-14 11:46:31 +08:00
{required: true, message: '设备功能不能为空', trigger: 'change'}
2024-09-13 17:47:41 +08:00
],
machineCode: [
2024-09-14 11:46:31 +08:00
{required: true, message: '设备终端号不能为空', trigger: 'blur'}
2024-09-13 17:47:41 +08:00
],
msign: [
2024-09-14 11:46:31 +08:00
{required: true, message: '设备密钥不能为空', trigger: 'blur'}
2024-09-13 17:47:41 +08:00
],
staffId: [
2024-09-14 11:46:31 +08:00
{required: false, message: '请选择员工', trigger: 'change'}
2024-09-13 17:47:41 +08:00
]
},
2024-08-16 18:26:19 +08:00
// 是否显示弹出层
open: false,
2024-09-14 11:46:31 +08:00
title: "",
total: 0,
2024-08-16 18:26:19 +08:00
// 查询参数
queryParams: {
page: 1,
pageSize: 10,
2024-09-14 11:46:31 +08:00
deviceName: '',
2024-08-16 18:26:19 +08:00
},
};
},
created() {
this.getList()
this.getStaffList()
},
methods: {
2024-09-14 11:46:31 +08:00
getList() {
getListByPageApi(this.queryParams).then(res => {
2024-08-16 18:26:19 +08:00
this.tableData = res.data.records;
this.total = res.data.total
})
},
// 获取员工
2024-09-14 11:46:31 +08:00
getStaffList() {
queryStaffs().then(response => {
2024-08-16 18:26:19 +08:00
this.staffList = response.data;
})
},
submitForm(formName) {
this.$refs[formName].validate(valid => {
if (valid) {
// 表单验证通过,可以提交数据
// 示例:调用 API 提交数据
this.submitDeviceInfo();
} else {
// 表单验证失败,不执行任何操作
return false;
}
});
},
submitDeviceInfo() {
let staff = [];
this.staffIds.forEach(id => {
let matchingStaff = this.staffList.find(staff => staff.id === Number(id));
let names = {
id: id,
realName: matchingStaff ? matchingStaff.realName : id
}
staff.push(names)
});
this.deviceInfo.staffIds = JSON.stringify(staff)
// 在这里调用接口提交设备信息数据
console.log('提交设备信息数据:', this.deviceInfo);
if (this.deviceInfo.id) {
2024-09-14 11:46:31 +08:00
editPrintDeviceApi(this.deviceInfo).then(res => {
if (res.code === 200) {
2024-08-16 18:26:19 +08:00
this.getList()
this.open = false
}
})
2024-09-14 11:46:31 +08:00
} else {
console.log("staffIds", this.staffIds)
addPrintDeviceApi(this.deviceInfo).then(res => {
if (res.code === 200) {
2024-08-16 18:26:19 +08:00
this.getList()
this.open = false
}
})
}
},
jsonChange(data) {
if (data) {
let a = JSON.parse(data);
let b = a.map(res => res.realName).join(',');
return b
2024-09-14 11:46:31 +08:00
} else {
2024-08-16 18:26:19 +08:00
return '--'
}
},
2024-09-14 11:46:31 +08:00
handleQuery() {
2024-08-16 18:26:19 +08:00
this.getList()
},
2024-09-14 11:46:31 +08:00
resetQuery() {
2024-08-16 18:26:19 +08:00
this.queryParams = {
page: 1,
pageSize: 10,
2024-09-14 11:46:31 +08:00
deviceName: '',
2024-08-16 18:26:19 +08:00
},
2024-09-14 11:46:31 +08:00
this.getList()
2024-08-16 18:26:19 +08:00
},
handleAdd(e) {
this.clean()
this.open = true;
this.title = "增加设备"
},
edit(e) {
this.clean()
this.open = true;
this.title = "编辑设备"
2024-09-14 11:46:31 +08:00
console.log("eeeeeeee", e)
2024-08-16 18:26:19 +08:00
if (e.staffIds) {
let a = JSON.parse(e.staffIds)
this.staffIds = a.map(res => res.id)
}
this.deviceInfo = e
console.log('提交设备信息数据:', this.deviceInfo);
},
del(e) {
this.$confirm('此操作将永久删除该设备, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
2024-09-14 11:46:31 +08:00
delPrintDeviceApi({id: e.id}).then(res => {
2024-08-16 18:26:19 +08:00
if (res.code == 200) {
this.$message({
type: 'success',
message: '删除成功!'
});
this.getList()
}
})
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
});
},
clean() {
this.staffIds = []
2024-09-14 11:46:31 +08:00
this.deviceInfo = {
2024-08-16 18:26:19 +08:00
id: null, // 自增id
machineCode: '', // 设备终端号
msign: '', // 设备密钥
deviceName: '', // 设备名称
userId: null, // 用户id
appKey: '', // 应用id(APP_KEY)
appSecret: '', // 应用密钥(APP_SECRET)
appPublicKey: '', // 应用公钥(key)
platformPublicKey: '', // 平台公钥(publicKey)
2024-09-14 11:46:31 +08:00
accessToken: '', // token
2024-08-16 18:26:19 +08:00
acquiesce: false // token
}
},
}
};
</script>
<style lang="scss" scoped>
2024-09-14 11:46:31 +08:00
.common-dialog > > > .el-upload--picture-card {
2024-08-16 18:26:19 +08:00
width: 60px;
height: 50px;
line-height: 60px;
}
</style>