소스 검색

fix: bug

master
yxhc 1 일 전
부모
커밋
3975770be9
3개의 변경된 파일14개의 추가작업 그리고 8개의 파일을 삭제
  1. BIN
      public/video/project_study_video.mp4
  2. +13
    -7
      src/pages/declareManage/projectDeclare/declarePage/components/basicInfo.vue
  3. +1
    -1
      src/pages/declareManage/projectDeclare/index.vue

BIN
public/video/project_study_video.mp4 파일 보기


+ 13
- 7
src/pages/declareManage/projectDeclare/declarePage/components/basicInfo.vue 파일 보기

@@ -244,14 +244,20 @@ const
lowestLevel: data.lowestLevel,
buildBasis: undefined,
// buildBasis: data.buildBasis ? json.parse(data.buildBasis) : [],
baseProjBasis: data?.baseProjBasis?.split(';')?.map((i, index) => {
const file = `[${data.baseProjBasisFile?.replace(/}];/g, '}],')}]`
return {
title: buildBasisTableData.value?.find(j => j.value === i)?.title,
fileList: data?.baseProjBasisFile ? reviewFileParam(JSON.parse(file)[index]) : [],
value: i
baseProjBasis: () => {
try {
return data?.baseProjBasis?.split(';')?.map((i, index) => {
const file = `[${data.baseProjBasisFile?.replace(/}];/g, '}],')}]`
return {
title: buildBasisTableData.value?.find(j => j.value === i)?.title,
fileList: data?.baseProjBasisFile ? reviewFileParam(JSON.parse(file)[index]) : [],
value: i
}
}) || []
} catch (e) {
return []
}
}) || [],
},
baseBasisEstablish: data.baseBasisEstablish || '',
developCode: data.developCode,
financialCode: data.financialCode,


+ 1
- 1
src/pages/declareManage/projectDeclare/index.vue 파일 보기

@@ -441,7 +441,7 @@ onMounted(async () => {
</el-row>

<el-dialog v-model="dialogVideVisible" title="项目申报教学视频" width="800">
<video style="width: 100%;" src="http://www.heletech.com.cn/img/%E5%AE%98%E7%BD%91%E4%BB%8B%E7%BB%8D.mp4" controls></video>
<video style="width: 100%;" src="/video/project_study_video.mp4" controls></video>
</el-dialog>
</template>
<style lang='less' scoped>


불러오는 중...
취소
저장