Bläddra i källkod

ad protocol page

张延森 5 år sedan
förälder
incheckning
36956feb1a

+ 3
- 3
project.config.json Visa fil

@@ -48,9 +48,9 @@
48 48
 			"list": [
49 49
 				{
50 50
 					"id": -1,
51
-					"name": "pages/houseList/index",
52
-					"pathName": "onlineSelling/pages/houseList/index",
53
-					"query": "id=6&buildingId=7a46e04f15c324fa9cf44ce27f9573c5",
51
+					"name": "pages/protocol/index",
52
+					"pathName": "onlineSelling/pages/protocol/index",
53
+					"query": "",
54 54
 					"scene": null
55 55
 				},
56 56
 				{

+ 1
- 0
src/app.js Visa fil

@@ -132,6 +132,7 @@ class App extends Component {
132 132
           'pages/detail/index',
133 133
           'pages/detail/resultPage',
134 134
           'pages/screenHouse/index',
135
+          'pages/protocol/index',
135 136
         ],
136 137
       }
137 138
     ],

+ 28
- 0
src/onlineSelling/pages/protocol/index.js Visa fil

@@ -0,0 +1,28 @@
1
+import Taro, { Component } from '@tarojs/taro'
2
+import { View, RichText, ScrollView } from '@tarojs/components'
3
+
4
+export default class Protocol extends Component {
5
+  state = {
6
+    content: `
7
+      <p>New Year in china is an important festival. Nearly everyone thinks highly of it. No matter where people go and no matter how far they go, they will try their best to go home enjoying family time. And no matter what difficulty or trouble they are experiencing, they will put aside for the period of time. In every house, the main atmosphere is happiness. What do people usually do during the New Year time? They will prepare a big meal together on New Year’s Eve. In the following days, they will visit their relatives. their relatives also will pay a return visit.</p>
8
+      <p>One of the most important things that they will not forget to do is to worship their ancestors. This is Chinese New Year New Year in china is an important festival. Nearly everyone thinks highly of it.</p>
9
+      <p>No matter where people go and no matter how far they go, they will try their best to go home enjoying family time. And no matter what difficulty or trouble they are experiencing, they will put aside for the period of time. In every house, the main atmosphere is happiness. </p>
10
+      <p>What do people usually do during the New Year time? They will prepare a big meal together on New Year’s Eve. In the following days, they will visit their relatives. their relatives also will pay a return visit. One of the most important things that they will not forget to do is to worship their ancestors.</p>
11
+    `,
12
+  }
13
+
14
+
15
+  render() {
16
+    const { content } = this.state
17
+
18
+    return (
19
+      <View className="protocal-box">
20
+        <ScrollView scrollY className="content">
21
+          <RichText nodes={content}/>
22
+        </ScrollView>
23
+        <View></View>
24
+        {/* <todo /> */}
25
+      </View>
26
+    )
27
+  }
28
+}

+ 12
- 0
src/onlineSelling/pages/protocol/index.scss Visa fil

@@ -0,0 +1,12 @@
1
+.protocal-box {
2
+  width: 100vw;
3
+  height: 100vh;
4
+  overflow: hidden;
5
+
6
+  .content {
7
+    height: 990px;
8
+    margin-top: 48px;
9
+    width: 100%;
10
+    padding: 40px;
11
+  }
12
+}