Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-WEB
Project
Project
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
TFMOM
TF-MOM-WEB
Commits
3a1c5d64
Commit
3a1c5d64
authored
Aug 29, 2023
by
xioln
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工厂日历和sqcdp维护
parent
93b2f455
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
2192 additions
and
1 deletion
+2192
-1
storageDetailsCreateCom.vue
...arehousingNewOrEdit/component/storageDetailsCreateCom.vue
+1
-1
calendar.vue
...rivateComponents/components/Sqcdp/components/calendar.vue
+756
-0
header.vue
.../privateComponents/components/Sqcdp/components/header.vue
+181
-0
index.vue
.../dee-mes/src/privateComponents/components/Sqcdp/index.vue
+146
-0
calendar.vue
...omponents/components/WordCalendar/components/calendar.vue
+406
-0
dialog.vue
...eComponents/components/WordCalendar/components/dialog.vue
+169
-0
form.vue
...ateComponents/components/WordCalendar/components/form.vue
+264
-0
header.vue
...eComponents/components/WordCalendar/components/header.vue
+166
-0
index.vue
...s/src/privateComponents/components/WordCalendar/index.vue
+103
-0
No files found.
applications/dee-mes/src/privateComponents/components/PurchasingWarehousingNewOrEdit/component/storageDetailsCreateCom.vue
View file @
3a1c5d64
...
...
@@ -1466,7 +1466,7 @@ export default {
`/ExtDxProcessResourceType/search`
,
{
'pageFrom'
:
1
,
'pageSize'
:
9999
,
'pageSize'
:
100
,
'searchItems'
:
{
'children'
:
[
{
...
...
applications/dee-mes/src/privateComponents/components/Sqcdp/components/calendar.vue
0 → 100644
View file @
3a1c5d64
This diff is collapsed.
Click to expand it.
applications/dee-mes/src/privateComponents/components/Sqcdp/components/header.vue
0 → 100644
View file @
3a1c5d64
<
template
>
<section
class=
"header_content"
>
<!-- 年份选择 -->
<el-select
v-model=
"yearValue"
class=
"yearpart input-with-select el-input--small"
style=
" width: 100px; margin-right:10px"
@
change=
"handleYearChange"
>
<el-option
v-for=
"item in yearData"
:key=
"item"
:label=
"item + '年'"
:value=
"item"
/>
</el-select>
<!-- 月份选择 -->
<span
class=
"subtract icon"
@
click=
"subtract"
>
<
</span>
<el-select
v-model=
"months"
style=
" width: 100px; margin-right:10px"
class=
"monthpart input-with-select el-input--small"
@
change=
"handleMonthChange"
>
<el-option
v-for=
"item in month"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
<span
class=
"plus icon"
@
click=
"plus"
>
>
</span>
<span
style=
"font-size: 14px;color: #606266;margin-right:10px"
>
站位
</span>
<el-select
v-model=
"stance"
style=
" width: 100px; margin-right:10px"
class=
"monthpart input-with-select el-input--small"
@
change=
"handleStance"
>
<el-option
v-for=
"(item, index) in stanceList"
:key=
"index"
:label=
"item.extcode"
:value=
"item.extcode"
/>
</el-select>
</section>
<!-- 弹出框 -->
</
template
>
<
script
>
export
default
{
components
:
{},
props
:
{
yearData
:
{
type
:
Array
,
default
:
()
=>
[]
},
year
:
{
type
:
String
,
default
:
()
=>
null
}
},
data
()
{
return
{
yearValue
:
null
,
month
:
[],
months
:
null
,
stanceList
:
[],
stance
:
'工厂'
,
stanceName
:
''
,
disabled
:
false
}
},
computed
:
{
yea
()
{
return
this
.
year
}
},
watch
:
{
yea
:
{
handler
(
val
)
{
this
.
yearValue
=
val
if
(
val
)
{
this
.
months
=
new
Date
().
getMonth
()
+
1
this
.
initSelectMonth
()
}
else
{
this
.
month
=
[]
this
.
months
=
null
}
},
deep
:
true
}
},
created
()
{
this
.
getStance
()
},
mounted
()
{
setTimeout
(()
=>
{
if
(
this
.
yea
!=
null
)
{
this
.
months
=
new
Date
().
getMonth
()
+
1
}
},
200
)
},
methods
:
{
// 初始化月份
initSelectMonth
()
{
//
this
.
month
=
[]
for
(
let
i
=
1
;
i
<=
12
;
i
++
)
{
this
.
month
.
push
({
value
:
i
,
label
:
i
+
'月'
})
}
},
// 年份下拉框触发
handleYearChange
()
{
this
.
$emit
(
'getYear'
,
this
.
yearValue
)
},
// 月份下拉框触发
handleMonthChange
()
{
this
.
$emit
(
'getMonth'
,
this
.
months
)
},
// 站位下拉框触发
handleStance
()
{
this
.
$emit
(
'handleStance'
,
this
.
stance
)
},
subtract
()
{
if
(
this
.
yea
===
null
)
return
if
(
this
.
months
===
1
)
return
this
.
months
--
this
.
$emit
(
'getMonth'
,
this
.
months
)
},
plus
()
{
if
(
this
.
yea
===
null
)
return
if
(
this
.
months
>=
12
)
return
this
.
months
++
this
.
$emit
(
'getMonth'
,
this
.
months
)
},
// 获取站位
getStance
()
{
this
.
$api
.
searchApi
(
'ExtStandPosition'
,
{}).
then
(
res
=>
{
this
.
stanceList
=
res
.
items
.
content
this
.
stanceList
.
unshift
({
extcode
:
'工厂'
})
}).
catch
(
err
=>
console
.
log
(
err
)).
finally
(()
=>
{
}).
finally
(()
=>
{
this
.
stance
=
'工厂'
// var serialNumber = false
// try {
// serialNumber = this.$parent.$parent.$parent.$parent.sqcdpParams.query.serialNumber
// } catch (err) {
// console.info(err)
// }
// if (serialNumber) {
// this.stance = serialNumber
// } else {
// this.stance = '工厂'
// }
})
},
// 返回站位名称
returnStanceName
(
item
,
index
)
{
return
index
>
0
?
item
+
'站位'
:
item
}
}
}
</
script
>
<
style
lang=
"scss"
>
.header_content
{
.icon
{
color
:
#666
;
}
.plus
{
margin-right
:
10px
;
}
.subtract
{
margin-right
:
5px
;
}
}
</
style
>
applications/dee-mes/src/privateComponents/components/Sqcdp/index.vue
0 → 100644
View file @
3a1c5d64
<!--
* @Author: ljm
* @Date: 2021-06-22
* @LastEditTime:
* @Description: sqcdp维护
* @FilePath: applications/dee-mes/src/views/mes/baseData/sqcdp/index.vue
-->
<
template
>
<section
class=
"wordCalendar"
>
<Header
ref=
"header"
:year-data=
"yearData"
:year=
"year"
@
getMonth=
"handleMonth"
@
handleStance=
"handleStance"
@
getYear=
"handleYear"
/>
<el-tabs
v-model=
"activeName"
type=
"card"
@
tab-click=
"tabClick"
>
<el-tab-pane
label=
"S(安全)"
name=
"S"
>
<Calender
ref=
"calenderS"
:active-name=
"activeName"
:month=
"month"
:year=
"year"
/>
</el-tab-pane>
<el-tab-pane
label=
"Q(质量)"
name=
"Q"
>
<Calender
ref=
"calenderQ"
:active-name=
"activeName"
:month=
"month"
:year=
"year"
/>
</el-tab-pane>
<el-tab-pane
label=
"C(成本)"
name=
"C"
>
<Calender
ref=
"calenderC"
:active-name=
"activeName"
:month=
"month"
:year=
"year"
/>
</el-tab-pane>
<el-tab-pane
label=
"D(进度)"
name=
"D"
>
<Calender
ref=
"calenderD"
:active-name=
"activeName"
:month=
"month"
:year=
"year"
/>
</el-tab-pane>
<el-tab-pane
label=
"P(人员)"
name=
"P"
>
<Calender
ref=
"calenderP"
:active-name=
"activeName"
:month=
"month"
:year=
"year"
/>
</el-tab-pane>
</el-tabs>
<!--
<Calender
ref=
"calender"
:unit-no=
"unitNo"
:month=
"month"
:year=
"year"
/>
-->
</section>
</
template
>
<
script
>
import
Header
from
'./components/header'
import
Calender
from
'./components/calendar'
import
{
post
}
from
'@/utils/http'
export
default
{
name
:
'SqcdpMaintain'
,
componentName
:
'Sqcdp维护'
,
components
:
{
Header
,
Calender
},
data
()
{
return
{
activeName
:
'S'
,
month
:
null
,
year
:
null
,
yearData
:
[],
unitNo
:
null
}
},
mounted
()
{
this
.
initYear
()
},
created
()
{},
methods
:
{
// 月份下拉框触发
handleMonth
(
month
)
{
this
.
month
=
month
this
.
selectTab
(
this
.
activeName
)
},
tabClick
(
$event
)
{
this
.
selectTab
(
$event
.
name
)
},
selectTab
(
activeName
)
{
this
.
$refs
[
'calender'
+
activeName
].
getData
(
this
.
year
,
this
.
month
,
this
.
unitNo
)
},
// 年份下拉框触发
handleYear
(
year
)
{
this
.
year
=
year
this
.
month
=
new
Date
().
getMonth
()
+
1
this
.
selectTab
(
this
.
activeName
)
},
// 站位下拉框触发
handleStance
(
val
)
{
if
(
val
===
'工厂'
)
{
this
.
unitNo
=
null
}
else
{
this
.
unitNo
=
val
}
this
.
selectTab
(
this
.
activeName
)
},
// 初始年份
initYear
()
{
post
(
'/FactoryCalendar/getAllFactoryYear'
)
.
then
((
res
)
=>
{
this
.
yearData
=
res
.
items
.
sort
()
this
.
year
=
res
.
items
[
0
]
this
.
month
=
new
Date
().
getMonth
()
+
1
})
.
catch
((
err
)
=>
console
.
log
(
err
))
.
finally
(()
=>
{
this
.
$refs
[
'calender'
+
this
.
activeName
].
getData
(
this
.
year
,
this
.
month
,
this
.
unitNo
)
// var name = ''
// var serialNumber = ''
// try {
// name = this.$parent.$parent.$parent.sqcdpParams.query.name
// serialNumber = this.$parent.$parent.$parent.sqcdpParams.query.serialNumber
// } catch (err) {
// console.info(err)
// }
// if (name) {
// this.activeName = name
// this.handleStance(serialNumber)
// } else {
// }
})
}
}
}
</
script
>
<
style
lang=
"scss"
>
.wordCalendar
{
width
:
100%
;
height
:
100%
;
.el-tabs
{
width
:
100%
;
height
:
calc
(
100%
-
2px
);
}
.el-tabs__header
{
margin-top
:
20px
;
margin-bottom
:
0
;
}
.el-tabs__content
{
height
:
calc
(
100%
-
41px
);
.el-tab-pane
{
width
:
100%
;
height
:
100%
;
}
}
}
</
style
>
applications/dee-mes/src/privateComponents/components/WordCalendar/components/calendar.vue
0 → 100644
View file @
3a1c5d64
This diff is collapsed.
Click to expand it.
applications/dee-mes/src/privateComponents/components/WordCalendar/components/dialog.vue
0 → 100644
View file @
3a1c5d64
<
template
>
<!-- 弹出框 -->
<dee-dialog
:title=
"title"
:dialog-visible
.
sync=
"visible"
width=
"50%"
:before-close=
"handleClose"
element-loading-spinner=
"el-loading-spinner"
>
<!-- 创建编辑表单 -->
<Form
ref=
"form"
:title=
"title"
@
handleSave=
"hadleFormSave"
>
<section
class=
"btn"
>
<el-button
:disabled=
"disabled"
type=
"primary"
size=
"medium"
@
click=
"$refs.form.validate()"
>
确定
</el-button>
<el-button
:disabled=
"disabled"
size=
"medium"
@
click=
"handleClose"
>
取消
</el-button>
</section>
</Form>
<!--
<div
v-show=
"loading"
class=
"loading"
>
<img
src=
"/icons/loading.gif"
alt=
""
>
</div>
-->
</dee-dialog>
</
template
>
<
script
>
import
Form
from
'./form'
import
{
post
}
from
'@/utils/http'
export
default
{
components
:
{
Form
},
props
:
{
stance
:
{
type
:
String
,
default
:
()
=>
''
}
},
data
()
{
return
{
// 加载
loading
:
false
,
// 显示弹出框
visible
:
false
,
// 按钮禁用
disabled
:
false
,
// 弹出框title
title
:
''
// years: [],
// 表单数控
// forms: {}
}
},
created
()
{},
methods
:
{
// 打开弹出框
open
(
title
)
{
this
.
title
=
title
this
.
visible
=
true
},
// 保存功能
hadleFormSave
(
form
)
{
console
.
log
(
'form'
,
form
)
this
.
disabled
=
true
var
newStartYear
=
null
var
newStoptYear
=
null
if
(
form
.
startYear
.
toString
().
includes
(
'-'
))
{
newStartYear
=
form
.
startYear
newStoptYear
=
form
.
stopYear
}
else
{
newStartYear
=
`
${
form
.
startYear
}
-01-01`
newStoptYear
=
`
${
form
.
stopYear
}
-12-31`
}
var
week
=
[]
form
.
checkboxWord
.
filter
((
v
)
=>
{
if
(
v
.
isWord
)
{
week
.
push
(
v
.
id
)
}
})
this
.
loading
=
true
if
(
this
.
title
===
'创建工厂日历'
)
{
const
params
=
{
// id: '',
isValidCode
:
'Y'
,
shiftId
:
form
.
classes
,
shiftIdType
:
'Shift'
,
// subTypeName: 'FactoryCalendar',
endTime
:
newStoptYear
+
' 00:00:00'
,
startTime
:
newStartYear
+
' 00:00:00'
,
workDays
:
week
}
post
(
'FactoryCalendar/batchInsertCalendar'
,
params
)
.
then
((
res
)
=>
{})
.
catch
((
err
)
=>
console
.
log
(
err
))
.
finally
(()
=>
{
this
.
disabled
=
false
this
.
visible
=
false
// this.$parent.init()
this
.
$emit
(
'handledialogClick'
)
this
.
$parent
.
$parent
.
$refs
.
calender
.
init
()
// })
this
.
$refs
.
form
.
reset
()
this
.
reset
(
'创建日历'
)
this
.
loading
=
false
})
}
else
{
const
params
=
{
// subTypeName: 'FactoryCalendar',
unitNo
:
this
.
stance
===
'工厂'
?
null
:
this
.
stance
,
shiftId
:
form
.
classes
,
shiftIdType
:
'Shift'
,
startTime
:
newStartYear
+
' 00:00:00'
,
endTime
:
newStoptYear
+
' 00:00:00'
,
workDays
:
week
}
post
(
'FactoryCalendar/batchUpdateCalendar'
,
params
)
.
then
((
res
)
=>
{
this
.
$parent
.
$parent
.
$refs
.
calender
.
init
()
this
.
$refs
.
form
.
reset
()
this
.
reset
(
'批量设置'
)
})
.
catch
((
err
)
=>
console
.
log
(
err
))
.
finally
(()
=>
{
this
.
disabled
=
false
this
.
visible
=
false
this
.
loading
=
false
})
}
},
// 重置弹出框
reset
(
message
)
{
this
.
visible
=
false
this
.
$utils
.
showMessageSuccess
(
message
)
},
// 取消
handleClose
()
{
this
.
$refs
.
form
.
reset
()
this
.
visible
=
false
}
}
}
</
script
>
<
style
lang=
"scss"
>
.loading
{
position
:
fixed
;
width
:
100%
;
height
:
100%
;
top
:
0
;
left
:
0
;
background
:
#fff
;
text-align
:
center
;
z-index
:
9
;
opacity
:
0
.9
;
>
img
{
width
:
40px
;
height
:
40px
;
margin-top
:
450px
;
}
}
</
style
>
applications/dee-mes/src/privateComponents/components/WordCalendar/components/form.vue
0 → 100644
View file @
3a1c5d64
<
template
>
<el-form
ref=
"form"
:model=
"form"
label-width=
"150px"
:rules=
"rules"
>
<div
v-if=
"title === '创建工厂日历'"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"开始年份"
prop=
"startYear"
>
<el-select
v-model=
"form.startYear"
placeholder=
"请选择开始年份"
>
<el-option
v-for=
"(item,i) in initYear"
:key=
"i"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
class=
"right"
label=
"结束年份"
prop=
"stopYear"
>
<el-select
v-model=
"form.stopYear"
placeholder=
"请选择结束年份"
>
<el-option
v-for=
"(item,i) in initYear"
:key=
"i"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
</el-form-item>
</el-col>
</div>
<div
v-else
>
<el-col
:span=
"12"
>
<el-form-item
label=
"开始日期"
prop=
"startYear"
>
<el-date-picker
v-model=
"form.startYear"
style=
"width:195px"
type=
"date"
placeholder=
"请选择日期(年月日)"
format=
"yyyy 年 MM 月 dd 日"
value-format=
"yyyy-MM-dd"
/>
<!--
<el-input
/>
-->
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"结束日期"
prop=
"stopYear"
>
<el-date-picker
v-model=
"form.stopYear"
style=
"width:195px"
type=
"date"
placeholder=
"请选择日期(年月日)"
format=
"yyyy 年 MM 月 dd 日"
value-format=
"yyyy-MM-dd"
:picker-options=
"pickerExpireOptions"
/>
<!--
<el-input
/>
-->
</el-form-item>
</el-col>
</div>
<el-col
:span=
"12"
>
<el-form-item
label=
"班次"
prop=
"classes"
>
<el-select
v-model=
"form.classes"
placeholder=
"请选择班次"
@
change=
"handleSelectClasses(form.classes)"
>
<el-option
v-for=
"item in optionData"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
>
{{
item
.
name
}}
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
class=
"remark"
label=
"班次说明"
prop=
"remark"
>
<el-input
v-model=
"form.remark"
:disabled=
"true"
style=
"width:195px"
placeholder=
"自动带出班次说明"
/>
</el-form-item>
</el-col>
<el-col
:span=
"24"
>
<el-form-item
label=
"每周工作日"
prop=
"checkboxWord"
>
<!--
<el-checkbox-group>
-->
<el-checkbox
v-for=
"(item,i) in form.checkboxWord"
:key=
"i"
:label=
"item.name"
:value=
"item.isWord"
name=
"checkboxWord"
@
change=
"handleCheckbox(i)"
/>
<!--
</el-checkbox-group>
-->
</el-form-item>
</el-col>
<el-col
:span=
"24"
>
<!--
<el-form-item>
-->
<slot
/>
<!--
</el-form-item>
-->
</el-col>
</el-form>
</
template
>
<
script
>
// import Vue from 'vue'
// Vue.prototype.$bus = new Vue()
import
{
post
}
from
'@/utils/http'
export
default
{
props
:
{
title
:
{
type
:
String
,
default
:
()
=>
null
}
},
data
()
{
var
validateStartYear
=
(
rule
,
value
,
callback
)
=>
{
// 开始年份验证
if
(
value
===
null
)
{
callback
(
new
Error
(
'请选择开始年份'
))
}
else
{
if
(
this
.
form
.
stopYear
!==
null
)
{
if
(
value
>
this
.
form
.
stopYear
)
{
callback
(
new
Error
(
'开始年份不能大于结束年份'
))
}
callback
()
}
}
}
var
validateStopYear
=
(
rule
,
value
,
callback
)
=>
{
// 结束年份验证
if
(
value
===
null
)
{
callback
(
new
Error
(
'请选择结束年份'
))
}
else
{
callback
()
}
}
return
{
pickerIssueOptions
:
{
// 批量设置日期选择范围
disabledDate
:
(
time
)
=>
{
var
month
=
new
Date
().
getMonth
()
+
1
var
day
=
new
Date
().
getDate
()
month
<
9
?
month
=
'0'
+
month
:
month
day
<
9
?
day
=
'0'
+
day
:
day
return
(
time
<
new
Date
(
`
${
this
.
startYear
}
-
${
month
}
-
${
day
}
00:00:00`
)
||
time
>
new
Date
(
`
${
this
.
stopYear
}
-12-31 00:00:00`
)
)
}
},
pickerExpireOptions
:
{
// 批量设置日期选择范围
disabledDate
:
(
time
)
=>
{
return
(
time
<
new
Date
(
this
.
form
.
startYear
+
' 00:00:00'
)
)
// return (
// time
<
new
Date
(
this
.
form
.
startYear
+
' 00:00:00'
)
||
time
>
new
Date
(
this
.
stopYear
+
'-12-31 00:00:00'
)
// )
}
},
disabled
:
false
,
optionData
:
[],
startYear
:
null
,
stopYear
:
null
,
form
:
{
startYear
:
null
,
stopYear
:
null
,
classes
:
null
,
remark
:
''
,
checkboxWord
:
[
{
name
:
'周一'
,
isWord
:
false
,
id
:
1
},
{
name
:
'周二'
,
isWord
:
false
,
id
:
2
},
{
name
:
'周三'
,
isWord
:
false
,
id
:
3
},
{
name
:
'周四'
,
isWord
:
false
,
id
:
4
},
{
name
:
'周五'
,
isWord
:
false
,
id
:
5
},
{
name
:
'周六'
,
isWord
:
true
,
id
:
6
},
{
name
:
'周日'
,
isWord
:
true
,
id
:
7
}]
},
rules
:
{
startYear
:
[
{
required
:
true
,
validator
:
validateStartYear
,
trigger
:
'change'
}
],
stopYear
:
[
{
required
:
true
,
validator
:
validateStopYear
,
trigger
:
'change'
}
],
classes
:
[{
required
:
true
,
message
:
'请选择班次'
,
trigger
:
'change'
}]
}
}
},
computed
:
{
initYear
()
{
var
year
=
new
Date
().
getFullYear
()
// 获取当前年
var
result
=
[]
for
(
let
i
=
0
;
i
<
100
;
i
++
)
{
result
.
push
({
value
:
(
year
+
i
),
label
:
(
year
+
i
)
+
'年'
})
}
return
result
}
},
mounted
()
{
this
.
reset
()
this
.
getClasses
()
this
.
getStartStopYear
()
},
methods
:
{
// 获取开始结束年份
getStartStopYear
()
{
const
params
=
{
'sortItem'
:
[
{
'fieldName'
:
'calendar'
,
'sortOrder'
:
'desc'
}
]
}
post
(
'/FactoryCalendar/getAllFactoryYear'
,
params
).
then
(
res
=>
{
res
.
items
.
sort
()
this
.
startYear
=
res
.
items
.
shift
()
this
.
stopYear
=
res
.
items
.
pop
()
}).
catch
(
err
=>
console
.
log
(
err
)).
finally
(()
=>
{
})
},
// 班次选中
handleSelectClasses
(
id
)
{
var
data
=
this
.
optionData
.
filter
(
v
=>
v
.
id
===
id
)
this
.
form
.
remark
=
data
[
0
].
remark
},
// 获取班次
getClasses
()
{
const
params
=
{
'pageFrom'
:
''
,
'pageSize'
:
''
,
'indices'
:
[
'Shift'
],
'searchItems'
:
{
'items'
:
[],
'operator'
:
'AND'
},
'parentFilter'
:
true
,
'openProps'
:
[
],
'sortItem'
:
[
{
'fieldName'
:
'modifyTime'
,
'sortOrder'
:
'desc'
}
]
}
// 发送请求
this
.
$api
.
searchApi
(
'Shift'
,
params
).
then
(
res
=>
{
this
.
optionData
=
res
.
items
.
content
}).
catch
(
err
=>
console
.
log
(
err
)).
finally
(()
=>
{})
},
// 重置表单
reset
()
{
this
.
$refs
[
'form'
].
resetFields
()
this
.
form
.
checkboxWord
.
map
((
v
,
i
)
=>
{
if
(
i
<
5
)
{
v
.
isWord
=
true
}
else
{
v
.
isWord
=
false
}
})
},
// 复选框点击
handleCheckbox
(
index
)
{
this
.
form
.
checkboxWord
[
index
].
isWord
=
!
this
.
form
.
checkboxWord
[
index
].
isWord
},
// 验证表单
validate
()
{
this
.
$refs
.
form
.
validate
((
valid
)
=>
{
if
(
!
valid
)
{
this
.
$utils
.
showMessageWarning
(
'请选择年份'
)
return
false
}
this
.
$emit
(
'handleSave'
,
this
.
form
)
})
}
}
}
</
script
>
<
style
lang=
"scss"
>
.btn
{
text-align
:
center
;
}
</
style
>
applications/dee-mes/src/privateComponents/components/WordCalendar/components/header.vue
0 → 100644
View file @
3a1c5d64
<
template
>
<section
class=
"header_content"
>
<!-- 年份选择 -->
<el-select
v-model=
"yearValue"
class=
"yearpart input-with-select el-input--small"
style=
" width: 100px; margin-right:10px"
@
change=
"handleYearChange"
>
<el-option
v-for=
"item in yearData"
:key=
"item"
:label=
"item+'年'"
:value=
"item"
/>
</el-select>
<!-- 月份选择 -->
<span
class=
"subtract icon"
@
click=
"subtract"
/>
<el-select
v-model=
"months"
style=
" width: 100px; margin-right:10px"
class=
"monthpart input-with-select el-input--small"
@
change=
"handleMonthChange"
>
<el-option
v-for=
"item in month"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
<span
class=
"plus icon"
@
click=
"plus"
>
>
</span>
<span
style=
"font-size: 14px;color: #606266;margin-right:10px"
>
站位
</span>
<el-select
v-model=
"stance"
class=
"input-with-select el-input--small monthpart"
style=
" width: 100px; margin-right:10px"
@
change=
"handleStance"
>
<el-option
v-for=
"(item,index) in stanceList"
:key=
"index"
:label=
"item.extcode"
:value=
"item.extcode"
/>
</el-select>
<el-button
:disabled=
"disabled"
size=
"small"
@
click=
"$refs.dialog.open('创建工厂日历')"
>
创建
</el-button>
<el-button
:disabled=
"disabled"
size=
"small"
@
click=
"$refs.dialog.open('批量设置')"
>
批量设置
</el-button>
<!-- 弹出框 -->
<Dialog
ref=
"dialog"
:stance=
"stance"
@
handledialogClick=
"$emit('handledialogClick')"
/></section>
</
template
>
<
script
>
import
Dialog
from
'./dialog'
export
default
{
components
:
{
Dialog
},
props
:
{
yearData
:
{
type
:
Array
,
default
:
()
=>
[]
},
year
:
{
type
:
String
,
default
:
()
=>
null
}
},
data
()
{
return
{
yearValue
:
null
,
month
:
[],
months
:
null
,
stanceList
:
[],
stance
:
'工厂'
,
stanceName
:
''
,
disabled
:
false
}
},
computed
:
{
yea
()
{
return
this
.
year
}
},
watch
:
{
yea
:
{
handler
(
val
)
{
this
.
yearValue
=
val
if
(
val
)
{
this
.
months
=
new
Date
().
getMonth
()
+
1
this
.
initSelectMonth
()
}
else
{
this
.
month
=
[]
this
.
months
=
null
}
},
deep
:
true
}
},
created
()
{
this
.
getStance
()
},
mounted
()
{
setTimeout
(()
=>
{
if
(
this
.
yea
!=
null
)
{
this
.
months
=
new
Date
().
getMonth
()
+
1
}
},
200
)
},
methods
:
{
// 初始化月份
initSelectMonth
()
{
//
this
.
month
=
[]
for
(
let
i
=
1
;
i
<=
12
;
i
++
)
{
this
.
month
.
push
({
value
:
i
,
label
:
i
+
'月'
})
}
},
// 年份下拉框触发
handleYearChange
()
{
this
.
$emit
(
'getYear'
,
this
.
yearValue
)
// this.months = new Date().getMonth() + 1
// this.handleMonthChange()
},
// 月份下拉框触发
handleMonthChange
()
{
this
.
$emit
(
'getMonth'
,
this
.
months
)
},
// 站位下拉框触发
handleStance
()
{
this
.
$emit
(
'handleStance'
,
this
.
stance
)
this
.
months
=
new
Date
().
getMonth
()
+
1
// if (this.stance === '工厂') {
// this.disabled = false
// } else {
// this.disabled = true
// }
},
subtract
()
{
if
(
this
.
yea
===
null
)
return
if
(
this
.
months
===
1
)
return
this
.
months
--
this
.
$emit
(
'getMonth'
,
this
.
months
)
},
plus
()
{
if
(
this
.
yea
===
null
)
return
if
(
this
.
months
>=
12
)
return
this
.
months
++
this
.
$emit
(
'getMonth'
,
this
.
months
)
},
// 获取站位
getStance
()
{
this
.
$api
.
searchApi
(
'ExtStandPosition'
,
{}).
then
(
res
=>
{
this
.
stanceList
=
res
.
items
.
content
this
.
stanceList
.
unshift
({
extcode
:
'工厂'
})
}).
catch
(
err
=>
console
.
log
(
err
)).
finally
(()
=>
{
})
},
// 返回站位名称
returnStanceName
(
item
,
index
)
{
return
index
>
0
?
item
+
'站位'
:
item
}
}
}
</
script
>
<
style
lang=
"scss"
>
.header_content
{
.icon
{
color
:
#666
;
}
.plus
{
margin-right
:
10px
;
}
.subtract
{
margin-right
:
5px
;
}
}
</
style
>
applications/dee-mes/src/privateComponents/components/WordCalendar/index.vue
0 → 100644
View file @
3a1c5d64
<!--
* @Author: ljm
* @Date: 2021-03-10
* @Description: 工厂日历定义
* @FilePath: applications/dee-mes/src/views/mes/baseData/wordCalendar/index.vue
-->
<
template
>
<section
class=
"wordCalendar"
>
<Header
ref=
"header"
:year-data=
"yearData"
:year=
"year"
@
handleStance=
"handleStance"
@
handledialogClick=
"handledialogClick"
@
getMonth=
"handleMonth"
@
getYear=
"handleYear"
/>
<Calender
ref=
"calender"
:unit-no=
"unitNo"
:month=
"month"
:year=
"year"
/>
</section>
</
template
>
<
script
>
import
Header
from
'./components/header'
import
Calender
from
'./components/calendar'
import
{
post
}
from
'@/utils/http'
export
default
{
name
:
'WordCalendar'
,
componentName
:
'工厂日历'
,
components
:
{
Header
,
Calender
},
data
()
{
return
{
month
:
null
,
year
:
null
,
yearData
:
[],
unitNo
:
null
}
},
mounted
()
{
this
.
initYear
()
},
created
()
{},
methods
:
{
// 月份下拉框触发
handleMonth
(
month
)
{
this
.
month
=
month
this
.
$refs
.
calender
.
getData
(
this
.
year
,
this
.
month
,
this
.
unitNo
)
},
// 年份下拉框触发
handleYear
(
year
)
{
this
.
year
=
year
this
.
month
=
new
Date
().
getMonth
()
+
1
this
.
$refs
.
calender
.
getData
(
this
.
year
,
this
.
month
,
this
.
unitNo
)
},
// 弹出框确认触发
handledialogClick
()
{
this
.
initYear
()
},
// 初始年份
initYear
()
{
// this.$refs.calender.getData('2105', 8, this.unitNo || '')
var
url
=
null
if
(
this
.
unitNo
)
{
url
=
`/FactoryCalendar/getAllFactoryYear?unitNo=
${
this
.
unitNo
+
''
}
`
}
else
{
url
=
'/FactoryCalendar/getAllFactoryYear?unitNo='
}
post
(
url
,
{})
.
then
((
res
)
=>
{
this
.
yearData
=
res
.
items
.
sort
()
if
(
!
this
.
year
)
{
this
.
year
=
res
.
items
[
0
]
this
.
month
=
new
Date
().
getMonth
()
+
1
}
this
.
$refs
.
calender
.
getData
(
this
.
year
,
this
.
month
,
this
.
unitNo
)
})
.
catch
((
err
)
=>
console
.
log
(
err
))
.
finally
(()
=>
{})
},
// 站位下拉框触发
handleStance
(
val
)
{
if
(
val
===
'工厂'
)
{
this
.
unitNo
=
null
}
else
{
this
.
unitNo
=
val
}
this
.
initYear
()
}
}
}
</
script
>
<
style
lang=
"scss"
>
.wordCalendar
{
width
:
100%
;
height
:
100%
;
}
</
style
>
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