Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
ShanghaiGongwei
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
宁路鹏
ShanghaiGongwei
Commits
215b6ab9
Commit
215b6ab9
authored
Nov 01, 2022
by
wangshuangqing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加注释
parent
5fa6c62a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
24 deletions
+26
-24
src/components/index.vue
+8
-7
src/components/page3.vue
+15
-14
vue.config.js
+3
-3
No files found.
src/components/index.vue
View file @
215b6ab9
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Author: ninglupeng
* @Author: ninglupeng
* @Date: 2020-11-24 16:18:58
* @Date: 2020-11-24 16:18:58
* @LastEditors: wsq
* @LastEditors: wsq
* @LastEditTime: 2022-05-
05 21:16:16
* @LastEditTime: 2022-05-
13 12:33:50
* @Description:
* @Description:
-->
-->
<
template
>
<
template
>
...
@@ -100,12 +100,13 @@ export default {
...
@@ -100,12 +100,13 @@ export default {
if
(
this
.
page
==
3
)
{
if
(
this
.
page
==
3
)
{
this
.
$refs
.
vantform
this
.
$refs
.
vantform
.
validate
([
.
validate
([
// "inpatientNumber",
// "AgreementMode",
"buildingNumber"
,
"buildingNumber"
,
//楼号
"agreementFloor"
,
// "inpatientNumber", //入院号
"bedNumber"
,
"agreementFloor"
,
//楼层
"agreementSign"
,
"bedNumber"
,
//床号
"agreementDate"
,
// "agreementSign", // 患者签字
"agreementDate"
,
// 签字日期
])
])
.
then
(()
=>
{
.
then
(()
=>
{
this
.
$store
.
dispatch
(
"user/setpage"
,
4
);
this
.
$store
.
dispatch
(
"user/setpage"
,
4
);
...
...
src/components/page3.vue
View file @
215b6ab9
...
@@ -2,12 +2,12 @@
...
@@ -2,12 +2,12 @@
* @Author: ninglupeng
* @Author: ninglupeng
* @Date: 2020-11-24 16:18:58
* @Date: 2020-11-24 16:18:58
* @LastEditors: wsq
* @LastEditors: wsq
* @LastEditTime: 2022-0
4-13 10:42:21
* @LastEditTime: 2022-0
5-13 12:54:30
* @Description:
* @Description:
-->
-->
<
template
>
<
template
>
<div
class=
"page3"
>
<div
class=
"page3"
>
<div
class=
"page3_header"
>
本人决定选择以下方式:
</div>
<
!--
<
div
class=
"page3_header"
>
本人决定选择以下方式:
</div>
<van-field
colon
name=
"AgreementMode"
>
<van-field
colon
name=
"AgreementMode"
>
<template
#
input
>
<template
#
input
>
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
</van-cell-group>
</van-cell-group>
</van-radio-group>
</van-radio-group>
</
template
>
</
template
>
</van-field>
</van-field>
-->
<van-field
<van-field
colon
colon
...
@@ -102,7 +102,7 @@
...
@@ -102,7 +102,7 @@
:rules=
"[{ required: true, message: '请填写床号' }]"
:rules=
"[{ required: true, message: '请填写床号' }]"
></van-field>
></van-field>
<van-field
<
!-- <
van-field
colon
colon
clearable
clearable
v-model="agreementSign"
v-model="agreementSign"
...
@@ -130,9 +130,10 @@
...
@@ -130,9 +130,10 @@
>{{ agreementSign ? "重签" : "点击签字" }}</van-button
>{{ agreementSign ? "重签" : "点击签字" }}</van-button
>
>
</template>
</template>
</van-field>
</van-field>
-->
<van-field
<van-field
v-show=
"false"
colon
colon
clearable
clearable
readonly
readonly
...
@@ -149,7 +150,7 @@
...
@@ -149,7 +150,7 @@
},
},
]"
]"
/>
/>
<van-popup
v-model=
"showCalendar"
position=
"bottom"
>
<van-popup
v-model=
"showCalendar"
position=
"bottom"
>
<van-datetime-picker
<van-datetime-picker
type=
"date"
type=
"date"
:min-date=
"minAgreementDate"
:min-date=
"minAgreementDate"
...
@@ -160,8 +161,8 @@
...
@@ -160,8 +161,8 @@
v-model=
"agreementDate1"
v-model=
"agreementDate1"
/>
/>
</van-popup>
</van-popup>
<jlPopup
title=
"签名"
v-if=
"showSignHandleVue"
@
onCancel=
"onCancel"
>
<
!-- <
jlPopup title="签名" v-if="showSignHandleVue" @onCancel="onCancel">
</jlPopup>
</jlPopup>
-->
</div>
</div>
</template>
</template>
...
@@ -178,11 +179,11 @@ export default {
...
@@ -178,11 +179,11 @@ export default {
inject
:
[
"setLoading"
],
inject
:
[
"setLoading"
],
data
()
{
data
()
{
return
{
return
{
AgreementMode
:
"向贵院出具授权委托书指定代理人"
,
//
AgreementMode: "向贵院出具授权委托书指定代理人",
buildingNumber
:
""
,
//楼号
buildingNumber
:
""
,
//楼号
agreementFloor
:
""
,
//楼层
agreementFloor
:
""
,
//楼层
bedNumber
:
""
,
//床号
bedNumber
:
""
,
//床号
agreementSign
:
""
,
// 患者签字
//
agreementSign: "", // 患者签字
agreementDate
:
""
,
// 签字日期
agreementDate
:
""
,
// 签字日期
agreementDate1
:
new
Date
(),
// 签字日期弹窗默认日期
agreementDate1
:
new
Date
(),
// 签字日期弹窗默认日期
showCalendar
:
false
,
//签字日期弹窗
showCalendar
:
false
,
//签字日期弹窗
...
@@ -205,14 +206,14 @@ export default {
...
@@ -205,14 +206,14 @@ export default {
methods
:
{
methods
:
{
setLastValue
()
{
setLastValue
()
{
let
arr
=
[
let
arr
=
[
"AgreementMode"
,
//
"AgreementMode",
"buildingNumber"
,
//楼号
"buildingNumber"
,
//楼号
// "inpatientNumber", //入院号
// "inpatientNumber", //入院号
"agreementFloor"
,
//楼层
"agreementFloor"
,
//楼层
"bedNumber"
,
//床号
"bedNumber"
,
//床号
"agreementSign"
,
// 患者签字
//
"agreementSign", // 患者签字
"agreementDate"
,
"agreementDate"
,
// 签字日期
];
// 签字日期
];
arr
.
map
((
item
)
=>
{
arr
.
map
((
item
)
=>
{
if
(
this
.
getLocalStorge
(
item
))
{
if
(
this
.
getLocalStorge
(
item
))
{
...
...
vue.config.js
View file @
215b6ab9
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Author: ninglupeng
* @Author: ninglupeng
* @Date: 2022-03-17 15:06:50
* @Date: 2022-03-17 15:06:50
* @LastEditors: wsq
* @LastEditors: wsq
* @LastEditTime: 2022-05-
06 21:17:32
* @LastEditTime: 2022-05-
13 12:38:15
* @Description:
* @Description:
*/
*/
const
path
=
require
(
'path'
);
const
path
=
require
(
'path'
);
...
@@ -66,9 +66,9 @@ module.exports = {
...
@@ -66,9 +66,9 @@ module.exports = {
//target: 'http://flowtone_lgfc.suvalue.com',//方舱
//target: 'http://flowtone_lgfc.suvalue.com',//方舱
// target: 'http://flowtone_rjny.suvalue.com',//方舱
// target: 'http://flowtone_rjny.suvalue.com',//方舱
//target: 'http://flowtone_syzy.sualvue.com',//方舱
//target: 'http://flowtone_syzy.sualvue.com',//方舱
target
:
'http://flowtone1.suvalue.com'
,
//方舱
//
target: 'http://flowtone1.suvalue.com',//方舱
//target: 'http://flowtone3.suvalue.com',//方舱
//target: 'http://flowtone3.suvalue.com',//方舱
//
target: 'http://flowtone4.suvalue.com',//方舱
target
:
'http://flowtone4.suvalue.com'
,
//方舱
//target: 'http://flowtone5.suvalue.com',//方舱
//target: 'http://flowtone5.suvalue.com',//方舱
// target: 'http://flowtone7.suvalue.com',//方舱
// target: 'http://flowtone7.suvalue.com',//方舱
//target: 'http://flowtone8.suvalue.com',//方舱
//target: 'http://flowtone8.suvalue.com',//方舱
...
...
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