changxin commited on
Commit
2e4c9f7
1 Parent(s): bb92751

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -192,6 +192,7 @@ py_exe=d_t.to_pandas()'''
192
  with gr.TabItem("date转换"):
193
  dt_input=gr.Textbox(label='请输入需要处理的日期字符串')
194
  dt_button=gr.Button("转换日期>>")
195
- dt_button.click(fx_rq,dt_input,"text",api_name='date_chinese')
 
196
 
197
  demo.launch()
 
192
  with gr.TabItem("date转换"):
193
  dt_input=gr.Textbox(label='请输入需要处理的日期字符串')
194
  dt_button=gr.Button("转换日期>>")
195
+ dt_output=gr.Textbox(label='输出处理的日期字符串')
196
+ dt_button.click(fx_rq,dt_input,dt_output,api_name='date_chinese')
197
 
198
  demo.launch()