Переглянути джерело

阳光村务:明细账列宽调整、负债表列宽调整

master
庞东旭 1 рік тому
джерело
коміт
6b4d40c088
2 змінених файлів з 8 додано та 4 видалено
  1. +3
    -3
      src/views/sunVillage_info/detailed_ledger.vue
  2. +5
    -1
      src/views/sunVillage_info/detailed_liabilities.vue

+ 3
- 3
src/views/sunVillage_info/detailed_ledger.vue Переглянути файл

@@ -51,7 +51,7 @@
<div class="vocher_content"> <div class="vocher_content">
<div class="vocher_cmain"> <div class="vocher_cmain">


<div style="width: 30%;">
<div style="width: 20%;">
<van-row class="vocher_mTitle" v-for="(item,index) in tableList" :key="index"> <van-row class="vocher_mTitle" v-for="(item,index) in tableList" :key="index">
<van-col :span="7">{{item.month}}</van-col> <van-col :span="7">{{item.month}}</van-col>
<van-col :span="7">{{item.day}}</van-col> <van-col :span="7">{{item.day}}</van-col>
@@ -499,7 +499,7 @@ export default {
height: 110px; height: 110px;
background: #2facfe; background: #2facfe;
border-radius: 8px; border-radius: 8px;
width: 30%;
width: 20%;
.year_m{ .year_m{
border-right: 1px solid #fff; border-right: 1px solid #fff;
.year_text{ .year_text{
@@ -517,7 +517,7 @@ export default {
justify-content: center; justify-content: center;
padding-bottom: 10px; padding-bottom: 10px;
.ubs{ .ubs{
width: 94px;
width: 64px;
height: 43px; height: 43px;
background: #cbeaff; background: #cbeaff;
font-size: 30px; font-size: 30px;


+ 5
- 1
src/views/sunVillage_info/detailed_liabilities.vue Переглянути файл

@@ -157,10 +157,14 @@
this.initPage(); this.initPage();
}, },
onConfirm(time) { onConfirm(time) {
console.log(this.format(time,'yyyy-MM'))
this.date = this.format(time,'yyyy年MM月'); this.date = this.format(time,'yyyy年MM月');
this.searchDate.bookDate = this.format(time,'yyyy-MM'); this.searchDate.bookDate = this.format(time,'yyyy-MM');
this.initPage(); this.initPage();
this.showPickerTime = false; this.showPickerTime = false;
let dealDays = this.searchDate.bookDate.split("-");
this.accountingYear = dealDays[0]; //当前帐套年
this.accountingMonth = dealDays[1]; //当前帐套月
}, },
onConfirmExpression(data){ onConfirmExpression(data){
this.searchDate.templateName = data.name; this.searchDate.templateName = data.name;
@@ -214,7 +218,7 @@
overflow-x: scroll; overflow-x: scroll;
.datagrid { .datagrid {
min-height: 100PX; min-height: 100PX;
width: 300%;
width: 250%;
.header { .header {
background: #f8f8f9; background: #f8f8f9;
font-weight: bold; font-weight: bold;


Завантаження…
Відмінити
Зберегти