dev01 1 jaar geleden
bovenliggende
commit
a28425ce16

+ 34 - 0
src/actions/template.js

@@ -0,0 +1,34 @@
+import { LIST_TEMPLATE, LIST_DELETE, LIST_DETAIL } from '@constants/user'
+import { API_USER_Template, API_USER_deleteTemplate, API_USER_DETAIL } from '@constants/api'
+import { createAction } from '@utils/redux'
+
+/**
+ * 模板列表数据
+ * @param {*} payload
+ */
+export const getList = payload => createAction({
+  url: API_USER_Template,
+  type: LIST_TEMPLATE,
+  payload
+})
+
+/**
+ * 模板删除
+ * @param {*} payload 
+ */
+export const deleteTemplate = payload => createAction({
+  url: API_USER_deleteTemplate + `/${payload.id}`,
+  method: 'DELETE',
+  type: LIST_DELETE,
+})
+
+
+/**
+ * 模板详情
+ * @param {*} payload 
+ */
+export const reportTemplate = payload => createAction({
+  url: API_USER_DETAIL + `/${payload.id}`,
+  method: 'GET',
+  type: LIST_DETAIL,
+})

+ 3 - 0
src/app.js

@@ -19,10 +19,13 @@ const store = configStore()
 class App extends Component {
   config = {
     pages: [
+      'pages/user/templatedetail', // 模板详情
       'pages/user-login/user-login', // 登录页
       'pages/list/list', // 报告列表
       'pages/increase/increase', // 生成报告
       'pages/user/user', // 我的
+      'pages/user/template', // 模板列表
+
     ],
     window: {
       backgroundTextStyle: 'light',

+ 122 - 0
src/components/imagePicker/index.js

@@ -0,0 +1,122 @@
+import Taro, { Component } from '@tarojs/taro'
+import { View, Button, Image } from '@tarojs/components'
+import { createAction } from '@utils/redux'
+import './index.scss'
+
+
+export default class ImagePicker extends Component {
+  static defaultProps = {
+    time: Date.parse(new Date()),
+  }
+
+  getStorage(key) {
+    return Taro.getStorage({ key }).then(res => res.data).catch(() => '')
+  }
+
+  async handleUpload() {
+    const { num = 1, id } = this.props
+    const token = await this.getStorage('token')
+    Taro.chooseImage({
+      count: num, // 最多选择多少张图片
+      sizeType: ['compressed'], // 压缩图像文件
+      sourceType: ['album', 'camera'], // 从相册和相机选择图片
+      success: (res) => {
+        const files = res.tempFilePaths;
+
+        // 上传每张图片到服务器
+        files.forEach((file) => {
+          Taro.uploadFile({
+            url: 'http://140.210.193.73/gw/user/logo', // 上传接口地址
+            filePath: file,
+            header: {
+              'Authorization': token,
+            },
+            formData: {
+              reportId: !!id && id
+            },
+            name: 'file', // 服务端接收的文件字段名
+            success: (result) => {
+              if (result.statusCode === 200) {
+                const responseData = JSON.parse(result.data); // 服务器返回的数据
+                // 可以根据服务器返回的数据做一些逻辑处理
+                const { imageUrls } = this.state;
+                this.setState({ token, imageUrls: [responseData.data] })
+                // this.setState({ imageUrls: [...imageUrls, ...[responseData.data]] });
+              } else {
+                // 处理上传失败的情况
+                Taro.showToast({
+                  title: '上传失败',
+                  icon: 'none',
+                  mask: true
+                })
+              }
+            },
+            fail: (error) => {
+              // 处理上传失败的情况
+              Taro.showToast({
+                title: '上传失败',
+                icon: 'none',
+                mask: true
+              })
+            },
+          });
+        });
+      },
+    });
+  }
+
+  deleteImg = createAction({
+    url: "http://140.210.193.73/gw/user/logo" + `/${this.props.id}`,
+    method: 'DELETE',
+    type: 'TEMPLATE_DELETE',
+    payload: {},
+  })
+
+  handleDelete(index) {
+    const { imageUrls } = this.state;
+    const updatedUrls = [...imageUrls];
+    this.deleteImg()
+    updatedUrls.splice(index, 1);
+    this.setState({ imageUrls: updatedUrls });
+
+  }
+
+  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}`);
+    Taro.previewImage({
+      urls,
+      current: urls[index],
+      fail: (error) => {
+        // 处理预览失败的情况
+      },
+    });
+  }
+
+  render() {
+    const { imageUrls = [], token } = this.state
+    const { time, id, num = 1 } = this.props
+    return (
+      <View className='upload'>
+        {imageUrls && imageUrls.map((url, index) => (
+          <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}`}
+              mode='aspectFit'
+              onClick={() => this.handlePreview(index)}
+            />
+            <View className='upload-item-delete'
+              onClick={this.handleDelete.bind(this, index)}
+            >
+              删除
+            </View>
+          </View>
+        ))}
+        {imageUrls.length < num && <View className='upload-add' onClick={this.handleUpload.bind(this)}>+</View>}
+      </View>
+    )
+  }
+}
+

+ 52 - 0
src/components/imagePicker/index.scss

@@ -0,0 +1,52 @@
+.upload {
+  display: flex;
+  flex-direction: row;
+
+  &-item {
+    width: 200px;
+    height: 200px;
+    position: relative;
+    margin: 20px 20px 0 0;
+    border-radius: 4px;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+
+    &-img {
+      border-radius: 4px;
+      width: 100%;
+      height: 100%;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+    }
+
+    &-delete {
+      width: 100%;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      position: absolute;
+      bottom: 0;
+      padding: 5px 0;
+      background: rgba(0, 0, 0, .4);
+      font-size: 26px;
+      color: #fff;
+    }
+
+  }
+
+  &-add {
+    width: 200px;
+    height: 200px;
+    margin: 20px 0 0 0;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    font-size: 30px;
+    border: 1px dashed #d9d9d9;
+    border-radius: 4px;
+
+  }
+
+}

+ 1 - 0
src/components/index.js

@@ -7,3 +7,4 @@ export { default as ItemList } from './item-list'
 export { default as Loading } from './loading'
 export { default as Popup } from './popup'
 export { default as Tag } from './tag'
+export { default as ImagePicker } from './imagePicker'

+ 5 - 2
src/constants/api.js

@@ -11,8 +11,11 @@ export const hostM = HOST_M
 export const CDN = 'https://yanxuan.nosdn.127.net'
 
 // user
-export const API_USER_LOGIN = `${host}/gw/user/login` //
+export const API_USER_LOGIN = `${host}/gw/user/login` // 登录
+export const API_USER_Template= `${host}/gw/user/reportTemplate` // 模板列表
+export const API_USER_deleteTemplate= `${host}/gw/user/reportTemplate` // 删除模板
 
 
 // list 
-export const API_USER_REPORTS = `${host}/gw/user/reports` // 我的列表
+export const API_USER_REPORTS = `${host}/gw/user/reports` // 我的列表
+export const API_USER_DETAIL = `${host}/gw/user/reportTemplate` // 模板详情

+ 5 - 1
src/constants/user.js

@@ -1,3 +1,7 @@
 export const USER_INFO = 'USER_INFO'
 export const USER_LOGIN = 'USER_LOGIN'
-export const USER_LOGOUT = 'USER_LOGOUT'
+export const USER_LOGOUT = 'USER_LOGOUT'
+
+export const LIST_TEMPLATE = 'LIST_TEMPLATE'
+export const LIST_DELETE = 'LIST_DELETE'
+export const LIST_DETAIL = 'LIST_DETAIL'

+ 7 - 1
src/pages/list/itemlist.js

@@ -29,7 +29,13 @@ export default class ItemList extends Component {
                     )
                   }
                 </View>
-                <View className='list__item__right'>
+                <View className='list__item__right'
+                  style={{
+                    color: item.status === 0
+                      ? "red" : item.status === 1
+                        ? "green" : ""
+                  }}
+                >
                   {item.status === 0
                     ? "编写中" : item.status === 1
                       ? "已完成" : ""}

+ 1 - 2
src/pages/list/list.js

@@ -1,9 +1,8 @@
-import Taro, { Component, useRef } from '@tarojs/taro'
+import Taro, { Component } from '@tarojs/taro'
 import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
 import { Loading } from '@components'
 import { connect } from '@tarojs/redux'
 import * as actions from '@actions/list'
-import { getList } from '@actions/list'
 import ItemList from './itemlist'
 import { getWindowHeight } from '@utils/style'
 import './list.scss'

+ 124 - 0
src/pages/user/template.js

@@ -0,0 +1,124 @@
+import Taro, { Component } from '@tarojs/taro'
+import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
+import { Loading } from '@components'
+import { connect } from '@tarojs/redux'
+import * as actions from '@actions/template'
+import TemplateList from './templatelist'
+import { getWindowHeight } from '@utils/style'
+import './template.scss'
+
+@connect(state => state.home, { ...actions, })
+class Template extends Component {
+  config = {
+    navigationBarTitleText: '模板管理'
+  }
+
+  state = {
+    loaded: false,
+    loading: false,
+    lastItemId: 0,
+    hasMore: true,
+    selectorChecked: { id: 0, key: "按模板名称", value: 'title' },
+    selector: [
+      { id: 0, key: "按模板名称", value: 'title' },
+      { id: 1, key: "按标签", value: 'tags' },],
+    keyword: "",
+    dataList: [],
+  }
+
+  componentDidMount() {
+    this.getData()
+  }
+
+
+  // 列表数据
+  getData = () => {
+    this.setState({ loading: true })
+    let payload = {
+      field: this.state.selectorChecked.value,
+      keyword: this.state.keyword,
+    }
+    this.props.getList(payload).then((data) => {
+      this.setState({
+        loading: false,
+        dataList: data.items,
+      })
+    }).catch(() => {
+      this.setState({ loading: false })
+    })
+
+  }
+
+  // 删除模板
+  deleteTemplate = (value) => {
+    let payload = {
+      id: value.id,
+    }
+    this.props.deleteTemplate(payload).then((data) => {
+      this.setState({
+        loading: false,
+      })
+      Taro.showToast({
+        title: "操作成功",
+        icon: 'none'
+      })
+      this.getData()
+    }).catch(() => {
+      this.setState({ loading: false })
+    })
+  }
+
+  onChange = e => {
+    this.setState({
+      selectorChecked: this.state.selector[e.detail.value],
+    })
+  }
+
+  onInput = e => {
+    this.setState({
+      keyword: e.detail.value
+    })
+  }
+
+
+  render() {
+    // if (!this.state.loaded) {
+    //   return <Loading />
+    // }
+
+    const { } = this.props
+    return (
+      <View className='home'>
+        <View className='home_head'>
+          <Picker
+            mode='selector'
+            range={this.state.selector}
+            rangeKey="key"
+            value={this.state.selectorChecked.id}
+            onChange={this.onChange}>
+            <View className='picker'>
+              {this.state.selectorChecked.key} ▼
+            </View>
+          </Picker>
+          <Input className='input' type='text' placeholder='请输入关键词进行查询' onInput={this.onInput} />
+          <View className='button'
+            onClick={() => {
+              this.page = 1
+              this.getData()
+            }}
+          >搜索</View>
+        </View>
+        <ScrollView
+          scrollY
+          className='home__wrap'
+          onScrollToLower={this.getData}
+          style={{ height: (getWindowHeight().substring(0, getWindowHeight().length - 2) - 55) + "px" }}
+        >
+          <TemplateList list={this.state.dataList} deleteTemplate={(e) => { this.deleteTemplate(e) }} />
+        </ScrollView>
+      </View>
+    )
+  }
+}
+
+export default Template

+ 46 - 0
src/pages/user/template.scss

@@ -0,0 +1,46 @@
+.home {
+  background: #EDEDED;
+
+  &_head {
+    width: 100%;
+    display: flex;
+    flex-direction: row;
+    align-items: center;
+    background: #FFFFFF;
+    padding: 20px;
+
+    .picker {
+      width: 180px;
+      padding: 10px 0;
+      border-radius: 30px;
+      font-size: 24px;
+      background: #0079c2;
+      color: #FFFFFF;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+
+    }
+
+    .input {
+      font-size: 24px;
+      padding: 10px 30px;
+      margin: 0 20px;
+      background: #EDEDED;
+      border-radius: 30px;
+
+    }
+
+    .button {
+      white-space: nowrap;
+      background: #0079c2;
+      border-radius: 10px;
+      padding: 10px 20px;
+      font-size: 24px;
+      color: #FFFFFF;
+
+    }
+
+  }
+
+}

+ 241 - 0
src/pages/user/templatedetail.js

@@ -0,0 +1,241 @@
+import Taro, { Component } from '@tarojs/taro'
+import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
+import { Loading } from '@components'
+import { connect } from '@tarojs/redux'
+import * as actions from '@actions/template'
+import { getWindowHeight } from '@utils/style'
+import ImagePicker from '../../components/imagePicker'
+import './templatedetail.scss'
+
+@connect(state => state.home, { ...actions, })
+class TemplateDetail extends Component {
+
+  config = {
+    navigationBarTitleText: '报告模板编辑'
+  }
+
+  state = {
+    selector: [
+      { name: "文本项", type: "text" },
+      { name: "日期项", type: "date" },
+      { name: "起止时间", type: "dateRange" },
+    ],
+    visible: "",
+    data: {},
+    metadata: [],
+  }
+
+  componentDidMount() {
+    // this.getData()
+  }
+
+  getData() {
+    this.setState({ loading: true })
+    let payload = {
+      id: this.$router.params.id,
+    }
+    this.props.reportTemplate(payload).then((data) => {
+      this.setState({
+        loading: false,
+        data: data.data,
+      })
+    }).catch(() => {
+      this.setState({ loading: false })
+    })
+
+  }
+
+  // 添加新项
+  onChange = e => {
+    this.setState({
+      selectorChecked: this.state.selector[e.detail.value],
+      inputName: e.detail.value == 2 ? "起止时间" : "",
+      visible: "add"
+    })
+  }
+
+
+  onCancel = () => {
+    this.setState({
+      inputName: "",
+      inputText: "",
+      dateSel: "",
+      dateStart: "",
+      dateEnd: "",
+      visible: "",
+    })
+  }
+
+  onOk = () => {
+    const { visible, metadata, inputName, inputText, selectorChecked, dateSel, dataStart, dataEnd } = this.state
+    if (visible == "add") {
+      let list = []
+      if (!inputName) {
+        Taro.showToast({
+          title: "请输入字段名称",
+          icon: 'none'
+        })
+        return
+      }
+      if (selectorChecked.type == "text") {
+        if (!inputText) {
+          Taro.showToast({
+            title: "请输入字段值",
+            icon: 'none'
+          })
+          return
+        }
+        list.push({ name: inputName, value: inputText, type: selectorChecked.type })
+      } else if (selectorChecked.type == "date") {
+        if (!dateSel) {
+          Taro.showToast({
+            title: "请选择日期",
+            icon: 'none'
+          })
+          return
+        }
+        list.push({ name: inputName, value: dateSel, type: selectorChecked.type })
+      } else if (selectorChecked.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: selectorChecked.type })
+      }
+      this.setState({
+        metadata: [...metadata, ...list],
+        visible: "",
+      })
+    }
+  }
+
+
+  render() {
+    // if (!this.state.loaded) {
+    //   return <Loading />
+    // }
+
+    const { data, visible, metadata, selectorChecked } = this.state
+    return (
+      <View className='home'>
+        <View className='home-item'>
+          <View className='home-item-tit'>报告模板名称:</View>
+          <Input
+            value={data.name}
+            className='home-item-val'
+          />
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>报告模板标签:</View>
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>关联企业:</View>
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>企业LOGO:</View>
+          <ImagePicker id={397} />
+        </View>
+        <View className='home-item'>
+          <View className='home-item-tit'>项目名称:</View>
+          <Input
+            value={data.reportName}
+            className='home-item-val'
+          />
+        </View>
+        {
+          metadata.map((item, index) =>
+            <View className='home-item'>
+              <View className='home-item-tit'>项目名称:</View>
+              <Input
+                value={data.reportName}
+                className='home-item-val'
+              />
+            </View>
+          )
+        }
+        <View className='home-item'>
+          <Picker mode='selector' range={this.state.selector} rangeKey="name"
+            onChange={this.onChange}
+          >
+            <Button type='primary'>+添加新项</Button>
+          </Picker>
+        </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 }) }}
+                />
+                {selectorChecked.type == "text" &&
+                  <Input
+                    value={this.state.inputText}
+                    style={{ marginTop: 15 }}
+                    className='count_top_input'
+                    placeholder='请输入字段值'
+                    onChange={e => { this.setState({ inputText: e.detail.value }) }}
+                  />}
+                {selectorChecked.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>
+                }
+                {selectorChecked.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>
+                }
+                {selectorChecked.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>}
+      </View>
+    )
+  }
+}
+
+export default TemplateDetail

+ 77 - 0
src/pages/user/templatedetail.scss

@@ -0,0 +1,77 @@
+.home {
+  background: #fff;
+
+  &-item {
+    display: flex;
+    flex-direction: column;
+    padding: 15px 30px;
+    font-size: 28px;
+
+    &-tit {
+      // color: #b7acac;
+      margin-bottom: 10px;
+      // text-align: right;
+    }
+
+    &-val {
+      border-bottom: 1px solid #d9d9d9;
+      font-size: 30px;
+
+    }
+
+  }
+
+}
+
+/* 遮罩层样式 */
+.mask {
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  background: rgba(0, 0, 0, 0.5);
+  z-index: 998;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+
+  .count {
+    width: 70%;
+    background: #fff;
+    border-radius: 15px;
+
+    &_top {
+      padding: 30px;
+      margin: 40px 0;
+
+      &_input {
+        border-bottom: 1px solid #d9d9d9;
+        font-size: 32px;
+
+      }
+
+      &_date{
+        border-bottom: 1px solid #d9d9d9;
+        font-size: 32px;
+        margin-top: 30px;
+      }
+
+      &_dates{
+        border-bottom: 1px solid #d9d9d9;
+        font-size: 32px;
+        margin-top: 30px;
+        color: #757575;
+      }
+
+    }
+
+    &_foot{
+      display: flex;
+      flex-direction: row;
+
+    }
+
+  }
+
+}

+ 90 - 0
src/pages/user/templatelist.js

@@ -0,0 +1,90 @@
+import Taro, { Component } from '@tarojs/taro'
+import { View, Text, Button } from '@tarojs/components'
+import { Popup, } from '@components'
+import './templatelist.scss'
+
+export default class TemplateList extends Component {
+
+  constructor(props) {
+    super(props)
+    this.state = {
+      visible: false,
+      selected: {},
+    }
+  }
+
+
+  toggleVisible = () => {
+    this.setState({
+      visible: !this.state.visible,
+      selected: {}
+    })
+  }
+
+  render() {
+    const { list = [] } = this.props
+    const popupStyle = { transform: `translateY(${Taro.pxTransform(-100)})` }
+    return (
+      <View className='list'>
+        {
+          list.length == 0
+            ? <View>暂无</View>
+            : list.map(item =>
+              <View className='list__item' key={item.id}
+                onClick={() => {
+                  Taro.navigateTo({
+                    url: "/pages/user/templatedetail?id=" + item.id
+                  })
+                }}
+              >
+                <View className='list__item__left'>
+                  <View className='list__item__left-one'>{item.name}</View>
+                  {/* {
+                    !!item.metadata && item.metadata.length > 0 && item.metadata.map((t, x) =>
+                      <View className='list__item__left-two' key={x}>{t.name}:{t.value}</View>
+                    )
+                  } */}
+                  {/* <View className='list__item__left-two'>标签:{item.tags}
+                  
+                  </View> */}
+                  <View className='list__item__left-two'>创建时间:{item.createAt}</View>
+                  <View className='list__item__left-two'>更新时间:{item.updateAt}</View>
+                  <View className='list__item__left-bottom'>
+                    <View className='list__item__left-bottom_g'>使用该模板</View>
+                    <View className='list__item__left-bottom_d'
+                      onClick={e => {
+                        e.stopPropagation()
+                        this.setState({
+                          visible: true,
+                          selected: item
+                        })
+                      }}
+                    >删除</View>
+                  </View>
+                </View>
+              </View>
+            )
+        }
+        <Popup
+          visible={this.state.visible}
+          onClose={this.toggleVisible}
+        // compStyle={popupStyle}
+        >
+          <View className='spec'>
+            <View className='spec-title'>温馨提示</View>
+            <View className='spec-info'>确认删除吗?</View>
+            <View className='spec-bottom'>
+              <Button size='default' type='primary'
+                onClick={() => {
+                  this.props.deleteTemplate(this.state.selected)
+                  this.toggleVisible()
+                }}
+              >确认</Button>
+              <Button size='default' onClick={() => { this.toggleVisible() }}>取消</Button>
+            </View>
+          </View>
+        </Popup>
+      </View>
+    )
+  }
+}

+ 89 - 0
src/pages/user/templatelist.scss

@@ -0,0 +1,89 @@
+.list {
+  padding: 20px;
+
+  &__item {
+    display: flex;
+    flex-direction: row;
+    justify-content: space-between;
+    background: #FFFFFF;
+    padding: 20px;
+    font-size: 28px;
+    border-radius: 10px;
+    margin-bottom: 17px;
+
+    &__left {
+      width: 100%;
+      display: flex;
+      flex-direction: column;
+      overflow: hidden;
+
+      &-one {
+        font-size: 32px;
+        margin-bottom: 10px;
+      }
+
+      &-two {
+        color: #9A9A9A;
+        white-space: nowrap;
+        overflow: hidden;
+        text-overflow: ellipsis;
+      }
+
+      &-bottom {
+        width: 100%;
+        display: flex;
+        flex-direction: row;
+        align-items: center;
+        justify-content: space-between;
+        margin-top: 10px;
+        color: #FFFFFF;
+
+        &_g {
+          width: 49%;
+          background: #1AAD19;
+          display: flex;
+          align-items: center;
+          justify-content: center;
+          padding: 10px;
+          border-radius: 10px;
+
+        }
+
+
+        &_d {
+          width: 49%;
+          background: #E64340;
+          display: flex;
+          align-items: center;
+          justify-content: center;
+          padding: 10px;
+          border-radius: 10px;
+
+        }
+      }
+
+    }
+
+  }
+}
+
+.spec {
+  height: 100%;
+  display: flex;
+  flex-direction: column;
+  justify-content: space-between;
+
+  &-title {
+    text-align: center;
+    font-size: 30px;
+    padding: 20px;
+  }
+
+  &-info {
+    padding: 0 30px;
+    text-align: center;
+    font-size: 34px;
+  }
+
+  &-bottom {}
+}

+ 11 - 6
src/pages/user/user.js

@@ -1,14 +1,10 @@
 import Taro, { Component } from '@tarojs/taro'
-import { View, Text, Image, ScrollView } from '@tarojs/components'
+import { View, Text, ScrollView } from '@tarojs/components'
 import { Loading } from '@components'
 import { connect } from '@tarojs/redux'
 import * as actions from '@actions/user'
 import { getWindowHeight } from '@utils/style'
-import MyEditor from '../../components/editor'
 import './user.scss'
-
-const RECOMMEND_SIZE = 20
-
 // @connect(state => state.home, { ...actions, })
 class User extends Component {
   config = {
@@ -40,7 +36,16 @@ class User extends Component {
           className='home__wrap'
           style={{ height: getWindowHeight() }}
         >
-          <MyEditor />
+          <View className='item'
+            onClick={() => {
+              Taro.navigateTo({
+                url: "/pages/user/template"
+              })
+            }}
+          >
+            我的模板
+            <Text>></Text>
+          </View>
           <View className='exit'
             onClick={() => {
               Taro.setStorage({ key: 'token', data: '' })

+ 13 - 0
src/pages/user/user.scss

@@ -2,6 +2,19 @@
   background: #EDEDED;
 }
 
+.item {
+  width: 92%;
+  background: #FFFFFF;
+  margin: 20px auto;
+  padding: 30px;
+  border-radius: 20px;
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  justify-content: space-between;
+
+}
+
 .exit {
   width: 92%;
   background: red;

+ 4 - 5
src/utils/request.js

@@ -38,6 +38,9 @@ export default async function fetch(options) {
     if (status !== 1000) {
       if (status === 200004 || status === 1002) {
         // 登录失效
+        Taro.redirectTo({
+          url: '/pages/user-login/user-login'
+        })
         await updateStorage({})
       }
       return Promise.reject(res.data)
@@ -71,14 +74,10 @@ export default async function fetch(options) {
         icon: 'none'
       })
     }
-
     if ((err.status === 200004 || err.status === 1002) && autoLogin) {
-      Taro.reLaunch({
+      Taro.redirectTo({
         url: '/pages/user-login/user-login'
       })
-      // Taro.navigateTo({
-      //   url: '/pages/user-login/user-login'
-      // })
     }
 
     return Promise.reject({ message: defaultMsg, ...err })