Explorar o código

Merge branch 'master' of http://git.cc-lotus.info/Information/cxyy-web2

lrf hai 6 meses
pai
achega
d382c998d0

BIN=BIN
public/images/dui.png


BIN=BIN
public/images/email.png


BIN=BIN
public/images/phone.png


BIN=BIN
public/images/quan.png


+ 1 - 1
src/components/custom/custom-layout.vue

@@ -371,7 +371,7 @@ const toOut = () => {
     }
   }
   .main {
-    min-height: 62vh;
+    min-height: 48vh;
   }
   .footer {
     padding: 10px 0;

+ 6 - 0
src/router/index.js

@@ -244,6 +244,12 @@ const router = createRouter({
       meta: { title: '产学研用协同创新数字化平台-帮助中心' },
       component: () => import('@/views/help/index.vue')
     },
+    {
+      path: '/findPassword',
+      name: 'findPassword',
+      meta: { title: '产学研用协同创新数字化平台-找回密码' },
+      component: () => import('@/views/center/findPassword.vue')
+    },
     {
       path: '/brain',
       name: 'brain',

+ 335 - 0
src/views/center/findPassword.vue

@@ -0,0 +1,335 @@
+<template>
+  <custom-layout class="main">
+    <div class="w_1200">
+      <div class="one">
+        <a-steps :current="current" :items="items"></a-steps>
+      </div>
+      <div class="two">
+        <div class="find_2" v-if="current == 0">
+          <div class="find_2_1">请选择一种验证方式</div>
+          <div class="find_2_2">
+            <div class="list" @click="toSelect('1')" :class="[select == '1' ? 'select' : '']">
+              <el-image class="image1" :src="phone" fit="fill" />
+              <div class="title">
+                <div class="title_1">手机号验证</div>
+                <div class="title_2">通过手机号+短信的验证方式进行安全校验</div>
+              </div>
+              <el-image v-if="select == '1'" class="image2" :src="dui" fit="fill" />
+              <el-image v-else class="image3" :src="quan" fit="fill" />
+            </div>
+            <div class="list" @click="toSelect('2')" :class="[select == '2' ? 'select' : '']">
+              <el-image class="image1" :src="email" fit="fill" />
+              <div class="title">
+                <div class="title_1">电子邮箱验证</div>
+                <div class="title_2">通过电子邮箱+短信的验证方式进行安全校验</div>
+              </div>
+              <el-image v-if="select == '2'" class="image2" :src="dui" fit="fill" />
+              <el-image v-else class="image3" :src="quan" fit="fill" />
+            </div>
+          </div>
+        </div>
+        <div class="find_2" v-if="current == 1">
+          <div class="form" v-if="select == '1'">
+            <el-form ref="ruleFormRef" :model="form" :rules="rules1" label-width="70px" class="form" label-position="top">
+              <el-form-item label="手机号" prop="phone">
+                <el-input size="large" clearable v-model="form.phone" placeholder="请输入手机号" style="width: 100%">
+                  <template #prefix>
+                    <el-icon>
+                      <Iphone />
+                    </el-icon>
+                  </template>
+                </el-input>
+              </el-form-item>
+              <el-form-item label="验证码" prop="checkCode">
+                <el-input size="large" class="check-code-box" v-model.number="form.checkCode" placeholder="请输入验证码">
+                  <template #prefix>
+                    <el-icon>
+                      <Message />
+                    </el-icon>
+                  </template>
+                  <template v-slot:append>
+                    <el-button type="primary" @click="getVerifyCode" :disabled="disabledVerify">{{ verify.buttonText }}</el-button>
+                  </template>
+                </el-input>
+              </el-form-item>
+            </el-form>
+          </div>
+          <div class="form" v-else>
+            <el-form ref="ruleFormRef" :model="form" :rules="rules2" label-width="70px" class="form" label-position="top">
+              <el-form-item label="电子邮箱" prop="email">
+                <el-input size="large" clearable v-model="form.email" placeholder="请输入电子邮箱">
+                  <template #prefix>
+                    <el-icon>
+                      <Briefcase />
+                    </el-icon>
+                  </template>
+                </el-input>
+              </el-form-item>
+              <el-form-item label="验证码" prop="checkCode">
+                <el-input size="large" class="check-code-box" v-model.number="form.checkCode" placeholder="请输入验证码">
+                  <template #prefix>
+                    <el-icon>
+                      <Message />
+                    </el-icon>
+                  </template>
+                  <template v-slot:append>
+                    <el-button type="primary" @click="getVerifyCode" :disabled="disabledVerify">{{ verify.buttonText }}</el-button>
+                  </template>
+                </el-input>
+              </el-form-item>
+            </el-form>
+          </div>
+        </div>
+        <div class="find_2" v-if="current == 2">
+          <el-form label-position="top" ref="ruleFormRef" :model="form" :rules="rules" label-width="80px" class="form">
+            <el-form-item label="新密码" prop="password">
+              <el-input size="large" v-model="form.password" type="password" show-password placeholder="请输入新密码">
+                <template #prefix>
+                  <el-icon>
+                    <Unlock />
+                  </el-icon>
+                </template>
+              </el-input>
+            </el-form-item>
+            <el-form-item label="确认密码" prop="refpassword">
+              <el-input size="large" v-model="form.refpassword" type="password" show-password placeholder="请再次确认输入密码">
+                <template #prefix>
+                  <el-icon>
+                    <Unlock />
+                  </el-icon>
+                </template>
+              </el-input>
+            </el-form-item>
+          </el-form>
+        </div>
+        <div class="find_2" v-if="current == 3">
+          <el-image class="image1" :src="dui" fit="fill" />
+          <div class="text">密码修改成功 欢迎登录!</div>
+        </div>
+        <div class="bottom">
+          <button v-if="current == 3" @click="toNext(ruleFormRef, current)">完成</button>
+          <button v-else @click="toNext(ruleFormRef, current)">下一步</button>
+        </div>
+      </div>
+    </div>
+  </custom-layout>
+</template>
+
+<script setup>
+// 图片引入
+import phone from '/images/phone.png'
+import email from '/images/email.png'
+import dui from '/images/dui.png'
+import quan from '/images/quan.png'
+
+import { cloneDeep } from 'lodash-es'
+import { UserStore } from '@/store/user'
+const userStore = UserStore()
+const user = computed(() => userStore.user)
+
+import { LoginStore } from '@/store/api/login'
+const store = LoginStore()
+const router = useRouter()
+const $checkRes = inject('$checkRes')
+
+const select = ref('1')
+const current = ref(0)
+const items = ref([{ title: '选择验证方式' }, { title: '身份验证' }, { title: '重置密码' }, { title: '完成' }])
+
+const validatePhoneNumber = (rule, value, callback) => {
+  const reg = /^1[3-9]\d{9}$/
+  if (!value) {
+    return callback(new Error('手机号不能为空'))
+  }
+  if (!reg.test(value)) {
+    return callback(new Error('请输入正确的手机号'))
+  }
+  callback()
+}
+const ruleFormRef = ref()
+const form = ref({})
+const validatePassword = (rule, value, callback) => {
+  if (!value) {
+    return callback(new Error('请输入确认密码'))
+  }
+  if (form.value.password !== value) {
+    callback(new Error('两次输入的密码不一致'))
+  } else {
+    callback()
+  }
+}
+const rules = reactive({
+  password: [{ required: true, message: '请输入新密码', trigger: 'blur' }],
+  refpassword: [{ required: true, validator: validatePassword, trigger: 'blur' }]
+})
+const rules1 = reactive({
+  phone: [{ required: true, validator: validatePhoneNumber, trigger: 'blur' }],
+  checkCode: [{ required: true, message: '请输入验证码', trigger: 'blur' }]
+})
+const rules2 = reactive({
+  email: [{ required: true, message: '请输入电子邮箱', trigger: 'blur' }],
+  checkCode: [{ required: true, message: '请输入验证码', trigger: 'blur' }]
+})
+// 选择那种类型
+const toSelect = (item) => {
+  select.value = item
+}
+const toNext = async (formEl, item) => {
+  console.log(formEl, item)
+  if (item == 0) current.value = item + 1
+  else if (item == 1) {
+    if (!formEl) return
+    await formEl.validate(async (valid, fields) => {
+      if (valid) {
+        const data = cloneDeep(form.value)
+        console.log(data)
+        current.value = item + 1
+        toClear()
+      } else {
+        console.log('error submit!', fields)
+      }
+    })
+  } else if (item == 2) {
+    if (!formEl) return
+    await formEl.validate(async (valid, fields) => {
+      if (valid) {
+        const data = cloneDeep(form.value)
+        // const res = await store.rp({
+        //   type: 'User',
+        //   id: user.value.id,
+        //   password: data.password
+        // })
+        // if ($checkRes(res, true)) {
+        //   current.value = item + 1
+        //   toClear()
+        // }
+        console.log(data)
+        current.value = item + 1
+        toClear()
+      } else {
+        console.log('error submit!', fields)
+      }
+    })
+  } else router.push({ path: '/login', query: { status: '1' } })
+}
+// 验证码
+const resetCount = () => {
+  clearInterval(timer)
+  timer = 0
+}
+
+let timer = 0
+const verify = reactive({
+  count: 60,
+  buttonText: '获取验证码'
+})
+const disabledVerify = computed(() => {
+  return !form.value.phone || verify.count <= 10
+})
+const getVerifyCode = () => {
+  ElMessage.success('验证码发送成功,请查看')
+  verify.count--
+  verify.buttonText = verify.count + ' 秒后重新获取验证码'
+  timer = window.setInterval(() => {
+    if (verify.count <= 1) {
+      resetCount()
+      verify.buttonText = '重新发送验证码'
+      verify.count = 60
+      return
+    }
+    verify.count--
+    verify.buttonText = verify.count + ' 秒后重新获取验证码'
+  }, 1000)
+}
+// 清空form
+const toClear = () => {
+  form.value = {}
+  ruleFormRef.value = null
+}
+</script>
+<style scoped lang="scss">
+.main {
+  background: #f3f5f9;
+  .w_1200 {
+    height: 100%;
+    margin: 30px auto;
+    padding: 52px 0;
+    width: 1200px;
+    background: #fff;
+    padding: 40px;
+    .two {
+      display: flex;
+      flex-direction: column;
+      align-items: center;
+      .find_2 {
+        text-align: center;
+        width: 600px;
+        margin: 30px 0 0 0;
+        font-size: 18px;
+        .text {
+          margin: 20px 0 0 0;
+          font-size: $global-font-size-20;
+          font-weight: 600;
+          text-align: center;
+          cursor: pointer; /* 改变鼠标样式为手形 */
+        }
+        .find_2_2 {
+          margin: 20px 0 0 0;
+          width: 100%;
+          .list {
+            width: 100%;
+            border: 1px solid rgba(0, 0, 0, 0.1);
+            cursor: pointer;
+            font-weight: 400;
+            margin-top: 12px;
+            padding: 20px 32px;
+            display: flex;
+            align-items: center;
+            justify-content: space-between;
+            .image1 {
+              height: 54px;
+              width: 54px;
+            }
+            .image2 {
+              height: 30px;
+              width: 30px;
+            }
+            .image3 {
+              height: 30px;
+              width: 30px;
+            }
+            .title {
+              width: 330px;
+              .title_1 {
+                color: rgba(0, 0, 0, 0.9);
+                font-size: 18px;
+                margin: 0 0 5px 0;
+              }
+              .title_2 {
+                color: rgba(0, 0, 0, 0.6);
+                font-size: 16px;
+              }
+            }
+          }
+          .select {
+            border: 2px solid #0366f1;
+          }
+        }
+      }
+      .bottom {
+        text-align: center;
+        button {
+          border: none;
+          margin-top: 50px;
+          width: 360px;
+          color: #fff;
+          background: #0366f1;
+          box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);
+          border-radius: 4px;
+          height: 48px;
+        }
+      }
+    }
+  }
+}
+</style>

+ 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>

+ 31 - 3
src/views/detail/achievementDetail.vue

@@ -41,11 +41,11 @@
             </div> -->
             <div class="value">
               <el-image class="image" :src="icon7" fit="fill" />
-              <span class="span">专利情况:{{ info.patent || '暂无' }}</span>
+              <span class="span">成熟度:{{ getDict(info.mature, 'mature') || '暂无' }}</span>
             </div>
             <div class="value">
               <el-image class="image" :src="icon8" fit="fill" />
-              <span class="span">技术标签:{{ info.label || '暂无' }}</span>
+              <span class="span">出让方式:{{ getDict(info.sell, 'sell') || '暂无' }}</span>
             </div>
             <div class="infoButton">
               <div class="button" @click="toChat">预约对接</div>
@@ -101,6 +101,7 @@
 </template>
 
 <script setup>
+import { get } from 'lodash-es'
 import bg_1 from '/images/achievement/tec_bg_1.png'
 import bg_2 from '/images/achievement/tec_bg_2.png'
 import bg_3 from '/images/achievement/tec_bg_3.png'
@@ -119,10 +120,15 @@ import icon8 from '/images/achievement/cg-detail-icon8.png'
 import icon9 from '/images/achievement/cg-detail-icon9.png'
 // 接口
 import { AchievementStore } from '@/store/api/platform/achievement'
+import { ContactApplyStore } from '@/store/api/user/contactApply'
+const contactApplyStore = ContactApplyStore()
 const store = AchievementStore()
+const $checkRes = inject('$checkRes')
 // 收藏
 import moment from 'moment'
 import { CollectionStore } from '@/store/api/platform/collection'
+import { DictDataStore } from '@/store/api/system/dictData'
+const dictDataStore = DictDataStore()
 const collectionStore = CollectionStore()
 
 import { UserStore } from '@/store/user'
@@ -139,10 +145,23 @@ const list = ref([])
 // 请求
 onMounted(async () => {
   loading.value = true
+  await searchOther()
   await search()
   await searchAchieve()
   loading.value = false
 })
+// 字典表
+const matureList = ref([])
+const sellList = ref([])
+const searchOther = async () => {
+  let result
+  // 成熟度
+  result = await dictDataStore.query({ code: 'mature', is_use: '0' })
+  if ($checkRes(result)) matureList.value = result.data
+  // 出让方式
+  result = await dictDataStore.query({ code: 'sell', is_use: '0' })
+  if ($checkRes(result)) sellList.value = result.data
+}
 const search = async () => {
   let id = route.query.id
   if (id) {
@@ -168,6 +187,15 @@ const toView = async (item) => {
     location.reload()
   })
 }
+// 字典数据转换
+const getDict = (data, model) => {
+  if (data) {
+    let res
+    if (model == 'mature') res = matureList.value.find((f) => f.value == data)
+    else if (model == 'sell') res = sellList.value.find((f) => f.value == data)
+    return get(res, 'label')
+  }
+}
 const toCollect = async () => {
   if (user.value.id) {
     info.value.is_collection = !info.value.is_collection
@@ -199,7 +227,7 @@ const toChat = () => {
         const obj = {
           source_id: route.query.id,
           source: 'achievement',
-          apply_user: user.value.id,
+          apply_user: user.value.id
         }
         const res = await contactApplyStore.create(obj)
         $checkRes(res, `预约对接成功等待消息通知`, res.errmsg)

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

@@ -210,7 +210,7 @@ const toChat = () => {
         let apply_user = user.value.id
         const obj = { source_id, source, apply_user }
         const res = await contactApplyStore.create(obj)
-        $checkRes(res,`预约对接成功等待消息通知`,res.errmsg)
+        $checkRes(res, `预约对接成功等待消息通知`, res.errmsg)
       })
       .catch(() => {})
   } else ElMessage({ message: '未登录!', type: 'error' })

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

@@ -64,11 +64,11 @@ const searchOther = async () => {
   const res = await friendStore.list(info)
   if (res.errcode == '0') {
     list.value = res.data
-    activeName.value = res.data[0].id
+    if (res.total > 0) activeName.value = res.data[0].id
   }
 }
 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) => {

+ 1 - 1
src/views/four/index.vue

@@ -7,7 +7,7 @@
           <a-tab-pane :key="item.key" :tab="item.tab" v-for="item in menuList"> </a-tab-pane>
         </a-tabs>
         <div class="input_1">
-          <el-select size="large" clearable v-model="searchValue" filterable remote reserve-keyword placeholder="请输入想要搜索的内容" :remote-method="remoteMethod" :loading="searchLoading">
+          <el-select size="large" clearable v-model="searchValue" allow-create filterable remote reserve-keyword placeholder="请输入想要搜索的内容" :remote-method="remoteMethod" :loading="searchLoading">
             <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
           </el-select>
           <el-button size="large" @click="onSearch" type="primary">搜索</el-button>

+ 36 - 9
src/views/login/parts/login.vue

@@ -3,7 +3,7 @@
     <div class="one">登录</div>
     <div class="two">
       <el-col :span="24" class="tab">
-        <el-col :span="9" class="title" @click="toTab(0)" :class="[activeName == '0' ? 'tab0' : 'tab1']">用户名密码登录</el-col>
+        <el-col :span="9" class="title" @click="toTab(0)" :class="[activeName == '0' ? 'tab0' : 'tab1']">账号密码登录</el-col>
         <el-col :span="9" class="title" @click="toTab(1)" :class="[activeName == '1' ? 'tab0' : 'tab1']">短信快捷登录</el-col>
       </el-col>
       <div v-if="activeName == '0'">
@@ -27,7 +27,7 @@
                 </template>
               </el-input>
             </el-form-item>
-            <el-col :span="24" class="remark">
+            <el-col :span="24" class="remark" @click="toFind">
               <span>忘记密码?</span>
             </el-col>
             <el-col :span="24" class="button">
@@ -71,16 +71,10 @@
                   </el-icon>
                 </template>
                 <template v-slot:append>
-                  <el-button :disabled="codeCd" @click="handleCaptcha('form')"
-                    >获取验证码
-                    <span v-if="codeCd">({{ long }})</span>
-                  </el-button>
+                  <el-button type="primary" @click="getVerifyCode" :disabled="disabledVerify">{{ verify.buttonText }}</el-button>
                 </template>
               </el-input>
             </el-form-item>
-            <el-col :span="24" class="remark">
-              <span>忘记密码?</span>
-            </el-col>
             <el-col :span="24" class="button">
               <el-button type="primary" @click="submitForm(ruleFormRef)">登录</el-button>
             </el-col>
@@ -159,10 +153,43 @@ const submitForm = async (formEl) => {
     }
   })
 }
+// 验证码
+const resetCount = () => {
+  clearInterval(timer)
+  timer = 0
+}
+
+let timer = 0
+const verify = reactive({
+  count: 60,
+  buttonText: '获取验证码'
+})
+const disabledVerify = computed(() => {
+  return !form.value.phone || verify.count <= 10
+})
+const getVerifyCode = () => {
+  ElMessage.success('验证码发送成功,请查看')
+  verify.count--
+  verify.buttonText = verify.count + ' 秒后重新获取验证码'
+  timer = window.setInterval(() => {
+    if (verify.count <= 1) {
+      resetCount()
+      verify.buttonText = '重新发送验证码'
+      verify.count = 60
+      return
+    }
+    verify.count--
+    verify.buttonText = verify.count + ' 秒后重新获取验证码'
+  }, 1000)
+}
 // 去注册
 const toRegister = () => {
   router.push({ path: '/login', query: { status: '0' } })
 }
+// 找回密码
+const toFind = () => {
+  router.push({ path: '/findPassword' })
+}
 // 返回首页
 const toBack = () => {
   router.push({ path: '/' })

+ 40 - 4
src/views/login/parts/register.vue

@@ -45,10 +45,7 @@
               </el-icon>
             </template>
             <template v-slot:append>
-              <el-button :disabled="codeCd" @click="handleCaptcha('form')"
-                >获取验证码
-                <span v-if="codeCd">({{ long }})</span>
-              </el-button>
+              <el-button type="primary" @click="getVerifyCode" :disabled="disabledVerify">{{ verify.buttonText }}</el-button>
             </template>
           </el-input>
         </el-form-item>
@@ -61,6 +58,15 @@
             </template>
           </el-input>
         </el-form-item>
+        <el-form-item label="电子邮箱" prop="email">
+          <el-input size="large" clearable v-model="form.email" placeholder="请输入电子邮箱">
+            <template #prefix>
+              <el-icon>
+                <Briefcase />
+              </el-icon>
+            </template>
+          </el-input>
+        </el-form-item>
         <el-col :span="24" class="button">
           <el-button type="primary" @click="submitForm(ruleFormRef)">注册</el-button>
         </el-col>
@@ -120,11 +126,41 @@ const rules = reactive({
   phone: [{ required: true, validator: validatePhoneNumber, trigger: 'blur' }],
   account: [{ required: true, message: '请输入账号', trigger: 'blur' }],
   password: [{ required: true, message: '请输入密码', trigger: 'blur' }],
+  email: [{ required: true, message: '请输入电子邮箱', trigger: 'blur' }],
   type: [{ required: true, message: '请选择注册类型', trigger: 'blur' }],
   role: [{ required: true, message: '请选择角色', trigger: 'blur' }],
   industry: [{ required: true, message: '请选择板块', trigger: 'blur' }],
   checkCode: [{ required: true, message: '请输入验证码', trigger: 'blur' }]
 })
+// 验证码
+const resetCount = () => {
+  clearInterval(timer)
+  timer = 0
+}
+
+let timer = 0
+const verify = reactive({
+  count: 60,
+  buttonText: '获取验证码'
+})
+const disabledVerify = computed(() => {
+  return !form.value.phone || verify.count <= 10
+})
+const getVerifyCode = () => {
+  ElMessage.success('验证码发送成功,请查看')
+  verify.count--
+  verify.buttonText = verify.count + ' 秒后重新获取验证码'
+  timer = window.setInterval(() => {
+    if (verify.count <= 1) {
+      resetCount()
+      verify.buttonText = '重新发送验证码'
+      verify.count = 60
+      return
+    }
+    verify.count--
+    verify.buttonText = verify.count + ' 秒后重新获取验证码'
+  }, 1000)
+}
 // 注册
 const submitForm = async (formEl) => {
   if (!isAgree.value) {

+ 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;

+ 1 - 1
src/views/search/index.vue

@@ -12,7 +12,7 @@
           <a-tab-pane key="6" tab="成果"> </a-tab-pane>
         </a-tabs>
         <div class="input_1">
-          <el-select size="large" clearable v-model="searchValue" filterable remote reserve-keyword placeholder="请输入想要搜索的内容" :remote-method="remoteMethod" :loading="searchLoading">
+          <el-select size="large" clearable v-model="searchValue" allow-create filterable remote reserve-keyword placeholder="请输入想要搜索的内容" :remote-method="remoteMethod" :loading="searchLoading">
             <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
           </el-select>
           <el-button size="large" @click="onSearch" type="primary">搜索</el-button>

+ 1 - 1
src/views/search/parts/demand.vue

@@ -12,7 +12,7 @@
             {{ item.name || '暂无供给名称' }}
           </div>
           <div class="other_1 textOne" v-if="user && user.id">
-            <span>需求企业</span>
+            <span>需求企业</span>
             <span>{{ item.company || '暂无需求企业' }}</span>
           </div>
           <div class="other_1 textOne" v-if="user && user.id">