230320a303 2 年 前
コミット
758b884adb

ファイルの差分が大きいため隠しています
+ 0 - 0
dist/index.html


ファイルの差分が大きいため隠しています
+ 0 - 0
dist/static/css/chunk-02c82ebf.75f9e1f6.css


ファイルの差分が大きいため隠しています
+ 0 - 0
dist/static/js/app.31d95365.js


ファイルの差分が大きいため隠しています
+ 0 - 0
dist/static/js/chunk-02c82ebf.47bbe8d2.js


ファイルの差分が大きいため隠しています
+ 0 - 0
dist/static/js/chunk-4d2aac02.c2e1287f.js


+ 6 - 1
src/views/map/components/popup/MapTextEdit.vue

@@ -83,7 +83,12 @@ export default {
       let params = { ...this.curObj.obj }
       let remoteEstateOptions = []
       if (params.estateObj) {
-        const estateObj = JSON.parse(params.estateObj)
+        let estateObj = {}
+        if (typeof(params.estateObj) === 'object') {
+          estateObj = params.estateObj
+        } else {
+          estateObj = JSON.parse(params.estateObj)
+        }
         if (estateObj.id) {
           params.estate_id = estateObj.id
           remoteEstateOptions = [{ keyRO: estateObj.estate_name, valRO: estateObj.id }]

+ 1 - 1
src/views/map/dtl.vue

@@ -347,7 +347,7 @@ export default {
                   <div style="width: 80px;">
                     <img style="width: 80px;height: auto;" src="${schoolObj.pri_image}_xs" />
                   </div>
-                  <div style="width: 260px;">
+                  <div style="width: 160px;">
                     <div style="padding: 0 6px 6px;color: #999;font-size: 12px;color: #f00;font-weight: bold;">${saObj[schoolObj.school_attrib]}、${stObj[schoolObj.school_type]}</div>
                     <div style="padding: 0 6px 6px;color: #999;font-size: 12px;">备注:${schoolObj.remarked}</div>
                   </div>

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません