diff --git a/src/components/table-um.vue b/src/components/table-um.vue index d902e9c25e3a978ecf8f60a2c033da13750c84fa..65d90cc68197a623f4457c489b9cac8df55d9ec9 100644 --- a/src/components/table-um.vue +++ b/src/components/table-um.vue @@ -758,7 +758,7 @@ em { width: 66px; } .table_radius { - border-radius: 10px; + border-radius: 8px; } .overlit { overflow: hidden; diff --git a/src/components/upload_file.vue b/src/components/upload_file.vue index c2728d69f3c0e80733beed95d0ebb4207498ba6a..856038594b78e4876a68b77b7774e1cde690b7fb 100644 --- a/src/components/upload_file.vue +++ b/src/components/upload_file.vue @@ -1,6 +1,6 @@ @@ -174,11 +246,13 @@ import BlockRadius from "@/components/block-radius"; import CesTable from "@/components/table-um"; import Codes from "@/components/codes"; +import uploadFile from "../components/upload_file"; export default { components: { BlockRadius, CesTable, - "v-apaas-code": Codes + "v-apaas-code": Codes, + uploadFile }, data: () => ({ btnList: [ @@ -246,10 +320,33 @@ export default { { label: "模型算法类", value: 0 }, { label: "查询验证类", value: 1 }, { label: "流程类", value: 2 }, - { label: "应用类", value: 3 }, + { label: "应用类", value: 3 } ], zhyyVal: 0, - jcxxtx: false + jcxxtx: false, + form: { + name: "", + desc: "", + area: "", + origin: "", + code: "", + resource: "" + }, + imgList: [], + optionsArea: [ + { label: "经济建设", value: 0 }, + { label: "城市管理", value: 1 }, + { label: "城市建设", value: 2 }, + { label: "道路交通", value: 3 }, + { label: "环境资源", value: 4 }, + { label: "民生服务", value: 5 }, + { label: "空间地理", value: 6 }, + { label: "文化休闲", value: 7 }, + { label: "社会团体", value: 8 }, + { label: "教育机构", value: 9 }, + { label: "其他", value: 10 } + ], + optionsOrganization: [] }), computed: {}, watch: {}, @@ -268,6 +365,13 @@ export default { resetSjfw() {}, nextJcxx() { this.jcxxtx = true; + }, + // edit form + onSubmit() { + console.log("submit!"); + }, + getNewList(val) { + console.log(val); } }, mounted() {} @@ -276,7 +380,10 @@ export default {