Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhouqian
vue-gjjs
Commits
6068c389
Commit
6068c389
authored
Jul 15, 2022
by
wangyanjiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码格式化&优化bdtdcr页面布局及事件
parent
77eb2061
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
6 deletions
+18
-6
Pattern.js
src/model/Bdtdcr/Pattern.js
+4
-0
index.js
src/model/Bdtdcr/index.js
+3
-3
index.js
src/model/Bdteus/index.js
+0
-0
Brtdcrd.vue
src/views/Business/Bdtdcr/Brtdcrd.vue
+2
-2
Utlp.vue
src/views/Business/Bdtdcr/Utlp.vue
+2
-1
index.vue
src/views/Business/Bdtdcr/index.vue
+7
-0
No files found.
src/model/Bdtdcr/Pattern.js
View file @
6068c389
...
...
@@ -221,6 +221,10 @@ export default {
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"setmod.glemod.gleshwstm"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
1
,
message
:
"长度不能超过1"
}
],
...
...
src/model/Bdtdcr/index.js
View file @
6068c389
...
...
@@ -12,7 +12,7 @@ export default class Bdtdcr {
brtbenl4blk
:
""
,
bddgrp
:
{
rec
:
{
advdocflg
:
""
,
advdocflg
:
""
,
docflg
:
""
,
// 单据类型 .bddgrp.rec.docflg
rcvdat
:
""
,
// 到单日期 .bddgrp.rec.rcvdat
predat
:
""
,
// 到单日期 .bddgrp.rec.predat
...
...
@@ -169,8 +169,8 @@ export default class Bdtdcr {
},
docgrdm
:
{
docdsclab
:
""
,
// Label of document description .bdtp.docgrdm.docdsclab
docgrdp
:
""
,
docgrd
:
""
,
docgrdp
:
""
,
docgrd
:
""
,
},
},
rejtype
:
""
,
// 退单方式 .rejtype
...
...
src/model/Bdteus/index.js
View file @
6068c389
This diff is collapsed.
Click to expand it.
src/views/Business/Bdtdcr/Brtdcrd.vue
View file @
6068c389
...
...
@@ -10,8 +10,8 @@
</el-form-item>
</c-col>
</c-row>
<el-form-item
label=
"快递单号"
>
<c-input
type=
"textarea"
:disabled=
"false"
:rows=
"2"
v-model=
"model.expmno"
maxlength=
"120"
show-word-limit
<el-form-item
label=
"快递单号"
v-if=
"model.bddgrp.rec.advdocflg=='X'"
>
<c-input
type=
"textarea"
:rows=
"2"
v-model=
"model.expmno"
maxlength=
"120"
show-word-limit
placeholder=
"请输入单号"
></c-input>
</el-form-item>
<!--
<c-row>
...
...
src/views/Business/Bdtdcr/Utlp.vue
View file @
6068c389
...
...
@@ -511,7 +511,7 @@
<c-col
:span=
"12"
>
<c-col>
<el-form-item
label=
"通知日期"
prop=
"bddgrp.rec.orddat"
>
<el-form-item
label=
"通知日期"
prop=
"bddgrp.rec.orddat"
>
<c-date-picker
type=
"date"
v-model=
"model.bddgrp.rec.orddat"
...
...
@@ -611,6 +611,7 @@
v-model=
"model.rejtype"
style=
"width: 100%"
placeholder=
"请选择退单方式"
:disabled=
"model.bddgrp.rec.advdocflg!='X'"
>
<el-option
v-for=
"item in codes.rejtype"
...
...
src/views/Business/Bdtdcr/index.vue
View file @
6068c389
...
...
@@ -38,6 +38,11 @@
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"分录"
name=
"glepan"
>
<m-glepan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000000 -->
<el-tab-pane
label=
"附言"
name=
"coninfp"
>
<m-coninfp
:model=
"model"
:codes=
"codes"
/>
...
...
@@ -72,6 +77,7 @@ import Default from "~/model/Bdtdcr/Default";
import
Check
from
"~/model/Bdtdcr/Check"
;
import
Utlp
from
"./Utlp"
;
import
Brtdcrd
from
"./Brtdcrd"
;
import
Glepan
from
"~/views/Public/Glepan"
;
import
Engp
from
"~/views/Public/Engp"
;
//import Setpan from "./Setpan";
import
Setpan
from
"~/views/Public/Setpan"
;
...
...
@@ -86,6 +92,7 @@ export default {
"m-brtdcrd"
:
Brtdcrd
,
"m-engp"
:
Engp
,
"m-setpan"
:
Setpan
,
"m-glepan"
:
Glepan
,
"m-coninfp"
:
Coninfp
,
"m-docpan"
:
Docpan
,
"m-limitbody"
:
Limitbody
,
...
...
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