|
@@ -453,8 +453,10 @@ let rptArchiveObj = {
|
|
|
// 每页
|
|
|
for (let sCellIdx = 0; sCellIdx < currentRptPageRst.items[pageIdx].signature_cells.length; sCellIdx++) {
|
|
|
let sCell = currentRptPageRst.items[pageIdx].signature_cells[sCellIdx];
|
|
|
- if (sCell.signature_name === 'dummy_pic' && sCell.path.indexOf('/sign') < 0) {
|
|
|
- //草图就不考虑重复问题,重复就重复吧
|
|
|
+ // if (sCell.signature_name === 'dummy_pic' && sCell.path.indexOf('/sign') < 0) {
|
|
|
+ if (sCell.signature_name === 'dummy_pic') {
|
|
|
+ //1. 草图就不考虑重复问题,重复就重复吧;
|
|
|
+ //2. 如果是dummy_pic,也不用判断是否为签名了,因为有其他的逻辑直接选择审核人,不经过签名过程,就当草图一样放过去了
|
|
|
picKeys.push(sCell.path);
|
|
|
picCells.push(sCell);
|
|
|
}
|