|
|
|
@ -97,7 +97,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="task-name">
|
|
|
|
|
<div class="task-name checkbox-group-name">
|
|
|
|
|
<span class="task-name-text">产品标签:</span>
|
|
|
|
|
<div class="task-checkbox">
|
|
|
|
|
<el-checkbox-group v-model="queryCondition.checkList">
|
|
|
|
@ -119,6 +119,11 @@
|
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="btns">
|
|
|
|
|
<button class="inquire" @click="inquire(1)">查询</button>
|
|
|
|
|
<button class="reset" @click="reset">重置</button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
@ -134,7 +139,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
drugnum:"(20)",
|
|
|
|
|
drugnum:" (20)",
|
|
|
|
|
activeName: "first",
|
|
|
|
|
queryCondition:{
|
|
|
|
|
fullTextSearch:"", // 全文检索
|
|
|
|
@ -260,6 +265,46 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.checkbox-group-name {
|
|
|
|
|
width: 695px;
|
|
|
|
|
}
|
|
|
|
|
.btns {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.inquire {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: none;
|
|
|
|
|
width: vw(64);
|
|
|
|
|
height: vh(40);
|
|
|
|
|
background: #1e80eb;
|
|
|
|
|
border-radius: vw(4);
|
|
|
|
|
font-size: vw(16);
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
line-height: vh(50);
|
|
|
|
|
margin-right: vw(10);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.reset {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: vw(64);
|
|
|
|
|
height: vh(40);
|
|
|
|
|
border: vw(1) solid #1e80eb;
|
|
|
|
|
border-radius: vw(4);
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
font-size: vw(16);
|
|
|
|
|
font-family: Source Han Sans CN;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #1e80eb;
|
|
|
|
|
line-height: vh(50);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.time-interval {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|