|
|
@@ -59,7 +59,7 @@
|
|
|
<div class="m-top-20" style="font-size: 16px;color: #333;font-weight: bold;">配置 <span style="color: #0083FF;">{{
|
|
|
idName }}</span> 值班客服</div>
|
|
|
<!-- 表格区域 -->
|
|
|
- <el-button type="primary" class="m-top-20 m-btn-20" @click="dutyScheduleAdd" color="#0083FF" >
|
|
|
+ <el-button type="primary" class="m-top-20 m-btn-20" @click="dutyScheduleAdd" >
|
|
|
<template #icon>
|
|
|
<el-icon>
|
|
|
<Plus />
|
|
|
@@ -81,7 +81,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="dutyCustomerServiceId" label="值班客服" align="center" width="350">
|
|
|
<template #default="scope">
|
|
|
- <el-select v-model="scope.row.dutyCustomerServiceId" placeholder="选择值班客服" filterable>
|
|
|
+ <el-select v-model="scope.row.dutyCustomerServiceId" placeholder="选择值班客服" filterable clearable>
|
|
|
<el-option :label="item.nickname" :value="item.id" v-for="item in fetchSupportAgentsList"
|
|
|
:key="item.id" />
|
|
|
</el-select>
|
|
|
@@ -96,10 +96,10 @@
|
|
|
</el-table>
|
|
|
</PageMain>
|
|
|
<FixedActionBar>
|
|
|
- <ElButton @click="router.back()">
|
|
|
+ <ElButton @click="router.back()" style="background-color: #fff;color: #666;" >
|
|
|
取消
|
|
|
</ElButton>
|
|
|
- <ElButton type="primary" @click="submitForm(scheduleRef)">
|
|
|
+ <ElButton color="#0083FF" @click="submitForm(scheduleRef)">
|
|
|
保存
|
|
|
</ElButton>
|
|
|
</FixedActionBar>
|
|
|
@@ -321,9 +321,6 @@ const del = (index: any) => {
|
|
|
|
|
|
}
|
|
|
</script>
|
|
|
-<style>
|
|
|
-
|
|
|
-</style>
|
|
|
<!-- 样式区域 -->
|
|
|
<style lang='scss' scoped>
|
|
|
:deep(.main-container) {
|
|
|
@@ -332,8 +329,8 @@ const del = (index: any) => {
|
|
|
:deep(.el-input ::placeholder) {
|
|
|
color: #D9D9D9;
|
|
|
}
|
|
|
-:deep(.el-select .el-input__inner::placeholder) { /* 使用::placeholder伪元素 */
|
|
|
- color: blue; /* 修改placeholder颜色 */
|
|
|
+:deep(.el-select__placeholder.is-transparent) { /* 使用::placeholder伪元素 */
|
|
|
+ color: #D9D9D9; /* 修改placeholder颜色 */
|
|
|
}
|
|
|
.pageheader {
|
|
|
padding-bottom: 12px;
|