云资源状态调整
This commit is contained in:
parent
d16763eaac
commit
722385e3a8
|
@ -72,20 +72,29 @@
|
||||||
</div>
|
</div>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<div class="content-body-content">
|
<div class="content-body-content">
|
||||||
<p class="content-body-content-son" v-if="typeName !== '设备申请'">
|
<p class="content-body-content-son" v-if="typeName == '设备申请'">
|
||||||
审核结果:{{ item.ended ? '审核完成' : '审核中' }}
|
|
||||||
</p>
|
|
||||||
<p
|
|
||||||
class="content-body-content-son"
|
|
||||||
v-else-if="typeName == '设备申请'"
|
|
||||||
>
|
|
||||||
审核结果:{{ item.state === 0 ? '审核中' : '审核完成' }}
|
审核结果:{{ item.state === 0 ? '审核中' : '审核完成' }}
|
||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
class="content-body-content-son"
|
class="content-body-content-son"
|
||||||
v-else-if="typeName == '云资源申请' || typeName == '云视频申请'"
|
v-else-if="typeName == '数据资源申请'"
|
||||||
>
|
>
|
||||||
审核结果:{{ item.STATUS }}
|
审核结果:{{ item.bmyijian === 0 ? '审核中' : '审核完成' }}
|
||||||
|
</p>
|
||||||
|
<p
|
||||||
|
class="content-body-content-son"
|
||||||
|
v-else-if="typeName == '云资源申请'"
|
||||||
|
>
|
||||||
|
审核结果:{{ status[item.STATUS] }}
|
||||||
|
</p>
|
||||||
|
<p
|
||||||
|
class="content-body-content-son"
|
||||||
|
v-else-if="typeName == '云视频申请'"
|
||||||
|
>
|
||||||
|
审核结果:{{ status2[item.STATUS] }}
|
||||||
|
</p>
|
||||||
|
<p class="content-body-content-son" v-else>
|
||||||
|
审核结果:{{ item.ended ? '审核完成' : '审核中' }}
|
||||||
</p>
|
</p>
|
||||||
<div>
|
<div>
|
||||||
申请日期:{{
|
申请日期:{{
|
||||||
|
@ -381,6 +390,45 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const applytype = {
|
||||||
|
'01': '新增',
|
||||||
|
'02': '变更',
|
||||||
|
'03': '停用',
|
||||||
|
'04': '核减',
|
||||||
|
}
|
||||||
|
const sourcetype = {
|
||||||
|
'01': '云主机',
|
||||||
|
'02': '云数据库',
|
||||||
|
'03': '对象存储',
|
||||||
|
'04': '堡垒机',
|
||||||
|
'05': '备份服务',
|
||||||
|
'06': '防火墙',
|
||||||
|
'07': '网闸',
|
||||||
|
'08': '负载均衡',
|
||||||
|
'09': '公网ip',
|
||||||
|
10: '托管服务',
|
||||||
|
11: '大数据服务',
|
||||||
|
}
|
||||||
|
const status = {
|
||||||
|
'00': '草稿',
|
||||||
|
'01': '提交',
|
||||||
|
'03': '一级部门提交',
|
||||||
|
'04': '驳回',
|
||||||
|
'05': '审核通过',
|
||||||
|
'06': '交付',
|
||||||
|
'07': '作废',
|
||||||
|
99: '终止办结',
|
||||||
|
}
|
||||||
|
const status2 = {
|
||||||
|
'00': '草稿',
|
||||||
|
'01': '提交',
|
||||||
|
'02': '大数据局审核通过',
|
||||||
|
'04': '大数据局驳回',
|
||||||
|
'03': '提交给视频所属部门',
|
||||||
|
'08': '视频所属部门审核中',
|
||||||
|
'05': '视频所属部门已审核',
|
||||||
|
'06': '交付',
|
||||||
|
}
|
||||||
const cilckRowData = ref({})
|
const cilckRowData = ref({})
|
||||||
const showDetail = (item) => {
|
const showDetail = (item) => {
|
||||||
cilckRowData.value = item
|
cilckRowData.value = item
|
||||||
|
@ -437,45 +485,6 @@
|
||||||
typeName.value == '云资源申请' ||
|
typeName.value == '云资源申请' ||
|
||||||
typeName.value == '云视频申请'
|
typeName.value == '云视频申请'
|
||||||
) {
|
) {
|
||||||
const applytype = {
|
|
||||||
'01': '新增',
|
|
||||||
'02': '变更',
|
|
||||||
'03': '停用',
|
|
||||||
'04': '核减',
|
|
||||||
}
|
|
||||||
const sourcetype = {
|
|
||||||
'01': '云主机',
|
|
||||||
'02': '云数据库',
|
|
||||||
'03': '对象存储',
|
|
||||||
'04': '堡垒机',
|
|
||||||
'05': '备份服务',
|
|
||||||
'06': '防火墙',
|
|
||||||
'07': '网闸',
|
|
||||||
'08': '负载均衡',
|
|
||||||
'09': '公网ip',
|
|
||||||
10: '托管服务',
|
|
||||||
11: '大数据服务',
|
|
||||||
}
|
|
||||||
const status = {
|
|
||||||
'00': '草稿',
|
|
||||||
'01': '提交',
|
|
||||||
'03': '一级部门提交',
|
|
||||||
'04': '驳回',
|
|
||||||
'05': '审核通过',
|
|
||||||
'06': '交付',
|
|
||||||
'07': '作废',
|
|
||||||
99: '终止办结',
|
|
||||||
}
|
|
||||||
const status2 = {
|
|
||||||
'00': '草稿',
|
|
||||||
'01': '提交',
|
|
||||||
'02': '大数据局审核通过',
|
|
||||||
'04': '大数据局驳回',
|
|
||||||
'03': '提交给视频所属部门',
|
|
||||||
'08': '视频所属部门审核中',
|
|
||||||
'05': '视频所属部门已审核',
|
|
||||||
'06': '交付',
|
|
||||||
}
|
|
||||||
refObj.value.description = '政务云'
|
refObj.value.description = '政务云'
|
||||||
if (typeName.value == '云资源申请') {
|
if (typeName.value == '云资源申请') {
|
||||||
refObj.value.STATUS = status[item.STATUS] // 状态
|
refObj.value.STATUS = status[item.STATUS] // 状态
|
||||||
|
|
Loading…
Reference in New Issue