| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854 |
- <template>
- <div>
- <!-- 调查表填报弹窗(单记录类型) -->
- <survey-form-dialog
- :visible.sync="surveyFormDialogVisible"
- :survey-data="{ ...currentSurveyRow, ...surveyDetailData }"
- :form-fields="formFields"
- :is-view-mode="isViewMode"
- :audited-unit-id="auditedUnitId"
- :upload-id="
- currentSurveyRow && currentSurveyRow.id ? currentSurveyRow.id : uploadId
- "
- :survey-template-id="
- currentSurveyRow && currentSurveyRow.surveyTemplateId
- ? currentSurveyRow.surveyTemplateId
- : surveyTemplateId
- "
- :catalog-id="catalogId"
- @save="handleSurveyFormSave"
- @refresh="handleRefresh"
- />
- <!-- 固定表填报弹窗 -->
- <fixed-table-dialog
- :visible.sync="fixedTableDialogVisible"
- :survey-data="currentSurveyRow"
- :table-items="tableItems"
- :audit-periods="auditPeriods"
- :is-view-mode="isViewMode"
- :audited-unit-id="auditedUnitId"
- :upload-id="
- currentSurveyRow && currentSurveyRow.id ? currentSurveyRow.id : uploadId
- "
- :survey-template-id="
- currentSurveyRow && currentSurveyRow.surveyTemplateId
- ? currentSurveyRow.surveyTemplateId
- : surveyTemplateId
- "
- :catalog-id="catalogId"
- @save="handleFixedTableSave"
- @refresh="handleRefresh"
- />
- <!-- 动态表填报弹窗 -->
- <dynamic-table-dialog
- :visible.sync="dynamicTableDialogVisible"
- :survey-data="currentSurveyRow"
- :table-data="dynamicTableData"
- :table-items="tableItems"
- :is-view-mode="isViewMode"
- @save="handleDynamicTableSave"
- />
- <el-table
- style="width: 100%; margin-top: 20px"
- :data="paginatedData"
- border
- size="medium"
- >
- <!-- 序号列 -->
- <el-table-column prop="index" label="序号" width="60" align="center">
- <template slot-scope="scope">
- {{ scope.$index + 1 }}
- </template>
- </el-table-column>
- <el-table-column label="成本调查表" min-width="220">
- <template slot-scope="scope">
- <span
- :style="{
- color: scope.row.isDisabled ? '#909399' : '#409EFF',
- cursor: scope.row.isDisabled ? 'default' : 'pointer',
- }"
- @click="
- !scope.row.isDisabled && $emit('handle-survey-click', scope.row)
- "
- >
- {{ scope.row.name }}
- </span>
- </template>
- </el-table-column>
- <!-- 资料类型列 -->
- <el-table-column
- prop="dataType"
- label="资料类型"
- width="120"
- align="center"
- ></el-table-column>
- <!-- 表格类型列 -->
- <el-table-column
- prop="tableType"
- label="表格类型"
- width="120"
- align="center"
- ></el-table-column>
- <!-- 是否必填列 -->
- <el-table-column
- prop="isRequired"
- label="是否必填"
- width="100"
- align="center"
- >
- <template slot-scope="scope">
- <span>
- {{
- scope.row.isRequired === '是' ||
- scope.row.isRequired === '1' ||
- scope.row.isRequired === 1
- ? '是'
- : '否'
- }}
- </span>
- </template>
- </el-table-column>
- <!-- 是否上传列(红色“未上传”、绿色“已上传”) -->
- <el-table-column label="是否上传" width="100" align="center">
- <template slot-scope="scope">
- <span
- :style="{
- color: scope.row.isUploaded === true ? '#67c23a' : '#f56c6c',
- }"
- >
- {{ scope.row.isUploaded === true ? '已上传' : '未上传' }}
- </span>
- </template>
- </el-table-column>
- <!-- 操作列(根据“是否上传”“表格类型”显示不同按钮) -->
- <el-table-column label="操作" width="280" align="center">
- <template slot-scope="scope">
- <template v-if="scope.row.isUploaded">
- <el-button
- type="text"
- size="small"
- :disabled="isViewMode"
- @click="handleOnlineFillClick(scope.row)"
- >
- 在线填报
- </el-button>
- <el-button
- type="text"
- size="small"
- :disabled="isViewMode"
- @click="$emit('handle-modify', scope.row)"
- >
- 修改
- </el-button>
- <el-button
- type="text"
- size="small"
- :disabled="isViewMode"
- @click="$emit('handle-data-download', scope.row)"
- >
- 数据下载
- </el-button>
- <el-button
- type="text"
- size="small"
- :disabled="isViewMode"
- @click="$emit('handle-data-upload', scope.row)"
- >
- 数据上传
- </el-button>
- </template>
- <template v-else>
- <el-button
- type="text"
- size="small"
- :disabled="isViewMode"
- @click="handleOnlineFillClick(scope.row)"
- >
- 在线填报
- </el-button>
- <el-button
- v-if="scope.row.tableType === '动态表'"
- type="text"
- size="small"
- :disabled="isViewMode"
- @click="$emit('handle-template-download', scope.row)"
- >
- 模版下载
- </el-button>
- <el-button
- type="text"
- size="small"
- :disabled="isViewMode"
- @click="$emit('handle-data-upload', scope.row)"
- >
- 数据上传
- </el-button>
- </template>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- background
- layout="total, sizes, prev, pager, next"
- :current-page="pagination.currentPage"
- :page-sizes="[10, 20, 30, 50]"
- :page-size="pagination.pageSize"
- :total="pagination.total"
- style="margin-top: 20px; text-align: right"
- @current-change="$emit('handle-page-change', $event)"
- @size-change="$emit('handle-size-change', $event)"
- />
- </div>
- </template>
- <script>
- import SurveyFormDialog from './SurveyFormDialog.vue'
- import FixedTableDialog from './FixedTableDialog.vue'
- import DynamicTableDialog from './DynamicTableDialog.vue'
- import {
- getSingleRecordSurveyList,
- getSurveyDetail,
- } from '@/api/audit/survey'
- export default {
- name: 'CostSurveyTab',
- components: {
- SurveyFormDialog,
- FixedTableDialog,
- DynamicTableDialog,
- },
- props: {
- paginatedData: {
- type: Array,
- default: () => [],
- },
- pagination: {
- type: Object,
- default: () => ({ currentPage: 1, pageSize: 10, total: 0 }),
- },
- isViewMode: {
- type: Boolean,
- default: false,
- },
- // 被监审单位ID
- auditedUnitId: {
- type: String,
- default: '',
- },
- // 上传记录ID
- uploadId: {
- type: String,
- default: '',
- },
- // 成本调查表模板ID
- surveyTemplateId: {
- type: String,
- default: '',
- },
- // 目录ID
- catalogId: {
- type: String,
- default: '',
- },
- // 监审期间(从立项信息中获取)
- auditPeriod: {
- type: [String, Array],
- default: null,
- },
- },
- data() {
- return {
- surveyFormDialogVisible: false,
- fixedTableDialogVisible: false,
- dynamicTableDialogVisible: false,
- currentSurveyRow: null,
- // 表单字段配置(可以从后台获取,或通过 props 传入)
- formFields: [],
- // 表单详情数据(用于回显)
- surveyDetailData: {},
- // 固定表数据配置
- tableItems: [],
- // 监审期间(年份数组)
- auditPeriods: [],
- // 动态表数据
- dynamicTableData: [],
- }
- },
- mounted() {
- // 表单字段配置在打开弹窗时动态加载,不需要在 mounted 中初始化
- },
- methods: {
- // 处理在线填报点击
- async handleOnlineFillClick(row) {
- this.currentSurveyRow = row
- // 重置详情数据
- this.surveyDetailData = {}
- // 如果表格类型是"单记录",弹出调查表填报弹窗
- if (row.tableType === '单记录') {
- // 如果该行有 id,先调用接口获取详情数据
- if (row.id && this.auditedUnitId) {
- try {
- const params = {
- uploadId: row.id,
- auditedUnitId: this.auditedUnitId,
- }
- const res = await getSurveyDetail(params)
- console.log('单记录详情数据', res)
- if (res && res.code === 200 && res.value) {
- // 将详情数据转换为表单数据格式
- // 接口返回的数据可能是数组格式 [{rowid: 'xxx', rkey: 'xxx', rvalue: 'xxx'}, ...]
- // 需要转换为 {rowid: 'rvalue', ...} 的格式
- const detailData = {}
- if (Array.isArray(res.value)) {
- res.value.forEach((item) => {
- if (item.rowid && item.rvalue !== undefined) {
- detailData[item.rowid] = item.rvalue
- }
- })
- } else if (res.value) {
- // 如果不是数组,可能是对象格式,直接使用
- Object.assign(detailData, res.value)
- }
- this.surveyDetailData = detailData
- console.log('转换后的详情数据', this.surveyDetailData)
- }
- } catch (err) {
- console.error('获取单记录详情失败', err)
- }
- }
- // 调用接口获取单记录表单字段配置(详情数据已准备好)
- await this.initFormFields()
- // 接口调用完成后会自动打开弹窗(在 initFormFields 中处理)
- } else if (row.tableType === '固定表') {
- // 如果表格类型是"固定表",弹出固定表填报弹窗
- // 调用接口获取固定表配置
- await this.initFixedTableData()
- // 接口调用完成后会自动打开弹窗(在 initFixedTableData 中处理)
- } else if (row.tableType === '动态表') {
- // 如果表格类型是"动态表",弹出动态表填报弹窗
- this.initDynamicTableData()
- this.dynamicTableDialogVisible = true
- } else {
- // 其他类型,触发原有事件
- this.$emit('handle-online-fill', row)
- }
- },
- // 处理调查表保存
- handleSurveyFormSave(formData) {
- // 可以将保存的数据传递给父组件
- this.$emit('handle-survey-form-save', {
- row: this.currentSurveyRow,
- formData: formData,
- })
- },
- // 处理刷新事件
- handleRefresh() {
- // 触发父组件的刷新事件
- this.$emit('handle-survey-form-save', {
- row: this.currentSurveyRow,
- formData: {},
- })
- },
- // 处理固定表保存
- handleFixedTableSave(tableData) {
- // 可以将保存的数据传递给父组件
- this.$emit('handle-fixed-table-save', {
- row: this.currentSurveyRow,
- tableData: tableData,
- })
- },
- // 处理动态表保存
- handleDynamicTableSave(tableData) {
- // 可以将保存的数据传递给父组件
- this.$emit('handle-dynamic-table-save', {
- row: this.currentSurveyRow,
- tableData: tableData,
- })
- },
- // 初始化动态表数据
- initDynamicTableData() {
- // 如果当前行有动态表数据,则使用
- if (this.currentSurveyRow && this.currentSurveyRow.dynamicTableData) {
- this.dynamicTableData = this.currentSurveyRow.dynamicTableData
- } else {
- // 使用空数组,组件内部会使用假数据
- this.dynamicTableData = []
- }
- // 初始化表格项配置(用于详情/编辑时显示表单)
- if (this.currentSurveyRow && this.currentSurveyRow.tableItems) {
- this.tableItems = this.currentSurveyRow.tableItems
- } else {
- // 使用固定表的假数据配置
- this.tableItems = this.getMockTableItems()
- }
- },
- // 初始化表单字段配置
- async initFormFields() {
- // 如果是单记录类型,调用接口获取表单字段配置
- if (
- this.currentSurveyRow &&
- this.currentSurveyRow.tableType === '单记录' &&
- this.currentSurveyRow.surveyTemplateId
- ) {
- try {
- const params = {
- surveyTemplateId: this.currentSurveyRow.surveyTemplateId,
- }
- const res = await getSingleRecordSurveyList(params)
- console.log('单记录表单字段配置', res)
- if (res && res.code === 200 && res.value) {
- // 将接口返回的数据转换为表单字段配置格式
- const { fixedFields, fixedFieldids } = res.value
- if (fixedFields && fixedFieldids) {
- // 将 fixedFields 和 fixedFieldids 按逗号分割
- const labels = fixedFields.split(',').map((item) => item.trim())
- const ids = fixedFieldids.split(',').map((item) => item.trim())
- console.log('labels', labels)
- console.log('ids', ids)
- // 组合成表单字段配置数组
- this.formFields = labels.map((label, index) => ({
- prop: ids[index] || `field_${index}`, // 使用 fixedFieldids 作为 prop
- label: label, // 使用 fixedFields 作为 label
- type: 'input', // 默认类型为 input
- colSpan: 12, // 默认占一半宽度
- placeholder: `请输入${label}`,
- rules: [],
- defaultValue: '',
- disabled: false,
- clearable: true,
- multiple: false,
- required: false,
- }))
- } else {
- // 如果没有 fixedFields 和 fixedFieldids,使用默认配置
- this.formFields = this.getMockFormFields()
- }
- } else {
- // 接口返回失败,使用默认配置
- this.formFields = this.getMockFormFields()
- }
- // 打开弹窗
- this.surveyFormDialogVisible = true
- } catch (err) {
- console.error('获取单记录表单字段配置失败', err)
- // 出错时使用默认配置
- this.formFields = this.getMockFormFields()
- this.surveyFormDialogVisible = true
- }
- } else if (this.currentSurveyRow && this.currentSurveyRow.formFields) {
- // 如果当前行有表单配置,则使用
- this.formFields = this.currentSurveyRow.formFields
- this.surveyFormDialogVisible = true
- } else {
- // 使用假数据作为测试(实际开发中应该从后台获取)
- this.formFields = this.getMockFormFields()
- this.surveyFormDialogVisible = true
- }
- },
- // 获取假数据表单字段配置(用于测试)
- getMockFormFields() {
- return [
- {
- prop: 'institutionName',
- label: '机构名称',
- type: 'input',
- colSpan: 12,
- defaultValue: '幼儿园基本情况',
- placeholder: '请输入机构名称',
- required: true,
- },
- {
- prop: 'institutionNature',
- label: '机构性质',
- type: 'select',
- colSpan: 12,
- dictType: 'institutionNature', // 字典类型
- defaultValue: '公办',
- placeholder: '请选择机构性质',
- required: true,
- clearable: true,
- },
- {
- prop: 'institutionLevel',
- label: '机构评定等级',
- type: 'select',
- colSpan: 12,
- dictType: 'institutionLevel', // 字典类型
- defaultValue: '省一级',
- placeholder: '请选择机构评定等级',
- required: true,
- clearable: true,
- },
- {
- prop: 'educationMode',
- label: '机构办学方式',
- type: 'select',
- colSpan: 12,
- dictType: 'educationMode', // 字典类型
- defaultValue: '全日制',
- placeholder: '请选择机构办学方式',
- required: true,
- clearable: true,
- },
- {
- prop: 'institutionAddress',
- label: '机构地址',
- type: 'input',
- colSpan: 12,
- placeholder: '请输入机构地址',
- required: true,
- },
- {
- prop: 'formFiller',
- label: '机构填表人',
- type: 'input',
- colSpan: 12,
- placeholder: '请输入机构填表人',
- required: true,
- },
- {
- prop: 'financialManager',
- label: '机构财务负责人',
- type: 'input',
- colSpan: 12,
- placeholder: '请输入机构财务负责人',
- required: true,
- },
- {
- prop: 'contactPhone',
- label: '机构联系电话',
- type: 'input',
- colSpan: 12,
- placeholder: '请输入机构联系电话',
- required: true,
- rules: [
- {
- required: true,
- message: '请输入机构联系电话',
- trigger: 'blur',
- },
- {
- pattern: /^1[3-9]\d{9}$/,
- message: '请输入正确的手机号码',
- trigger: 'blur',
- },
- ],
- },
- ]
- },
- // 初始化固定表数据
- async initFixedTableData() {
- // 如果是固定表类型,调用接口获取固定表配置
- if (
- this.currentSurveyRow &&
- this.currentSurveyRow.tableType === '固定表' &&
- this.currentSurveyRow.surveyTemplateId
- ) {
- try {
- const params = {
- surveyTemplateId: this.currentSurveyRow.surveyTemplateId,
- }
- const res = await getSingleRecordSurveyList(params)
- console.log('固定表配置数据', res)
- if (res && res.code === 200 && res.value) {
- // 将接口返回的数据转换为固定表配置格式
- // 固定表使用 itemlist,不使用 fixedFields 和 fixedFieldids
- const { itemlist } = res.value
- console.log('itemlist', itemlist)
- // 如果有 itemlist,使用 itemlist 作为表格项配置
- if (itemlist && Array.isArray(itemlist) && itemlist.length > 0) {
- this.tableItems = itemlist.map((item, index) => ({
- id: item.id || item.itemId || '',
- rowid: item.rowid || item.id || item.itemId || '', // rowid 用于父子关系
- seq: item.序号, // 序号就是序号
- itemName: item.项目 || '', // 项目就是项目
- unit: item.unit || '', // 单位是 unit
- isCategory: item.isCategory || false,
- categorySeq: item.categorySeq || '',
- categoryId: item.categoryId || '',
- parentid:
- item.parentid !== undefined
- ? item.parentid
- : item.parentId !== undefined
- ? item.parentId
- : '-1', // 父项ID,默认为 '-1'(父项)
- validateRules: item.validateRules || {},
- linkageRules: item.linkageRules || {},
- children: item.children || [],
- ...item, // 保留其他字段
- }))
- } else {
- // 如果没有 itemlist,使用假数据
- this.tableItems = this.getMockTableItems()
- }
- } else {
- // 接口返回失败,使用默认配置
- this.tableItems = this.getMockTableItems()
- }
- } catch (err) {
- console.error('获取固定表配置失败', err)
- // 出错时使用默认配置
- this.tableItems = this.getMockTableItems()
- }
- } else if (this.currentSurveyRow && this.currentSurveyRow.tableItems) {
- // 如果当前行有表格配置,则使用
- this.tableItems = this.currentSurveyRow.tableItems
- } else {
- // 使用假数据作为测试(实际开发中应该从后台获取)
- this.tableItems = this.getMockTableItems()
- }
- // 初始化监审期间(从立项信息中获取)
- if (this.auditPeriod) {
- // 如果传入了监审期间,使用传入的值
- if (Array.isArray(this.auditPeriod)) {
- this.auditPeriods = this.auditPeriod.map((p) => String(p))
- } else {
- this.auditPeriods = this.parseAuditPeriod(this.auditPeriod)
- }
- } else if (this.currentSurveyRow && this.currentSurveyRow.auditPeriod) {
- // 如果当前行有监审期间,使用当前行的
- this.auditPeriods = this.parseAuditPeriod(
- this.currentSurveyRow.auditPeriod
- )
- } else {
- // 默认使用最近3年
- const currentYear = new Date().getFullYear()
- this.auditPeriods = [
- String(currentYear - 2),
- String(currentYear - 1),
- String(currentYear),
- ]
- }
- // 打开弹窗
- this.fixedTableDialogVisible = true
- },
- // 解析监审期间字符串(如 "2022,2023,2024" 或 "2022-2024")
- parseAuditPeriod(periodStr) {
- if (!periodStr) return []
- if (periodStr.includes(',')) {
- return periodStr.split(',').map((p) => p.trim())
- }
- if (periodStr.includes('-')) {
- const parts = periodStr.split('-')
- if (parts.length === 2) {
- const start = parseInt(parts[0].trim())
- const end = parseInt(parts[1].trim())
- const years = []
- for (let year = start; year <= end; year++) {
- years.push(String(year))
- }
- return years
- }
- }
- return [String(periodStr)]
- },
- // 获取假数据表格配置(用于测试)
- getMockTableItems() {
- return [
- {
- id: '1',
- itemName: '班级数',
- unit: '个',
- isCategory: false,
- seq: 1,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- },
- {
- id: '2',
- itemName: '幼儿学生人数',
- unit: '人',
- isCategory: false,
- seq: 2,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- },
- {
- id: 'III',
- itemName: '在取做保职工总人数',
- unit: '人',
- isCategory: true,
- categorySeq: 'III',
- children: [
- {
- id: '3-1',
- itemName: '行政管理人员数',
- unit: '人',
- isCategory: false,
- categoryId: 'III',
- seq: 3,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: 'III',
- relation: 'sum',
- },
- },
- {
- id: '3-2',
- itemName: '教师人数',
- unit: '人',
- isCategory: false,
- categoryId: 'III',
- seq: 4,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: 'III',
- relation: 'sum',
- },
- },
- {
- id: '3-3',
- itemName: '保育员人数',
- unit: '人',
- isCategory: false,
- categoryId: 'III',
- seq: 5,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: 'III',
- relation: 'sum',
- },
- },
- {
- id: '3-4',
- itemName: '医务人员',
- unit: '人',
- isCategory: false,
- categoryId: 'III',
- seq: 6,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: 'III',
- relation: 'sum',
- },
- },
- {
- id: '3-5',
- itemName: '工勤人员',
- unit: '人',
- isCategory: false,
- categoryId: 'III',
- seq: 7,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: 'III',
- relation: 'sum',
- },
- children: [
- {
- id: '3-5-1',
- itemName: '炊事员',
- unit: '人',
- isCategory: false,
- categoryId: '3-5',
- seq: 8,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: '3-5',
- relation: 'sum',
- },
- },
- {
- id: '3-5-2',
- itemName: '司机',
- unit: '人',
- isCategory: false,
- categoryId: '3-5',
- seq: 9,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: '3-5',
- relation: 'sum',
- },
- },
- {
- id: '3-5-3',
- itemName: '清洁工',
- unit: '人',
- isCategory: false,
- categoryId: '3-5',
- seq: 10,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: '3-5',
- relation: 'sum',
- },
- },
- ],
- },
- {
- id: '3-6',
- itemName: '其他人员',
- unit: '人',
- isCategory: false,
- categoryId: 'III',
- seq: 11,
- validateRules: {
- required: true,
- type: 'number',
- min: 0,
- },
- linkageRules: {
- parent: 'III',
- relation: 'sum',
- },
- },
- ],
- },
- ]
- },
- },
- }
- </script>
|