From 4773f42790d4f5795d52ff60e7749d5f9d6a6172 Mon Sep 17 00:00:00 2001
From: lkk <364857242@qq.com>
Date: 星期四, 20 三月 2025 17:56:25 +0800
Subject: [PATCH] 11

---
 src/views/picture/picture/index.vue |   47 +++++++++++++++++++++++++++++++++++------------
 1 files changed, 35 insertions(+), 12 deletions(-)

diff --git a/src/views/picture/picture/index.vue b/src/views/picture/picture/index.vue
index 5f34f8e..4bdf852 100644
--- a/src/views/picture/picture/index.vue
+++ b/src/views/picture/picture/index.vue
@@ -33,7 +33,8 @@
           type="primary"
           icon="el-icon-search"
           size="mini"
-          @click="handleQuery" style="margin-right:15px;"
+          @click="handleQuery"
+          style="margin-right: 15px"
           >鎼滅储</el-button
         >
         <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
@@ -76,7 +77,7 @@
             <!-- <template slot-scope="scope">
               {{ scope.row.customer.cusSex === 0 ? "鐢�" : "濂�" }}
             </template> -->
-             <template slot-scope="scope">
+            <template slot-scope="scope">
               <span v-if="scope.row.cusSex == '0'">鐢�</span>
               <span v-if="scope.row.cusSex == '1'">濂�</span>
               <span v-if="scope.row.cusSex == '2'">鏈煡</span>
@@ -125,6 +126,7 @@
           :data="tableList"
           @selection-change="handleChange"
           border
+          style="height: 400px"
         >
           <el-table-column type="selection" width="40" align="center" />
           <el-table-column label="鏀惰垂椤圭洰" align="center" prop="proName" />
@@ -132,34 +134,42 @@
           <el-table-column label="椤圭洰缁撴灉" align="center" prop="proResult" />
           <!-- <el-table-column label="缁撹" align="center" prop="conclusion" /> -->
         </el-table>
-        <div style="height: 390px; margin-top: 10px">
+        <!--  <div style="height: 200px; margin-top: 10px">
           <el-image
             v-loading="loading"
-            style="height: 390px; width: 100%"
+            style="height: 200px; width: 100%"
             :src="imgsrc + tjNumber + '.png'"
             :preview-src-list="[imgsrc + tjNumber + '.png']"
           ></el-image>
         </div>
-
-        <div style="margin-top: 20px">
+ -->
+        <div style="margin-top: 10px">
           <el-form
             :model="form"
             ref="queryForm"
             size="small"
-            :inline="true"
+            :inline="false"
             label-width="68px"
           >
-            <el-form-item label="椤圭洰缁撴灉" prop="proResult">
-              <el-input v-model="form.proResult" clearable />
+            <el-form-item label="妫�鏌ユ墍瑙�" prop="proResult">
+              <el-input v-model="form.proResult" clearable type="textarea" />
             </el-form-item>
-            <el-form-item label="缁撴灉缁撹" prop="conclusion">
+            <el-form-item label="妫�鏌ョ粨璁�" prop="conclusion">
               <el-input
                 v-model="form.conclusion"
                 clearable
+                type="textarea"
                 @focus="submiepilog"
               />
             </el-form-item>
             <el-form-item>
+              <el-button
+                type="primary"
+                icon="el-icon-picture"
+                size="mini"
+                @click="tupian"
+                >鍥剧墖</el-button
+              >
               <el-button
                 type="primary"
                 icon="el-icon-search"
@@ -181,6 +191,15 @@
                 </div> -->
       </div>
     </div>
+
+    <el-dialog
+      title="鎻愮ず"
+      :visible.sync="dialogVisible"
+      width="60%"
+      :before-close="handleClose"
+    >
+      <img src="../../../assets/logo/logo.png" alt="" />
+    </el-dialog>
 
     <div style="margin-right: 70%">
       <pagination
@@ -242,6 +261,7 @@
       title: "",
       // 鏄惁鏄剧ず寮瑰嚭灞�
       open: false,
+      dialogVisible: false,
       // 鏌ヨ鍙傛暟
       queryParams: {
         pageNum: 1,
@@ -339,9 +359,9 @@
       };
       this.resetForm("form");
     },
-     hb(){
+    hb() {
       console.log(this.queryParams.tjNum);
-       if (this.queryParams.tjNum != null) {
+      if (this.queryParams.tjNum != null) {
         this.handleQuery();
       }
     },
@@ -400,6 +420,9 @@
       let proId = "1633660948860522585";
       this.$refs.aaa.getList(proId);
     },
+    tupian() {
+      this.dialogVisible = true;
+    },
     // 纭畾鎸夐挳
     submito() {
       if (this.dataobj) {

--
Gitblit v1.8.0