|
@@ -106,15 +106,19 @@
|
|
|
type="text"
|
|
|
icon="el-icon-plus"
|
|
|
@click="handlelook(scope.row)"
|
|
|
- >查看</el-button
|
|
|
- >
|
|
|
+ >查看</el-button>
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-download"
|
|
|
@click="handleExport(scope.row)"
|
|
|
- >下载</el-button
|
|
|
- >
|
|
|
+ >下载</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-plus"
|
|
|
+ @click="printClassInfo(scope.row)"
|
|
|
+ >补打小票</el-button>
|
|
|
</template>
|
|
|
</af-table-column>
|
|
|
</el-table>
|
|
@@ -192,7 +196,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { listSummary } from "@/api/station/summary";
|
|
|
-import { exportStructure } from "@/api/station/structure";
|
|
|
+import { exportStructure,printClassInfo} from "@/api/station/structure";
|
|
|
import {
|
|
|
listPersonnelPayStructure,
|
|
|
listClass,
|
|
@@ -281,6 +285,8 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.getList();
|
|
|
+
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
/** 查询【请填写功能名称】列表 */
|
|
@@ -345,6 +351,12 @@ export default {
|
|
|
this.getStructureList3();
|
|
|
});
|
|
|
},
|
|
|
+ //打印班结小票
|
|
|
+ printClassInfo(row){
|
|
|
+ printClassInfo({stationId:row.stationId,classStructureNo:row.classesNo}).then((response) => {
|
|
|
+ this.msgSuccess("班结打印成功");
|
|
|
+ });
|
|
|
+ },
|
|
|
/** 查询班结管理列表 */
|
|
|
getStructureList() {
|
|
|
listPersonnelStructure(this.queryParams).then((response) => {
|