Bladeren bron

上报协会提示取消&PageOffice配置修改

wucl 9 maanden geleden
bovenliggende
commit
107f973977

+ 1 - 1
src/views/DocView.vue

@@ -28,7 +28,7 @@
     methods: {
       OnPageOfficeCtrlInit() {
         //PageOffice的初始化事件回调函数,您可以在这里添加自定义按钮
-        pageofficectrl.Caption = this.open_params.file_id;
+        pageofficectrl.Caption = this.open_params.fileName;
         pageofficectrl.AddCustomToolButton("保存", "Save", 1);//其中"Save"对应methods中的Save()函数,并且需要在mounted中挂载。
       },
       Save() {

+ 9 - 9
src/views/major/todoDetail.vue

@@ -1746,7 +1746,7 @@
         <el-button type="primary" @click="doPassNotRecord()">已知晓</el-button>
       </span>
     </el-dialog>
-    <el-dialog :visible.sync="notSubmitDialog" width="45%" center top="35vh" custom-class="doWarehouseClass" @closed="remindClean()">
+    <!-- <el-dialog :visible.sync="notSubmitDialog" width="45%" center top="35vh" custom-class="doWarehouseClass" @closed="remindClean()">
       <el-divider content-position="left">
           <h3 >
             <div style="color: red;"><i class="el-icon-warning"></i> 上报协会提醒</div>
@@ -1765,7 +1765,7 @@
         <el-button @click="notSubmitDialog=false">暂不处理</el-button>
         <el-button type="primary" @click="doPassNotSubmit()">已知晓</el-button>
       </span>
-    </el-dialog>
+    </el-dialog> -->
   </div>
 </template>
 <script>
@@ -3415,13 +3415,13 @@ export default {
               this.notRecordDialog = true;
               return;
             }
-            if (this.productions[0].isSubmit && !verify.passNotSubmit && this.major.businessObjectType==='房地产'){
-              verify.state = false;
-              callback(verify);
-              this.notSubmitRemind = this.productions[0];
-              this.notSubmitDialog = true;
-              return;
-            }
+            // if (this.productions[0].isSubmit && !verify.passNotSubmit && this.major.businessObjectType==='房地产'){
+            //   verify.state = false;
+            //   callback(verify);
+            //   this.notSubmitRemind = this.productions[0];
+            //   this.notSubmitDialog = true;
+            //   return;
+            // }
             break;
           case "INITIAL_PRICE":
             let notEvaluateValueTargets = this.evaluateLandData.filter(function (e) {

+ 2 - 2
src/views/personal/readonlyDetail.vue

@@ -1548,8 +1548,8 @@ export default {
     },
     openPageoffice(fileName,fileUrl) {
        let paramJson={};
-       paramJson.file_id=fileName;
-       paramJson.file_name=fileUrl;
+       paramJson.fileName=fileName;
+       paramJson.fileUrl=fileUrl;
        let paramString=JSON.stringify(paramJson);
        //openWindow()第三个参数用来向弹出的PageOffice浏览器(POBrowser)窗口传递参数(参数长度不限),支持json格式字符串。
        //此处为了方便演示,我们传递了file_id和file_name两个参数,具体以您实际开发为准。

+ 2 - 2
src/views/personal/todoDetail.vue

@@ -2748,8 +2748,8 @@ export default {
     },
     openPageoffice(fileName,fileUrl) {
        let paramJson={};
-       paramJson.file_id=1;
-       paramJson.file_name=fileUrl;
+       paramJson.fileName=fileName;
+       paramJson.fileUrl=fileUrl;
        let paramString=JSON.stringify(paramJson);
        //openWindow()第三个参数用来向弹出的PageOffice浏览器(POBrowser)窗口传递参数(参数长度不限),支持json格式字符串。
        //此处为了方便演示,我们传递了file_id和file_name两个参数,具体以您实际开发为准。