Commit 5f68d116 authored by “yiyousong”'s avatar “yiyousong”

perf: 优化搜索引擎搜索框

parent 3f2b7a46
......@@ -89,7 +89,7 @@
<div class="mb-3">推荐业务</div>
<div class="flex w-full flex-col gap-3">
<div
class="flex cursor-pointer"
class="flex cursor-pointer hover:text-primary"
v-for="(v, i) in calcBusinessList"
:key="v.id"
@click="form.businessName = v.businessName"
......@@ -139,7 +139,7 @@
<div class="mb-3">推荐部门</div>
<div class="flex w-full flex-col gap-3">
<div
class="flex cursor-pointer"
class="flex cursor-pointer hover:text-primary"
v-for="(v, i) in calcDept"
:key="v.id"
@click="form.deptName = v.name"
......@@ -172,7 +172,7 @@
<div class="mb-3">推荐窗口</div>
<div class="flex w-full flex-col gap-3">
<div
class="flex cursor-pointer"
class="flex cursor-pointer hover:text-primary"
v-for="(v, i) in calcWindow"
:key="v.id"
@click="form.windowNum = v.fromnum"
......
......@@ -3,7 +3,11 @@ module.exports = {
// prefix: "p-",
content: ["./public/index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {},
extend: {
colors: {
primary: "#0857E8",
},
},
},
plugins: [],
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment