diff --git a/src/assets/imgs/nav_ic_ganzhifw.png b/src/assets/imgs/nav_ic_ganzhifw.png new file mode 100644 index 0000000000000000000000000000000000000000..46e453368ef4690847825e493a3bcb447e420a43 Binary files /dev/null and b/src/assets/imgs/nav_ic_ganzhifw.png differ diff --git a/src/assets/imgs/nav_ic_ganzhifw_sel.png b/src/assets/imgs/nav_ic_ganzhifw_sel.png new file mode 100644 index 0000000000000000000000000000000000000000..a77e34363eded0a8bf34459cb4566edd6b84e354 Binary files /dev/null and b/src/assets/imgs/nav_ic_ganzhifw_sel.png differ diff --git a/src/assets/imgs/nav_ic_shikongfw.png b/src/assets/imgs/nav_ic_shikongfw.png new file mode 100644 index 0000000000000000000000000000000000000000..f5df0f4b28cb437ab14082d473a31fb3c8f1bb9c Binary files /dev/null and b/src/assets/imgs/nav_ic_shikongfw.png differ diff --git a/src/assets/imgs/nav_ic_shikongfw_sel.png b/src/assets/imgs/nav_ic_shikongfw_sel.png new file mode 100644 index 0000000000000000000000000000000000000000..1271f35b935bfb938ea1a3895dfd06b1944180d1 Binary files /dev/null and b/src/assets/imgs/nav_ic_shikongfw_sel.png differ diff --git a/src/assets/imgs/nav_ic_shipinfw.png b/src/assets/imgs/nav_ic_shipinfw.png new file mode 100644 index 0000000000000000000000000000000000000000..0c7e2619233cc50c0421224cf44efa734aca5500 Binary files /dev/null and b/src/assets/imgs/nav_ic_shipinfw.png differ diff --git a/src/assets/imgs/nav_ic_shipinfw_sel.png b/src/assets/imgs/nav_ic_shipinfw_sel.png new file mode 100644 index 0000000000000000000000000000000000000000..47c9454353c51719678febf45158cd9d50ecd047 Binary files /dev/null and b/src/assets/imgs/nav_ic_shipinfw_sel.png differ diff --git a/src/assets/imgs/nav_ic_shujufw.png b/src/assets/imgs/nav_ic_shujufw.png new file mode 100644 index 0000000000000000000000000000000000000000..1dc9b626c6b7c972060a68e487aa9b56e4913ff4 Binary files /dev/null and b/src/assets/imgs/nav_ic_shujufw.png differ diff --git a/src/assets/imgs/nav_ic_shujufw_sel.png b/src/assets/imgs/nav_ic_shujufw_sel.png new file mode 100644 index 0000000000000000000000000000000000000000..047aa4fd024222b43bab0ec0e9e279728ae1cfb1 Binary files /dev/null and b/src/assets/imgs/nav_ic_shujufw_sel.png differ diff --git a/src/assets/imgs/nav_ic_zonghefw.png b/src/assets/imgs/nav_ic_zonghefw.png new file mode 100644 index 0000000000000000000000000000000000000000..1f99ddd7e1ff16f22c9a66ab8091d72dc2e2f903 Binary files /dev/null and b/src/assets/imgs/nav_ic_zonghefw.png differ diff --git a/src/assets/imgs/nav_ic_zonghefw_sel.png b/src/assets/imgs/nav_ic_zonghefw_sel.png new file mode 100644 index 0000000000000000000000000000000000000000..e148a203f4c9321da83af5e2f1af40245e52ae2f Binary files /dev/null and b/src/assets/imgs/nav_ic_zonghefw_sel.png differ diff --git a/src/components/order-list/order-list-cell.vue b/src/components/order-list/order-list-cell.vue index 6ede68adfb90525967d83a827d00a9164792a154..60b0de8f03cfb36faf42aeaf293fc374719af5ff 100644 --- a/src/components/order-list/order-list-cell.vue +++ b/src/components/order-list/order-list-cell.vue @@ -122,7 +122,7 @@ @click="viewDetail(cellItem.order_id)" >查看详情
再次申请
@@ -140,9 +140,7 @@
评价详情:
@@ -174,6 +172,13 @@ export default { helper: helper, message: {}, }), + watch: { + cellItem: { + handler() { + this.showMsgBox = false; + } + } + }, methods: { addEvaluation() { if (this.textarea == "" && this.serviceRate == null) { @@ -274,7 +279,7 @@ export default { path: "/shop/shop_car_apply", query: query, }); - } else if (this.cellItem.order_type == 2) { + } else if (this.cellItem.order_type == 3) { this.$router.push({ path: "/shop/shop_cloud", }); @@ -512,10 +517,10 @@ export default { margin: 0 0 10px; } .msg_rate { - margin: 0 0 10px 20px; + margin: 0 0 20px 0; } .msg_text { - margin-left: 20px; + /* margin-left: 20px; */ color: #242c43; } diff --git a/src/components/order-list/order-list-com.vue b/src/components/order-list/order-list-com.vue index ed7c91c5fe076d299a5c92d6e1df38f7055a1f21..8b92f04d582f2bf3f97843be7ffa4767bced3ba3 100644 --- a/src/components/order-list/order-list-com.vue +++ b/src/components/order-list/order-list-com.vue @@ -80,7 +80,7 @@ import OrderList from "@/components/order-list/order-list-list"; export default { components: { - OrderList + OrderList, }, data: () => ({ stateList: [ @@ -89,7 +89,7 @@ export default { { value: "2", label: "审核中" }, { value: "3", label: "已获取" }, { value: "4", label: "未通过" }, - { value: "5", label: "已取消" } + { value: "5", label: "已取消" }, ], activeName: "0", buttonList: [], @@ -97,23 +97,23 @@ export default { pagination: { rowsPerPage: 10, page: 1, - total: 0 + total: 0, }, pageOptions: [ { value: "10", - label: "10" + label: "10", }, { value: "20", - label: "20" + label: "20", }, { value: "50", - label: "50" - } + label: "50", + }, ], - datas: [] + datas: [], }), mounted() { this.getBtns(); @@ -121,13 +121,13 @@ export default { }, methods: { getBtns() { - this.$api.user.getOrderBtnTypes().then(response => { + this.$api.user.getOrderBtnTypes().then((response) => { if (response.data.success == 1) { let buttonList = response.data.data; - buttonList.forEach(item => { + buttonList.forEach((item) => { item.state = false; }); - buttonList.unshift({ id: "", name: "全部", state: false }); + buttonList.unshift({ id: 0, name: "全部", state: false }); buttonList.push({ id: "cloud", name: "云资源", state: false }); buttonList.push({ id: "app", name: "应用镜像", state: false }); this.buttonList = buttonList; @@ -147,12 +147,14 @@ export default { } this.buttonList[0].state = !this.buttonList[0].state; } + this.pagination.page = 1; this.getData(); }, // search debonce 500ms searchVal() { if (this.times !== null) clearTimeout(this.times); this.times = setTimeout(() => { + this.pagination.page = 1; this.getData(); }, 500); }, @@ -161,9 +163,13 @@ export default { let service = 0; let app = 0; let resource = 0; - this.buttonList.forEach(item => { + this.buttonList.forEach((item) => { if (item.state == true) { - if (item.id == "cloud") { + if (item.id == 0) { + resource = 1; + app = 1; + service = 1; + } else if (item.id == "cloud") { resource = 1; } else if (item.id == "app") { app = 1; @@ -186,9 +192,10 @@ export default { types: arr, service: service, app: app, - resource: resource + resource: resource, }; - this.$api.user.orderList(params).then(response => { + this.$api.user.orderList(params).then((response) => { + this.datas = []; this.datas = response.data.data; this.pagination.total = response.data.total; }); @@ -203,8 +210,8 @@ export default { }, updateList() { this.getData(); - } - } + }, + }, }; diff --git a/src/components/shop-cloud/shop-cloud.vue b/src/components/shop-cloud/shop-cloud.vue index 0e27b0bff83d6908254590a8288f3955453cf31e..037fa439a81aef147518df9e2d80cec69a7cadb5 100644 --- a/src/components/shop-cloud/shop-cloud.vue +++ b/src/components/shop-cloud/shop-cloud.vue @@ -5,7 +5,7 @@ {{ name }} - + @@ -14,13 +14,13 @@ - +
部门联系人:
- +
联系电话:
@@ -127,6 +127,7 @@ v-model="formNew.dataDisk" controls-position="right" :min="0" + :max="1000" placeholder="请选择增加数据盘的数量" >
@@ -138,6 +139,7 @@ v-model="formNew.perDataDisk" controls-position="right" :min="0" + :max="1000" placeholder="请选择每块数据盘的容量" >
GB
@@ -215,6 +217,7 @@ v-model="formNew.appDuration" controls-position="right" :min="0" + :max="1000" >
@@ -393,6 +397,7 @@ v-model="formOld.perDataDisk" controls-position="right" :min="0" + :max="1000" placeholder="请选择每块数据盘的容量" >
GB
@@ -521,6 +526,7 @@ v-model="formOld.appDuration" controls-position="right" :min="0" + :max="1000" > diff --git a/src/components/table/table-um.vue b/src/components/table/table-um.vue index c5404eaf6eb072e8788e26ae66eb31b86f35fe5a..4d050a58e0b36ee214803d9c9aeaced664914c40 100644 --- a/src/components/table/table-um.vue +++ b/src/components/table/table-um.vue @@ -474,7 +474,6 @@ export default { }, // get data getDataFromApiSync() { - console.log("get data >>>"); this.getDataFromApi().then( data => { this.selectedTabsPage = JSON.parse(JSON.stringify(data.newArr)); diff --git a/src/components/work-flow/workflows-view.vue b/src/components/work-flow/workflows-view.vue index 5a48f102869549887ea59d0c80938e0c1bed52cd..dd0a446a376f8e438ef55e59644e2bc32670ebb4 100644 --- a/src/components/work-flow/workflows-view.vue +++ b/src/components/work-flow/workflows-view.vue @@ -12,13 +12,17 @@ >