Explorar el Código

fix: bug

master
yxhc hace 1 día
padre
commit
3975770be9
Se han modificado 3 ficheros con 14 adiciones y 8 borrados
  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 Ver fichero


+ 13
- 7
src/pages/declareManage/projectDeclare/declarePage/components/basicInfo.vue Ver fichero

@@ -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 Ver fichero

@@ -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>


Cargando…
Cancelar
Guardar