待审核
审核中
审核通过
审核未通过
diff --git a/src/components/table/table-input.vue b/src/components/table/table-input.vue
index 8f5e2d818ccf088f2efcb576ad39af0d59b62a3f..4b8955809573cd8aae31ec7240f2c346e7e22b56 100644
--- a/src/components/table/table-input.vue
+++ b/src/components/table/table-input.vue
@@ -58,7 +58,7 @@ import helper from "@/services/helper";
export default {
props: {
item: {
- type: [String,Number],
+ type: [String, Number],
default: ""
},
header: {
@@ -95,7 +95,8 @@ export default {
anotherData: {
directory: "file"
},
- inputTextUp: ""
+ inputTextUp: "",
+ helper: helper
}),
mounted() {
this.inputText = this.item;
@@ -118,7 +119,7 @@ export default {
url: response.data,
name: response.data
});
- this.inputTextUp = file.name;
+ this.inputTextUp = helper.downloadFileFormat(file.name);
this.$emit("changeUpFile", {
rowId: this.rowId,
header: this.header,
diff --git a/src/pages/user/order/order_detail.vue b/src/pages/user/order/order_detail.vue
index 469a6dfd16f064e25ee89ac69129bf2201afde5c..b7c0de29cf2009c2f36d799b8caa352f8c8a502c 100644
--- a/src/pages/user/order/order_detail.vue
+++ b/src/pages/user/order/order_detail.vue
@@ -89,7 +89,7 @@
{{ orderDetail.order_type == 1 ? "服务" : "应用"}}信息
-
+
+
+
+
+
+ {{ orderDetail.name }}
+
+
+
{{ orderDetail.sector }}
+
{{ orderDetail.src_organization }}
+
+
+
+
+
+
+
+ {{ orderDetail.name }}
+
+
+
-
+
规格:
{{orderDetail.duration_unit == 1 ? "按月" : "按年"}}
+
+
+ 规格:
+ 申请获取应用镜像部署权限
+
+
+
@@ -131,10 +163,64 @@
- 应用场景:
- {{ orderDetail.scene }}
- 申请内容:
-
+
+
应用简介:
+
{{ orderDetail.scene }}
+
+
+
功能简介:
+
{{ orderDetail.scene }}
+
+
+
应用场景:
+
{{ orderDetail.scene }}
+
+
+
工作区域描述:
+
{{ orderDetail.scene }}
+
+
+
申请规格:
+
+
+ CPU:
+ 2核
+
+
+ 内存:
+ 4GB
+
+
+ 容器组:
+ 2核
+
+
+ 数据盘:
+ 2核
+
+
+
单个容器组规格:
+
+
+
CPU:
+
+ 最高 2核
+ 默认 2核
+
+
+
+
CPU:
+
+ 最高 2核
+ 默认 2核
+
+
+
+
+
申请人信息
@@ -512,6 +598,19 @@ export default {
-webkit-box-orient: vertical;
font-size: 16px;
}
+.detail_service_name_cloud {
+ width: 100%;
+ line-height: 24px;
+ margin-top: 50px;
+ text-overflow: -o-ellipsis-lastline;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ display: -webkit-box;
+ -webkit-line-clamp: 2;
+ line-clamp: 2;
+ -webkit-box-orient: vertical;
+ font-size: 16px;
+}
.detail_service_msg_other {
position: absolute;
bottom: 2px;
@@ -598,6 +697,42 @@ export default {
background-color: #e1e4fb;
color: #626de9;
}
+.params_block {
+ background-color: #f8f9fd;
+ border-radius: 8px;
+ margin: 10px 0;
+ padding: 20px;
+ font-size: 14px;
+ line-height: 22px;
+}
+.params_block_title {
+ padding-left: 10px;
+ color: #242c43;
+}
+.params_block_item {
+ padding: 10px 0 0 0;
+}
+.params_block_item_in {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 5px;
+}
+.params_block_item_title {
+ color: #8890a7;
+ width: 120px;
+ text-align: right;
+}
+.params_block_item_val {
+ color: #242c43;
+ width: calc(100% - 130px);
+}
+.val_has_2 {
+ margin-right: 20px;
+}
+.margin_top_20 {
+ display: block;
+ margin-top: 20px;
+}