|
@@ -1,36 +1,202 @@
|
|
|
-<script setup>
|
|
|
+<script setup name="AddReportInfo">
|
|
|
import moment from 'moment'
|
|
|
import {ref,reactive} from 'vue'
|
|
|
import { useRouter } from 'vue-router'
|
|
|
import apiReport from '@/api/report'
|
|
|
import { showToast } from 'vant'
|
|
|
-import { useWindowSize } from '@vueuse/core'
|
|
|
|
|
|
|
|
|
const router=useRouter()
|
|
|
|
|
|
+const props = defineProps({
|
|
|
+ id: {
|
|
|
+ type: Number,
|
|
|
+ default: 0,
|
|
|
+ },
|
|
|
+ reportInfo: {
|
|
|
+ type: Object
|
|
|
+ }
|
|
|
+})
|
|
|
|
|
|
const reportBaseInfo=reactive({
|
|
|
- addType:'',
|
|
|
- title:'',
|
|
|
- author:'弘则研究',
|
|
|
- createtime:moment().format('YYYY-MM-DD'),
|
|
|
+ type: 1,
|
|
|
+ inheritId: 0,//继承report id
|
|
|
+ classify: [],
|
|
|
+ classifyName:'',
|
|
|
+ relationVariety: [],
|
|
|
+ title: "",
|
|
|
+ abstract: "",
|
|
|
+ author: [],
|
|
|
+ time: moment().format("YYYY-MM-DD"),
|
|
|
+ cooperationType: 1,//协作方式
|
|
|
+ cooperationUsers: [],
|
|
|
+ reportLayout: 1,//报告布局
|
|
|
+ isPublcPublish: 1
|
|
|
})
|
|
|
|
|
|
+function getClassifyList() {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+// 报告标题
|
|
|
+const showReportTitlePop=ref(false)
|
|
|
+const temReportTitleVal=ref('')
|
|
|
+function handleShowReportTitle(){
|
|
|
+ temReportTitleVal.value=reportBaseInfo.title
|
|
|
+ showReportTitlePop.value=true
|
|
|
+}
|
|
|
+function handleConfirmReportTitle(){
|
|
|
+ reportBaseInfo.title=temReportTitleVal.value
|
|
|
+ showReportTitlePop.value=false
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+//作者
|
|
|
+const showAuthorPop=ref(false)
|
|
|
+const temAuthorVal=ref('')
|
|
|
+function handleShowAuthor(){
|
|
|
+ temAuthorVal.value=reportBaseInfo.author
|
|
|
+ showAuthorPop.value=true
|
|
|
+}
|
|
|
+function handleConfirmAuthor(){
|
|
|
+ reportBaseInfo.author=temAuthorVal.value
|
|
|
+ showAuthorPop.value=false
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+// 创建日期
|
|
|
+const minDate=new Date(2015, 0, 1)
|
|
|
+const defaultDate=ref(new Date())
|
|
|
+const showCreateTimePop=ref(false)
|
|
|
+function handleShowCreatetime(){
|
|
|
+ defaultDate.value=new Date(reportBaseInfo.time.replace(/-/g,'/'))
|
|
|
+ showCreateTimePop.value=true
|
|
|
+}
|
|
|
+function handleConfirmCreatime(e){
|
|
|
+ reportBaseInfo.time=moment(e).format('YYYY-MM-DD')
|
|
|
+ showCreateTimePop.value=false
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+ //分类变化 获取关联品种
|
|
|
+function handleChangeClassify(val) {
|
|
|
+ this.getRelationPermission()
|
|
|
+ this.handleUpdateBaseInfo()
|
|
|
+}
|
|
|
+
|
|
|
+function handleUpdateBaseInfo() {
|
|
|
+ this.formData.inheritId = 0;
|
|
|
+
|
|
|
+ if (this.formData.type === 1) {
|
|
|
+ if (this.formData.classify.length === 2) {
|
|
|
+ this.formData.title = this.getSelectClassifyName()[1];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(!this.formData.classify.length) return
|
|
|
+
|
|
|
+
|
|
|
+ //获取上次报告
|
|
|
+ reportV2Interface
|
|
|
+ .getAuthReportList({
|
|
|
+ ClassifyIdFirst: this.formData.classify[0],
|
|
|
+ ClassifyIdSecond: this.formData.classify[1],
|
|
|
+ ClassifyIdThird: this.formData.classify[3],
|
|
|
+ CurrentIndex: 1,
|
|
|
+ PageSize:1,
|
|
|
+ Keyword:''
|
|
|
+ }).then((res) => {
|
|
|
+ if (res.Ret !== 200) return;
|
|
|
+ if (!res.Data.List) {
|
|
|
+ this.$message.warning(
|
|
|
+ this.$t("ReportManage.ReportList.no_reports_msg")
|
|
|
+ );
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ if(this.formData.type===1) { //默认只带出作者
|
|
|
+ this.formData.author = res.Data.List
|
|
|
+ ? res.Data.List[0].Author.split(",")
|
|
|
+ : [''];
|
|
|
+ }else {
|
|
|
+ this.chooseInheritReport(res.Data.List[0])
|
|
|
+ }
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/* 选择继承报告 */
|
|
|
+async function chooseInheritReport(item) {
|
|
|
+ const { Id,Title,Abstract,Author,CollaborateType,ReportLayout,IsPublicPublish,ClassifyIdFirst,ClassifyIdSecond,ClassifyIdThird } = item;
|
|
|
+
|
|
|
+ this.formData.title = Title;
|
|
|
+ this.formData.abstract = Abstract;
|
|
|
+ this.formData.author = Author
|
|
|
+ ? Author.split(",")
|
|
|
+ : "";
|
|
|
+ this.formData.cooperationType = CollaborateType;
|
|
|
+ this.formData.inheritId = Id;
|
|
|
+ this.formData.reportLayout = ReportLayout;
|
|
|
+ this.formData.isPublcPublish = IsPublicPublish;
|
|
|
+ this.formData.classify = ClassifyIdThird
|
|
|
+ ? [ClassifyIdFirst,ClassifyIdSecond,ClassifyIdThird]
|
|
|
+ : ClassifyIdSecond
|
|
|
+ ? [ClassifyIdFirst,ClassifyIdSecond]
|
|
|
+ : [ClassifyIdFirst]
|
|
|
+
|
|
|
+ //继承的章节报告默认带出协作人
|
|
|
+ if(CollaborateType===1) {
|
|
|
+ this.formData.cooperationUsers = [];
|
|
|
+ }else {
|
|
|
+ const res = await reportV2Interface.getRportBase({
|
|
|
+ ReportId: Id
|
|
|
+ })
|
|
|
+ if(res.Ret!==200) return
|
|
|
+
|
|
|
+ this.formData.cooperationUsers = res.Data.GrandAdminList
|
|
|
+ ? res.Data.GrandAdminList.map(_ => ({
|
|
|
+ NodeId: _.AdminId,
|
|
|
+ NodeName: _.AdminName
|
|
|
+ }))
|
|
|
+ : [];
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+//选择协作人
|
|
|
+function handleChooseCooper() {
|
|
|
+ this.isChooseCooperaUser = true
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+function close() {
|
|
|
+ router.go(-1)
|
|
|
+}
|
|
|
+function handleSave() {
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
</script>
|
|
|
<template>
|
|
|
<div class="reportInfo-page">
|
|
|
+ <van-cell-group>
|
|
|
+ <van-field name="radio" label="报告类型">
|
|
|
+ <template #input>
|
|
|
+ <van-radio-group v-model="reportBaseInfo.type" direction="horizontal">
|
|
|
+ <van-radio :name="1">新增</van-radio>
|
|
|
+ <van-radio :name="2">继承</van-radio>
|
|
|
+ </van-radio-group>
|
|
|
+ </template>
|
|
|
+ </van-field>
|
|
|
+ </van-cell-group>
|
|
|
<van-cell-group>
|
|
|
<van-cell
|
|
|
- value-class="cell-con"
|
|
|
required
|
|
|
- title="报告类型"
|
|
|
- :value="reportBaseInfo.addType"
|
|
|
+ title="报告分类"
|
|
|
+ :label="reportBaseInfo.classifyName"
|
|
|
is-link
|
|
|
- @click="handleShowAddType"
|
|
|
/>
|
|
|
</van-cell-group>
|
|
|
- <van-cell-group style="margin: 10px 0">
|
|
|
+ <van-cell-group>
|
|
|
<van-cell
|
|
|
required
|
|
|
title="报告标题"
|
|
@@ -42,18 +208,60 @@ const reportBaseInfo=reactive({
|
|
|
<van-cell-group>
|
|
|
<van-cell
|
|
|
required
|
|
|
- title="发布时间"
|
|
|
- :value="reportBaseInfo.createtime"
|
|
|
+ title="报告摘要"
|
|
|
+ :label="reportBaseInfo.abstract"
|
|
|
is-link
|
|
|
- @click="handleShowCreatetime"
|
|
|
+ @click="handleShowReportTitle"
|
|
|
/>
|
|
|
+ </van-cell-group>
|
|
|
+ <van-cell-group>
|
|
|
<van-cell
|
|
|
- title="作者"
|
|
|
- :value="reportBaseInfo.author"
|
|
|
+ required
|
|
|
+ title="报告作者"
|
|
|
+ :label="reportBaseInfo.author"
|
|
|
is-link
|
|
|
@click="handleShowAuthor"
|
|
|
/>
|
|
|
</van-cell-group>
|
|
|
+ <van-cell-group>
|
|
|
+ <van-cell
|
|
|
+ required
|
|
|
+ title="创建时间"
|
|
|
+ :value="reportBaseInfo.time"
|
|
|
+ is-link
|
|
|
+ @click="handleShowCreatetime"
|
|
|
+ />
|
|
|
+ </van-cell-group>
|
|
|
+ <van-cell-group>
|
|
|
+ <van-field name="radio" label="协作方式">
|
|
|
+ <template #input>
|
|
|
+ <van-radio-group v-model="reportBaseInfo.cooperationType" direction="horizontal">
|
|
|
+ <van-radio :name="1">个人</van-radio>
|
|
|
+ <van-radio :name="2">多人协作</van-radio>
|
|
|
+ </van-radio-group>
|
|
|
+ </template>
|
|
|
+ </van-field>
|
|
|
+ </van-cell-group>
|
|
|
+ <van-cell-group>
|
|
|
+ <van-field name="radio" label="报告布局">
|
|
|
+ <template #input>
|
|
|
+ <van-radio-group v-model="reportBaseInfo.reportLayout" direction="horizontal">
|
|
|
+ <van-radio :name="1">常规布局</van-radio>
|
|
|
+ <van-radio :name="2">智能布局</van-radio>
|
|
|
+ </van-radio-group>
|
|
|
+ </template>
|
|
|
+ </van-field>
|
|
|
+ </van-cell-group>
|
|
|
+ <van-cell-group>
|
|
|
+ <van-field name="radio" label="公开发布">
|
|
|
+ <template #input>
|
|
|
+ <van-radio-group v-model="reportBaseInfo.isPublcPublish" direction="horizontal">
|
|
|
+ <van-radio :name="1">是</van-radio>
|
|
|
+ <van-radio :name="2">否</van-radio>
|
|
|
+ </van-radio-group>
|
|
|
+ </template>
|
|
|
+ </van-field>
|
|
|
+ </van-cell-group>
|
|
|
|
|
|
<div class="bot-btns">
|
|
|
<van-button class="bot-btn" type="default" @click="close"
|
|
@@ -65,23 +273,6 @@ const reportBaseInfo=reactive({
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <!-- 新增方式 -->
|
|
|
- <van-action-sheet
|
|
|
- v-model:show="showAddTypePop"
|
|
|
- cancel-text="取消"
|
|
|
- close-on-click-action
|
|
|
- :actions="[
|
|
|
- {
|
|
|
- name: '晨报',
|
|
|
- value: '晨报',
|
|
|
- },
|
|
|
- {
|
|
|
- name: '周报',
|
|
|
- value: '周报',
|
|
|
- },
|
|
|
- ]"
|
|
|
- @select="selectAddType"
|
|
|
- />
|
|
|
|
|
|
<!-- 标题 -->
|
|
|
<van-popup
|
|
@@ -162,6 +353,10 @@ const reportBaseInfo=reactive({
|
|
|
:deep(.cell-con){
|
|
|
flex: 2;
|
|
|
}
|
|
|
+
|
|
|
+ :deep(.van-cell-group) {
|
|
|
+ margin: 10px 0;
|
|
|
+ }
|
|
|
.bot-btns{
|
|
|
position: absolute;
|
|
|
bottom: 48px;
|