dev01 1 jaar geleden
bovenliggende
commit
87cfa08f0f

+ 1 - 1
config/dev.js

@@ -9,7 +9,7 @@ module.exports = {
   },
   defineConstants: {
     // HOST: isH5 ? '"/api"' : HOST,
-    HOST: isH5 ? '"http://140.210.193.73"' : HOST,
+    HOST: isH5 ? '"http://zhcq.jishutao.com"' : HOST,
     HOST_M: isH5 ? '"/api-m"' : HOST_M
   },
   weapp: {},

+ 1 - 1
config/prod.js

@@ -4,7 +4,7 @@ const isH5 = process.env.CLIENT_ENV === 'h5'
 // const HOST_M = '"https://m.you.163.com"'
 
 // XXX 搭了个 proxy 用于演示 prod 环境的 H5
-// const HOST_H5 = '"http://140.210.193.73"'
+// const HOST_H5 = '"http://zhcq.jishutao.com"'
 // const HOST_M_H5 = '"http://jsnewbee.com/taro-yanxuan/api-m"'
 
 module.exports = {

+ 37 - 0
src/actions/report.js

@@ -0,0 +1,37 @@
+import { REPORT_QUERY, REPORT_AEADD, REPORT_DETAIL } from '@constants/user'
+import { API_USER_QUERY, API_USER_AEADDREPORTS, API_USER_REPORTDETAIL } from '@constants/api'
+import { createAction } from '@utils/redux'
+
+/**
+ * 获取企业列表
+ * @param {*} payload
+ */
+export const query = payload => createAction({
+  url: API_USER_QUERY,
+  method: 'GET',
+  type: REPORT_QUERY,
+  payload
+})
+
+
+/**
+ * 新增企业名称
+ * @param {*} payload
+ */
+export const company = payload => createAction({
+  url: API_USER_AEADDREPORTS,
+  method: 'PUT',
+  type: REPORT_AEADD,
+  payload
+})
+
+
+/**
+ * 模板详情
+ * @param {*} payload 
+ */
+export const reportDetail = payload => createAction({
+  url: API_USER_REPORTDETAIL + `/${payload.id}`,
+  method: 'GET',
+  type: REPORT_DETAIL,
+})

+ 2 - 0
src/app.js

@@ -19,6 +19,8 @@ const store = configStore()
 class App extends Component {
   config = {
     pages: [
+
+      'pages/user/reportdetail', // 报告详情
       'pages/user/templatedetail', // 模板详情
       'pages/user-login/user-login', // 登录页
       'pages/list/list', // 报告列表

+ 4 - 4
src/components/imagePicker/index.js

@@ -26,7 +26,7 @@ export default class ImagePicker extends Component {
         // 上传每张图片到服务器
         files.forEach((file) => {
           Taro.uploadFile({
-            url: 'http://140.210.193.73/gw/user/logo', // 上传接口地址
+            url: 'http://zhcq.jishutao.com/gw/user/logo', // 上传接口地址
             filePath: file,
             header: {
               'Authorization': token,
@@ -66,7 +66,7 @@ export default class ImagePicker extends Component {
   }
 
   deleteImg = createAction({
-    url: "http://140.210.193.73/gw/user/logo" + `/${this.props.id}`,
+    url: "http://zhcq.jishutao.com/gw/user/logo" + `/${this.props.id}`,
     method: 'DELETE',
     type: 'TEMPLATE_DELETE',
     payload: {},
@@ -84,7 +84,7 @@ export default class ImagePicker extends Component {
   handlePreview(index) {
     const { id, time } = this.props
     const { imageUrls, token } = this.state;
-    const urls = imageUrls.map((url) => `http://140.210.193.73/gw/user/logo/${id}?token=${token}&t=${time}`);
+    const urls = imageUrls.map((url) => `http://zhcq.jishutao.com/gw/user/logo/${id}?token=${token}&t=${time}`);
     Taro.previewImage({
       urls,
       current: urls[index],
@@ -103,7 +103,7 @@ export default class ImagePicker extends Component {
           <View className='upload-item' key={index}>
             <Image
               className='upload-item-img'
-              src={`http://140.210.193.73/gw/user/logo/${id}?token=${token}&t=${time}`}
+              src={`http://zhcq.jishutao.com/gw/user/logo/${id}?token=${token}&t=${time}`}
               mode='aspectFit'
               onClick={() => this.handlePreview(index)}
             />

+ 6 - 0
src/constants/api.js

@@ -19,3 +19,9 @@ export const API_USER_deleteTemplate= `${host}/gw/user/reportTemplate` // 删除
 // list 
 export const API_USER_REPORTS = `${host}/gw/user/reports` // 我的列表
 export const API_USER_DETAIL = `${host}/gw/user/reportTemplate` // 模板详情
+
+
+// report 
+export const API_USER_QUERY = `${host}/gw/user/company/query` // 获取企业列表
+export const API_USER_AEADDREPORTS = `${host}/gw/user/company` // 新增企业名称
+export const API_USER_REPORTDETAIL = `${host}/gw/user/report` // 报告详情

+ 6 - 1
src/constants/user.js

@@ -4,4 +4,9 @@ export const USER_LOGOUT = 'USER_LOGOUT'
 
 export const LIST_TEMPLATE = 'LIST_TEMPLATE'
 export const LIST_DELETE = 'LIST_DELETE'
-export const LIST_DETAIL = 'LIST_DETAIL'
+export const LIST_DETAIL = 'LIST_DETAIL'
+
+export const REPORT_QUERY = 'REPORT_QUERY'
+export const REPORT_AEADD = 'REPORT_AEADD'
+export const REPORT_DETAIL = 'REPORT_DETAIL'
+

+ 429 - 0
src/pages/user/reportdetail.js

@@ -0,0 +1,429 @@
+import Taro, { Component } from '@tarojs/taro'
+import { View, Input, Picker, Label, Button } from '@tarojs/components'
+import { Loading } from '@components'
+import { connect } from '@tarojs/redux'
+import * as actions from '@actions/report'
+import { getWindowHeight } from '@utils/style'
+import ImagePicker from '../../components/imagePicker'
+import './templatedetail.scss'
+
+@connect(state => state.home, { ...actions, })
+class ReportDetail extends Component {
+
+  config = {
+    navigationBarTitleText: '报告撰写'
+  }
+
+  state = {
+    selector: [
+      { name: "文本项", type: "text" },
+      { name: "日期项", type: "date" },
+      { name: "起止时间", type: "dateRange" },
+    ],
+
+    visible: "",
+    data: {},
+    metadata: [],
+    chapterType: [
+      { title: "立项背景与意义", key: "BACKGROUND", keywords: ['必要性'] },
+      { title: "国内外研究现状与发展趋势", key: "RESEARCH_STATUS", keywords: ['研究现状', '发展趋势'] },
+      { title: "项目主要研究内容", key: "RESEARCH", keywords: ['技术特点', '技术研究', '实际应用'] },
+      { title: "关键技术与创新点", key: "INNOVATION", keywords: ['关键技术', '创新点'] },
+      { title: "拟解决的关键问题", key: "SOLVE_PROBLEM", keywords: ['解决的问题', '解决的关键问题'] },
+      { title: "实施方案及进度安排", key: "SOLUTION", keywords: ['实施方案'] },
+      { title: "经费预算", key: "BUDGET", keywords: [] },
+      { title: "经济及社会效益分析", key: "BENEFIT_ANALYSIS", keywords: ['经济效益', '社会效益', '经济效益分析', '社会效益分析'] },
+      { title: "项目风险分析和对策", key: "RISK", keywords: ['风险分析', '风险对策'] },
+      { title: "自定义章节", key: "USER_DEFINED", keywords: [] },
+    ],
+    chapterData: [],
+    aeList: [],
+
+    name: "",
+    newvb: false,
+
+  }
+
+  componentDidMount() {
+    // this.getData()
+    this.getQuery()
+  }
+
+  // 详情接口
+  getData() {
+    this.setState({ loading: true })
+    let payload = {
+      id: this.$router.params.id,
+    }
+    this.props.reportDetail(payload).then((data) => {
+      this.setState({
+        loading: false,
+        data: data.data,
+      })
+    }).catch(() => {
+      this.setState({ loading: false })
+    })
+
+  }
+
+  getQuery() {
+    let payload = {
+      name: "",
+      size: 99,
+    }
+    this.props.query(payload).then((data) => {
+      this.setState({
+        aeList: data.data,
+      })
+    }).catch(() => {
+
+    })
+  }
+
+  // 添加新项
+  onChange = e => {
+    this.setState({
+      type: this.state.selector[e.detail.value].type,
+      inputName: e.detail.value == 2 ? "起止时间" : undefined,
+      visible: "add"
+    })
+  }
+
+  onChapterChange = e => {
+    let list = this.state.chapterData
+    list.push(this.state.chapterType[e.detail.value])
+    this.setState({
+      chapterData: list
+    })
+  }
+
+  onAeChange = e => {
+    console.log("-----", e.detail.value)
+  }
+
+  onCancel = () => {
+    this.setState({
+      inputName: undefined,
+      inputText: undefined,
+      dateSel: undefined,
+      dataStart: undefined,
+      dataEnd: undefined,
+      indx: undefined,
+      type: "",
+      visible: "",
+    })
+  }
+
+
+  onAeCancel = () => {
+    this.setState({
+      name: "",
+      newvb: false,
+    })
+  }
+
+  onAeOk = () => {
+    if (!this.state.name) {
+      Taro.showToast({
+        title: "请输入新企业名称",
+        icon: 'none'
+      })
+      return
+    }
+    const payload = {
+      name: this.state.name,
+    }
+    this.props.company(payload).then((data) => {
+      this.setState({
+        name: data.data.name,
+        newvb: false,
+      })
+    }).catch(() => {
+
+    })
+
+  }
+
+  onOk = () => {
+    const { visible, metadata, inputName, inputText, type, indx, dateSel, dataStart, dataEnd } = this.state
+    // if (visible == "add") {
+    let list = []
+    if (!inputName) {
+      Taro.showToast({
+        title: "请输入字段名称",
+        icon: 'none'
+      })
+      return
+    }
+    if (type == "text") {
+      if (!inputText) {
+        Taro.showToast({
+          title: "请输入字段值",
+          icon: 'none'
+        })
+        return
+      }
+      list.push({ name: inputName, value: inputText, type: type })
+    } else if (type == "date") {
+      if (!dateSel) {
+        Taro.showToast({
+          title: "请选择日期",
+          icon: 'none'
+        })
+        return
+      }
+      list.push({ name: inputName, value: dateSel, type: type })
+    } else if (type == "dateRange") {
+      if (!dataStart) {
+        Taro.showToast({
+          title: "请选择开始日期",
+          icon: 'none'
+        })
+        return
+      }
+      if (!dataEnd) {
+        Taro.showToast({
+          title: "请选择结束日期",
+          icon: 'none'
+        })
+        return
+      }
+      list.push({ name: inputName, value: dataStart + " " + dataEnd, type: type })
+    }
+
+    if (visible == "edit") {
+      let nlist = metadata
+      nlist[indx] = list[0]
+      this.setState({
+        metadata: nlist,
+        visible: "",
+      })
+    } else {
+      this.setState({
+        metadata: [...metadata, ...list],
+        visible: "",
+      })
+    }
+  }
+
+
+  render() {
+    // if (!this.state.loaded) {
+    //   return <Loading />
+    // }
+
+    const { data, visible, metadata, type, chapterType, chapterData, aeList } = this.state
+    return (
+      <View className='home'>
+        <View className='home-item'>
+          <View className='home-item-tit'>关联企业</View>
+          <View className='home-item-vals'>
+            <Picker mode='selector' range={aeList} rangeKey="name"
+              onChange={this.onAeChange}
+            >
+              <View className='home-item-vals-txt'>{data.companyName || "请选择关联企业"}</View>
+            </Picker>
+            <View className='home-item-vals-bt'>
+              <Button size='mini' type='primary' onClick={() => { this.setState({ newvb: true }) }}>+新增企业</Button>
+            </View>
+          </View>
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>报告类型</View>
+          <Input
+            value={data.name}
+            className='home-item-val'
+            placeholder='请输入报告类型'
+          />
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>项目名称</View>
+          <Input
+            value={data.reportName}
+            className='home-item-val'
+            placeholder='请输入项目名称'
+          />
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>项目负责人</View>
+          <Input
+            value={data.supervisor}
+            className='home-item-val'
+            placeholder='请输入项目负责人'
+          />
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>企业LOGO</View>
+          <ImagePicker id={data.id} />
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>关键词</View>
+          <Input
+            value={data.keywords}
+            className='home-item-val'
+            placeholder='请输入关键词'
+          />
+        </View>
+        {
+          metadata.map((item, index) =>
+            <View className='home-item' key={index}
+              onClick={() => {
+                this.setState({
+                  indx: index,
+                  type: item.type,
+                  inputName: item.name,
+                  visible: "edit",
+                  inputText: item.type == "text" ? item.value : undefined,
+                  dateSel: item.type == "date" ? item.value : undefined,
+                  dataStart: item.type == "dateRange" ? item.value.split(" ")[0] : undefined,
+                  dataEnd: item.type == "dateRange" ? item.value.split(" ")[1] : undefined,
+                })
+              }}
+            >
+              <View className='home-item-tit'>{item.name}</View>
+              {item.type == "text" && <View className='home-item-val'>{item.value}</View>}
+              {item.type == "date" && <View className='home-item-val'>{item.value}</View>}
+              {item.type == "dateRange" && <View className='home-item-val'>{item.value.replace(" ", " → ")}</View>}
+            </View>
+          )
+        }
+        <View className='home-item'>
+          <Picker mode='selector' range={this.state.selector} rangeKey="name"
+            onChange={this.onChange}
+          >
+            <Button>+添加新项</Button>
+          </Picker>
+        </View>
+
+        <View className='home-line' />
+
+        {
+          chapterData.map((item, index) =>
+            <View className='home-item' key={index}>
+              <Input
+                value={item.title}
+                className='home-item-tit'
+              />
+              <View className='home-item-text'>
+                <View>章节关键词:</View>
+                <Input
+                  value={item.keywords.toString()}
+                  className='home-item-text-val'
+                  placeholder='输入逗号分割'
+                />
+              </View>
+              <View className='home-item-editor' contenteditable="true">请填写内容...</View>
+              <View className='home-item-bottom'>
+                <Button size='mini' type='primary'>Al生成</Button>
+              </View>
+            </View>
+          )
+        }
+
+        <View className='home-item'>
+          <Picker mode='selector' range={chapterType} rangeKey="title"
+            onChange={this.onChapterChange}
+          >
+            <Button>+添加章节</Button>
+          </Picker>
+        </View>
+
+
+        <View className='home-item' style={{ marginTop: 60 }}>
+          <Button type='primary'>保存</Button>
+        </View>
+
+        {/* 新增项 */}
+        {visible != "" &&
+          <View className='mask'>
+            <View className='count'>
+              <View className='count_top'>
+                <Input
+                  value={this.state.inputName}
+                  className='count_top_input'
+                  placeholder='字段名称'
+                  onChange={e => { this.setState({ inputName: e.detail.value }) }}
+                />
+                {type == "text" &&
+                  <Input
+                    value={this.state.inputText}
+                    style={{ marginTop: 15 }}
+                    className='count_top_input'
+                    placeholder='请输入字段值'
+                    onChange={e => { this.setState({ inputText: e.detail.value }) }}
+                  />}
+                {type == "date" &&
+                  <Picker mode='date' value={this.state.dateSel}
+                    onChange={e => {
+                      this.setState({
+                        dateSel: e.detail.value,
+                      })
+                    }}>
+                    <View className={!this.state.dateSel ? 'count_top_dates' : 'count_top_date'}>
+                      {!this.state.dateSel ? "请选择日期" : this.state.dateSel}
+                    </View>
+                  </Picker>
+                }
+                {type == "dateRange" &&
+                  <Picker mode='date' value={this.state.dataStart}
+                    onChange={e => {
+                      this.setState({
+                        dataStart: e.detail.value,
+                      })
+                    }}>
+                    <View className={!this.state.dataStart ? 'count_top_dates' : 'count_top_date'}>
+                      {!this.state.dataStart ? "开始日期" : this.state.dataStart}
+                    </View>
+                  </Picker>
+                }
+                {type == "dateRange" &&
+                  <Picker mode='date' value={this.state.dataEnd}
+                    onChange={e => {
+                      this.setState({
+                        dataEnd: e.detail.value,
+                      })
+                    }}>
+                    <View className={!this.state.dataEnd ? 'count_top_dates' : 'count_top_date'}>
+                      {!this.state.dataEnd ? "结束日期" : this.state.dataEnd}
+                    </View>
+                  </Picker>
+                }
+              </View>
+              <View className='count_foot'>
+                <Button onClick={this.onCancel}>取消</Button>
+                <Button style={{ marginTop: 0 }}
+                  onClick={this.onOk}
+                >确认</Button>
+              </View>
+            </View>
+          </View>}
+
+        {
+          this.state.newvb &&
+          <View className='mask'>
+            <View className='count'>
+              <View className='title'>新增企业名称</View>
+              <View className='count_top'>
+                <Input
+                  value={this.state.name}
+                  className='count_top_input'
+                  placeholder='请输入新企业名称'
+                  onChange={e => { this.setState({ name: e.detail.value }) }}
+                />
+              </View>
+              <View className='count_foot'>
+                <Button onClick={this.onAeCancel}>取消</Button>
+                <Button style={{ marginTop: 0 }}
+                  onClick={this.onAeOk}
+                >确认</Button>
+              </View>
+            </View>
+          </View>
+        }
+
+      </View>
+    )
+  }
+}
+
+export default ReportDetail

+ 64 - 3
src/pages/user/templatedetail.js

@@ -1,5 +1,5 @@
 import Taro, { Component } from '@tarojs/taro'
-import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
+import { View, Input, Picker, Label, Button } from '@tarojs/components'
 import { Loading } from '@components'
 import { connect } from '@tarojs/redux'
 import * as actions from '@actions/template'
@@ -20,9 +20,24 @@ class TemplateDetail extends Component {
       { name: "日期项", type: "date" },
       { name: "起止时间", type: "dateRange" },
     ],
+
     visible: "",
     data: {},
     metadata: [],
+    chapterType: [
+      { title: "立项背景与意义", key: "BACKGROUND", keywords: ['必要性'] },
+      { title: "国内外研究现状与发展趋势", key: "RESEARCH_STATUS", keywords: ['研究现状', '发展趋势'] },
+      { title: "项目主要研究内容", key: "RESEARCH", keywords: ['技术特点', '技术研究', '实际应用'] },
+      { title: "关键技术与创新点", key: "INNOVATION", keywords: ['关键技术', '创新点'] },
+      { title: "拟解决的关键问题", key: "SOLVE_PROBLEM", keywords: ['解决的问题', '解决的关键问题'] },
+      { title: "实施方案及进度安排", key: "SOLUTION", keywords: ['实施方案'] },
+      { title: "经费预算", key: "BUDGET", keywords: [] },
+      { title: "经济及社会效益分析", key: "BENEFIT_ANALYSIS", keywords: ['经济效益', '社会效益', '经济效益分析', '社会效益分析'] },
+      { title: "项目风险分析和对策", key: "RISK", keywords: ['风险分析', '风险对策'] },
+      { title: "自定义章节", key: "USER_DEFINED", keywords: [] },
+    ],
+    chapterData: [],
+
   }
 
   componentDidMount() {
@@ -54,6 +69,14 @@ class TemplateDetail extends Component {
     })
   }
 
+  onChapterChange = e => {
+    let list = this.state.chapterData
+    list.push(this.state.chapterType[e.detail.value])
+    this.setState({
+      chapterData: list
+    })
+  }
+
 
   onCancel = () => {
     this.setState({
@@ -136,7 +159,7 @@ class TemplateDetail extends Component {
     //   return <Loading />
     // }
 
-    const { data, visible, metadata, type } = this.state
+    const { data, visible, metadata, type, chapterType, chapterData } = this.state
     return (
       <View className='home'>
         <View className='home-item'>
@@ -190,9 +213,47 @@ class TemplateDetail extends Component {
           <Picker mode='selector' range={this.state.selector} rangeKey="name"
             onChange={this.onChange}
           >
-            <Button type='primary'>+添加新项</Button>
+            <Button>+添加新项</Button>
           </Picker>
         </View>
+
+        {
+          chapterData.map((item, index) =>
+            <View className='home-item' key={index}>
+              <Input
+                value={item.title}
+                className='home-item-tit'
+              />
+              <View className='home-item-text'>
+                <View>章节关键词:</View>
+                <Input
+                  value={item.keywords.toString()}
+                  className='home-item-text-val'
+                  placeholder='输入逗号分割'
+                />
+              </View>
+            </View>
+          )
+        }
+
+        <View className='home-item'>
+          <Picker mode='chapterType' range={chapterType} rangeKey="title"
+            onChange={this.onChapterChange}
+          >
+            <Button>+添加章节</Button>
+          </Picker>
+        </View>
+
+
+        <View className='home-item'>
+          <View className='home-item-editor' contenteditable="true">请填写内容...</View>
+        </View>
+
+
+        <View className='home-item'>
+          <Button type='primary'>保存</Button>
+        </View>
+
         {visible != "" &&
           <View className='mask'>
             <View className='count'>

+ 68 - 4
src/pages/user/templatedetail.scss

@@ -1,6 +1,10 @@
 .home {
   background: #fff;
 
+  &-line {
+    height: 50px;
+  }
+
   &-item {
     display: flex;
     flex-direction: column;
@@ -12,7 +16,7 @@
       font-size: 32px;
       margin-bottom: 10px;
       font-weight: 600;
-      // text-align: right;
+
     }
 
     &-val {
@@ -21,6 +25,56 @@
 
     }
 
+    &-vals {
+      display: flex;
+      flex-direction: row;
+      justify-content: space-between;
+      flex-wrap: nowrap;
+      height: 50.68px;
+      border-bottom: 1px solid #d9d9d9;
+      font-size: 30px;
+
+      &-txt {
+        width: 400px;
+        display: inline-block;
+      }
+
+      &-bt {
+        width: 25%;
+      }
+
+    }
+
+    &-text {
+      display: flex;
+      flex-direction: row;
+      flex-wrap: nowrap;
+
+      &-val {
+        display: flex;
+        flex: 1;
+        border-bottom: 1px solid #d9d9d9;
+
+      }
+
+    }
+
+    &-editor {
+      min-height: 150px;
+      font-size: 30px;
+      border: 1px solid #d9d9d9;
+      padding: 15px;
+      margin-top: 15px;
+
+    }
+
+    &-bottom {
+      width: 20%;
+      margin-left: 80%;
+      margin-top: 15px;
+
+    }
+
   }
 
 }
@@ -43,6 +97,16 @@
     background: #fff;
     border-radius: 15px;
 
+    .title{
+      font-size: 36px;
+      display: flex;
+      flex-direction: row;
+      align-items: center;
+      justify-content: center;
+      margin-top: 20px;
+      
+    }
+
     &_top {
       padding: 30px;
       margin: 40px 0;
@@ -53,13 +117,13 @@
 
       }
 
-      &_date{
+      &_date {
         border-bottom: 1px solid #d9d9d9;
         font-size: 32px;
         margin-top: 30px;
       }
 
-      &_dates{
+      &_dates {
         border-bottom: 1px solid #d9d9d9;
         font-size: 32px;
         margin-top: 30px;
@@ -68,7 +132,7 @@
 
     }
 
-    &_foot{
+    &_foot {
       display: flex;
       flex-direction: row;
 

+ 11 - 2
src/utils/request.js

@@ -23,16 +23,25 @@ function updateStorage(data = {}) {
 export default async function fetch(options) {
   const { url, payload, method = 'GET', showToast = true, autoLogin = true } = options
   const token = await getStorage('token')
-  const header = token ? { 'Authorization': token, } : {}
+  const contentType = "application/json";
+  // const header = token ? { 'Authorization': token, } : {}
+  const header = { 'Authorization': token, }
   if (method === 'POST') {
     header['content-type'] = 'application/json'
+  } else if (method === 'PUT') {
+    header['content-type'] = 'application/json'
   }
 
   return Taro.request({
     url,
     method,
     data: payload,
-    header
+    header: {
+      'content-type': contentType,
+      'Authorization': token,
+      'Accept': 'application/json, text/javascript,'
+    },
+    dataType: 'json',
   }).then(async (res) => {
     const { status, data } = res.data
     if (status !== 1000) {