| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <template>
- <div class="questionNotifications">
- <div style="padding-bottom: 24px; border-top: 1px solid rgba(0, 0, 0, 0.06)">
- <div class="pushWorkShopBar">
- <span class="pushiWorkShopSpan">选择推送范围:</span>
- <el-select
- v-model="cameraChosen"
- multiple
- collapse-tags
- collapse-tags-tooltip
- placeholder="请选择相机"
- style="width: 258px"
- @click="handleWorkShopEdit"
- @change="handleWorkShopEdit"
- >
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
- </el-select>
- </div>
- <div class="descriptionSpan"
- >当所选相机下发生违规问题并需要闭环处理时,系统将依据下方各阶段配置(开关启用后)自动发送待办消息!</div
- >
- </div>
- <el-scrollbar>
- <ManageContent />
- </el-scrollbar>
- <el-dialog
- v-model="workDialog"
- title="选择相机范围"
- align-center
- :close-on-click-modal="false"
- style="height: 583px"
- :width="731"
- :destroy-on-close="true"
- class="workShopDialog"
- >
- <WorkShopTree @cancel="handleCancle" :selectedUser="selectedUser" :refresh-camera="setCameraChosen" />
- </el-dialog>
- <el-dialog
- v-model="showDialog"
- title="编辑推送文案"
- align-center
- width="400"
- @close="closeDialog()"
- :close-on-click-modal="false"
- class="contentDialog"
- >
- <el-input
- v-model="content"
- style="width: 370px"
- :autosize="{ minRows: 4, maxRows: 5 }"
- maxlength="100"
- show-word-limit
- type="textarea"
- placeholder="请输入推送文案"
- />
- <template #footer>
- <div class="dialog-footer">
- <el-button @click="closeDialog()">取消</el-button>
- <el-button type="primary" @click="submitDialog()">确认</el-button>
- </div>
- </template>
- </el-dialog>
- </div>
- </template>
- <script lang="ts" setup>
- import { ref, onMounted, computed } from 'vue';
- import { modifyContent, modifyWorkshopList, getPushRange } from '@/api/message/question-notifications';
- import WorkShopTree from './components/WorkShopTree.vue';
- import ManageContent from './components/ManageContent.vue';
- import { ElMessage } from 'element-plus';
- import { treeSelected } from './type';
- const cameraChosen = ref<any>([]);
- const options = computed(() => {
- return cameraChosen.value.map((item: any) => {
- return {
- value: item,
- label: item,
- };
- });
- });
- const setCameraChosen = (arr: treeSelected[]) => {
- cameraChosen.value = arr.map((arr) => arr.name);
- workDialog.value = false;
- };
- const workDialog = ref<boolean>(false);
- const showDialog = ref<boolean>(false);
- const content = ref<string>('');
- const editId = ref<number>(0);
- const handleWorkShopEdit = () => {
- workDialog.value = true;
- };
- const submitDialog = () => {
- modifyContent(content.value, editId.value).then(() => {
- ElMessage({
- message: '修改成功',
- type: 'success',
- plain: true,
- });
- closeDialog();
- });
- };
- const closeDialog = () => {
- showDialog.value = false;
- };
- interface UserList {
- code: number | string;
- name: string;
- id: number;
- }
- const selectedUser = ref<UserList[]>([]);
- const handleCancle = () => {
- workDialog.value = false;
- };
- const handleSubmit = (selectedData: UserList[]) => {
- const params = selectedData.map((item) => item.id);
- modifyWorkshopList(params).then(() => {
- ElMessage({
- message: '添加成功',
- type: 'success',
- plain: true,
- });
- workDialog.value = false;
- // queryIssueData();
- });
- };
- const initCameraChosen = () => {
- getPushRange().then((res) => {
- cameraChosen.value = res.map((res) => res.name);
- });
- };
- onMounted(() => {
- initCameraChosen();
- });
- </script>
- <style lang="scss" scoped>
- .questionNotifications {
- // height: calc(100vh - 64px - 18px);
- background-color: rgba(255, 255, 255, 1);
- padding: 21px;
- }
- .pushWorkShopBar {
- margin: 11px 0 8px 0;
- display: flex;
- img {
- cursor: pointer;
- }
- // :nth-of-type(1) {
- // margin-right: 12px;
- // margin-bottom: 16px;
- // }
- .pushiWorkShopSpan {
- // width: 56px;
- height: 32px;
- font-weight: 600;
- font-size: 14px;
- color: rgba(0, 0, 0, 0.85);
- line-height: 32px;
- }
- }
- .descriptionSpan {
- // width: 300px;
- margin-left: 100px;
- height: 10px;
- font-weight: 400;
- font-size: 10px;
- color: #a8abb2;
- line-height: 10px;
- }
- .workshopList {
- display: flex;
- .left {
- display: flex;
- flex-wrap: wrap;
- width: 95%;
- max-height: 24px;
- overflow-y: hidden;
- gap: 20px;
- }
- .right {
- flex: 1;
- cursor: pointer;
- span {
- font-weight: 400;
- font-size: 12px;
- color: #303133;
- line-height: 17px;
- }
- img {
- margin-left: 4px;
- }
- }
- }
- .emptyDiv {
- margin-top: 78px;
- margin: auto;
- width: 396px;
- .emptyImg {
- height: 257px;
- }
- .emptySpan {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 18px;
- color: rgba(0, 0, 0, 0.45);
- text-align: left;
- font-style: normal;
- }
- }
- .operation {
- display: flex;
- justify-content: center;
- width: 100%;
- }
- </style>
|