Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
71968259
Commit
71968259
authored
Dec 15, 2022
by
季圣华
Browse files
调整样式,兼容手机浏览器页面
parent
05426bf2
Changes
63
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/bill/modules/RetailBackModal.vue
View file @
71968259
...
...
@@ -4,13 +4,11 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
style=
"top:20px;height: 95%;overflow-y: hidden"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/bill/modules/RetailOutModal.vue
View file @
71968259
...
...
@@ -4,16 +4,14 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
v-bind:prefixNo=
"prefixNo"
switchHelp
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
:id=
"prefixNo"
style=
"top:20px;height: 95%;
overflow-y: hidden
"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/bill/modules/SaleBackModal.vue
View file @
71968259
...
...
@@ -4,13 +4,11 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
style=
"top:20px;height: 95%;overflow-y: hidden"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/bill/modules/SaleOrderModal.vue
View file @
71968259
...
...
@@ -4,16 +4,14 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
v-bind:prefixNo=
"prefixNo"
switchHelp
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
:id=
"prefixNo"
style=
"top:20px;height: 95%;
overflow-y: hidden
"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/bill/modules/SaleOutModal.vue
View file @
71968259
...
...
@@ -4,16 +4,14 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
v-bind:prefixNo=
"prefixNo"
switchHelp
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
:id=
"prefixNo"
style=
"top:20px;height: 95%;
overflow-y: hidden
"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/financial/dialog/DebtBillList.vue
View file @
71968259
...
...
@@ -6,12 +6,13 @@
:visible=
"visible"
:getContainer=
"() => $refs.container"
:maskStyle=
"
{'top':'93px','left':'154px'}"
:wrapClassName="wrapClassNameInfo()"
:mask="isDesktop()"
:maskClosable="false"
@ok="handleOk"
@cancel="handleCancel"
cancelText="关闭"
wrapClassName="ant-modal-cust-warp"
style="top:20px;height: 95%;overflow-y: hidden">
style="top:20px;height: 95%;">
<!-- 查询区域 -->
<div
class=
"table-page-search-wrapper"
>
<!-- 搜索区域 -->
...
...
@@ -81,11 +82,12 @@
<
script
>
import
BillDetail
from
'
../../bill/dialog/BillDetail
'
import
{
JeecgListMixin
}
from
'
@/mixins/JeecgListMixin
'
import
{
mixinDevice
}
from
'
@/utils/mixin
'
import
{
findBillDetailByNumber
}
from
'
@/api/api
'
import
Vue
from
'
vue
'
export
default
{
name
:
'
DebtBillList
'
,
mixins
:[
JeecgListMixin
],
mixins
:[
JeecgListMixin
,
mixinDevice
],
components
:
{
BillDetail
},
...
...
jshERP-web/src/views/financial/modules/AdvanceInModal.vue
View file @
71968259
...
...
@@ -4,13 +4,11 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
style=
"top:20px;height: 95%;overflow-y: hidden"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/financial/modules/GiroModal.vue
View file @
71968259
...
...
@@ -4,13 +4,11 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
style=
"top:20px;height: 95%;overflow-y: hidden"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/financial/modules/ItemInModal.vue
View file @
71968259
...
...
@@ -4,13 +4,11 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
style=
"top:20px;height: 95%;overflow-y: hidden"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/financial/modules/ItemOutModal.vue
View file @
71968259
...
...
@@ -4,13 +4,11 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
style=
"top:20px;height: 95%;overflow-y: hidden"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/financial/modules/MoneyInModal.vue
View file @
71968259
...
...
@@ -4,13 +4,11 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
style=
"top:20px;height: 95%;overflow-y: hidden"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/financial/modules/MoneyOutModal.vue
View file @
71968259
...
...
@@ -4,13 +4,11 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
:keyboard=
"false"
:forceRender=
"true"
switchFullscreen
@
cancel=
"handleCancel"
wrapClassName=
"ant-modal-cust-warp"
style=
"top:20px;height: 95%;overflow-y: hidden"
>
style=
"top:20px;height: 95%;"
>
<template
slot=
"footer"
>
<a-button
@
click=
"handleCancel"
>
取消
</a-button>
<a-button
v-if=
"isCanCheck"
@
click=
"handleOkAndCheck"
>
保存并审核
</a-button>
...
...
jshERP-web/src/views/material/modules/BatchSetInfoModal.vue
View file @
71968259
...
...
@@ -7,11 +7,12 @@
:confirm-loading=
"confirmLoading"
:getContainer=
"() => $refs.container"
:maskStyle=
"
{'top':'93px','left':'154px'}"
:wrapClassName="wrapClassNameInfo()"
:mask="isDesktop()"
:maskClosable="false"
@ok="handleOk"
@cancel="handleCancel"
wrapClassName="ant-modal-cust-warp"
style="top:20%;height: 45%;overflow-y: hidden">
style="top:20%;height: 45%;">
<a-spin
:spinning=
"confirmLoading"
>
<a-form
:form=
"form"
>
<a-row
class=
"form-row"
:gutter=
"24"
>
...
...
@@ -67,8 +68,10 @@
<
script
>
import
{
queryMaterialCategoryTreeList
,
batchUpdateMaterial
}
from
'
@/api/api
'
import
{
mixinDevice
}
from
'
@/utils/mixin
'
export
default
{
name
:
'
BatchSetInfoModal
'
,
mixins
:
[
mixinDevice
],
data
()
{
return
{
title
:
"
批量编辑
"
,
...
...
jshERP-web/src/views/material/modules/BatchSetPriceModal.vue
View file @
71968259
...
...
@@ -7,12 +7,13 @@
:confirm-loading=
"confirmLoading"
:getContainer=
"() => $refs.container"
:maskStyle=
"
{'top':'93px','left':'154px'}"
:wrapClassName="wrapClassNameInfo()"
:mask="isDesktop()"
:maskClosable="false"
@ok="handleOk"
@cancel="handleCancel"
cancelText="关闭"
wrapClassName="ant-modal-cust-warp"
style="top:30%;height: 30%;overflow-y: hidden">
style="top:30%;height: 30%;">
<template
slot=
"footer"
>
<a-button
key=
"back"
v-if=
"isReadOnly"
@
click=
"handleCancel"
>
关闭
...
...
@@ -30,8 +31,10 @@
</template>
<
script
>
import
{
mixinDevice
}
from
'
@/utils/mixin
'
export
default
{
name
:
'
BatchSetPriceModal
'
,
mixins
:
[
mixinDevice
],
data
()
{
return
{
title
:
"
批量设置
"
,
...
...
jshERP-web/src/views/material/modules/BatchSetStockModal.vue
View file @
71968259
...
...
@@ -7,12 +7,13 @@
:confirm-loading=
"confirmLoading"
:getContainer=
"() => $refs.container"
:maskStyle=
"
{'top':'93px','left':'154px'}"
:wrapClassName="wrapClassNameInfo()"
:mask="isDesktop()"
:maskClosable="false"
@ok="handleOk"
@cancel="handleCancel"
cancelText="关闭"
wrapClassName="ant-modal-cust-warp"
style="top:30%;height: 30%;overflow-y: hidden">
style="top:30%;height: 30%;">
<template
slot=
"footer"
>
<a-button
key=
"back"
v-if=
"isReadOnly"
@
click=
"handleCancel"
>
关闭
...
...
@@ -30,8 +31,10 @@
</template>
<
script
>
import
{
mixinDevice
}
from
'
@/utils/mixin
'
export
default
{
name
:
'
BatchSetStockModal
'
,
mixins
:
[
mixinDevice
],
data
()
{
return
{
title
:
"
批量设置
"
,
...
...
jshERP-web/src/views/material/modules/MaterialAttributeModal.vue
View file @
71968259
...
...
@@ -7,12 +7,13 @@
:confirmLoading=
"confirmLoading"
:getContainer=
"() => $refs.container"
:maskStyle=
"
{'top':'93px','left':'154px'}"
:wrapClassName="wrapClassNameInfo()"
:mask="isDesktop()"
:maskClosable="false"
@ok="handleOk"
@cancel="handleCancel"
cancelText="关闭"
wrapClassName="ant-modal-cust-warp"
style="top:100px;height: 50%;overflow-y: hidden">
style="top:100px;height: 50%;">
<template
slot=
"footer"
>
<a-button
key=
"back"
v-if=
"isReadOnly"
@
click=
"handleCancel"
>
关闭
...
...
@@ -36,8 +37,10 @@
<
script
>
import
pick
from
'
lodash.pick
'
import
{
addMaterialAttribute
,
editMaterialAttribute
,
checkMaterialAttribute
}
from
'
@/api/api
'
export
default
{
import
{
mixinDevice
}
from
'
@/utils/mixin
'
export
default
{
name
:
"
MaterialAttributeModal
"
,
mixins
:
[
mixinDevice
],
data
()
{
return
{
title
:
"
操作
"
,
...
...
jshERP-web/src/views/material/modules/MaterialCategoryModal.vue
View file @
71968259
...
...
@@ -9,11 +9,12 @@
:okButtonProps=
"
{ props: {disabled: disableSubmit} }"
:getContainer="() => $refs.container"
:maskStyle="{'top':'93px','left':'154px'}"
:wrapClassName="wrapClassNameInfo()"
:mask="isDesktop()"
:maskClosable="false"
@ok="handleOk"
@cancel="handleCancel"
wrapClassName="ant-modal-cust-warp"
style="top:100px;height: 50%;overflow-y: hidden"
style="top:100px;height: 50%;"
cancelText="关闭">
<a-spin
:spinning=
"confirmLoading"
>
<a-form
:form=
"form"
>
...
...
@@ -43,11 +44,13 @@
<
script
>
import
{
httpAction
}
from
'
@/api/manage
'
import
{
mixinDevice
}
from
'
@/utils/mixin
'
import
{
queryMaterialCategoryTreeList
,
checkMaterialCategory
}
from
'
@/api/api
'
import
pick
from
'
lodash.pick
'
import
ATextarea
from
'
ant-design-vue/es/input/TextArea
'
export
default
{
name
:
"
MaterialCategoryModal
"
,
mixins
:
[
mixinDevice
],
components
:
{
ATextarea
},
data
()
{
return
{
...
...
jshERP-web/src/views/material/modules/MaterialModal.vue
View file @
71968259
...
...
@@ -4,14 +4,12 @@
:width=
"width"
:visible=
"visible"
:confirmLoading=
"confirmLoading"
:maskClosable=
"false"
v-bind:prefixNo=
"prefixNo"
switchHelp
switchFullscreen
@
ok=
"handleOk"
@
cancel=
"handleCancel"
cancelText=
"关闭"
wrapClassName=
"ant-modal-material-warp"
:id=
"prefixNo"
:style=
"modalStyle"
>
<template
slot=
"footer"
>
...
...
jshERP-web/src/views/material/modules/MaterialPropertyModal.vue
View file @
71968259
...
...
@@ -7,12 +7,13 @@
:confirmLoading=
"confirmLoading"
:getContainer=
"() => $refs.container"
:maskStyle=
"
{'top':'93px','left':'154px'}"
:wrapClassName="wrapClassNameInfo()"
:mask="isDesktop()"
:maskClosable="false"
@ok="handleOk"
@cancel="handleCancel"
cancelText="关闭"
wrapClassName="ant-modal-cust-warp"
style="top:10%;height: 70%;overflow-y: hidden">
style="top:10%;height: 70%;">
<a-spin
:spinning=
"confirmLoading"
>
<a-form
:form=
"form"
>
<a-form-item
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
label=
"名称"
>
...
...
@@ -34,9 +35,11 @@
</
template
>
<
script
>
import
pick
from
'
lodash.pick
'
import
{
mixinDevice
}
from
'
@/utils/mixin
'
import
{
editMaterialProperty
}
from
'
@/api/api
'
export
default
{
name
:
"
MaterialPropertyModal
"
,
mixins
:
[
mixinDevice
],
data
()
{
return
{
title
:
"
操作
"
,
...
...
jshERP-web/src/views/report/modules/AccountInOutList.vue
View file @
71968259
...
...
@@ -6,11 +6,12 @@
:visible=
"visible"
:getContainer=
"() => $refs.container"
:maskStyle=
"
{'top':'93px','left':'154px'}"
:wrapClassName="wrapClassNameInfo()"
:mask="isDesktop()"
:maskClosable="false"
@cancel="handleCancel"
cancelText="关闭"
wrapClassName="ant-modal-cust-warp"
style="top:20px;height: 95%;overflow-y: hidden">
style="top:20px;height: 95%;">
<template
slot=
"footer"
>
<a-button
key=
"back"
@
click=
"handleCancel"
>
取消
</a-button>
</
template
>
...
...
@@ -40,11 +41,12 @@
import
BillDetail
from
'
../../bill/dialog/BillDetail
'
import
FinancialDetail
from
'
../../financial/dialog/FinancialDetail
'
import
{
JeecgListMixin
}
from
'
@/mixins/JeecgListMixin
'
import
{
mixinDevice
}
from
'
@/utils/mixin
'
import
JEllipsis
from
'
@/components/jeecg/JEllipsis
'
import
{
findBillDetailByNumber
,
findFinancialDetailByNumber
}
from
'
@/api/api
'
export
default
{
name
:
"
AccountInOutList
"
,
mixins
:[
JeecgListMixin
],
mixins
:[
JeecgListMixin
,
mixinDevice
],
components
:
{
BillDetail
,
FinancialDetail
,
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
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