2024-05-16 14:00:49 +08:00
|
|
|
|
<template>
|
2024-07-02 19:40:25 +08:00
|
|
|
|
<TableHeader area datePicker nextFlag theCurrentTime ref="TableHeaderRef">
|
2024-09-10 14:07:25 +08:00
|
|
|
|
<template #operation>
|
|
|
|
|
|
<el-button icon="el-icon-Delete" type="primary" @click="deleteEven">删除</el-button>
|
|
|
|
|
|
</template>
|
2024-05-16 14:00:49 +08:00
|
|
|
|
</TableHeader>
|
2024-09-10 14:07:25 +08:00
|
|
|
|
<Table ref="tableRef" :checkbox-config="checkboxConfig" />
|
2024-05-22 16:05:51 +08:00
|
|
|
|
<!--弹框-->
|
2024-06-19 11:28:18 +08:00
|
|
|
|
<feedback-popup ref="feedbackPopup" />
|
2024-05-16 14:00:49 +08:00
|
|
|
|
</template>
|
2024-06-19 11:28:18 +08:00
|
|
|
|
<script setup lang="ts">
|
2024-09-13 20:04:19 +08:00
|
|
|
|
import { ref, onMounted, provide, watch } from 'vue'
|
2024-05-16 14:00:49 +08:00
|
|
|
|
import TableStore from '@/utils/tableStore'
|
|
|
|
|
|
import Table from '@/components/table/index.vue'
|
|
|
|
|
|
import TableHeader from '@/components/table/header/index.vue'
|
|
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
2024-05-22 16:05:51 +08:00
|
|
|
|
import FeedbackPopup from '@/views/pqs/supervise/technology/feedbackPopup.vue'
|
|
|
|
|
|
import { useRouter } from 'vue-router'
|
2024-09-13 20:04:19 +08:00
|
|
|
|
import {cancelFeedback, getById} from '@/api/supervision-boot/leaflet'
|
2024-06-04 16:54:33 +08:00
|
|
|
|
import { useAdminInfo } from '@/stores/adminInfo'
|
2024-06-05 15:08:24 +08:00
|
|
|
|
import { useDictData } from '@/stores/dictData'
|
2024-09-10 14:07:25 +08:00
|
|
|
|
import { deleteWarningLeaflet } from '@/api/supervision-boot/delete/index'
|
2024-06-05 15:08:24 +08:00
|
|
|
|
const dictData = useDictData()
|
2024-06-04 16:54:33 +08:00
|
|
|
|
//获取登陆用户姓名和部门
|
|
|
|
|
|
const adminInfo = useAdminInfo()
|
2024-05-22 16:05:51 +08:00
|
|
|
|
const { push } = useRouter()
|
2024-05-16 14:00:49 +08:00
|
|
|
|
const tableRef = ref()
|
|
|
|
|
|
const TableHeaderRef = ref()
|
2024-05-22 16:05:51 +08:00
|
|
|
|
const feedbackPopup = ref()
|
2024-05-16 14:00:49 +08:00
|
|
|
|
const tableStore = new TableStore({
|
2024-05-21 16:27:27 +08:00
|
|
|
|
url: '/supervision-boot/warningLeaflet/warningPageData',
|
2024-05-16 14:00:49 +08:00
|
|
|
|
publicHeight: 65,
|
|
|
|
|
|
method: 'POST',
|
|
|
|
|
|
column: [
|
2024-09-10 14:07:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
width: '60',
|
|
|
|
|
|
type: 'checkbox'
|
|
|
|
|
|
},
|
2024-05-16 14:00:49 +08:00
|
|
|
|
{
|
|
|
|
|
|
title: '序号',
|
2024-12-09 09:22:43 +08:00
|
|
|
|
|
2024-05-16 14:00:49 +08:00
|
|
|
|
align: 'center',
|
2024-12-09 09:22:43 +08:00
|
|
|
|
width: 80,
|
2024-05-16 14:00:49 +08:00
|
|
|
|
formatter: (row: any) => {
|
|
|
|
|
|
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-06-19 11:28:18 +08:00
|
|
|
|
|
2024-05-24 09:49:40 +08:00
|
|
|
|
{
|
2024-06-19 11:28:18 +08:00
|
|
|
|
field: 'problemType',
|
|
|
|
|
|
title: '预警单问题来源',
|
|
|
|
|
|
minWidth: '150',
|
2024-05-21 16:27:27 +08:00
|
|
|
|
render: 'tag',
|
|
|
|
|
|
custom: {
|
|
|
|
|
|
1: 'warning',
|
|
|
|
|
|
2: 'warning',
|
|
|
|
|
|
3: 'warning',
|
|
|
|
|
|
4: 'warning'
|
|
|
|
|
|
},
|
|
|
|
|
|
replaceValue: {
|
|
|
|
|
|
1: '技术监督计划',
|
|
|
|
|
|
2: '在线监测超标问题',
|
|
|
|
|
|
3: '用户投诉问题',
|
2024-07-05 09:05:22 +08:00
|
|
|
|
4: '试运行监测点问题'
|
2024-05-21 16:27:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-06-14 16:59:21 +08:00
|
|
|
|
{ field: 'dutyOrgName', title: '负责单位', minWidth: '150' },
|
2024-06-20 16:54:19 +08:00
|
|
|
|
{ field: 'reformAdvice', title: '整改意见', minWidth: '150' },
|
2024-05-21 16:27:27 +08:00
|
|
|
|
{ field: 'leafletName', title: '单据名称', minWidth: '150' },
|
2024-05-24 09:49:40 +08:00
|
|
|
|
{
|
2024-06-19 11:28:18 +08:00
|
|
|
|
field: 'status',
|
|
|
|
|
|
title: '流程状态',
|
|
|
|
|
|
minWidth: '150',
|
2024-05-21 16:27:27 +08:00
|
|
|
|
render: 'tag',
|
|
|
|
|
|
custom: {
|
2024-06-20 16:54:19 +08:00
|
|
|
|
0: 'warning',
|
2024-05-21 16:27:27 +08:00
|
|
|
|
1: 'primary',
|
|
|
|
|
|
2: 'success',
|
|
|
|
|
|
3: 'danger',
|
|
|
|
|
|
4: 'warning',
|
2024-05-24 09:49:40 +08:00
|
|
|
|
5: 'primary'
|
2024-05-21 16:27:27 +08:00
|
|
|
|
},
|
|
|
|
|
|
replaceValue: {
|
2024-06-20 16:54:19 +08:00
|
|
|
|
0: '待提交审批',
|
2024-05-21 16:27:27 +08:00
|
|
|
|
1: '审批中',
|
|
|
|
|
|
2: '审批通过',
|
|
|
|
|
|
3: '审批不通过',
|
|
|
|
|
|
4: '已取消',
|
2024-06-13 13:32:50 +08:00
|
|
|
|
5: '新增'
|
2024-05-21 16:27:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-06-14 16:59:21 +08:00
|
|
|
|
|
2024-05-21 16:27:27 +08:00
|
|
|
|
{ field: 'createTime', title: '创建时间', minWidth: '150' },
|
2024-06-05 15:08:24 +08:00
|
|
|
|
{
|
|
|
|
|
|
field: 'createBy',
|
|
|
|
|
|
title: '填报人',
|
|
|
|
|
|
minWidth: 80,
|
|
|
|
|
|
formatter: (row: any) => {
|
|
|
|
|
|
return dictData.state.userList.filter(item => item.id == row.cellValue)[0]?.name
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-08-08 11:04:59 +08:00
|
|
|
|
// {
|
|
|
|
|
|
// title: '报告',
|
|
|
|
|
|
// minWidth: '150',
|
|
|
|
|
|
// align: 'center',
|
|
|
|
|
|
// render: 'buttons',
|
|
|
|
|
|
// fixed: 'right',
|
|
|
|
|
|
// buttons: [
|
|
|
|
|
|
|
|
|
|
|
|
// ]
|
|
|
|
|
|
// },
|
2024-08-07 11:13:46 +08:00
|
|
|
|
{
|
2024-08-08 11:04:59 +08:00
|
|
|
|
title: '操作',
|
|
|
|
|
|
minWidth: '220',
|
2024-08-07 11:13:46 +08:00
|
|
|
|
align: 'center',
|
|
|
|
|
|
render: 'buttons',
|
|
|
|
|
|
fixed: 'right',
|
|
|
|
|
|
buttons: [
|
2024-09-10 14:07:25 +08:00
|
|
|
|
{
|
2024-08-07 11:13:46 +08:00
|
|
|
|
name: 'productSetting',
|
|
|
|
|
|
title: '查看报告',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
|
|
|
|
|
return row.problemType != 2
|
|
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
const match = row.filePath.match(/excelreport(\/[^?#]*)/)
|
|
|
|
|
|
|
|
|
|
|
|
window.open(window.location.origin + '/#/previewFile?' + match[1])
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
|
title: '报告下载',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
|
|
|
|
|
return row.problemType != 2
|
|
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
window.open(row.filePath)
|
|
|
|
|
|
}
|
2024-08-08 11:04:59 +08:00
|
|
|
|
},
|
2024-10-31 15:47:02 +08:00
|
|
|
|
// {
|
|
|
|
|
|
// name: 'productSetting',
|
|
|
|
|
|
// title: '发送督办单',
|
|
|
|
|
|
// type: 'primary',
|
|
|
|
|
|
// icon: 'el-icon-EditPen',
|
|
|
|
|
|
// render: 'basicButton',
|
|
|
|
|
|
// click: row => {
|
|
|
|
|
|
// // handleAudit(row.processInstanceId)
|
|
|
|
|
|
// ElMessage.warning('待打通生成管理系统接口!')
|
|
|
|
|
|
// }
|
|
|
|
|
|
// },
|
2024-05-24 09:49:40 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
|
title: '问题反馈',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
2024-07-15 20:34:21 +08:00
|
|
|
|
return row.dutyOrgId != adminInfo.$state.deptId || row.status !== 5
|
2024-05-24 09:49:40 +08:00
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
2024-06-20 16:54:19 +08:00
|
|
|
|
feedbackPopup.value.open(
|
2024-09-14 10:20:49 +08:00
|
|
|
|
'填报预警反馈单',
|
2024-06-20 16:54:19 +08:00
|
|
|
|
row.id,
|
|
|
|
|
|
row.status,
|
|
|
|
|
|
row.issueDetail,
|
|
|
|
|
|
row.problemPath,
|
2024-07-05 09:05:22 +08:00
|
|
|
|
row.reportPath,
|
2024-06-20 16:54:19 +08:00
|
|
|
|
row.reformAdvice
|
|
|
|
|
|
)
|
2024-05-24 09:49:40 +08:00
|
|
|
|
}
|
2024-05-22 16:05:51 +08:00
|
|
|
|
},
|
2024-05-24 09:49:40 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
|
title: '流程详情',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
2024-06-20 16:54:19 +08:00
|
|
|
|
return !row.processInstanceId
|
2024-05-24 09:49:40 +08:00
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
2024-06-19 11:28:18 +08:00
|
|
|
|
handleAudit(row.processInstanceId, row.historyInstanceId)
|
2024-05-24 09:49:40 +08:00
|
|
|
|
}
|
2024-05-22 16:05:51 +08:00
|
|
|
|
},
|
2024-06-20 16:54:19 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'edit',
|
|
|
|
|
|
title: '编辑',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
|
render: 'basicButton',
|
2024-06-24 19:42:33 +08:00
|
|
|
|
showDisabled: row => {
|
2024-07-15 20:34:21 +08:00
|
|
|
|
return row.dutyOrgId != adminInfo.$state.deptId || !(row.status == 0)
|
2024-06-20 16:54:19 +08:00
|
|
|
|
},
|
2024-06-25 15:13:47 +08:00
|
|
|
|
disabled: row => {
|
|
|
|
|
|
return !(row.status == 0)
|
|
|
|
|
|
},
|
2024-06-20 16:54:19 +08:00
|
|
|
|
click: row => {
|
|
|
|
|
|
feedbackPopup.value.open(
|
2024-09-14 10:20:49 +08:00
|
|
|
|
'编辑预警反馈单',
|
2024-06-20 16:54:19 +08:00
|
|
|
|
row.id,
|
|
|
|
|
|
row.status,
|
|
|
|
|
|
row.issueDetail,
|
|
|
|
|
|
row.problemPath,
|
2024-07-05 09:05:22 +08:00
|
|
|
|
row.reportPath,
|
2024-06-20 16:54:19 +08:00
|
|
|
|
row.reformAdvice,
|
|
|
|
|
|
row.takeStep,
|
|
|
|
|
|
row.reportPath
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-05-24 09:49:40 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'edit',
|
|
|
|
|
|
title: '重新发起',
|
|
|
|
|
|
type: 'warning',
|
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
2024-06-18 16:38:33 +08:00
|
|
|
|
return row.createBy != adminInfo.$state.id || !(row.status == 3 || row.status == 4)
|
2024-05-24 09:49:40 +08:00
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
// deviceQuitPopup.value.open('重新发起', row)
|
2024-06-19 11:28:18 +08:00
|
|
|
|
feedbackPopup.value.open(
|
2024-09-14 10:20:49 +08:00
|
|
|
|
'重新填报预警反馈单',
|
2024-06-19 11:28:18 +08:00
|
|
|
|
row.id,
|
|
|
|
|
|
row.status,
|
|
|
|
|
|
row.issueDetail,
|
|
|
|
|
|
row.problemPath,
|
2024-07-05 09:05:22 +08:00
|
|
|
|
row.reportPath,
|
2024-06-20 16:54:19 +08:00
|
|
|
|
row.reformAdvice,
|
2024-06-19 11:28:18 +08:00
|
|
|
|
row.takeStep,
|
|
|
|
|
|
row.reportPath
|
|
|
|
|
|
)
|
2024-05-24 09:49:40 +08:00
|
|
|
|
}
|
2024-05-22 16:05:51 +08:00
|
|
|
|
},
|
2024-08-07 11:13:46 +08:00
|
|
|
|
|
2024-05-24 09:49:40 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'cancel',
|
|
|
|
|
|
title: '取消',
|
|
|
|
|
|
type: 'danger',
|
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
2024-06-04 16:54:33 +08:00
|
|
|
|
return row.createBy != adminInfo.$state.id || row.status != 1
|
2024-05-24 09:49:40 +08:00
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
2024-06-04 16:54:33 +08:00
|
|
|
|
cancelLeave(row)
|
2024-05-24 09:49:40 +08:00
|
|
|
|
}
|
2024-05-16 14:00:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
beforeSearchFun: () => {
|
|
|
|
|
|
tableStore.table.params.currentPage = tableStore.table.params.pageNum
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
provide('tableStore', tableStore)
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
})
|
2024-09-10 14:07:25 +08:00
|
|
|
|
// 禁止点击
|
|
|
|
|
|
const checkboxConfig = reactive({
|
|
|
|
|
|
checkMethod: ({ row }) => {
|
|
|
|
|
|
return adminInfo.roleCode.includes('delete_info')
|
|
|
|
|
|
? true
|
|
|
|
|
|
: row.createBy == adminInfo.$state.id && row.status == 0
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
const deleteEven = () => {
|
|
|
|
|
|
if (tableStore.table.selection.length == 0) {
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
type: 'warning',
|
|
|
|
|
|
message: '请选择要删除的数据'
|
|
|
|
|
|
})
|
|
|
|
|
|
} else {
|
2024-10-30 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
|
ElMessageBox.confirm('此操作将永久删除, 是否继续?', '提示', {
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
})
|
|
|
|
|
|
.then(() => {
|
|
|
|
|
|
deleteWarningLeaflet(tableStore.table.selection.map(item => item.id)).then(res => {
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
type: 'success',
|
|
|
|
|
|
message: '删除成功!'
|
|
|
|
|
|
})
|
|
|
|
|
|
tableStore.index()
|
2024-09-10 14:07:25 +08:00
|
|
|
|
})
|
2024-10-30 09:29:39 +08:00
|
|
|
|
|
2024-09-10 14:07:25 +08:00
|
|
|
|
})
|
2024-10-30 09:29:39 +08:00
|
|
|
|
|
2024-09-10 14:07:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-06-04 16:54:33 +08:00
|
|
|
|
/**取消流程操作*/
|
|
|
|
|
|
const cancelLeave = async (row: any) => {
|
|
|
|
|
|
// 二次确认
|
|
|
|
|
|
const { value } = await ElMessageBox.prompt('请输入取消原因', '取消流程', {
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
cancelButtonText: '取消',
|
2024-06-19 11:28:18 +08:00
|
|
|
|
inputType: 'textarea',
|
2024-06-04 16:54:33 +08:00
|
|
|
|
inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
|
|
|
|
|
|
inputErrorMessage: '取消原因不能为空'
|
|
|
|
|
|
})
|
|
|
|
|
|
// 发起取消
|
|
|
|
|
|
let data = {
|
|
|
|
|
|
id: row.id,
|
|
|
|
|
|
processInstanceId: row.processInstanceId,
|
|
|
|
|
|
reason: value
|
|
|
|
|
|
}
|
|
|
|
|
|
await cancelFeedback(data)
|
|
|
|
|
|
ElMessage.success('取消成功')
|
|
|
|
|
|
// 加载数据
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
}
|
2024-05-22 16:05:51 +08:00
|
|
|
|
/** 流程实例详情 */
|
2024-06-19 11:28:18 +08:00
|
|
|
|
const handleAudit = (instanceId: any, historyInstanceId: any) => {
|
2024-05-24 09:49:40 +08:00
|
|
|
|
push({
|
|
|
|
|
|
name: 'BpmProcessInstanceDetail',
|
|
|
|
|
|
query: {
|
2024-06-04 16:54:33 +08:00
|
|
|
|
id: instanceId,
|
|
|
|
|
|
historyInstanceId
|
2024-05-24 09:49:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
2024-05-22 16:05:51 +08:00
|
|
|
|
}
|
2024-09-13 20:04:19 +08:00
|
|
|
|
|
2024-09-14 10:20:49 +08:00
|
|
|
|
const props = defineProps(['id','businessKey'])
|
2024-09-13 20:04:19 +08:00
|
|
|
|
watch(() => props.id, async (newValue, oldValue) => {
|
|
|
|
|
|
if (newValue === 'null') return // 直接返回,避免后续逻辑执行
|
2024-10-30 09:29:39 +08:00
|
|
|
|
let fullId = newValue.split('@')[0]
|
2024-09-13 20:04:19 +08:00
|
|
|
|
let nowTime = Date.now()
|
|
|
|
|
|
const routeTime = Number(newValue.split('@')[1])
|
2024-10-30 09:29:39 +08:00
|
|
|
|
if (isNaN(routeTime) || nowTime - routeTime > import.meta.env.VITE_ROUTE_TIME_OUT || fullId == 'null') return // 路由时间超过500ms,则不执行
|
2024-09-13 20:04:19 +08:00
|
|
|
|
await getById(fullId).then(res => {
|
|
|
|
|
|
if (res && res.code == 'A0000') {
|
2024-09-14 10:20:49 +08:00
|
|
|
|
if(props.businessKey == '3'){
|
|
|
|
|
|
feedbackPopup.value.open(
|
|
|
|
|
|
'填报预警反馈单',
|
|
|
|
|
|
res.data.id,
|
|
|
|
|
|
res.data.status,
|
|
|
|
|
|
res.data.issueDetail,
|
|
|
|
|
|
res.data.problemPath,
|
|
|
|
|
|
res.data.reportPath,
|
|
|
|
|
|
res.data.reformAdvice
|
|
|
|
|
|
)
|
|
|
|
|
|
}else{
|
|
|
|
|
|
feedbackPopup.value.open(
|
|
|
|
|
|
'重新填报预警反馈单',
|
|
|
|
|
|
res.data.id,
|
|
|
|
|
|
res.data.status,
|
|
|
|
|
|
res.data.issueDetail,
|
|
|
|
|
|
res.data.problemPath,
|
|
|
|
|
|
res.data.reportPath,
|
|
|
|
|
|
res.data.reformAdvice,
|
|
|
|
|
|
res.data.takeStep,
|
|
|
|
|
|
res.data.reportPath
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
2024-09-13 20:04:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}, {immediate: true})
|
2024-05-16 14:00:49 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
2024-06-19 11:28:18 +08:00
|
|
|
|
<style scoped lang="scss"></style>
|