|
@@ -271,7 +271,7 @@
|
|
v-model="form.timeList[index]"
|
|
v-model="form.timeList[index]"
|
|
value-format="HH:mm"
|
|
value-format="HH:mm"
|
|
format="HH:mm"
|
|
format="HH:mm"
|
|
- :picker-options="{ selectableRange: '01:01:00 - 23:59:59' }"
|
|
|
|
|
|
+ :picker-options="{ selectableRange: startTimeRange }"
|
|
placeholder="时间"
|
|
placeholder="时间"
|
|
style="width: 100px;height: 20px;margin-left: 10px;margin-top: 10px">
|
|
style="width: 100px;height: 20px;margin-left: 10px;margin-top: 10px">
|
|
</el-time-picker>
|
|
</el-time-picker>
|
|
@@ -307,6 +307,7 @@ import {
|
|
exportSopTemp,
|
|
exportSopTemp,
|
|
getSopTemp,
|
|
getSopTemp,
|
|
listSopTemp,
|
|
listSopTemp,
|
|
|
|
+ getSelectableRange,
|
|
redList,
|
|
redList,
|
|
shareSopTemp,
|
|
shareSopTemp,
|
|
updateRedPackage,
|
|
updateRedPackage,
|
|
@@ -345,6 +346,7 @@ export default {
|
|
sysQwSopType: [],
|
|
sysQwSopType: [],
|
|
companyList: [],
|
|
companyList: [],
|
|
projectOptions: [],
|
|
projectOptions: [],
|
|
|
|
+ startTimeRange: [],
|
|
// 弹出层标题
|
|
// 弹出层标题
|
|
title: "",
|
|
title: "",
|
|
// 是否显示弹出层
|
|
// 是否显示弹出层
|
|
@@ -410,6 +412,9 @@ export default {
|
|
this.statusOptions = response.data;
|
|
this.statusOptions = response.data;
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+ getSelectableRange().then(e => {
|
|
|
|
+ this.startTimeRange = e.data;
|
|
|
|
+ })
|
|
this.getDicts("sys_course_project").then(response => {
|
|
this.getDicts("sys_course_project").then(response => {
|
|
this.projectOptions = response.data;
|
|
this.projectOptions = response.data;
|
|
});
|
|
});
|
|
@@ -524,7 +529,7 @@ export default {
|
|
// if (row.sendType==4) {
|
|
// if (row.sendType==4) {
|
|
// this.$router.push(`/qw/sopTemp/updateAiChatTemp/${row.id}/1`)
|
|
// this.$router.push(`/qw/sopTemp/updateAiChatTemp/${row.id}/1`)
|
|
// }else{
|
|
// }else{
|
|
- let url = `/qw/sopTempe/updateSopTemp/${row.id}/1`;
|
|
|
|
|
|
+ let url = `/qw/sopTemp/updateSopTemp/${row.id}/1`;
|
|
console.info(url)
|
|
console.info(url)
|
|
this.$router.push(url)
|
|
this.$router.push(url)
|
|
// }
|
|
// }
|