|
@@ -82,15 +82,16 @@
|
|
|
<div class="block-content">
|
|
|
<div class="item">
|
|
|
<div class="item-label">截止提交时间:</div>
|
|
|
- <div class="item-form">
|
|
|
+ <div class="item-form week">
|
|
|
<div class="col" v-loading="loading['week.submit.date']">
|
|
|
- <CusFormColumn
|
|
|
- :span="24"
|
|
|
- link="select"
|
|
|
- v-model:param="form['week.submit.date']"
|
|
|
- :options="$store.state.dictionary.configWeekSubmitDateList"
|
|
|
- :clearable="false"
|
|
|
- @change="editKey('week.submit.date')"/>
|
|
|
+ {{$store.state.dictionary.configWeekSubmitDateMap.get(form['week.submit.date'])}}
|
|
|
+<!-- <CusFormColumn-->
|
|
|
+<!-- :span="24"-->
|
|
|
+<!-- link="select"-->
|
|
|
+<!-- v-model:param="form['week.submit.date']"-->
|
|
|
+<!-- :options="$store.state.dictionary.configWeekSubmitDateList"-->
|
|
|
+<!-- :clearable="false"-->
|
|
|
+<!-- @change="editKey('week.submit.date')"/>-->
|
|
|
</div>
|
|
|
<div class="col" v-loading="loading['week.submit.time']">
|
|
|
<CusFormColumn
|
|
@@ -176,15 +177,7 @@ export default defineComponent({
|
|
|
}
|
|
|
const initKey = (key) => {
|
|
|
state.loading[key] = true
|
|
|
- state.form[key] = ''
|
|
|
- that.$api.getConfigConfigKey(key).then(res => {
|
|
|
- if (res.code === 200) {
|
|
|
- state.form[key] = res.message
|
|
|
- } else {
|
|
|
- ElMessage.error(res.message)
|
|
|
- }
|
|
|
- state.loading[key] = false
|
|
|
- }).catch(() => {
|
|
|
+ store.dispatch('app/LOAD_PUBLIC_CONFIG', key).then(res => {
|
|
|
state.loading[key] = false
|
|
|
})
|
|
|
}
|
|
@@ -192,31 +185,18 @@ export default defineComponent({
|
|
|
// select onChange方法有延迟,为了兼容time和select,加个延时
|
|
|
setTimeout(() => {
|
|
|
state.loading[key] = true
|
|
|
- that.$api.editConfigEditConfigKey({
|
|
|
- configKey: key,
|
|
|
- configValue: state.form[key]
|
|
|
+ store.dispatch('app/LOAD_PUBLIC_CONFIG', {
|
|
|
+ key: key,
|
|
|
+ value: state.form[key]
|
|
|
}).then(res => {
|
|
|
- if (res.code === 200) {
|
|
|
- ElMessage.success(res.message)
|
|
|
- initKey(key)
|
|
|
- } else {
|
|
|
- ElMessage.error(res.message)
|
|
|
- }
|
|
|
- }).catch(() => {
|
|
|
+ state.form[key] = JSON.parse(JSON.stringify(store.state.app.publicConfig[key]))
|
|
|
state.loading[key] = false
|
|
|
})
|
|
|
}, 100)
|
|
|
}
|
|
|
onMounted(() => {
|
|
|
initDictionary()
|
|
|
- initKey('sign.begin.time')
|
|
|
- initKey('sign.remind.time')
|
|
|
- initKey('sign.end.time')
|
|
|
- initKey('log.submit.time')
|
|
|
- initKey('log.remind.time')
|
|
|
- initKey('week.submit.date')
|
|
|
- initKey('week.submit.time')
|
|
|
- initKey('week.remind.time')
|
|
|
+ state.form = JSON.parse(JSON.stringify(store.state.app.publicConfig))
|
|
|
})
|
|
|
return {
|
|
|
...toRefs(state),
|
|
@@ -273,8 +253,15 @@ export default defineComponent({
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
- >div {
|
|
|
- width: calc((100% - 10px) / 2);
|
|
|
+ &.week {
|
|
|
+ .col:first-child {
|
|
|
+ width: 80px;
|
|
|
+ line-height: 34px;
|
|
|
+ align-self: flex-start;
|
|
|
+ }
|
|
|
+ .col:last-child {
|
|
|
+ width: calc(100% - 80px);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|