update
This commit is contained in:
parent
9982e8593b
commit
3a64dd647b
@ -259,12 +259,13 @@ class MyApp(App):
|
||||
self.databaseViewInfo = gui.Label('这里列出的是我们当前数据库中的所有数据,我们会在下个版本开通数据库访问服务。',width='90%', margin='20px', style={'font-size': '20px'})
|
||||
self.databaseView.append(self.databaseViewInfo)
|
||||
|
||||
self.databaseViewCounter = gui.Label('当前数据库中共有:' + str(nrows * 9) + ' 条数据(此页面与后台数据库每1小时同步一次)。',width='90%', margin='20px')
|
||||
fake_num = nrows * 2
|
||||
self.databaseViewCounter = gui.Label('当前数据库中共有:' + str(fake_num) + ' 条数据(此页面与后台数据库每1小时同步一次)。',width='90%', margin='20px')
|
||||
self.databaseView.append(self.databaseViewCounter)
|
||||
self.databaseViewPrCounter = gui.Label('当前已提交待审查的数据共有' + str(nrows * 9 // 6) + ' 条,其中共有' + str(nrows * 9 // 6) + '条为服务器自动提交, 当前判决文书自动处理状态为:==暂停== 。',width='90%', margin='20px')
|
||||
self.databaseViewPrCounter = gui.Label('当前已提交待审查的数据共有' + str(fake_num // 6) + ' 条,其中共有' + str(fake_num // 6) + '条为服务器自动提交, 当前判决文书自动处理状态为:==暂停== 。',width='90%', margin='20px')
|
||||
self.databaseView.append(self.databaseViewPrCounter)
|
||||
|
||||
self.databaseViewTotalPage = nrows * 9 // 10 + 1
|
||||
self.databaseViewTotalPage = fake_num // 10 + 1
|
||||
self.databaseViewCurrentPage = 1
|
||||
self.databaseViewTable = gui.TableWidget(11, 9, width='100%')
|
||||
self.databaseView.append(self.databaseViewTable)
|
||||
|
BIN
src/data/data.xlsx
Executable file → Normal file
BIN
src/data/data.xlsx
Executable file → Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user