|
@@ -59,9 +59,12 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div :class="sbTableKey === 'key1' ? '' : 'vh'" class="flex-table">
|
|
|
- <el-button v-if="sbTableKey === 'key1'" hc-btn type="warning" class=" mb-4" @click="BatchClick">
|
|
|
+ <el-button v-if="sbTableKey === 'key1' && !isBatch" hc-btn type="warning" class=" mb-4" @click="BatchClick(true)">
|
|
|
批量电签
|
|
|
</el-button>
|
|
|
+ <el-button v-if="sbTableKey === 'key1' && isBatch" hc-btn type="warning" class=" mb-4" @click="BatchClick(false)">
|
|
|
+ 取消批量签名/章
|
|
|
+ </el-button>
|
|
|
<div v-if="taskReviewType === '1'" class="data-table taskReviewData">
|
|
|
<HcTable :column="taskReviewColumns" :datas="taskReviewData" @row-click="rowTaskReviewClick" />
|
|
|
</div>
|
|
@@ -255,8 +258,8 @@ const pdfChange = (data) => {
|
|
|
console.log('签章数据', data)
|
|
|
}
|
|
|
const isBatch = ref(false)
|
|
|
-const BatchClick = ()=>{
|
|
|
- isBatch.value = true
|
|
|
+const BatchClick = (val)=>{
|
|
|
+ isBatch.value = val
|
|
|
}
|
|
|
//任务审核
|
|
|
const rowTaskName = async (row) => {
|