Commit 144efbc1 authored by limingzhe's avatar limingzhe

fix: debug

parent ecc52d2a
{"ver":"1.1.2","uuid":"8f896b8b-468f-4d2f-a218-a8a9bd97f9ce","isBundle":false,"bundleName":"","priority":1,"compressionType":{},"optimizeHotUpdate":{},"inlineSpriteFrames":{},"isRemoteBundle":{"ios":false,"android":false},"subMetas":{}}
\ No newline at end of file
{
"ver": "1.1.2",
"uuid": "8f896b8b-468f-4d2f-a218-a8a9bd97f9ce",
"isBundle": false,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {
"ios": false,
"android": false
},
"subMetas": {}
}
\ No newline at end of file
......@@ -794,15 +794,15 @@ cc.Class({
// break;
// }
// // setInterval(() => {
// this.getPhotoData((data) => {
// this.photoEnd(data);
// });
// // }, 3000);
// setInterval(() => {
this.getPhotoData((data) => {
this.photoEnd(data);
});
// }, 3000);
// console.log('curCheckGroup: ', JSON.stringify( this.curCheckGroup ));
console.log('curCheckGroup: ', JSON.stringify( this.curCheckGroup ));
// return;
return;
......@@ -3416,9 +3416,29 @@ cc.Class({
// if (newRectCheckArr[i].data.isFuzzy) {
const index = labelText.indexOf("||");
if (index != -1) {
const keyArr = labelText.split("||");
for (let j=0; j<keyArr.length; j++) {
if (targetLabelText.indexOf(keyArr[j]) != -1 ) {
answerData[key] = {isFinish: true};
break;
}
}
} else {
if (targetLabelText.indexOf(labelText) != -1 ) {
answerData[key] = {isFinish: true};
}
}
// if (targetLabelText.indexOf(labelText) != -1 ) {
// answerData[key] = {isFinish: true};
// }
// } else {
// if (labelText == targetLabelText) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment