zs há 7 meses atrás
pai
commit
192506a085
2 ficheiros alterados com 78 adições e 1 exclusões
  1. 77 0
      src/utils/city.js
  2. 1 1
      src/views/one/page.vue

+ 77 - 0
src/utils/city.js

@@ -0,0 +1,77 @@
+/**
+ * 省市
+ *
+ */
+export async function getCity() {
+  return {
+    address: [
+      {
+        value: '220100',
+        label: '长春市',
+        children: [
+          {
+            label: '南关区'
+          },
+          {
+            label: '宽城区'
+          },
+          {
+            label: '朝阳区'
+          },
+          {
+            label: '二道区'
+          },
+          {
+            label: '绿园区'
+          },
+          {
+            label: '双阳区'
+          },
+          {
+            label: '九台区'
+          }
+        ]
+      },
+      {
+        value: '220200',
+        label: '吉林市',
+        children: []
+      },
+      {
+        value: '220300',
+        label: '四平市',
+        children: []
+      },
+      {
+        value: '220400',
+        label: '辽源市',
+        children: []
+      },
+      {
+        value: '220500',
+        label: '通化市',
+        children: []
+      },
+      {
+        value: '220600',
+        label: '白山市',
+        children: []
+      },
+      {
+        value: '220700',
+        label: '松原市',
+        children: []
+      },
+      {
+        value: '220800',
+        label: '白城市',
+        children: []
+      },
+      {
+        value: '222400',
+        label: '延边朝鲜族自治州',
+        children: []
+      }
+    ]
+  }
+}

+ 1 - 1
src/views/one/page.vue

@@ -124,7 +124,7 @@
             <div class="content" :class="`content` + [index]">
               <div class="name">{{ item.name || '暂无孵化基地名称' }}</div>
               <div class="other_1">
-                <div v-if="item.brief" v-html="item.brief"></div>
+                {{ removeHtmlStyle(item.brief) || '暂无简介' }}
               </div>
               <div class="button">
                 <button @click="toView(item, '1')">查看详情</button>