From f43ef0c77c6f437bd0f7459d75168e6f77e334bb Mon Sep 17 00:00:00 2001
From: feige <feige@qq.com>
Date: 星期一, 22 十二月 2025 11:18:11 +0800
Subject: [PATCH] 修改了代码

---
 ruoyi-ui/src/views/note/propertyInfo.vue |   51 +++++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 41 insertions(+), 10 deletions(-)

diff --git a/ruoyi-ui/src/views/note/propertyInfo.vue b/ruoyi-ui/src/views/note/propertyInfo.vue
index b5069ef..e4f2034 100644
--- a/ruoyi-ui/src/views/note/propertyInfo.vue
+++ b/ruoyi-ui/src/views/note/propertyInfo.vue
@@ -2,7 +2,7 @@
   <div class="app-container" id="printable-content">
     <div class="form-header mt" >
       <h1 style="font-size:21px;padding-top:30px;display: flex;justify-content: space-between;align-items: center;">
-        <span>瀹跺涵璧勪骇璇︽儏</span>
+        <span>瀹朵骇璇︽儏</span>
         <div   style="display: flex; align-items: center;">
           <el-button size="mini" type="text"  @click="checkNote"  v-hasPermi="['person:information:memo']">
             <div class="form" ><el-icon  style="padding-right:110px;"></el-icon>
@@ -36,7 +36,11 @@
         </el-input>
       </el-form-item>
 
-
+        <el-form-item label="浠峰�艰寖鍥�" prop="valueRange">
+          <el-radio-group v-model="formData.valueRange" :style="{width: '100%'}">
+            <el-radio v-for="(item, index) in valueRangeOptions" :key="index" :label="item.value">{{ item.label }}</el-radio>
+          </el-radio-group>
+        </el-form-item>
       <el-form-item label="鏍囬" prop="title">
         <el-input v-model="formData.title" placeholder="璇疯緭鍏ユ爣棰�" clearable :style="{width: '100%'}" :disabled="dsb"></el-input>
       </el-form-item>
@@ -236,6 +240,7 @@
         address: undefined,
         remark: undefined,
         url: "",
+        valueRange: undefined,
       },
       desurl:'',
       dialogImageUrl: '',
@@ -268,10 +273,22 @@
           message: '璇疯緭鍏ュ叿浣撲綅缃�',
           trigger: 'blur'
         }],
+        valueRange: [{
+          required: true,
+          message: '璇烽�夋嫨浠峰�艰寖鍥�',
+          trigger: 'change'
+        }],
 
 
       },
       typeOptions: [],
+      valueRangeOptions: [
+        {label: '10000浠ヤ笅', value: '10000浠ヤ笅'},
+        {label: '1w鍒�10w', value: '1w鍒�10w'},
+        {label: '10w鍒�100w', value: '10w鍒�100w'},
+        {label: '100w-1000w', value: '100w-1000w'},
+        {label: '1000w浠ヤ笂', value: '1000w浠ヤ笂'},
+      ],
     }
   },
   computed: {},
@@ -286,11 +303,11 @@
       this.dsb = !jd
       this.isShow=true
     //  document.title = "淇敼璧勪骇璇︾粏淇℃伅";
-      this.$route.meta.title = "淇敼璧勪骇璇︾粏淇℃伅";//鍒楄〃鐨勫悕绉�
+      this.$route.meta.title = "淇敼瀹朵骇璇︾粏淇℃伅";//鍒楄〃鐨勫悕绉�
     }
     else{
      // document.title = "瀹跺涵璧勪骇璇︾粏淇℃伅";
-      this.$route.meta.title = "瀹跺涵璧勪骇璇︾粏淇℃伅";//鍒楄〃鐨勫悕绉�
+      this.$route.meta.title = "瀹朵骇璇︾粏淇℃伅";//鍒楄〃鐨勫悕绉�
       this.btn = false;
      // alert(this.btn)
       this.isShow=false
@@ -309,12 +326,26 @@
              let pth = paths[i].substr(paths[i].length - 4, paths[i].length)
          //	alert(pth)
              if (_this.fot.includes(pth) === true)
-         	{
-         		if(paths[i][0]=="/")
-               _this.fileList.push({name:paths[i],url: process.env.VUE_APP_BASE_TRUE_API+paths[i].substr(1),res:false})
-         	  else
-         	     _this.fileList.push({name:paths[i],url: process.env.VUE_APP_BASE_TRUE_API+paths[i],res:false})
-         	  }
+         	// {
+         	// 	if(paths[i][0]=="/")
+          //      _this.fileList.push({name:paths[i],url: process.env.VUE_APP_BASE_TRUE_API+paths[i].substr(1),res:false})
+         	//   else
+         	//      _this.fileList.push({name:paths[i],url: process.env.VUE_APP_BASE_TRUE_API+paths[i],res:false})
+         	//   }
+          {
+            if(paths[i].includes(process.env.VUE_APP_BASE_TRUE_API)){
+              if(paths[i][0]=="/")
+                    _this.fileList.push({name:paths[i],url: paths[i].substr(1),res:false})
+              else
+                 _this.fileList.push({name:paths[i],url: paths[i],res:false})
+            }else{
+              if(paths[i][0]=="/")
+                    _this.fileList.push({name:paths[i],url: process.env.VUE_APP_BASE_TRUE_API+paths[i].substr(1),res:false})
+              else
+                 _this.fileList.push({name:paths[i],url: process.env.VUE_APP_BASE_TRUE_API+paths[i],res:false})
+            }
+
+            }
              else {
                // alert(paths[i])
          	 // alert()

--
Gitblit v1.9.1