dev01 1 year ago
parent
commit
c54df673a3

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

@@ -67,7 +67,7 @@ export default class ImagePicker extends Component {
             success: (result) => {
               if (result.statusCode === 200) {
                 const responseData = JSON.parse(result.data); // 服务器返回的数据
-                onChange(responseData.data) //调用父级方法存储
+                onChange(responseData.data) // 调用父级方法存储
                 // 可以根据服务器返回的数据做一些逻辑处理
                 const { imageUrls } = this.state;
                 this.setState({ imageUrls: [responseData.data] })

+ 73 - 18
src/pages/user/reportdetail.js

@@ -1,5 +1,5 @@
 import Taro, { Component } from '@tarojs/taro'
-import { View, Input, Picker, Label, 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/report'
@@ -13,14 +13,12 @@ class ReportDetail extends Component {
   config = {
     navigationBarTitleText: '报告撰写'
   }
-
   state = {
     selector: [
       { name: "文本项", type: "text" },
       { name: "日期项", type: "date" },
       { name: "起止时间", type: "dateRange" },
     ],
-
     visible: "",
     data: {},
     metadata: [],
@@ -38,9 +36,9 @@ class ReportDetail extends Component {
     ],
     chapters: [],
     aeList: [],
-
     name: "",
     newvb: false,
+    popup: false,
 
   }
 
@@ -310,6 +308,24 @@ class ReportDetail extends Component {
       chapters: data
     })
   }
+  // 二级确认
+  toggleVisible = () => {
+    this.setState({
+      popup: !this.state.popup,
+    })
+  }
+  // 删除章节
+  delChap = () => {
+    const list = this.state.chapters
+    list.splice(this.state.delIndex, 1)
+    for (var i = 0; i < list.length; i++) {
+      list[i].fullTitle = this.getTitleWithChineseNum(i, list[i].title)
+    }
+    this.setState({
+      chapters: list
+    })
+    this.toggleVisible()
+  }
   // 保存
   onSubsmit = () => {
     const { data, metadata, chapters } = this.state
@@ -350,9 +366,6 @@ class ReportDetail extends Component {
     }
     data.metadata = metadata
     data.chapters = chapters
-
-    // console.log("------", data)
-    // return
     let payload = data
     this.props.report(payload).then((data) => {
       Taro.showToast({
@@ -476,7 +489,21 @@ class ReportDetail extends Component {
                 })
               }}
             >
-              <View className='home-item-tit'>{item.name}</View>
+              <View className='home-item-tits'>
+                <View className='home-item-tits-txt'>{item.name}</View>
+                <View className='home-item-tits-bt'>
+                  <Button size='mini' type='warn'
+                    onClick={e => {
+                      e.stopPropagation()
+                      let list = this.state.metadata
+                      list.splice(index, 1)
+                      this.setState({
+                        metadata: list
+                      })
+                    }}
+                  >删除</Button>
+                </View>
+              </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>}
@@ -493,14 +520,28 @@ class ReportDetail extends Component {
         <View className='home-line' />
         {
           chapters.map((item, index) =>
-            <View className='home-item' key={index}>
-              <Input
-                value={item.title}
-                className='home-item-tit'
-                onChange={(e) => {
-                  this.onChapTitle(index, e)
-                }}
-              />
+            <View className='home-item' key={index} style={{ marginBottom: 10, }}>
+              <View className='home-item-tits'>
+                <Input
+                  value={item.title}
+                  className='home-item-tits-txt'
+                  style={{ borderBottom: "1px solid #d9d9d9" }}
+                  onChange={(e) => {
+                    this.onChapTitle(index, e)
+                  }}
+                />
+                <View className='home-item-tits-bt'>
+                  <Button size='mini' type='warn'
+                    onClick={e => {
+                      e.stopPropagation()
+                      this.setState({
+                        delIndex: index
+                      })
+                      this.toggleVisible()
+                    }}
+                  >删除</Button>
+                </View>
+              </View>
               <View className='home-item-text'>
                 <View>章节关键词:</View>
                 <Input
@@ -532,7 +573,7 @@ class ReportDetail extends Component {
             <Button>+添加章节</Button>
           </Picker>
         </View>
-        <View className='home-item' style={{ marginTop: 60 }}>
+        <View className='home-item' style={{ marginTop: 60, paddingBottom: 30 }}>
           <Button type='primary' onClick={this.onSubsmit}>保存</Button>
         </View>
         {/* 新增项 */}
@@ -599,6 +640,7 @@ class ReportDetail extends Component {
               </View>
             </View>
           </View>}
+        {/* 新增企业 */}
         {this.state.newvb &&
           <View className='mask'>
             <View className='count'>
@@ -619,7 +661,20 @@ class ReportDetail extends Component {
               </View>
             </View>
           </View>}
-      </View>
+        {/* 二级确认 */}
+        {this.state.popup &&
+          <View className='mask'>
+            <View className='count'>
+              <View className='title' style={{ margin: "60px 0" }}>确认删除吗?</View>
+              <View className='count_foot'>
+                <Button onClick={this.toggleVisible}>取消</Button>
+                <Button style={{ marginTop: 0 }}
+                  onClick={this.delChap}
+                >确认</Button>
+              </View>
+            </View>
+          </View>}
+      </View >
     )
   }
 }

+ 25 - 5
src/pages/user/templatedetail.scss

@@ -12,13 +12,32 @@
     font-size: 28px;
 
     &-tit {
-      // color: #b7acac;
       font-size: 32px;
       margin-bottom: 10px;
       font-weight: 600;
 
     }
 
+    &-tits {
+      font-size: 32px;
+      margin-bottom: 10px;
+      font-weight: 600;
+      display: flex;
+      flex-direction: row;
+      align-items: center;
+      justify-content: space-between;
+      flex-wrap: nowrap;
+
+      &-txt {
+        width: 500px;
+        display: inline-block;
+        font-weight: 600;
+      }
+
+      &-bt {}
+
+    }
+
     &-val {
       border-bottom: 1px solid #d9d9d9;
       font-size: 30px;
@@ -35,12 +54,12 @@
       font-size: 30px;
 
       &-txt {
-        width: 400px;
+        width: 500px;
         display: inline-block;
       }
 
       &-bt {
-        width: 26%;
+        // width: 26%;
       }
 
     }
@@ -72,6 +91,7 @@
       width: 20%;
       margin-left: 80%;
       margin-top: 15px;
+      margin-bottom: 20px;
 
     }
 
@@ -97,14 +117,14 @@
     background: #fff;
     border-radius: 15px;
 
-    .title{
+    .title {
       font-size: 36px;
       display: flex;
       flex-direction: row;
       align-items: center;
       justify-content: center;
       margin-top: 20px;
-      
+
     }
 
     &_top {