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