Commit bb02e38f authored by 徐俊's avatar 徐俊
parents a74ef9da cb42eb69
...@@ -18,7 +18,7 @@ import { ...@@ -18,7 +18,7 @@ import {
Comment, Result, Tag, Collapse, LocaleProvider, Transfer, Badge, Drawer, Empty, Avatar,Statistic Comment, Result, Tag, Collapse, LocaleProvider, Transfer, Badge, Drawer, Empty, Avatar,Statistic
} from 'ant-design-vue'; } from 'ant-design-vue';
// import sModal from '@/components/modal/modal' import sModal from '@/components/modal/modal'
import BtnGroup from '@/components/btnGroup/index.vue' import BtnGroup from '@/components/btnGroup/index.vue'
// import fModal from '@/components/modal/index' // import fModal from '@/components/modal/index'
...@@ -32,7 +32,7 @@ import Viewer from "v-viewer" ...@@ -32,7 +32,7 @@ import Viewer from "v-viewer"
import 'viewerjs/dist/viewer.css' import 'viewerjs/dist/viewer.css'
Vue.component('btn-group', BtnGroup); Vue.component('btn-group', BtnGroup);
// Vue.component('sModal', sModal) Vue.component('sModal', sModal)
Vue.component('fileLoad', fileLoad) Vue.component('fileLoad', fileLoad)
Vue.component('upLoad', upLoad) Vue.component('upLoad', upLoad)
// Vue.component('fModal', fModal) // Vue.component('fModal', fModal)
......
...@@ -60,11 +60,9 @@ ...@@ -60,11 +60,9 @@
</template> </template>
</a-table> </a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" /> <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
<s-modal title="项目详情" v-model="projectVisible" v-if="projectVisible"> <a-modal v-model="projectVisible" v-if="projectVisible" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="projId" @close="() => this.projectVisible = false" />
<project-view v-model="projId" @close="() => this.projectVisible = false"></project-view> </a-modal>
</div>
</s-modal>
<a-modal v-model="assignInfoVisible" title="分配详情" width="80%" :dialog-style="{ top: '15%' }" :footer="null" destroyOnClose> <a-modal v-model="assignInfoVisible" title="分配详情" width="80%" :dialog-style="{ top: '15%' }" :footer="null" destroyOnClose>
<project-assign-detail v-model="projId" @close="() => this.assignInfoVisible = false" /> <project-assign-detail v-model="projId" @close="() => this.assignInfoVisible = false" />
</a-modal> </a-modal>
......
...@@ -47,11 +47,9 @@ ...@@ -47,11 +47,9 @@
</template> </template>
</a-table> </a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" /> <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="projId" @close="() => this.visibleView = false" />
<project-view v-model="projId" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
</div> </div>
</template> </template>
......
...@@ -19,12 +19,9 @@ ...@@ -19,12 +19,9 @@
</template> </template>
</a-table> </a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" /> <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
<a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <project-view v-model="projId" @close="() => this.visibleView = false" />
<div slot="content"> </a-modal>
<project-view v-model="projId" @close="() => this.visibleView = false"></project-view>
</div>
</s-modal>
</div> </div>
</template> </template>
......
...@@ -117,11 +117,9 @@ ...@@ -117,11 +117,9 @@
<a-modal v-model="expertVisibleView" title="查看专家" width="700px" :footer="null" destroyOnClose> <a-modal v-model="expertVisibleView" title="查看专家" width="700px" :footer="null" destroyOnClose>
<expert-view v-model="expertId"></expert-view> <expert-view v-model="expertId"></expert-view>
</a-modal> </a-modal>
<s-modal title="项目详情" v-model="projectVisibleView" v-if="projectVisibleView"> <a-modal v-model="projectVisibleView" v-if="projectVisibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content">
<project-view v-model="projectId" @close="() => this.projectVisibleView = false"></project-view> <project-view v-model="projectId" @close="() => this.projectVisibleView = false"></project-view>
</div> </a-modal>
</s-modal>
<a-modal v-model="evaluationVisibleView" title="查看专家评价" width="600px" :footer="null" destroyOnClose> <a-modal v-model="evaluationVisibleView" title="查看专家评价" width="600px" :footer="null" destroyOnClose>
<evaluation-view v-model="evaluationId" @close="closeWindow"></evaluation-view> <evaluation-view v-model="evaluationId" @close="closeWindow"></evaluation-view>
</a-modal> </a-modal>
......
...@@ -48,11 +48,9 @@ ...@@ -48,11 +48,9 @@
<a-modal v-model="visibleReportView" title="结题信息" width="70%" :dialog-style="{ top: '12%' }" :footer="null" destroyOnClose> <a-modal v-model="visibleReportView" title="结题信息" width="70%" :dialog-style="{ top: '12%' }" :footer="null" destroyOnClose>
<conclusion-view v-model="projId" @close="closeWindow" /> <conclusion-view v-model="projId" @close="closeWindow" />
</a-modal> </a-modal>
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="projId" @close="() => this.visibleView = false" />
<project-view v-model="projId" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
<a-modal v-model="auditView" title="结题审核" width="70%" :dialog-style="{ top: '5%' }" destroyOnClose> <a-modal v-model="auditView" title="结题审核" width="70%" :dialog-style="{ top: '5%' }" destroyOnClose>
<conclusion-material-audit v-model="projId" :auditId="auditId" :objId="objId" @closeWindow="closeAuditWindow" ref="conclusionAudit"></conclusion-material-audit> <conclusion-material-audit v-model="projId" :auditId="auditId" :objId="objId" @closeWindow="closeAuditWindow" ref="conclusionAudit"></conclusion-material-audit>
<template slot="footer"> <template slot="footer">
......
...@@ -42,13 +42,9 @@ ...@@ -42,13 +42,9 @@
</template> </template>
</a-table> </a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" /> <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
<a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <project-view v-model="projId" @close="() => this.visibleView = false" />
<div slot="content"> </a-modal>
<project-view v-model="projId" @close="() => this.visibleView = false"></project-view>
</div>
</s-modal>
<a-modal v-model="auditEdit" title="论文审核" width="80%" :dialog-style="{ top: '5%' }" destroyOnClose> <a-modal v-model="auditEdit" title="论文审核" width="80%" :dialog-style="{ top: '5%' }" destroyOnClose>
<audit v-model="id" :projId="projId" :objectId="objectId" @closeWindow="closeWindow" ref="thesisAudit"></audit> <audit v-model="id" :projId="projId" :objectId="objectId" @closeWindow="closeWindow" ref="thesisAudit"></audit>
<template slot="footer"> <template slot="footer">
......
...@@ -31,11 +31,9 @@ ...@@ -31,11 +31,9 @@
</a-table> </a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" /> <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
</div> </div>
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="id" @close="() => this.visibleView = false" />
<project-view v-model="id" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
<a-modal v-model="visibleReportView" title="结题信息" width="70%" :dialog-style="{ top: '12%' }" :footer="null" destroyOnClose> <a-modal v-model="visibleReportView" title="结题信息" width="70%" :dialog-style="{ top: '12%' }" :footer="null" destroyOnClose>
<conclusion-view v-model="id" @close="closeWindow" /> <conclusion-view v-model="id" @close="closeWindow" />
</a-modal> </a-modal>
......
...@@ -40,11 +40,9 @@ ...@@ -40,11 +40,9 @@
</a-table> </a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" /> <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
</div> </div>
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="projId" @close="() => this.visibleView = false" />
<project-view v-model="projId" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
<a-modal v-model="visibleEdit" title="结题报告" width="90%" :dialog-style="{ top: '30px' }" destroyOnClose :maskClosable="false"> <a-modal v-model="visibleEdit" title="结题报告" width="90%" :dialog-style="{ top: '30px' }" destroyOnClose :maskClosable="false">
<template slot="footer"> <template slot="footer">
<div style="width:100%;text-align:center"> <div style="width:100%;text-align:center">
......
...@@ -34,17 +34,6 @@ ...@@ -34,17 +34,6 @@
<a-modal v-model="projectVisibleView" title="查看项目" :width="'80%'" :footer="null" destroyOnClose> <a-modal v-model="projectVisibleView" title="查看项目" :width="'80%'" :footer="null" destroyOnClose>
<project-view v-model="projectId"></project-view> <project-view v-model="projectId"></project-view>
</a-modal> </a-modal>
<s-modal title="项目详情" v-moloadingdel="visibleView" v-if="visibleView">
<div slot="content">
<project-view v-model="projectId" @close="() => this.visibleView = false"></project-view>
</div>
<template slot="footer">
<!-- <a-button type="primary" @click="() => visibleView = false">
确定
</a-button> -->
</template>
</s-modal>
</div> </div>
</template> </template>
......
...@@ -43,11 +43,9 @@ ...@@ -43,11 +43,9 @@
<a-modal v-model="visibleStandard" title="专家评分标准" width="1000px" :dialog-style="{ top: '10%' }" :footer="null" destroyOnClose> <a-modal v-model="visibleStandard" title="专家评分标准" width="1000px" :dialog-style="{ top: '10%' }" :footer="null" destroyOnClose>
<pdf-view v-model="url.downloadUrl" :fileName="url.fileDownload"></pdf-view> <pdf-view v-model="url.downloadUrl" :fileName="url.fileDownload"></pdf-view>
</a-modal> </a-modal>
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="projectId" @close="() => this.visibleView = false" />
<project-view v-model="projectId" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
</div> </div>
</template> </template>
......
...@@ -31,11 +31,10 @@ ...@@ -31,11 +31,10 @@
<a-modal v-model="visibleEvaluationView" title="查看专家评价" width="600px" :footer="null" destroyOnClose> <a-modal v-model="visibleEvaluationView" title="查看专家评价" width="600px" :footer="null" destroyOnClose>
<assign-expert-view v-model="id" :hideDeleteBTN="false" @close="closeWindow"></assign-expert-view> <assign-expert-view v-model="id" :hideDeleteBTN="false" @close="closeWindow"></assign-expert-view>
</a-modal> </a-modal>
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="projectId" @close="() => this.visibleView = false" />
<project-view v-model="projectId" @close="() => this.visibleView = false"></project-view> </a-modal>
</div> projId
</s-modal>
</div> </div>
</template> </template>
......
...@@ -56,11 +56,9 @@ ...@@ -56,11 +56,9 @@
</a-button> </a-button>
</template> </template>
</s-modal> </s-modal>
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="id" @close="() => this.visibleView = false" />
<project-view v-model="id" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
<a-modal v-model="visibleImport" title="导入" width="80%" :dialog-style="{ top: '8%' }" :footer="null" destroyOnClose> <a-modal v-model="visibleImport" title="导入" width="80%" :dialog-style="{ top: '8%' }" :footer="null" destroyOnClose>
<project-import /> <project-import />
</a-modal> </a-modal>
......
...@@ -25,11 +25,9 @@ ...@@ -25,11 +25,9 @@
</template> </template>
</a-table> </a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" /> <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="projId" @close="() => this.visibleView = false" />
<project-view v-model="projId" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
<a-modal v-model="groupEditVisible" title="选择项目" width="70%" :dialog-style="{ top: '15%' }" :maskClosable="false" destroyOnClose> <a-modal v-model="groupEditVisible" title="选择项目" width="70%" :dialog-style="{ top: '15%' }" :maskClosable="false" destroyOnClose>
<template slot="footer"> <template slot="footer">
<div style="text-align:center; width:100%"> <div style="text-align:center; width:100%">
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
</div> </div>
<div class="card-container"> <div class="card-container">
<a-tabs type="card" :default-active-key="active" @change="callback"> <a-tabs type="card" :default-active-key="active" @change="callback">
<a-tab-pane key="1" tab="用户注册"> <a-tab-pane key="1" tab="立项用户注册">
</a-tab-pane> </a-tab-pane>
<a-tab-pane key="2" tab="单位注册"> <a-tab-pane key="2" tab="单位注册">
</a-tab-pane> </a-tab-pane>
......
...@@ -34,13 +34,6 @@ ...@@ -34,13 +34,6 @@
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
</a-row> </a-row>
<a-row>
<a-col :span="24">
<a-form-model-item prop="organizationCode" ref="organizationCode" label="机构代码">
<a-input placeholder="组织机构代码/统一社会信用代码" v-model="formData.organizationCode" :maxLength="100" style="width:350px;" />
</a-form-model-item>
</a-col>
</a-row>
<a-row> <a-row>
<a-col :span="24"> <a-col :span="24">
<a-form-model-item ref="unitAddress" label="单位地址" prop="unitAddress"> <a-form-model-item ref="unitAddress" label="单位地址" prop="unitAddress">
......
...@@ -35,11 +35,9 @@ ...@@ -35,11 +35,9 @@
<a-modal v-model="taskFileEditView" title="上传项目任务书" :width="'60%'" :maskClosable="false" :footer="null" destroyOnClose class="sc_modal"> <a-modal v-model="taskFileEditView" title="上传项目任务书" :width="'60%'" :maskClosable="false" :footer="null" destroyOnClose class="sc_modal">
<task-file-edit v-model="selectProjId" @close="closeTaskFileEditWindow" /> <task-file-edit v-model="selectProjId" @close="closeTaskFileEditWindow" />
</a-modal> </a-modal>
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="selectProjId" @close="() => this.visibleView = false" />
<project-view v-model="selectProjId" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
</div> </div>
</template> </template>
......
...@@ -40,11 +40,9 @@ ...@@ -40,11 +40,9 @@
</template> </template>
</a-table> </a-table>
<a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" /> <a-pagination v-if="pagination.total > 0" :total="pagination.total" show-size-changer show-quick-jumper v-model="pagination.pageIndex" :page-size="pagination.pageSize" :page-size-options="pagination.pageSizeOptions" @showSizeChange="showSizeChange" @change="change" :showTotal="() => `共 ${pagination.total} 条`" />
<s-modal title="项目详情" v-model="visibleView" v-if="visibleView"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<div slot="content"> <project-view v-model="projId" @close="() => this.visibleView = false" />
<project-view v-model="projId" @close="() => this.visibleView = false"></project-view> </a-modal>
</div>
</s-modal>
</div> </div>
</template> </template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment