feat: modify font size
This commit is contained in:
parent
fd3010e264
commit
5eda0bcc0c
|
|
@ -23,17 +23,16 @@
|
|||
<t-th>操作</t-th>
|
||||
</t-tr>
|
||||
<span @click="choose(items)" v-for="items in tableList" :key="items.userId" class="t-tr-span">
|
||||
<t-tr font-size="17" >
|
||||
<t-td>{{items.serialno}}</t-td>
|
||||
<t-td>{{items.name}}</t-td>
|
||||
<t-td>{{items.model}}</t-td>
|
||||
<t-td>{{items.type}}</t-td>
|
||||
<t-td>{{items.deptName}}</t-td>
|
||||
<t-td style="color: #007AFF;" ><button @click="choose(items)" type="primary" plain="true">选择</button></t-td>
|
||||
</t-tr>
|
||||
<t-tr font-size="17" >
|
||||
<t-td>{{items.serialno}}</t-td>
|
||||
<t-td>{{items.name}}</t-td>
|
||||
<t-td>{{items.model}}</t-td>
|
||||
<t-td>{{items.type}}</t-td>
|
||||
<t-td>{{items.deptName}}</t-td>
|
||||
<t-td style="color: #007AFF;" ><button @click="choose(items)" type="primary" plain="true">选择</button></t-td>
|
||||
</t-tr>
|
||||
</span>
|
||||
<view v-if="show_nodata" class="nodata" style="text-align: center;font-size: 18px;color: #999;line-height: 40px;">暂无数据</view>
|
||||
|
||||
</t-table>
|
||||
<uni-pagination show-icon="true" :pageSize="search_data.pagesize" :total="total_pages" :current="search_data.pageno" class="pagination" @change="changePages"></uni-pagination>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
<button @click="search(1)" type="primary">查询</button>
|
||||
</view>
|
||||
<view class="table_container">
|
||||
<wyb-table @change="changeSelect" ref="table" :enableCheck="enableCheck" :headers="headers" :contents="tableList" />
|
||||
<wyb-table @change="changeSelect" ref="table" :enableCheck="enableCheck" :headers="headers" :contents="tableList" style="font-size: 16px;" />
|
||||
<view v-if="show_nodata" class="nodata" style="text-align: center;font-size: 18px;color: #999;line-height: 40px;">暂无数据</view>
|
||||
<uni-pagination show-icon="true" :pageSize="search_data.pagesize" :total="total_pages" :current="search_data.pageno" class="pagination" @change="changePages"></uni-pagination>
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -51,7 +51,6 @@
|
|||
: textAlign === 'left'
|
||||
? 'flex-start'
|
||||
: 'flex-end',
|
||||
fontSize: fontSize[0] + 'rpx',
|
||||
color: headerFtColor,
|
||||
padding: padding[0] + 'rpx ' + (padding[1] || padding[0]) + 'rpx',
|
||||
backgroundColor: headerBgColor,
|
||||
|
|
@ -96,7 +95,6 @@
|
|||
: textAlign === 'left'
|
||||
? 'flex-start'
|
||||
: 'flex-end',
|
||||
fontSize: fontSize[0] + 'rpx',
|
||||
fontWeight: headerWeight ? 'bold' : 'normal',
|
||||
color: headerFtColor,
|
||||
padding: padding[0] + 'rpx ' + (padding[1] || padding[0]) + 'rpx',
|
||||
|
|
@ -172,7 +170,6 @@
|
|||
: textAlign === 'left'
|
||||
? 'flex-start'
|
||||
: 'flex-end',
|
||||
fontSize: (fontSize[1] || fontSize[0]) + 'rpx',
|
||||
minHeight: (minHeight[1] || minHeight[0]) + 'rpx',
|
||||
padding: padding[0] + 'rpx ' + (padding[1] || padding[0]) + 'rpx',
|
||||
borderRight: '1px solid' + borderColor,
|
||||
|
|
@ -200,7 +197,6 @@
|
|||
color: checkerColor,
|
||||
backgroundColor: checkerBgColor,
|
||||
paddingTop: (fontSize[1] || fontSize[0]) * 0.15 + 'rpx',
|
||||
fontSize: (fontSize[1] || fontSize[0]) + 'rpx',
|
||||
}"
|
||||
/>
|
||||
</view>
|
||||
|
|
@ -218,7 +214,6 @@
|
|||
: textAlign === 'left'
|
||||
? 'flex-start'
|
||||
: 'flex-end',
|
||||
fontSize: (fontSize[1] || fontSize[0]) + 'rpx',
|
||||
textDecoration: autoTextDecoration(cIndex, hIndex),
|
||||
color: autoContentColor(cIndex, hIndex),
|
||||
minHeight: (minHeight[1] || minHeight[0]) + 'rpx',
|
||||
|
|
@ -257,7 +252,6 @@
|
|||
: textAlign === 'left'
|
||||
? 'flex-start'
|
||||
: 'flex-end',
|
||||
fontSize: (fontSize[1] || fontSize[0]) + 'rpx',
|
||||
minHeight: (minHeight[1] || minHeight[0]) + 'rpx',
|
||||
padding: padding[0] + 'rpx ' + (padding[1] || padding[0]) + 'rpx',
|
||||
borderRight: '1px solid' + borderColor,
|
||||
|
|
@ -280,7 +274,6 @@
|
|||
: textAlign === 'left'
|
||||
? 'flex-start'
|
||||
: 'flex-end',
|
||||
fontSize: (fontSize[1] || fontSize[0]) + 'rpx',
|
||||
color: contentFtColor,
|
||||
minHeight: (minHeight[1] || minHeight[0]) + 'rpx',
|
||||
padding: padding[0] + 'rpx ' + (padding[1] || padding[0]) + 'rpx',
|
||||
|
|
|
|||
|
|
@ -1112,7 +1112,7 @@
|
|||
|
||||
.table_tr1 {
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
font-size: 17px;
|
||||
width: 100%;
|
||||
height: 16.65%;
|
||||
color: #fff;
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ export const globalInterceptor = {
|
|||
*/
|
||||
export const config = {
|
||||
// baseURL: "/gyhl",
|
||||
baseURL:"http://36.137.58.70:52/gyhl/",
|
||||
baseURL:"http://36.213.68.14:32/gyhl",
|
||||
// baseURL: 'http://120.132.17.220:8888',
|
||||
// baseURL: 'http://192.168.1.50:8888',
|
||||
// baseURL: "http://36.212.152.5:32/gyhl",
|
||||
|
|
|
|||
Loading…
Reference in New Issue