|
@@ -1,4 +1,9 @@
|
1
|
1
|
<template>
|
|
2
|
+
|
|
3
|
+ <div class="main-contain">
|
|
4
|
+ <div class="position">
|
|
5
|
+ <bread-crumb :crumbs='crumbs'></bread-crumb>
|
|
6
|
+ </div>
|
2
|
7
|
<div class="app-container sign-and-weigh-box">
|
3
|
8
|
<el-row :gutter="20">
|
4
|
9
|
<el-col :span="7">
|
|
@@ -134,15 +139,22 @@
|
134
|
139
|
</el-form>
|
135
|
140
|
</el-col>
|
136
|
141
|
</el-row>
|
137
|
|
- </div>
|
|
142
|
+ </div>
|
|
143
|
+ </div>
|
138
|
144
|
</template>
|
139
|
145
|
|
140
|
146
|
<script>
|
141
|
147
|
import { fetchSignPatients, getPatientSign, SignWeigh, getDialysisInforInfomation, getDialysisAfterInfomation, createdata, editdata } from '@/api/signandweigh'
|
|
148
|
+import BreadCrumb from '../components/bread-crumb'
|
142
|
149
|
export default {
|
143
|
150
|
name: 'sign',
|
|
151
|
+ components: { BreadCrumb },
|
144
|
152
|
data() {
|
145
|
153
|
return {
|
|
154
|
+ crumbs: [
|
|
155
|
+ { path: false, name: '签到称重' },
|
|
156
|
+ { path: '/sign/index', name: '签到称重' }
|
|
157
|
+ ],
|
146
|
158
|
patientlist: [],
|
147
|
159
|
signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
|
148
|
160
|
queryParams: {
|