Merge branch 'dev_20241202_xukangle' into develop
Showing
4 changed files
with
19 additions
and
10 deletions
| ... | @@ -44,7 +44,7 @@ const tableFields = ref([ | ... | @@ -44,7 +44,7 @@ const tableFields = ref([ |
| 44 | { label: "资产名称", field: "daName", width: 160, align: "left" }, | 44 | { label: "资产名称", field: "daName", width: 160, align: "left" }, |
| 45 | { label: "登记时间", field: "registerTime", width: 120 }, | 45 | { label: "登记时间", field: "registerTime", width: 120 }, |
| 46 | // { label: "企业名称", field: "tenantName", width: 240, align: "left" }, | 46 | // { label: "企业名称", field: "tenantName", width: 240, align: "left" }, |
| 47 | { label: "发证主体", field: "issuingEntityName", width: 250, align: "left" }, | 47 | { label: "评估机构", field: "issuingEntityName", width: 250, align: "left" }, |
| 48 | { label: "状态", field: "approveState", type: "tag", width: 96, align: 'center' }, | 48 | { label: "状态", field: "approveState", type: "tag", width: 96, align: 'center' }, |
| 49 | ]); | 49 | ]); |
| 50 | 50 | ||
| ... | @@ -683,7 +683,7 @@ const rejectDialogBtnClick = (btn, info) => { | ... | @@ -683,7 +683,7 @@ const rejectDialogBtnClick = (btn, info) => { |
| 683 | <Table :tableInfo="tableInfo" @tableBtnClick="tableBtnClick" @tablePageChange="tablePageChange" /> | 683 | <Table :tableInfo="tableInfo" @tableBtnClick="tableBtnClick" @tablePageChange="tablePageChange" /> |
| 684 | </div> | 684 | </div> |
| 685 | <Dialog :dialogInfo="dialogInfo" @btnClick="dialogBtnClick" /> | 685 | <Dialog :dialogInfo="dialogInfo" @btnClick="dialogBtnClick" /> |
| 686 | <Dialog :dialogInfo="passDialogInfo" @btnClick="passDialogBtnClick" @inputChange=passDialogInputChange /> | 686 | <Dialog :dialogInfo="passDialogInfo" @btnClick="passDialogBtnClick" @inputChange=passDialogInputChange /> |
| 687 | <Dialog :dialogInfo="rejectDialogInfo" @btnClick="rejectDialogBtnClick" /> | 687 | <Dialog :dialogInfo="rejectDialogInfo" @btnClick="rejectDialogBtnClick" /> |
| 688 | </div> | 688 | </div> |
| 689 | </template> | 689 | </template> | ... | ... |
| ... | @@ -134,8 +134,9 @@ const baseInfoFormItems = ref([ | ... | @@ -134,8 +134,9 @@ const baseInfoFormItems = ref([ |
| 134 | placeholder: '请输入', | 134 | placeholder: '请输入', |
| 135 | field: 'rightMain', | 135 | field: 'rightMain', |
| 136 | maxlength: 20, | 136 | maxlength: 20, |
| 137 | default: '', | 137 | default: userStore.userName, |
| 138 | required: true | 138 | required: true, |
| 139 | disabled: true | ||
| 139 | }, | 140 | }, |
| 140 | { | 141 | { |
| 141 | label: '所属主题', | 142 | label: '所属主题', | ... | ... |
| ... | @@ -95,7 +95,7 @@ const searchItemList = ref([ | ... | @@ -95,7 +95,7 @@ const searchItemList = ref([ |
| 95 | { | 95 | { |
| 96 | type: "select", | 96 | type: "select", |
| 97 | label: "", | 97 | label: "", |
| 98 | field: "isRegister", | 98 | field: "registerState", |
| 99 | default: "", | 99 | default: "", |
| 100 | placeholder: "登记状态", | 100 | placeholder: "登记状态", |
| 101 | clearable: true, | 101 | clearable: true, |
| ... | @@ -117,6 +117,8 @@ const pageInfo = ref({ | ... | @@ -117,6 +117,8 @@ const pageInfo = ref({ |
| 117 | damName: "", | 117 | damName: "", |
| 118 | damType: "", | 118 | damType: "", |
| 119 | tenantGuid: "", | 119 | tenantGuid: "", |
| 120 | dataSources: "", | ||
| 121 | registerState: "", | ||
| 120 | subjectDomain: [], | 122 | subjectDomain: [], |
| 121 | }); | 123 | }); |
| 122 | 124 | ||
| ... | @@ -189,7 +191,9 @@ const getTableData = () => { | ... | @@ -189,7 +191,9 @@ const getTableData = () => { |
| 189 | damName: pageInfo.value.damName, | 191 | damName: pageInfo.value.damName, |
| 190 | damType: pageInfo.value.damType, | 192 | damType: pageInfo.value.damType, |
| 191 | subjectDomain: pageInfo.value.subjectDomain, | 193 | subjectDomain: pageInfo.value.subjectDomain, |
| 192 | tenantGuid: pageInfo.value.tenantGuid | 194 | tenantGuid: pageInfo.value.tenantGuid, |
| 195 | dataSources: pageInfo.value.dataSources, | ||
| 196 | registerState: pageInfo.value.registerState, | ||
| 193 | }).then((res: any) => { | 197 | }).then((res: any) => { |
| 194 | listDataLoading.value = false; | 198 | listDataLoading.value = false; |
| 195 | if (res.code == proxy.$passCode) { | 199 | if (res.code == proxy.$passCode) { |
| ... | @@ -212,11 +216,15 @@ const toSearch = (val: any, clear: boolean = false) => { | ... | @@ -212,11 +216,15 @@ const toSearch = (val: any, clear: boolean = false) => { |
| 212 | pageInfo.value.damType = ""; | 216 | pageInfo.value.damType = ""; |
| 213 | pageInfo.value.subjectDomain = []; | 217 | pageInfo.value.subjectDomain = []; |
| 214 | pageInfo.value.tenantGuid = ""; | 218 | pageInfo.value.tenantGuid = ""; |
| 219 | pageInfo.value.registerState = ""; | ||
| 220 | pageInfo.value.dataSources = ""; | ||
| 215 | } else { | 221 | } else { |
| 216 | pageInfo.value.damName = val.damName; | 222 | pageInfo.value.damName = val.damName; |
| 217 | pageInfo.value.damType = val.damType; | 223 | pageInfo.value.damType = val.damType; |
| 218 | pageInfo.value.subjectDomain = val.subjectDomain; | 224 | pageInfo.value.subjectDomain = val.subjectDomain; |
| 219 | pageInfo.value.tenantGuid = val.tenantGuid; | 225 | pageInfo.value.tenantGuid = val.tenantGuid; |
| 226 | pageInfo.value.registerState = val.registerState; | ||
| 227 | pageInfo.value.dataSources = val.dataSources; | ||
| 220 | } | 228 | } |
| 221 | getTableData(); | 229 | getTableData(); |
| 222 | }; | 230 | }; |
| ... | @@ -317,7 +325,7 @@ const handleCreate = () => { | ... | @@ -317,7 +325,7 @@ const handleCreate = () => { |
| 317 | <div class="type">{{ item.subjectDomainName || item.subjectDomain }}</div> | 325 | <div class="type">{{ item.subjectDomainName || item.subjectDomain }}</div> |
| 318 | <div class="type">{{ item.damTypeName || '--' }}</div> | 326 | <div class="type">{{ item.damTypeName || '--' }}</div> |
| 319 | <div class="type">{{ item.isRegister == 'Y' ? '已登记' : '未登记' }}</div> | 327 | <div class="type">{{ item.isRegister == 'Y' ? '已登记' : '未登记' }}</div> |
| 320 | <div class="type">{{ item.foundMode ? (item.foundMode === '1' ? '自建' : '加工交付') : '--' }}</div> | 328 | <div class="type">{{ item.foundMode ? (item.foundMode === 1 ? '自建' : '加工交付') : '--' }}</div> |
| 321 | </div> | 329 | </div> |
| 322 | <div class="desc">{{ item.propertyDescription }}</div> | 330 | <div class="desc">{{ item.propertyDescription }}</div> |
| 323 | <el-popover v-model="cardBtnVisible" placement="bottom" width="96" trigger="click" | 331 | <el-popover v-model="cardBtnVisible" placement="bottom" width="96" trigger="click" | ... | ... |
| ... | @@ -18,12 +18,12 @@ import { | ... | @@ -18,12 +18,12 @@ import { |
| 18 | getImportData, | 18 | getImportData, |
| 19 | exportDictionary, | 19 | exportDictionary, |
| 20 | exportCollectTask, | 20 | exportCollectTask, |
| 21 | // getImageContent | 21 | // getImageContent |
| 22 | } from '@/api/modules/queryService'; | 22 | } from '@/api/modules/queryService'; |
| 23 | import { | 23 | import { |
| 24 | parseAndDecodeUrl, | 24 | parseAndDecodeUrl, |
| 25 | getDownFileSignByUrl, | 25 | getDownFileSignByUrl, |
| 26 | obsDownloadRequest | 26 | obsDownloadRequest |
| 27 | } from '@/api/modules/obsService'; | 27 | } from '@/api/modules/obsService'; |
| 28 | import { commonPageConfig } from '@/utils/enum'; | 28 | import { commonPageConfig } from '@/utils/enum'; |
| 29 | 29 | ||
| ... | @@ -384,7 +384,7 @@ const importData = (info) => { | ... | @@ -384,7 +384,7 @@ const importData = (info) => { |
| 384 | uploadFiles.value.forEach((item: any, index: number) => { | 384 | uploadFiles.value.forEach((item: any, index: number) => { |
| 385 | params.append("file", item.raw); | 385 | params.append("file", item.raw); |
| 386 | }); | 386 | }); |
| 387 | paramUrl = `${import.meta.env.VITE_API_ASSET_BASEURL}/dam-catalog-table/excel-by-subject-guid?staffGuid=${userData.staffGuid}&subjectGuid=${route.query.bizGuid}` | 387 | paramUrl = `ms-daop-zcgl-asset-dam-service/dam-catalog-table/excel-by-subject-guid?staffGuid=${userData.staffGuid}&subjectGuid=${route.query.bizGuid}` |
| 388 | } else if (isfileImport == '4') { | 388 | } else if (isfileImport == '4') { |
| 389 | if (!info.databaseNameZh) { | 389 | if (!info.databaseNameZh) { |
| 390 | ElMessage({ | 390 | ElMessage({ | ... | ... |
-
Please register or sign in to post a comment