Эх сурвалжийг харах

单位证书回显签章类型 及 消息区提交进度后预计截止时间

huangjn 3 жил өмнө
parent
commit
7eda020180

+ 2 - 1
src/views/certificate/managements/see.vue

@@ -72,7 +72,8 @@
                   :src="item.signatureFileUrl"
                 />
               </div>
-              <div class="flexItemsC">证书:{{item.certificateUserName}}- {{item.certificateFileUrl|urlsplice}}</div>
+              <div class="flexItemsC" style="width:600px;">证书:  {{item.certificateUserName}}- {{item.certificateFileUrl|urlsplice}}</div>
+              <div class="flexItemsC" v-show="item.pfxType != '-1'">签章类型: {{item.pfxType}}</div>
             </div>
             <el-button
               size="mini"

+ 24 - 1
src/views/news/news.vue

@@ -66,6 +66,7 @@
         <el-select
           v-model="curRow.currentLink"
           placeholder="请选择"
+          @change="operationMethods"
         >
           <el-option
             label="进入人工预处理环境"
@@ -77,6 +78,16 @@
           />
         </el-select>
       </div>
+      <div class="flex jc-al-c" v-show="operation.show">
+        <span class="mg-r-20" style="font-size: 25px">预计处理截止时间</span>
+        <el-date-picker
+          v-model="operation.manageTime"
+          type="date"
+          format="yyyy-MM-dd"
+          value-format="yyyy-MM-dd"
+          placeholder="选择日期"
+        ></el-date-picker>
+      </div>
       <span
         slot="footer"
         class="dialog-footer"
@@ -100,6 +111,10 @@ export default {
       activeIndex: "1",
       curRow: {},
       dialogVisible: false,
+      operation:{
+        manageTime: '',
+        show: false
+      },
       page: {
         total: 1,
         currentPage: 1,
@@ -175,6 +190,12 @@ export default {
     init () {
       this.queryBusinessUserOpinionList()
     },
+    operationMethods(){
+      this.operation.show = this.curRow.currentLink == 2;
+      if(!this.operation.show){
+        this.operation.manageTime = '';
+      }
+    },
     openPreview (imageUrl, index) {
       let imageUrls = []
       imageUrl.forEach(val => {
@@ -189,6 +210,7 @@ export default {
     },
     changeProgres (row) {
       this.curRow = { ...row }
+      this.operation.show = this.curRow.currentLink == 2;
       this.dialogVisible = true;
     },
     handleSelect (key) {//消息分类菜单激活回调
@@ -199,7 +221,8 @@ export default {
         currentLinkId: this.curRow.currentLinkId,
         currentLink: this.curRow.currentLink,
         newNumber: this.curRow.newNumber,
-        userOpinionId: this.curRow.userOpinionId
+        userOpinionId: this.curRow.userOpinionId,
+        manageTime: this.operation.manageTime
       })
     },
     //#region 分页