Commit 7a7b3680 by liangzhen

不可采纳

1 parent d55416fc
Showing with 20 additions and 3 deletions
...@@ -72,7 +72,10 @@ ...@@ -72,7 +72,10 @@
> >
</el-input </el-input
><el-button @click="adopt(item, index, itemfz)" type="primary" ><el-button @click="adopt(item, index, itemfz)" type="primary"
:disabled="itemfz.type=='1'">采纳</el-button v-if="itemfz.type!='1'">采纳</el-button
>
<el-button type="info"
v-else>采纳</el-button
> >
</div> </div>
</div> </div>
...@@ -372,7 +375,7 @@ export default { ...@@ -372,7 +375,7 @@ export default {
this.$set(item, "znfxList", []); this.$set(item, "znfxList", []);
this.$set(item, "fzfxList", []); this.$set(item, "fzfxList", []);
} }
this.$set(item, "Id", 0); // this.$set(item, "Id", 0);
}); });
} }
if (this.urlList.length <= 0) { if (this.urlList.length <= 0) {
...@@ -388,8 +391,13 @@ export default { ...@@ -388,8 +391,13 @@ export default {
this.iframeUrl = '/pdf/web/viewer.html?file='+resUrl.msg; this.iframeUrl = '/pdf/web/viewer.html?file='+resUrl.msg;
// this.iframeUrl='/pdf/web/viewer.html?file=http://arch-file.oss-cn-beijing.aliyuncs.com/arch-file/665994f479f6157c744951bd.pdf?Expires=1718011134&OSSAccessKeyId=LTAI5tGjidtvVSCvwGxTp8FH&Signature=blOuzxUwnotgqo7mxM9rShOEJ1I%3D' // this.iframeUrl='/pdf/web/viewer.html?file=http://arch-file.oss-cn-beijing.aliyuncs.com/arch-file/665994f479f6157c744951bd.pdf?Expires=1718011134&OSSAccessKeyId=LTAI5tGjidtvVSCvwGxTp8FH&Signature=blOuzxUwnotgqo7mxM9rShOEJ1I%3D'
console.log(this.questionList, "总列表"); // console.log(this.questionList, "总列表");
setTimeout(() => {
this.oldQuestionList = JSON.parse(JSON.stringify(this.questionList)); this.oldQuestionList = JSON.parse(JSON.stringify(this.questionList));
console.log(this.questionList,this.oldQuestionList, "总列表");
}, 300);
}); });
}, },
async handleClick(tab) { async handleClick(tab) {
...@@ -410,6 +418,15 @@ export default { ...@@ -410,6 +418,15 @@ export default {
console.log(this.iframeUrl, "this.iframeUrl"); console.log(this.iframeUrl, "this.iframeUrl");
}, },
change(id) { change(id) {
console.log(this.questionList,this.oldQuestionList,'相同么')
console.log(JSON.stringify(this.questionList)==JSON.stringify(this.oldQuestionList),'完全相同么')
if(JSON.stringify(this.questionList)==JSON.stringify(this.oldQuestionList)){
this.active = id * 1;
this.tabListKY = MaterialsListKY(id * 1 + 1);
this.init(this.clqparams);
return
}
this.$confirm("是否保存?", "提示", { this.$confirm("是否保存?", "提示", {
confirmButtonText: "是", confirmButtonText: "是",
cancelButtonText: "否", cancelButtonText: "否",
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!