|
@@ -135,8 +135,6 @@
|
|
>
|
|
>
|
|
{{ wholePdfBtnName }}
|
|
{{ wholePdfBtnName }}
|
|
</el-button>
|
|
</el-button>
|
|
- </div>
|
|
|
|
- <div>
|
|
|
|
<el-button
|
|
<el-button
|
|
v-if="checkPrivilege('button', 'BatchEnd')"
|
|
v-if="checkPrivilege('button', 'BatchEnd')"
|
|
icon="el-icon-finished"
|
|
icon="el-icon-finished"
|
|
@@ -181,6 +179,15 @@
|
|
>下载结果查询</el-button
|
|
>下载结果查询</el-button
|
|
>
|
|
>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div>
|
|
|
|
+ <el-button
|
|
|
|
+ v-if="checkPrivilege('button', 'BatchDownload')"
|
|
|
|
+ type="primary"
|
|
|
|
+ icon="el-icon-s-order"
|
|
|
|
+ @click="toBarCheck"
|
|
|
|
+ >校验</el-button
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="part-box part-box-pad box-justify">
|
|
<div class="part-box part-box-pad box-justify">
|
|
@@ -476,6 +483,12 @@
|
|
|
|
|
|
<!-- PreviewFile -->
|
|
<!-- PreviewFile -->
|
|
<preview-file ref="PreviewFile" :data="curFile"></preview-file>
|
|
<preview-file ref="PreviewFile" :data="curFile"></preview-file>
|
|
|
|
+
|
|
|
|
+ <!-- BarCodeCheck -->
|
|
|
|
+ <barCodeCheck
|
|
|
|
+ v-if="checkPrivilege('button', 'BatchDownload')"
|
|
|
|
+ ref="BarCodeCheck"
|
|
|
|
+ ></barCodeCheck>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -499,6 +512,7 @@ import pickerOptions from "@/constants/datePickerOptions";
|
|
import { parseTimeRangeDateAndTime } from "@/plugins/utils";
|
|
import { parseTimeRangeDateAndTime } from "@/plugins/utils";
|
|
import PreviewPrintTaskTemplate from "../components/PreviewPrintTaskTemplate";
|
|
import PreviewPrintTaskTemplate from "../components/PreviewPrintTaskTemplate";
|
|
import PreviewFile from "@/components/PreviewFile.vue";
|
|
import PreviewFile from "@/components/PreviewFile.vue";
|
|
|
|
+import BarCodeCheck from "../components/BarCodeCheck.vue";
|
|
|
|
|
|
const defaultTotalInfo = {
|
|
const defaultTotalInfo = {
|
|
totalSubjects: 0,
|
|
totalSubjects: 0,
|
|
@@ -514,7 +528,7 @@ const defaultTotalInfo = {
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: "print-task-manage",
|
|
name: "print-task-manage",
|
|
- components: { PreviewPrintTaskTemplate, PreviewFile },
|
|
|
|
|
|
+ components: { PreviewPrintTaskTemplate, PreviewFile, BarCodeCheck },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
filter: {
|
|
filter: {
|
|
@@ -835,6 +849,9 @@ export default {
|
|
toDataTask() {
|
|
toDataTask() {
|
|
this.$refs.DataTaskDialog.open();
|
|
this.$refs.DataTaskDialog.open();
|
|
},
|
|
},
|
|
|
|
+ toBarCheck() {
|
|
|
|
+ this.$refs.BarCodeCheck.open();
|
|
|
|
+ },
|
|
async toNormal(row) {
|
|
async toNormal(row) {
|
|
const typeName = row.normal ? "作废" : "恢复";
|
|
const typeName = row.normal ? "作废" : "恢复";
|
|
const action = await this.$confirm(
|
|
const action = await this.$confirm(
|