|
@@ -97,108 +97,108 @@
|
97
|
97
|
</template>
|
98
|
98
|
|
99
|
99
|
<script>
|
100
|
|
- import manufacturerOrDealerDialog from '../Dialog/manufacturerOrDealerDialog'
|
101
|
|
- import {
|
102
|
|
- createDealer,
|
103
|
|
- modifyDealer,
|
104
|
|
- getDealersList,
|
105
|
|
- deleteDealer,
|
106
|
|
- GetDealer
|
107
|
|
- } from "@/api/stock";
|
108
|
|
-
|
109
|
|
- export default {
|
110
|
|
- components: {
|
111
|
|
- manufacturerOrDealerDialog
|
112
|
|
- },
|
113
|
|
- name: "dealer",
|
114
|
|
- data() {
|
115
|
|
- return {
|
116
|
|
- thedefaultActive:'1-2',
|
117
|
|
- signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
|
118
|
|
- dealerData: [],
|
119
|
|
- total: 0,
|
120
|
|
- pageTotal: 0,
|
121
|
|
- pageSelect: 0,
|
122
|
|
- page: 1,
|
123
|
|
- limit: 7,
|
124
|
|
-
|
125
|
|
- loading:false,
|
126
|
|
-
|
127
|
|
- dealer_code: '',
|
128
|
|
- editId: '',
|
129
|
|
- editIndex:'',
|
130
|
|
- dealerDialog: {
|
131
|
|
- titles: '新增经销商',
|
132
|
|
- isVisibility: false,
|
133
|
|
- type: 1, //1.经销商 2.厂家
|
134
|
|
- isCreated: 1, //1.创建 2.编辑 3.查看详情
|
135
|
|
- formValue: {
|
136
|
|
- manufacturer_name: '',
|
137
|
|
- dealer_name: '',
|
138
|
|
- contact: '',
|
139
|
|
- contact_phone: '',
|
140
|
|
- platform_number: '',
|
141
|
|
- email: '',
|
142
|
|
- contact_address: '',
|
143
|
|
- remark: '',
|
144
|
|
- },
|
145
|
|
- resetForm: {
|
146
|
|
- manufacturer_name: '',
|
147
|
|
- dealer_name: '',
|
148
|
|
- contact: '',
|
149
|
|
- contact_phone: '',
|
150
|
|
- platform_number: '',
|
151
|
|
- email: '',
|
152
|
|
- contact_address: '',
|
153
|
|
- remark: '',
|
154
|
|
- },
|
|
100
|
+import manufacturerOrDealerDialog from "../Dialog/manufacturerOrDealerDialog";
|
|
101
|
+import {
|
|
102
|
+ createDealer,
|
|
103
|
+ modifyDealer,
|
|
104
|
+ getDealersList,
|
|
105
|
+ deleteDealer,
|
|
106
|
+ GetDealer
|
|
107
|
+} from "@/api/stock";
|
|
108
|
+
|
|
109
|
+export default {
|
|
110
|
+ components: {
|
|
111
|
+ manufacturerOrDealerDialog
|
|
112
|
+ },
|
|
113
|
+ name: "dealer",
|
|
114
|
+ data() {
|
|
115
|
+ return {
|
|
116
|
+ thedefaultActive: "1-2",
|
|
117
|
+ signAndWeighBoxPatients: "sign-and-weigh-box-patients",
|
|
118
|
+ dealerData: [],
|
|
119
|
+ total: 0,
|
|
120
|
+ pageTotal: 0,
|
|
121
|
+ pageSelect: 0,
|
|
122
|
+ page: 1,
|
|
123
|
+ limit: 7,
|
|
124
|
+
|
|
125
|
+ loading: false,
|
|
126
|
+
|
|
127
|
+ dealer_code: "",
|
|
128
|
+ editId: "",
|
|
129
|
+ editIndex: "",
|
|
130
|
+ dealerDialog: {
|
|
131
|
+ titles: "新增经销商",
|
|
132
|
+ isVisibility: false,
|
|
133
|
+ type: 1, //1.经销商 2.厂家
|
|
134
|
+ isCreated: 1, //1.创建 2.编辑 3.查看详情
|
|
135
|
+ formValue: {
|
|
136
|
+ manufacturer_name: "",
|
|
137
|
+ dealer_name: "",
|
|
138
|
+ contact: "",
|
|
139
|
+ contact_phone: "",
|
|
140
|
+ platform_number: "",
|
|
141
|
+ email: "",
|
|
142
|
+ contact_address: "",
|
|
143
|
+ remark: ""
|
|
144
|
+ },
|
|
145
|
+ resetForm: {
|
|
146
|
+ manufacturer_name: "",
|
|
147
|
+ dealer_name: "",
|
|
148
|
+ contact: "",
|
|
149
|
+ contact_phone: "",
|
|
150
|
+ platform_number: "",
|
|
151
|
+ email: "",
|
|
152
|
+ contact_address: "",
|
|
153
|
+ remark: ""
|
155
|
154
|
}
|
156
|
|
-
|
157
|
|
-
|
|
155
|
+ }
|
|
156
|
+ };
|
|
157
|
+ },
|
|
158
|
+ methods: {
|
|
159
|
+ handleEdit: function(index, row) {
|
|
160
|
+ this.editId = row.id;
|
|
161
|
+ this.editIndex = index;
|
|
162
|
+ let params = {
|
|
163
|
+ id: row.id
|
158
|
164
|
};
|
159
|
|
- },
|
160
|
|
- methods: {
|
161
|
|
- handleEdit: function (index, row) {
|
162
|
|
- this.editId = row.id
|
163
|
|
- this.editIndex = index
|
164
|
|
- let params = {
|
165
|
|
- id: row.id
|
|
165
|
+ this.loading = true;
|
|
166
|
+ GetDealer(params).then(response => {
|
|
167
|
+ if (response.data.state == 0) {
|
|
168
|
+ this.$message.error(response.data.msg);
|
|
169
|
+ this.loading = false;
|
|
170
|
+ return false;
|
|
171
|
+ } else {
|
|
172
|
+ this.loading = false;
|
|
173
|
+ this.dealerDialog.formValue.dealer_name =
|
|
174
|
+ response.data.data.dealer.dealer_name;
|
|
175
|
+ this.dealerDialog.formValue.contact =
|
|
176
|
+ response.data.data.dealer.contact;
|
|
177
|
+ this.dealerDialog.formValue.contact_phone =
|
|
178
|
+ response.data.data.dealer.contact_phone;
|
|
179
|
+ this.dealerDialog.formValue.platform_number =
|
|
180
|
+ response.data.data.dealer.platform_number;
|
|
181
|
+ this.dealerDialog.formValue.email = response.data.data.dealer.email;
|
|
182
|
+ this.dealerDialog.formValue.contact_address =
|
|
183
|
+ response.data.data.dealer.contact_address;
|
|
184
|
+ this.dealerDialog.formValue.remark = response.data.data.dealer.remark;
|
|
185
|
+ this.dealerDialog.isCreated = 2;
|
|
186
|
+ this.$refs.dialog.show();
|
|
187
|
+
|
|
188
|
+ this.dealer_code = response.data.data.dealer.dealer_code;
|
166
|
189
|
}
|
167
|
|
- this.loading = true
|
168
|
|
- GetDealer(params).then(response => {
|
169
|
|
- if (response.data.state == 0) {
|
170
|
|
- this.$message.error(response.data.msg);
|
171
|
|
- this.loading = false
|
172
|
|
- return false;
|
173
|
|
- } else {
|
174
|
|
- this.loading = false
|
175
|
|
- this.dealerDialog.formValue.dealer_name = response.data.data.dealer.dealer_name
|
176
|
|
- this.dealerDialog.formValue.contact = response.data.data.dealer.contact
|
177
|
|
- this.dealerDialog.formValue.contact_phone = response.data.data.dealer.contact_phone
|
178
|
|
- this.dealerDialog.formValue.platform_number = response.data.data.dealer.platform_number
|
179
|
|
- this.dealerDialog.formValue.email = response.data.data.dealer.email
|
180
|
|
- this.dealerDialog.formValue.contact_address = response.data.data.dealer.contact_address
|
181
|
|
- this.dealerDialog.formValue.remark = response.data.data.dealer.remark
|
182
|
|
- this.dealerDialog.isCreated = 2
|
183
|
|
- this.$refs.dialog.show()
|
184
|
|
-
|
185
|
|
- this.dealer_code = response.data.data.dealer.dealer_code
|
186
|
|
-
|
187
|
|
- }
|
188
|
|
- });
|
189
|
|
-
|
190
|
|
- },
|
191
|
|
- handleDelete: function (index, row) {
|
192
|
|
-
|
193
|
|
-
|
194
|
|
- this.$confirm('确认删除这条经销商信息?', '删除经销商信息', {
|
195
|
|
- confirmButtonText: '确定',
|
196
|
|
- cancelButtonText: '取消',
|
197
|
|
- type: 'warning'
|
198
|
|
- }).then(() => {
|
|
190
|
+ });
|
|
191
|
+ },
|
|
192
|
+ handleDelete: function(index, row) {
|
|
193
|
+ this.$confirm("确认删除这条经销商信息?", "删除经销商信息", {
|
|
194
|
+ confirmButtonText: "确定",
|
|
195
|
+ cancelButtonText: "取消",
|
|
196
|
+ type: "warning"
|
|
197
|
+ })
|
|
198
|
+ .then(() => {
|
199
|
199
|
let params = {
|
200
|
200
|
id: row.id
|
201
|
|
- }
|
|
201
|
+ };
|
202
|
202
|
|
203
|
203
|
deleteDealer(params).then(response => {
|
204
|
204
|
if (response.data.state == 0) {
|
|
@@ -207,192 +207,176 @@
|
207
|
207
|
} else {
|
208
|
208
|
this.dealerData.splice(index, 1);
|
209
|
209
|
|
210
|
|
- this.$message.success("删除成功")
|
|
210
|
+ this.$message.success("删除成功");
|
211
|
211
|
}
|
212
|
212
|
});
|
213
|
|
- }).catch(() => {
|
214
|
|
- });
|
215
|
|
-
|
|
213
|
+ })
|
|
214
|
+ .catch(() => {});
|
|
215
|
+ },
|
|
216
|
+ showDetails: function(index, row) {
|
|
217
|
+ let params = {
|
|
218
|
+ id: row.id
|
|
219
|
+ };
|
|
220
|
+ GetDealer(params).then(response => {
|
|
221
|
+ if (response.data.state == 0) {
|
|
222
|
+ this.$message.error(response.data.msg);
|
|
223
|
+ return false;
|
|
224
|
+ } else {
|
|
225
|
+ this.dealerDialog.formValue.dealer_name =
|
|
226
|
+ response.data.data.dealer.dealer_name;
|
|
227
|
+ this.dealerDialog.formValue.contact =
|
|
228
|
+ response.data.data.dealer.contact;
|
|
229
|
+ this.dealerDialog.formValue.contact_phone =
|
|
230
|
+ response.data.data.dealer.contact_phone;
|
|
231
|
+ this.dealerDialog.formValue.platform_number =
|
|
232
|
+ response.data.data.dealer.platform_number;
|
|
233
|
+ this.dealerDialog.formValue.email = response.data.data.dealer.email;
|
|
234
|
+ this.dealerDialog.formValue.contact_address =
|
|
235
|
+ response.data.data.dealer.contact_address;
|
|
236
|
+ this.dealerDialog.formValue.remark = response.data.data.dealer.remark;
|
|
237
|
+ this.dealerDialog.isCreated = 3;
|
|
238
|
+ this.dealerDialog.isVisibility = true;
|
|
239
|
+ }
|
|
240
|
+ });
|
|
241
|
+ },
|
|
242
|
+ manufacturerDialogComfirm: function(val) {
|
|
243
|
+ this.$refs.dialog.hide();
|
216
|
244
|
|
217
|
|
- },
|
218
|
|
- showDetails: function (index, row) {
|
|
245
|
+ if (val.isCreated == 2) {
|
|
246
|
+ //修改
|
219
|
247
|
let params = {
|
220
|
|
- id: row.id
|
221
|
|
- }
|
222
|
|
- GetDealer(params).then(response => {
|
|
248
|
+ dealer_name: val.dealer_name,
|
|
249
|
+ contact: val.contact,
|
|
250
|
+ contact_phone: val.contact_phone,
|
|
251
|
+ platform_number: val.platform_number,
|
|
252
|
+ email: val.email,
|
|
253
|
+ contact_address: val.contact_address,
|
|
254
|
+ remark: val.remark,
|
|
255
|
+ dealer_code: this.dealer_code,
|
|
256
|
+ id: this.editId
|
|
257
|
+ };
|
|
258
|
+ modifyDealer(params).then(response => {
|
223
|
259
|
if (response.data.state == 0) {
|
224
|
260
|
this.$message.error(response.data.msg);
|
225
|
261
|
return false;
|
226
|
262
|
} else {
|
227
|
|
- this.dealerDialog.formValue.dealer_name = response.data.data.dealer.dealer_name
|
228
|
|
- this.dealerDialog.formValue.contact = response.data.data.dealer.contact
|
229
|
|
- this.dealerDialog.formValue.contact_phone = response.data.data.dealer.contact_phone
|
230
|
|
- this.dealerDialog.formValue.platform_number = response.data.data.dealer.platform_number
|
231
|
|
- this.dealerDialog.formValue.email = response.data.data.dealer.email
|
232
|
|
- this.dealerDialog.formValue.contact_address = response.data.data.dealer.contact_address
|
233
|
|
- this.dealerDialog.formValue.remark = response.data.data.dealer.remark
|
234
|
|
- this.dealerDialog.isCreated = 3
|
235
|
|
- this.dealerDialog.isVisibility = true
|
|
263
|
+ this.dealerData[this.editIndex].dealer_name =
|
|
264
|
+ response.data.data.dealer.dealer_name;
|
|
265
|
+ this.dealerData[this.editIndex].contact =
|
|
266
|
+ response.data.data.dealer.contact;
|
|
267
|
+ this.dealerData[this.editIndex].contact_phone =
|
|
268
|
+ response.data.data.dealer.contact_phone;
|
|
269
|
+ this.dealerData[this.editIndex].platform_number =
|
|
270
|
+ response.data.data.dealer.platform_number;
|
|
271
|
+ this.dealerData[this.editIndex].email =
|
|
272
|
+ response.data.data.dealer.email;
|
|
273
|
+ this.dealerData[this.editIndex].contact_address =
|
|
274
|
+ response.data.data.dealer.contact_address;
|
|
275
|
+ this.dealerData[this.editIndex].remark =
|
|
276
|
+ response.data.data.dealer.remark;
|
|
277
|
+ this.dealerData[this.editIndex].dealer_code =
|
|
278
|
+ response.data.data.dealer.dealer_code;
|
|
279
|
+
|
|
280
|
+ this.$message.success("修改成功");
|
236
|
281
|
}
|
237
|
282
|
});
|
238
|
|
- },
|
239
|
|
- manufacturerDialogComfirm: function (val) {
|
240
|
|
- this.$refs.dialog.hide()
|
241
|
|
-
|
242
|
|
-
|
243
|
|
- if (val.isCreated == 2) { //修改
|
244
|
|
- let params = {
|
245
|
|
- 'dealer_name': val.dealer_name,
|
246
|
|
- 'contact': val.contact,
|
247
|
|
- 'contact_phone': val.contact_phone,
|
248
|
|
- 'platform_number': val.platform_number,
|
249
|
|
- 'email': val.email,
|
250
|
|
- 'contact_address': val.contact_address,
|
251
|
|
- 'remark': val.remark,
|
252
|
|
- 'dealer_code': this.dealer_code,
|
253
|
|
- 'id': this.editId
|
254
|
|
- }
|
255
|
|
- modifyDealer(params).then(response => {
|
256
|
|
- if (response.data.state == 0) {
|
257
|
|
- this.$message.error(response.data.msg);
|
258
|
|
- return false;
|
259
|
|
- } else {
|
260
|
|
- this.dealerData[this.editIndex].dealer_name = response.data.data.dealer.dealer_name
|
261
|
|
- this.dealerData[this.editIndex].contact = response.data.data.dealer.contact
|
262
|
|
- this.dealerData[this.editIndex].contact_phone = response.data.data.dealer.contact_phone
|
263
|
|
- this.dealerData[this.editIndex].platform_number = response.data.data.dealer.platform_number
|
264
|
|
- this.dealerData[this.editIndex].email = response.data.data.dealer.email
|
265
|
|
- this.dealerData[this.editIndex].contact_address = response.data.data.dealer.contact_address
|
266
|
|
- this.dealerData[this.editIndex].remark = response.data.data.dealer.remark
|
267
|
|
- this.dealerData[this.editIndex].dealer_code = response.data.data.dealer.dealer_code
|
268
|
|
-
|
269
|
|
- this.$message.success("修改成功")
|
270
|
|
-
|
271
|
|
-
|
272
|
|
- }
|
273
|
|
- });
|
274
|
|
-
|
275
|
|
- } else if (val.isCreated == 1) { //新增
|
276
|
|
- createDealer(val).then(response => {
|
277
|
|
- if (response.data.state == 0) {
|
278
|
|
- this.$message.error(response.data.msg);
|
279
|
|
- return false;
|
280
|
|
- } else {
|
281
|
|
- this.dealerData.unshift(response.data.data.dealer)
|
282
|
|
-
|
283
|
|
- this.$message.success("新增成功")
|
284
|
|
-
|
285
|
|
-
|
286
|
|
- }
|
287
|
|
- });
|
288
|
|
-
|
289
|
|
- }
|
290
|
|
-
|
291
|
|
-
|
292
|
|
- },
|
293
|
|
- manufacturerDialogCancle: function () {
|
294
|
|
- this.$refs.dialog.hide()
|
295
|
|
-
|
296
|
|
- },
|
297
|
|
- showDialog: function () {
|
298
|
|
- // this.manufacturerDialog.formValue = {}
|
299
|
|
- this.dealerDialog.formValue = Object.assign({}, this.dealerDialog.resetForm)
|
300
|
|
- this.$refs.dialog.show()
|
301
|
|
-
|
302
|
|
- this.dealerDialog.isCreated = 1
|
303
|
|
-
|
304
|
|
- }, handleSizeChange(val) {
|
305
|
|
- this.limit = val;
|
306
|
|
- this.getList();
|
307
|
|
- }, handleCurrentChange(val) {
|
308
|
|
- this.page = val;
|
309
|
|
- this.getList();
|
310
|
|
- },getList(){
|
311
|
|
- let params = {
|
312
|
|
- 'page':this.page,
|
313
|
|
- 'limit':this.limit
|
314
|
|
- }
|
315
|
|
- this.loading = true
|
316
|
|
- getDealersList(params).then(response => {
|
|
283
|
+ } else if (val.isCreated == 1) {
|
|
284
|
+ //新增
|
|
285
|
+ createDealer(val).then(response => {
|
317
|
286
|
if (response.data.state == 0) {
|
318
|
|
- this.loading = false
|
319
|
|
-
|
320
|
287
|
this.$message.error(response.data.msg);
|
321
|
288
|
return false;
|
322
|
289
|
} else {
|
323
|
|
- this.loading = false
|
324
|
|
- this.total = response.data.data.total
|
325
|
|
- this.dealerData = []
|
326
|
|
- for (let i = 0; i < response.data.data.dealer.length; i++) {
|
327
|
|
- this.dealerData.push(response.data.data.dealer[i])
|
|
290
|
+ this.dealerData.unshift(response.data.data.dealer);
|
328
|
291
|
|
329
|
|
- }
|
|
292
|
+ this.$message.success("新增成功");
|
330
|
293
|
}
|
331
|
294
|
});
|
332
|
|
-
|
333
|
295
|
}
|
334
|
296
|
},
|
335
|
|
- created() {
|
336
|
|
- this.getList()
|
337
|
|
-
|
|
297
|
+ manufacturerDialogCancle: function() {
|
|
298
|
+ this.$refs.dialog.hide();
|
|
299
|
+ },
|
|
300
|
+ showDialog: function() {
|
|
301
|
+ // this.manufacturerDialog.formValue = {}
|
|
302
|
+ this.dealerDialog.formValue = Object.assign(
|
|
303
|
+ {},
|
|
304
|
+ this.dealerDialog.resetForm
|
|
305
|
+ );
|
|
306
|
+ this.$refs.dialog.show();
|
|
307
|
+
|
|
308
|
+ this.dealerDialog.isCreated = 1;
|
|
309
|
+ },
|
|
310
|
+ handleSizeChange(val) {
|
|
311
|
+ this.limit = val;
|
|
312
|
+ this.getList();
|
|
313
|
+ },
|
|
314
|
+ handleCurrentChange(val) {
|
|
315
|
+ this.page = val;
|
|
316
|
+ this.getList();
|
|
317
|
+ },
|
|
318
|
+ getList() {
|
|
319
|
+ let params = {
|
|
320
|
+ page: this.page,
|
|
321
|
+ limit: this.limit
|
|
322
|
+ };
|
|
323
|
+ this.loading = true;
|
|
324
|
+ getDealersList(params).then(response => {
|
|
325
|
+ if (response.data.state == 0) {
|
|
326
|
+ this.loading = false;
|
|
327
|
+
|
|
328
|
+ this.$message.error(response.data.msg);
|
|
329
|
+ return false;
|
|
330
|
+ } else {
|
|
331
|
+ this.loading = false;
|
|
332
|
+ this.total = response.data.data.total;
|
|
333
|
+ this.dealerData = [];
|
|
334
|
+ for (let i = 0; i < response.data.data.dealer.length; i++) {
|
|
335
|
+ this.dealerData.push(response.data.data.dealer[i]);
|
|
336
|
+ }
|
|
337
|
+ }
|
|
338
|
+ });
|
338
|
339
|
}
|
339
|
|
- };
|
|
340
|
+ },
|
|
341
|
+ created() {
|
|
342
|
+ this.getList();
|
|
343
|
+ }
|
|
344
|
+};
|
340
|
345
|
</script>
|
341
|
346
|
|
342
|
347
|
<style rel="stylesheet/css" lang="scss" scoped>
|
343
|
|
- .information {
|
344
|
|
- border: 1px #dcdfe6 solid;
|
345
|
|
- padding: 30px 20px 30px 20px;
|
|
348
|
+.information {
|
|
349
|
+ border: 1px #dcdfe6 solid;
|
|
350
|
+ padding: 30px 20px 30px 20px;
|
346
|
351
|
|
347
|
|
- .border {
|
348
|
|
- border-bottom: 1px #dcdfe6 solid;
|
349
|
|
- margin: 0px 0 20px 0;
|
350
|
|
- }
|
|
352
|
+ .border {
|
|
353
|
+ border-bottom: 1px #dcdfe6 solid;
|
|
354
|
+ margin: 0px 0 20px 0;
|
351
|
355
|
}
|
352
|
|
-
|
353
|
|
- .title {
|
354
|
|
- height: 44px;
|
355
|
|
- line-height: 44px;
|
356
|
|
- padding: 0 0 0 10px;
|
357
|
|
- margin: 0 0 10px 0;
|
358
|
|
- // border-radius: 4px 4px 0 0;
|
359
|
|
- }
|
360
|
|
-
|
361
|
|
- .edit_separater {
|
362
|
|
- border-top: 1px solid rgb(233, 233, 233);
|
363
|
|
- margin-top: 15px;
|
364
|
|
- margin-bottom: 15px;
|
365
|
|
- }
|
366
|
|
-
|
|
356
|
+}
|
|
357
|
+
|
|
358
|
+.title {
|
|
359
|
+ height: 44px;
|
|
360
|
+ line-height: 44px;
|
|
361
|
+ padding: 0 0 0 10px;
|
|
362
|
+ margin: 0 0 10px 0;
|
|
363
|
+ // border-radius: 4px 4px 0 0;
|
|
364
|
+}
|
|
365
|
+
|
|
366
|
+.edit_separater {
|
|
367
|
+ border-top: 1px solid rgb(233, 233, 233);
|
|
368
|
+ margin-top: 15px;
|
|
369
|
+ margin-bottom: 15px;
|
|
370
|
+}
|
367
|
371
|
</style>
|
368
|
372
|
|
369
|
373
|
<style>
|
370
|
|
- .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
|
371
|
|
- font-size: 12px;
|
372
|
|
- }
|
373
|
|
-
|
374
|
|
- .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
|
375
|
|
- background: #6fb5fa;
|
376
|
|
- }
|
|
374
|
+.sign-and-weigh-box .sign-and-weigh-box-patients .cell {
|
|
375
|
+ font-size: 12px;
|
|
376
|
+}
|
377
|
377
|
|
378
|
|
- .dataTitle {
|
379
|
|
- color: #409eff;
|
380
|
|
- font-size: 16px;
|
381
|
|
- border-bottom: 1px #409eff solid;
|
382
|
|
- height: 36px;
|
383
|
|
- line-height: 10px;
|
384
|
|
- margin: 0 0 10px 0;
|
385
|
|
- position: relative;
|
386
|
|
- padding: 0 0 6px 10px;
|
387
|
|
- &::before {
|
388
|
|
- position: absolute;
|
389
|
|
- left: 0;
|
390
|
|
- bottom: 10px;
|
391
|
|
- content: "";
|
392
|
|
- width: 2px;
|
393
|
|
- height: 20px;
|
394
|
|
- background: #409eff;
|
395
|
|
- }
|
396
|
|
- }
|
|
378
|
+.sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
|
|
379
|
+ background: #6fb5fa;
|
|
380
|
+}
|
397
|
381
|
|
398
|
382
|
</style>
|