提交 d71dac2b 编写于 作者: xiaoping.di's avatar xiaoping.di

问诊台调整ui

上级 71e1ac76
此差异已折叠。
此差异已折叠。
...@@ -73,8 +73,26 @@ ...@@ -73,8 +73,26 @@
<el-button>确定</el-button> <el-button>确定</el-button>
</div> </div>
</div> </div>
<div v-else> <div
111111 v-else
class="workbench-content"
>
<div
v-if="currentDiagList"
class="workbench-li-c"
>
<!-- 1111 -->
<div class="grid-c">
<div
v-for="(item, index) in currentDiagList"
:key="index"
class="workbench-li"
>
<consultation-card :item="item" />
</div>
</div>
<!-- 1111 -->
</div>
</div> </div>
</div> </div>
...@@ -90,21 +108,6 @@ ...@@ -90,21 +108,6 @@
暂时没有问诊 暂时没有问诊
</div> </div>
</div> </div>
<!-- <div
v-if="allSize > 0"
class="pagination-container"
>
<el-pagination
background
:current-page="searchParam.pageNo"
:page-sizes="[6, 12, 18, 24]"
:page-size="searchParam.pageSize"
layout="prev, pager, next, sizes, jumper"
:total="allSize"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</div> -->
</div> </div>
</div> </div>
</template> </template>
...@@ -113,11 +116,11 @@ ...@@ -113,11 +116,11 @@
import { createNamespacedHelpers } from 'vuex'; import { createNamespacedHelpers } from 'vuex';
const { mapState } = createNamespacedHelpers('main'); const { mapState } = createNamespacedHelpers('main');
import storejs from 'storejs'; import storejs from 'storejs';
// import InquiryListComponent from '../../../components/common/inquirylist.vue'; import consultationCard from '@/components/common/consultationCard.vue';
import { conditionUpdate } from '@/api/workbench'; import { conditionUpdate } from '@/api/workbench';
export default { export default {
components: { components: {
// InquiryListComponent, consultationCard,
}, },
data() { data() {
const s = storejs.get('soketQuest'); const s = storejs.get('soketQuest');
...@@ -399,15 +402,16 @@ ...@@ -399,15 +402,16 @@
} }
} }
.workbench-content { .workbench-content {
padding: 20px 10px; padding: 10px;
.workbench-li-c { .workbench-li-c {
width: 100%; width: 100%;
.grid-c { .grid-c {
width: 100%;
display: grid; display: grid;
grid-template-columns: 33% 33% 33%;
grid-row-gap: 20px; grid-row-gap: 20px;
grid-column-gap: 20px; grid-column-gap: 20px;
padding: 25px 50px; padding: 0px 7px;
background: #fff;
.el-checkbox-group { .el-checkbox-group {
.el-checkbox { .el-checkbox {
width: 20%; width: 20%;
......
...@@ -51,7 +51,6 @@ ...@@ -51,7 +51,6 @@
</div> </div>
</div> </div>
</div> </div>
<div <div
v-else v-else
class="nodata-container" class="nodata-container"
...@@ -82,7 +81,6 @@ ...@@ -82,7 +81,6 @@
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import { createNamespacedHelpers } from 'vuex'; import { createNamespacedHelpers } from 'vuex';
const { mapState } = createNamespacedHelpers('main'); const { mapState } = createNamespacedHelpers('main');
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册