test2023h5 commited on
Commit
66c36aa
Β·
verified Β·
1 Parent(s): 013409d

Update locales/zh/pages/Content_Display/demo_table.py

Browse files
locales/zh/pages/Content_Display/demo_table.py CHANGED
@@ -210,40 +210,28 @@ import simplestart as ss
210
  data = {'name': ['πŸ‘§πŸ» Alice', 'πŸ‘¦πŸ» Bob', 'πŸ‘¦πŸ» Charlie'],
211
  'age': [25, 30, 35],
212
  'city': [':sunny: New York', ':cloud: San Francisco', ':sunny: Los Angeles'],
213
- 'health':[90,80,90]
214
- }
 
215
  df = pd.DataFrame(data)
216
 
217
- vuestr = \'''
218
- <template>
219
- <v-row>
220
- <v-rating
221
- v-model="rating" density="compact" color="orange" half-increments></v-rating>
222
- <v-chip variant="text">{{item.value}}</v-chip>
223
- </v-row>
224
- </template>
 
 
 
 
 
225
 
226
- <script>
227
 
228
- module.exports = {
229
- props:["item"],
230
 
231
- data () {
232
- return {
233
- rating: 3
234
- }
235
- },
236
- methods: {
237
- //todo
238
- },
239
- mounted: function () {
240
- this.rating = this.item.value/20
241
- },
242
- }
243
- </script>
244
- \'''
245
-
246
- ss.table(df, custom_columns = ["city"], vue_columns = ["health"], vue_code = vuecode)
247
  ```
248
  ''')
249
 
 
210
  data = {'name': ['πŸ‘§πŸ» Alice', 'πŸ‘¦πŸ» Bob', 'πŸ‘¦πŸ» Charlie'],
211
  'age': [25, 30, 35],
212
  'city': [':sunny: New York', ':cloud: San Francisco', ':sunny: Los Angeles'],
213
+ 'health':[90,80,60]
214
+ }
215
+
216
  df = pd.DataFrame(data)
217
 
218
+ cols = ss.columns([70,"flex:30; border-left:1px solid lightgray"], design=True, style="border:1px solid lightgray")
219
+
220
+
221
+ jscode = """
222
+ //console.log(test)
223
+ if(item.col == "city")
224
+ return md(item.value);
225
+ else{
226
+ var rating = item.value/20
227
+ return '<el-rate :model-value="' + rating + '" disabled />'
228
+ }
229
+ return res;/// "<el-tag>" + item.value + "</el-tag>";
230
+ """
231
 
232
+ mytable_ex = ss.table(df, custom_fields = ["city", "health"], cell_render = jscode, border = True)
233
 
 
 
234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  ```
236
  ''')
237