Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
6380db4c
Commit
6380db4c
authored
May 11, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
0b386570
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1272 additions
and
5 deletions
+1272
-5
productOrderList.vue
src/components/SalesModule/Common/productOrderList.vue
+1184
-0
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+14
-0
productOrderList.vue
src/components/SalesModule/productOrderList.vue
+10
-1
productQuery.vue
src/components/SalesModule/productQuery.vue
+21
-3
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+14
-0
order-form.vue
src/components/orderCommon/order-form.vue
+15
-0
order-form2.vue
src/components/orderCommon/order-form2.vue
+14
-1
No files found.
src/components/SalesModule/Common/productOrderList.vue
0 → 100644
View file @
6380db4c
This diff is collapsed.
Click to expand it.
src/components/SalesModule/groupTourOrder.vue
View file @
6380db4c
...
@@ -1208,6 +1208,13 @@
...
@@ -1208,6 +1208,13 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"联运备注"
prop=
"UnionRemark"
>
<el-input
v-model=
"addMsg.UnionRemark"
type=
"textarea"
maxlength=
"500"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</el-form>
</div>
</div>
<!-- 修改房型 -->
<!-- 修改房型 -->
...
@@ -4236,6 +4243,13 @@
...
@@ -4236,6 +4243,13 @@
return
;
return
;
}
}
}
}
// 选择联运,联运备注必填
if
(
this
.
addMsg
.
IsIntermodal
==
1
||
this
.
addMsg
.
IsReturnIntermodal
==
1
)
{
if
(
!
this
.
addMsg
.
UnionRemark
)
{
this
.
Error
(
"请填写联运备注!"
);
return
;
}
}
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
if
(
...
...
src/components/SalesModule/productOrderList.vue
View file @
6380db4c
...
@@ -277,6 +277,15 @@
...
@@ -277,6 +277,15 @@
<el-input
v-model=
"msg.Title"
class=
"w150"
clearable
></el-input>
<el-input
v-model=
"msg.Title"
class=
"w150"
clearable
></el-input>
</span>
</span>
</li>
</li>
<li>
<span><em>
{{
$t
(
"hotel.hotel_StarDate"
)
}}
</em>
<el-date-picker
v-model=
"msg.StartTime"
@
change=
"dataDui()"
class=
"w135"
value-format=
"yyyy-MM-dd"
type=
"date"
></el-date-picker>
-
<el-date-picker
v-model=
"msg.EndTime"
@
change=
"dataDui()"
class=
"w135"
value-format=
"yyyy-MM-dd"
type=
"date"
></el-date-picker>
</span>
</li>
</ul>
</ul>
</div>
</div>
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"currentPage"
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"currentPage"
...
@@ -292,7 +301,7 @@
...
@@ -292,7 +301,7 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
productOrderList
from
".
./order
Common/productOrderList.vue"
;
import
productOrderList
from
".
/
Common/productOrderList.vue"
;
export
default
{
export
default
{
data
()
{
data
()
{
...
...
src/components/SalesModule/productQuery.vue
View file @
6380db4c
...
@@ -976,7 +976,13 @@
...
@@ -976,7 +976,13 @@
<!-- <i class="el-icon-upload"></i>
<!-- <i class="el-icon-upload"></i>
<div class="el-upload__text">
<div class="el-upload__text">
将文件拖到此处,或
将文件拖到此处,或
<em>点击上传</em>
<em>点击上传</em> // 选择联运,联运备注必填
if (this.addMsg.IsIntermodal == 1 || this.addMsg.IsReturnIntermodal == 1) {
if (!this.addMsg.UnionRemark) {
this.Error("请填写联运备注!");
return;
}
}
</div> -->
</div> -->
<el-button
size=
"small"
type=
"primary"
>
点击上传
</el-button>
<el-button
size=
"small"
type=
"primary"
>
点击上传
</el-button>
</el-upload>
</el-upload>
...
@@ -1009,6 +1015,13 @@
...
@@ -1009,6 +1015,13 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"联运备注"
prop=
"UnionRemark"
>
<el-input
v-model=
"addMsg.UnionRemark"
type=
"textarea"
maxlength=
"500"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</el-form>
</div>
</div>
<div
class=
"productQuerySearch"
v-if=
"!TCIDList"
>
<div
class=
"productQuerySearch"
v-if=
"!TCIDList"
>
...
@@ -3064,8 +3077,13 @@
...
@@ -3064,8 +3077,13 @@
return
;
return
;
}
}
}
}
// 选择联运,联运备注必填
if
(
this
.
addMsg
.
IsIntermodal
==
1
||
this
.
addMsg
.
IsReturnIntermodal
==
1
)
{
if
(
!
this
.
addMsg
.
UnionRemark
)
{
this
.
Error
(
"请填写联运备注!"
);
return
;
}
}
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
...
...
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
6380db4c
...
@@ -1255,6 +1255,13 @@
...
@@ -1255,6 +1255,13 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"联运备注"
prop=
"UnionRemark"
>
<el-input
v-model=
"addMsg.UnionRemark"
type=
"textarea"
maxlength=
"500"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</el-form>
</div>
</div>
...
@@ -5701,6 +5708,13 @@
...
@@ -5701,6 +5708,13 @@
return
;
return
;
}
}
}
}
// 选择联运,联运备注必填
if
(
this
.
addMsg
.
IsIntermodal
==
1
||
this
.
addMsg
.
IsReturnIntermodal
==
1
)
{
if
(
!
this
.
addMsg
.
UnionRemark
)
{
this
.
Error
(
"请填写联运备注!"
);
return
;
}
}
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
if
(
...
...
src/components/orderCommon/order-form.vue
View file @
6380db4c
...
@@ -488,6 +488,14 @@
...
@@ -488,6 +488,14 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<!--备注-->
<el-form-item
label=
"联运备注"
prop=
"UnionRemark"
>
<el-input
v-model=
"addMsg.UnionRemark"
type=
"textarea"
maxlength=
"500"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</el-form>
</div>
</div>
</template>
</template>
...
@@ -1426,6 +1434,13 @@
...
@@ -1426,6 +1434,13 @@
return
;
return
;
}
}
}
}
// 选择联运,联运备注必填
if
(
this
.
addMsg
.
IsIntermodal
==
1
||
this
.
addMsg
.
IsReturnIntermodal
==
1
)
{
if
(
!
this
.
addMsg
.
UnionRemark
)
{
this
.
Error
(
"请填写联运备注!"
);
return
;
}
}
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
this
.
addMsg
.
ChirdNoNeedBedNum
==
""
)
{
if
(
this
.
addMsg
.
ChirdNoNeedBedNum
==
""
)
{
...
...
src/components/orderCommon/order-form2.vue
View file @
6380db4c
...
@@ -656,6 +656,13 @@
...
@@ -656,6 +656,13 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"联运备注"
prop=
"UnionRemark"
>
<el-input
v-model=
"addMsg.UnionRemark"
type=
"textarea"
maxlength=
"500"
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</el-form>
</div>
</div>
</template>
</template>
...
@@ -1748,7 +1755,13 @@
...
@@ -1748,7 +1755,13 @@
this
.
Error
(
"请上传附件!"
);
this
.
Error
(
"请上传附件!"
);
return
;
return
;
}
}
}
}
// 选择联运,联运备注必填
if
(
this
.
addMsg
.
IsIntermodal
==
1
||
this
.
addMsg
.
IsReturnIntermodal
==
1
)
{
if
(
!
this
.
addMsg
.
UnionRemark
)
{
this
.
Error
(
"请填写联运备注!"
);
return
;
}
}
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
//验证人数和机位数 20190807 修改 如果是不是单地接才判断
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
this
.
addMsg
.
GroupType
!==
"4"
&&
this
.
addMsg
.
GroupType
!==
"3"
)
{
if
(
this
.
addMsg
.
ChirdNoNeedBedNum
==
""
)
{
if
(
this
.
addMsg
.
ChirdNoNeedBedNum
==
""
)
{
...
...
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