Browse Source

修改数据

zs 6 months ago
parent
commit
b5046ecdd4
3 changed files with 8 additions and 9 deletions
  1. 1 3
      src/views/center/parts/state.vue
  2. 1 1
      src/views/detail/friendDetail.vue
  3. 6 5
      src/views/one/page.vue

+ 1 - 3
src/views/center/parts/state.vue

@@ -21,9 +21,7 @@
         </el-col>
         <el-col :span="12">
           <el-form-item label="部门类型" prop="type">
-            <el-select size="large" clearable v-model="form.type" placeholder="请选择部门类型">
-              <el-option v-for="(item, index) in typeList" :key="index" :label="item.label" :value="item.value" />
-            </el-select>
+            <el-input clearable v-model="form.type" placeholder="请输入部门类型" />
           </el-form-item>
         </el-col>
       </el-row>

+ 1 - 1
src/views/detail/friendDetail.vue

@@ -68,7 +68,7 @@ const searchOther = async () => {
   }
 }
 const getUrl = (item) => {
-  if (item) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
+  if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
 }
 const activeName = ref('1')
 const handleChange = (val) => {

+ 6 - 5
src/views/one/page.vue

@@ -141,7 +141,7 @@
             <div class="join_shadow_right"></div>
           </div>
           <div class="join_top">
-            <div class="join_item" v-for="(item, index) in friendList" :key="index">
+            <div class="join_item" v-for="(item, index) in friendList" :key="index" @click="toFriend(item)">
               <el-image class="image" :src="getFile(item.url)" fit="fill">
                 <template v-slot:error>
                   <el-image class="image" :src="friend" fit="fill" />
@@ -259,6 +259,11 @@ const handleMousOut = (index) => {
 const toSelect = (item) => {
   recordInfo.value = item
 }
+// 查看合作伙伴下级
+const toFriend = (item) => {
+  console.log(item)
+  router.push({ path: '/friend/detail', query: { code: item.code } })
+}
 // 请求
 onMounted(() => {
   setTimeout(async () => {
@@ -721,11 +726,9 @@ watch(
     .join {
       margin: auto;
       width: 100%;
-      height: 300px;
       position: relative;
       overflow: hidden;
       display: flex;
-      padding-bottom: 100px;
       padding-top: 48px;
       justify-content: center;
       .join_bg {
@@ -741,7 +744,6 @@ watch(
         filter: blur(67.957px);
       }
       .join_scroll {
-        height: 300px;
         margin: 0 auto;
         max-width: 1920px;
         min-width: 1700px;
@@ -752,7 +754,6 @@ watch(
           width: 100%;
           min-width: 1700px;
           position: absolute;
-          height: 400px;
           z-index: 1;
           display: flex;
           justify-content: space-between;