Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mingPayPc
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
fengzhaoyu
mingPayPc
Commits
0e3452c5
Commit
0e3452c5
authored
5 years ago
by
liang ce
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
系统对账时间组件修改,布局修改
parent
80a644d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
8 deletions
+6
-8
PaymentManagementSetting.vue
...ents/pages/PaymentManagement/PaymentManagementSetting.vue
+6
-6
SystemReconciliation.vue
...mponents/pages/PaymentManagement/SystemReconciliation.vue
+0
-2
No files found.
src/components/pages/PaymentManagement/PaymentManagementSetting.vue
View file @
0e3452c5
...
@@ -8,12 +8,12 @@
...
@@ -8,12 +8,12 @@
<div>
<div>
<label>
现金充值:
</label>
<label>
现金充值:
</label>
<a-input
v-model=
"OrgSettingData.chargeProcessInstanceId"
placeholder=
"请输入审批模板ID"
/>
<a-input
v-model=
"OrgSettingData.chargeProcessInstanceId"
placeholder=
"请输入审批模板ID"
/>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
:checked=
"OrgSettingData.chargeSwitch !== '' && OrgSettingData.chargeSwitch !== 'CLOSE'"
@
change=
'chargeSwitchOnChange'
/>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
defaultChecked
:checked=
"OrgSettingData.chargeSwitch !== '' && OrgSettingData.chargeSwitch !== 'CLOSE'"
@
change=
'chargeSwitchOnChange'
/>
</div>
</div>
<div>
<div>
<label>
津贴发放:
</label>
<label>
津贴发放:
</label>
<a-input
v-model=
"OrgSettingData.provideSubsidyId"
placeholder=
"请输入审批模板ID"
/>
<a-input
v-model=
"OrgSettingData.provideSubsidyId"
placeholder=
"请输入审批模板ID"
/>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
:checked=
"OrgSettingData.provideSubsidySwitch !== '' && OrgSettingData.provideSubsidySwitch !== 'CLOSE'"
@
change=
'provideSubsidySwitchOnChange'
/>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
defaultChecked
:checked=
"OrgSettingData.provideSubsidySwitch !== '' && OrgSettingData.provideSubsidySwitch !== 'CLOSE'"
@
change=
'provideSubsidySwitchOnChange'
/>
</div>
</div>
<!--
<div>
<!--
<div>
<label>
退款:
</label>
<label>
退款:
</label>
...
@@ -29,19 +29,19 @@
...
@@ -29,19 +29,19 @@
<div
class=
"switchList"
>
<div
class=
"switchList"
>
<div>
<div>
<label>
充值通知:
</label>
<label>
充值通知:
</label>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
:checked=
"OrgSettingData.chargeNotice !== '' && OrgSettingData.chargeNotice !== 'CLOSE'"
@
change=
'chargeNoticeOnChange'
/>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
defaultChecked
:checked=
"OrgSettingData.chargeNotice !== '' && OrgSettingData.chargeNotice !== 'CLOSE'"
@
change=
'chargeNoticeOnChange'
/>
</div>
</div>
<div>
<div>
<label>
退款通知:
</label>
<label>
退款通知:
</label>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
:checked=
"OrgSettingData.refundNotice !== '' && OrgSettingData.refundNotice !== 'CLOSE'"
@
change=
'refundNoticeOnChange'
/>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
defaultChecked
:checked=
"OrgSettingData.refundNotice !== '' && OrgSettingData.refundNotice !== 'CLOSE'"
@
change=
'refundNoticeOnChange'
/>
</div>
</div>
<div>
<div>
<label>
发津贴通知:
</label>
<label>
发津贴通知:
</label>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
:checked=
"OrgSettingData.provideSubsidyNotice !== '' && OrgSettingData.provideSubsidyNotice !== 'CLOSE'"
@
change=
'provideSubsidyNoticeOnChange'
/>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
defaultChecked
:checked=
"OrgSettingData.provideSubsidyNotice !== '' && OrgSettingData.provideSubsidyNotice !== 'CLOSE'"
@
change=
'provideSubsidyNoticeOnChange'
/>
</div>
</div>
<div>
<div>
<label>
消费通知:
</label>
<label>
消费通知:
</label>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
:checked=
"OrgSettingData.consumeSwitch !== '' && OrgSettingData.consumeSwitch !== 'CLOSE'"
@
change=
'consumeSwitchOnChange'
/>
<a-switch
checkedChildren=
"开"
unCheckedChildren=
"关"
defaultChecked
:checked=
"OrgSettingData.consumeSwitch !== '' && OrgSettingData.consumeSwitch !== 'CLOSE'"
@
change=
'consumeSwitchOnChange'
/>
</div>
</div>
</div>
</div>
<div
style=
"margin-top: 60px;margin-left: 200px"
>
<div
style=
"margin-top: 60px;margin-left: 200px"
>
...
...
This diff is collapsed.
Click to expand it.
src/components/pages/PaymentManagement/SystemReconciliation.vue
View file @
0e3452c5
...
@@ -8,7 +8,6 @@
...
@@ -8,7 +8,6 @@
placeholder=
"开始日期"
placeholder=
"开始日期"
@
change=
"onChangeStartValue"
@
change=
"onChangeStartValue"
@
openChange=
"handleStartOpenChange"
@
openChange=
"handleStartOpenChange"
style=
"margin-right: 10px"
/>
/>
~
~
<a-date-picker
<a-date-picker
...
@@ -19,7 +18,6 @@
...
@@ -19,7 +18,6 @@
v-model=
"endValue"
v-model=
"endValue"
:open=
"endOpen"
:open=
"endOpen"
@
openChange=
"handleEndOpenChange"
@
openChange=
"handleEndOpenChange"
style=
"margin-left: 10px"
/>
/>
<a-button
type=
"primary"
@
click=
"getAccountCheck"
>
查询
</a-button>
<a-button
type=
"primary"
@
click=
"getAccountCheck"
>
查询
</a-button>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
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