Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pet-business-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘怀志
pet-business-web
Commits
a3a3a5d9
Commit
a3a3a5d9
authored
Sep 16, 2023
by
小费同学阿
💬
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
45c4185e
453860fe
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
632 additions
and
502 deletions
+632
-502
equipment-add.vue
...uipment-management/equipment-management/equipment-add.vue
+337
-312
equipment-detail.vue
...ment-management/equipment-management/equipment-detail.vue
+146
-106
use-details.vue
...views/equipment-management/use-management/use-details.vue
+89
-59
use-management.vue
...ws/equipment-management/use-management/use-management.vue
+5
-5
hospitalization-details.vue
...nt/hospitalization-management/hospitalization-details.vue
+4
-4
check-detail.vue
...ice-management/medical-record-management/check-detail.vue
+1
-0
registration-detail.vue
...ice-management/registration-queue/registration-detail.vue
+3
-0
treatment-detail.vue
...vice-management/treatment-management/treatment-detail.vue
+25
-7
treatment-management.vue
...-management/treatment-management/treatment-management.vue
+22
-9
No files found.
src/views/equipment-management/equipment-management/equipment-add.vue
View file @
a3a3a5d9
<
template
>
<div>
<div
style=
"background-color: #fff;height: 100%;"
>
<div
class=
"app-container-container"
>
<div
style=
" text-align: center;padding-top: 35px;height: 90px;"
>
<span
style=
"font-size: 24px;font-weight: bold; color: #333333;line-height: 20px;"
>
新增
</span>
<div
class=
"box-card"
>
<div
class=
"topTitle"
>
<span
style=
"font-size: 24px;font-weight: bold; color: #333333;line-height: 24px;"
>
新增
</span>
</div>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
:inline=
"true"
label-width=
"auto"
>
<div
style=
"width: 100%"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"125px"
>
<div
style=
" display: flex;position: relative;left: 32px;padding-bottom: 20px;"
>
<div
class=
"title-paragraph"
>
<span
class=
"title-text"
>
当前设备
信息
</span>
<span
class=
"title-text"
>
基本
信息
</span>
</div>
</div>
<!-- 1-->
<el-row
>
<el-row
:gutter=
"24"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"设备名称"
prop=
"deviceName"
>
<el-input
v-model
.
trim=
"form.deviceName"
placeholder=
"请输入设备名称"
class=
"inputWidth"
maxlength=
"20"
/>
...
...
@@ -49,7 +50,7 @@
</el-col>
</el-row>
<!-- 2-->
<el-row
>
<el-row
:gutter=
"24"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"负责人"
prop=
"head"
>
<el-input
v-model
.
trim=
"form.head"
placeholder=
"请输入负责人"
class=
"inputWidth"
/>
...
...
@@ -76,8 +77,8 @@
</el-row>
<!-- 3-->
<el-row>
<el-col
:span=
"1
6"
>
<el-form-item
label=
"服务地点"
prop=
"selectedOptions"
>
<el-col
:span=
"
6"
>
<el-form-item
label=
"服务地点"
prop=
"selectedOptions"
:span=
"6"
>
<el-cascader
v-model=
"form.selectedOptions"
size=
"large"
...
...
@@ -85,26 +86,28 @@
:disabled=
"serviceAreaShow"
placeholder=
"请选择服务地点"
expand-trigger=
"hover"
clearable
class=
"inputWidth"
clearable
@
change=
"handleChangeCascader"
/>
</el-form-item>
<el-form-item
prop=
"address"
>
</el-col>
<el-col
:span=
"9"
style=
"margin-left:0.3125rem "
>
<el-form-item
prop=
"address"
:span=
"9"
class=
"custom-form-item"
>
<el-input
v-model
.
trim=
"form.address"
:disabled=
"serviceAreaShow"
class=
"inputWidth"
placeholder=
"请输入详细地址(街道、楼牌号等)"
maxlength=
"40"
clearable
class=
"address"
/>
</el-form-item>
</el-col>
<el-col
:span=
"8
"
>
<el-form-item
label=
"单位时段服务数"
prop=
"useNu
m"
>
<el-col
:span=
"8"
style=
"margin-left: 3.125rem
"
>
<el-form-item
label=
"单位时段服务数"
prop=
"useNum"
style=
"margin-left: 2.0625re
m"
>
<el-input-number
v-model
.
trim=
"form.useNum"
:min=
"0"
...
...
@@ -120,7 +123,7 @@
</el-row>
<!-- 4-->
<el-row
>
<el-row
:gutter=
"24"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"预约方式"
prop=
"reservationMethod"
>
<el-select
v-model=
"form.reservationMethod"
placeholder=
"请选择预约方式"
class=
"inputWidth"
>
...
...
@@ -173,7 +176,7 @@
</el-col>
</el-row>
<!-- 5-->
<el-row
>
<el-row
:gutter=
"24"
>
<el-col
:span=
"8"
style=
"margin-left: 33.3%"
>
<el-form-item
label=
"下午开始时间"
prop=
"useTime.pms"
>
...
...
@@ -215,7 +218,7 @@
</el-col>
</el-row>
<!-- 6-->
<el-row
>
<el-row
:gutter=
"24"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"权重"
prop=
"sort"
>
<el-input-number
...
...
@@ -250,7 +253,7 @@
</el-col>
</el-row>
<!-- 7-->
<el-row
>
<el-row
:gutter=
"24"
>
<el-col
:span=
"24"
>
<div
class=
"deep-form"
>
<el-form-item
label=
"备注"
prop=
"remark"
>
...
...
@@ -259,7 +262,7 @@
type=
"textarea"
placeholder=
"请输入备注(2~200字)"
maxlength=
"200"
class=
"remark_wi
th"
class=
"inputWid
th"
:rows=
"4"
/>
</el-form-item>
...
...
@@ -268,7 +271,7 @@
</el-row>
<!-- 8-->
<el-row>
<el-col
>
<el-col
:gutter=
"24"
>
<el-form-item
label=
"支持服务地区"
prop=
"serviceArea"
>
<el-cascader
v-model=
"form.serviceArea"
...
...
@@ -280,17 +283,17 @@
collapse-tags
expand-trigger=
"hover"
clearable
style=
"width: 250px
"
class=
"remark_with
"
@
change=
"handleChangeServiceArea"
/>
</el-form-item>
</el-col>
</el-row>
<!-- 9-->
<el-row
>
<el-row
:gutter=
"24"
class=
"lastRow"
>
<el-col>
<el-form-item
label=
"支持检查项目"
prop=
"checkType"
>
<el-select
v-model=
"form.checkType"
placeholder=
"请选择支持检查项目"
style=
"width: 250px
"
multiple
collapse-tags
clearable
>
<el-select
v-model=
"form.checkType"
placeholder=
"请选择支持检查项目"
class=
"remark_with
"
multiple
collapse-tags
clearable
>
<el-option
v-for=
" (item,index) in checkItemOptions"
:key=
"index"
...
...
@@ -302,6 +305,7 @@
</el-col>
</el-row>
</el-form>
</div>
<el-row>
<el-col
class=
"sbuButton"
>
<el-button
:loading=
"submitShow"
class=
"queryBtn"
size=
"mini"
icon=
"el-icon-check"
@
click=
"submitForm"
>
...
...
@@ -841,21 +845,42 @@ export default {
//left: 0;
}
.title-paragraph
{
margin-bottom
:
15px
;
border-left
:
5px
solid
#5FB54B
;
margin-top
:
40px
;
margin-bottom
:
30px
;
border-left
:
3px
solid
#5FB54B
;
border-radius
:
2px
;
height
:
24px
;
.title-text
{
font-weight
:
bold
;
margin-left
:
10px
;
font-size
:
16px
;
color
:
#333333
;
line-height
:
24px
;
}
}
.box-card
{
padding-right
:
48px
;
padding-left
:
32px
;
background-color
:
#fff
;
height
:
100%
;
.topTitle
{
text-align
:
center
;
padding-top
:
30px
;
}
.lastRow
{
::v-deep
.el-form-item
{
margin-bottom
:
0
;
}
}
.
title
{
color
:
#666666
;
font-weight
:
600
;
font-size
:
17px
.
inputWidth
{
width
:
100%
;
}
.inputWidth1
{
width
:
30%
;
}
}
.headerTitle
{
width
:
100%
;
height
:
50px
;
...
...
@@ -881,20 +906,26 @@ export default {
}
.address
{
width
:
535px
;
}
.inputWidth
{
width
:
300px
;
width
:
30%
;
}
.inputNumber_Width
{
width
:
270px
;
width
:
93%
;
}
.text
{
margin-left
:
10px
;
}
.remark_with
{
width
:
1390px
;
width
:
30%
;;
}
.custom-form-item
{
::v-deep
.el-form-item__content
{
margin-left
:
0
!
important
;
line-height
:
2
.25rem
;
}
}
::v-deep
.el-input-number.is-without-controls
.el-input__inner
{
//width: 100px;
line-height
:
30px
;
...
...
@@ -906,12 +937,6 @@ export default {
font-weight
:
bold
;
cursor
:
pointer
;
}
//::v-deep.el-time-select-item:hover {
// background: #F6fcf5;
// color: #5FB54B;
// font-weight: bold;
// cursor: pointer
//}
</
style
>
<
style
lang=
"scss"
>
.equipment-use-time
{
...
...
@@ -929,7 +954,7 @@ export default {
.sbuButton
{
display
:
flex
;
justify-content
:
left
;
margin
:
15
px
0
50px
32px
margin
:
30
px
0
50px
32px
}
</
style
>
src/views/equipment-management/equipment-management/equipment-detail.vue
View file @
a3a3a5d9
This diff is collapsed.
Click to expand it.
src/views/equipment-management/use-management/use-details.vue
View file @
a3a3a5d9
This diff is collapsed.
Click to expand it.
src/views/equipment-management/use-management/use-management.vue
View file @
a3a3a5d9
...
...
@@ -95,7 +95,7 @@
<span>
{{
scope
.
$index
+
1
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"设备名称"
align=
"left"
prop=
"deviceName"
min-width=
"1
0
0"
:show-overflow-tooltip=
"true"
>
<el-table-column
label=
"设备名称"
align=
"left"
prop=
"deviceName"
min-width=
"1
2
0"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
deviceName
||
'-'
}}
</span>
</
template
>
...
...
@@ -105,7 +105,7 @@
<span>
{{
scope
.
row
.
deviceCode
||
'-'
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"检查项目"
align=
"left"
prop=
"checkItemsName"
min-width=
"1
0
0"
:show-overflow-tooltip=
"true"
>
<el-table-column
label=
"检查项目"
align=
"left"
prop=
"checkItemsName"
min-width=
"1
2
0"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
checkItemsName
||
'-'
}}
</span>
</
template
>
...
...
@@ -120,12 +120,12 @@
<dict-tag
:options=
"dict.type.pet_insure"
:value=
"scope.row.insure"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"宠主姓名"
align=
"left"
prop=
"ownerNikename"
min-width=
"1
2
0"
:show-overflow-tooltip=
"true"
>
<el-table-column
label=
"宠主姓名"
align=
"left"
prop=
"ownerNikename"
min-width=
"1
0
0"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
ownerNickname
||
'-'
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"宠主手机号"
align=
"left"
min-width=
"1
2
0"
prop=
"phoneNumber"
>
<el-table-column
label=
"宠主手机号"
align=
"left"
min-width=
"1
0
0"
prop=
"phoneNumber"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
ownerPhone
||
'-'
}}
</span>
</
template
>
...
...
@@ -161,7 +161,7 @@
>
{{
showStatus
(
scope
.
row
.
status
)
||
'-'
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"操作"
align
=
"left"
class
-
name
=
"small-padding fixed-width"
min
-
width
=
"
12
0"
>
<
el
-
table
-
column
label
=
"操作"
align
=
"left"
class
-
name
=
"small-padding fixed-width"
min
-
width
=
"
6
0"
>
<
template
slot
-
scope
=
"scope"
>
<
el
-
button
v
-
hasPermi
=
"['business:use:query']"
...
...
src/views/service-management/hospitalization-management/hospitalization-details.vue
View file @
a3a3a5d9
...
...
@@ -331,7 +331,7 @@
</div>
</div>
<div
style=
"padding: 20px;"
>
<div
style=
"padding: 20px
0 20px 20px
;"
>
<el-table
:data=
"hosDetailBos"
style=
"cursor: pointer;"
>
<el-table-column
label=
"病房类型"
align=
"left"
prop=
"wardType"
>
<template
slot-scope=
"scope"
>
...
...
@@ -376,7 +376,7 @@
<
/div
>
<
/div
>
<
div
style
=
"padding: 30px
20px 30px 20
px;"
>
<
div
style
=
"padding: 30px
0px 30px 16
px;"
>
<
el
-
table
:
data
=
"finTradeHis"
style
=
"cursor: pointer;"
>
<
el
-
table
-
column
label
=
"时间"
align
=
"left"
prop
=
"createTime"
/>
<
el
-
table
-
column
label
=
"金额"
align
=
"left"
prop
=
"paymentAmount"
>
...
...
@@ -399,7 +399,7 @@
<
/el-table
>
<
/div
>
<
div
v
-
if
=
"detailInfo.status<4"
>
<
div
v
-
if
=
"detailInfo.status<4"
style
=
"margin-left: -1rem;padding-left: 16px;"
>
<
el
-
button
v
-
show
=
"detailInfo.status==='2'||detailInfo.status==='0'"
v
-
hasPermi
=
"['business:hospital:edit']"
class
=
"fourWordsBtn"
icon
=
"el-icon-check"
@
click
=
"handAdmission"
>
办理入院
<
/el-button
>
<
el
-
button
v
-
show
=
"detailInfo.status==='3'"
v
-
hasPermi
=
"['business:hospital:edit']"
class
=
"fourWordsBtn"
icon
=
"el-icon-check"
@
click
=
"handDisCharge"
>
办理出院
<
/el-button
>
<
el
-
button
v
-
show
=
"detailInfo.status==='3'"
v
-
hasPermi
=
"['business:hospital:edit']"
class
=
"fourWordsBtn"
icon
=
"el-icon-check"
@
click
=
"changeWard"
>
变更病房
<
/el-button
>
...
...
@@ -407,7 +407,7 @@
<
el
-
button
class
=
"fourWordswhiteBtn"
icon
=
"el-icon-back"
@
click
=
"goBack"
>
返
回
<
/el-button
>
<
/div
>
<
div
v
-
else
style
=
"padding-left:
20px
"
>
<
div
v
-
else
style
=
"padding-left:
16px;
"
>
<
el
-
button
class
=
"fourWordswhiteBtn"
icon
=
"el-icon-document-remove"
disabled
>
查看入院单
<
/el-button
>
<
el
-
button
class
=
"fourWordswhiteBtn"
icon
=
"el-icon-document-remove"
disabled
>
查看出院单
<
/el-button
>
<
el
-
button
class
=
"fourWordswhiteBtn"
icon
=
"el-icon-back"
@
click
=
"goBack"
>
返
回
<
/el-button
>
...
...
src/views/service-management/medical-record-management/check-detail.vue
View file @
a3a3a5d9
...
...
@@ -759,6 +759,7 @@ export default {
}
.el-icon-document
{
width
:
24
.5rem
;
line-height
:
20px
;
border
:
1px
solid
#e4e7ed
;
padding
:
10px
;
background-color
:
#f1f2f5
;
...
...
src/views/service-management/registration-queue/registration-detail.vue
View file @
a3a3a5d9
...
...
@@ -371,6 +371,7 @@
<!--缴费时间-->
<el-form-item
label=
"缴费时间"
>
<el-date-picker
v-if=
"detailInfo.payStatus !== '2'"
v-model=
"detailInfo.payTime"
clearable
disabled
...
...
@@ -379,6 +380,7 @@
value-format=
"yyyy-MM-dd"
format=
"yyyy/MM/dd HH:mm:ss"
/>
<el-input
v-else
v-model=
"blank"
placeholder=
"-"
disabled
/>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -580,6 +582,7 @@ export default {
},
data
()
{
return
{
blank
:
'-'
,
defaultImage
:
petPic
,
submiting
:
false
,
// 提交按钮loading flag
// 进度
...
...
src/views/service-management/treatment-management/treatment-detail.vue
View file @
a3a3a5d9
...
...
@@ -456,12 +456,12 @@
<!--
<div
class=
"tip1"
/>
-->
<!--
<div
style=
"padding-top: 3px;padding-left: 18px;font-size: 16px;font-weight: bold;color: #333333;"
>
预约记录
</div>
-->
<!--
</div>
-->
<div
class=
"title-paragraph-
treat
"
style=
"margin-top: 0px !important;"
>
<div
class=
"title-paragraph-
dialogBox
"
style=
"margin-top: 0px !important;"
>
<span
class=
"title-text"
>
治疗进度
</span>
</div>
<el-form
:model=
"allocationForm"
label-width=
"
auto
"
>
<el-form
:model=
"allocationForm"
label-width=
"
4.3rem
"
>
<el-row>
<el-col
:span=
"
12
"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"诊室"
>
<el-select
v-model=
"allocationForm.consultRoomIdList"
...
...
@@ -496,7 +496,7 @@
</el-form>
<el-table
:data=
"appointmentRoomList"
style=
"width: 9
5.6%;margin-left: 26px
;"
style=
"width: 9
6.4%;margin-left: 1rem
;"
:header-cell-style=
"
{background:'#F4F4F4'}"
>
<el-table-column
prop=
"consulting_name"
align=
"left"
label=
"诊室名称"
:show-overflow-tooltip=
"true"
>
...
...
@@ -537,14 +537,14 @@
<!--
<
div
class
=
"tip1"
/>-->
<!--
<
div
style
=
"padding-top: 3px;padding-left: 18px;font-size: 16px;font-weight: bold;color: #333333;"
>
添加预约
<
/div>--
>
<!--
<
/div>--
>
<
div
class
=
"title-paragraph-
treat
"
style
=
"margin-top: 30px;"
>
<
div
class
=
"title-paragraph-
dialogBox
"
style
=
"margin-top: 30px;"
>
<
span
class
=
"title-text"
>
添加预约
<
/span
>
<
/div
>
<
el
-
form
ref
=
"useRecordForm"
:
model
=
"reservationForm"
:
rules
=
"useRecordrules"
label
-
width
=
"
6.7
rem"
label
-
width
=
"
5.8
rem"
>
<
el
-
row
>
<
el
-
col
:
span
=
"8"
>
...
...
@@ -1163,6 +1163,21 @@ export default {
<
/script
>
<
style
scoped
lang
=
"scss"
>
.
title
-
paragraph
-
dialogBox
{
margin
-
top
:
20
px
;
margin
-
left
:
0
px
;
margin
-
bottom
:
30
px
;
border
-
left
:
3
px
solid
#
5
FB54B
;
border
-
bottom
:
24
px
;
padding
-
top
:
1
px
;
padding
-
bottom
:
1
px
;
.
title
-
text
{
font
-
size
:
16
px
;
font
-
weight
:
bold
;
padding
-
left
:
12
px
;
}
}
.
title
-
paragraph
-
treat
{
margin
-
top
:
20
px
;
margin
-
left
:
10
px
;
...
...
@@ -1192,12 +1207,15 @@ export default {
width
:
392
px
;
}
.
el
-
icon
-
document
{
width
:
24.5
rem
;
line
-
height
:
20
px
;
border
:
1
px
solid
#
e4e7ed
;
padding
:
10
px
;
background
-
color
:
white
;
transition
:
background
-
color
0.3
s
ease
;
border
-
radius
:
5
px
;
&
:
hover
{
color
:
#
3490
CE
;
color
:
#
5
bb647
;
}
}
.
el
-
icon
-
document
:
hover
{
...
...
src/views/service-management/treatment-management/treatment-management.vue
View file @
a3a3a5d9
...
...
@@ -248,13 +248,12 @@
:
close
-
on
-
click
-
modal
=
"false"
@
close
=
"closeDialogRoom"
>
<
div
style
=
"display: flex;padding-bottom: 20px;"
>
<
div
class
=
"tip1"
/>
<
div
style
=
"padding-top: 3px;padding-left: 18px;font-size: 16px;font-weight: bold;color: #333333;"
>
预约记录
<
/div
>
<
div
class
=
"title-paragraph-dialog"
style
=
"margin-top: 0rem !important;"
>
<
div
class
=
"title-text"
>
预约记录
<
/div
>
<
/div
>
<
el
-
form
:
model
=
"allocationForm"
label
-
width
=
"auto"
>
<
el
-
row
>
<
el
-
col
:
span
=
"
12
"
>
<
el
-
col
:
span
=
"
8
"
>
<
el
-
form
-
item
label
=
"诊室"
>
<
el
-
select
v
-
model
=
"allocationForm.consultRoomIdList"
...
...
@@ -289,7 +288,7 @@
<
/el-form
>
<
el
-
table
:
data
=
"appointmentRoomList"
style
=
"width:
100%;padding-left: 22px
;"
style
=
"width:
96%;margin-left: 1rem
;"
:
header
-
cell
-
style
=
"{background:'#F4F4F4'
}
"
>
<
el
-
table
-
column
prop
=
"consulting_name"
align
=
"left"
label
=
"诊室名称"
:
show
-
overflow
-
tooltip
=
"true"
>
...
...
@@ -326,11 +325,10 @@
:
limit
.
sync
=
"allocationForm.pageSize"
@
pagination
=
"getAppointmentRecord"
/>
<
div
style
=
"display: flex;padding-top: 20px;padding-bottom: 20px;"
>
<
div
class
=
"tip1"
/>
<
div
style
=
"padding-top: 3px;padding-left: 18px;font-size: 16px;font-weight: bold;color: #333333;"
>
添加预约
<
/div
>
<
div
class
=
"title-paragraph-dialog"
style
=
"margin-top: 1.95rem;"
>
<
div
class
=
"title-text"
>
添加预约
<
/div
>
<
/div
>
<
el
-
form
ref
=
"useRecordForm"
:
model
=
"reservationForm"
:
rules
=
"useRecordrules"
label
-
width
=
"
6.5
rem"
class
=
"useRecordForm"
>
<
el
-
form
ref
=
"useRecordForm"
:
model
=
"reservationForm"
:
rules
=
"useRecordrules"
label
-
width
=
"
5.8
rem"
class
=
"useRecordForm"
>
<
el
-
row
>
<
el
-
col
:
span
=
"8"
>
<
el
-
form
-
item
label
=
"诊室"
prop
=
"consultRoomName"
>
...
...
@@ -1019,4 +1017,19 @@ export default {
height
:
30
px
;
border
-
left
:
5
px
solid
#
5
bb647
;
}
.
title
-
paragraph
-
dialog
{
margin
-
top
:
20
px
;
margin
-
left
:
0
px
;
margin
-
bottom
:
30
px
;
border
-
left
:
3
px
solid
#
5
FB54B
;
border
-
bottom
:
24
px
;
padding
-
top
:
1
px
;
padding
-
bottom
:
1
px
;
.
title
-
text
{
font
-
size
:
16
px
;
font
-
weight
:
bold
;
padding
-
left
:
12
px
;
}
}
<
/style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment