Browse Source

修改字段显示问题

lex-xin 4 years ago
parent
commit
49af2a45da

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


+ 1 - 1
dist/static/css/chunk-c7b768fa.50f65069.css → dist/static/css/chunk-ac74401c.6a3a5314.css

@@ -1 +1 @@
-.pagination-container[data-v-31cb099a]{background:#fff;padding:32px 16px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pagination-container.hidden[data-v-31cb099a]{display:none}.studenTable[data-v-08791708]{height:300px;overflow:auto}.infoMsg[data-v-08791708]{margin:30px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:center}.infoMsg .title[data-v-08791708]{color:#999;font-size:14px;line-height:30px;min-width:100px}.infoMsg .status[data-v-08791708]{font-size:20px}.infoMsg .left[data-v-08791708]{width:200px;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:200px}.infoMsg .left[data-v-08791708],.infoMsg .right[data-v-08791708]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-direction:normal;height:60px}.infoMsg .right[data-v-08791708]{text-align:center;line-height:30px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.infoMsg .right .expectBox[data-v-08791708]{width:220px;border-right:1px solid #ccc}.infoMsg .right .expectBox[data-v-08791708]:last-child{border-right:none!important}.infoMsg .right .expectBox.first[data-v-08791708]{width:300px}.wrap[data-v-08791708]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.wrap div[data-v-08791708]{margin-right:20px}
+.pagination-container[data-v-31cb099a]{background:#fff;padding:32px 16px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pagination-container.hidden[data-v-31cb099a]{display:none}.studenTable[data-v-5c2a3883]{height:300px;overflow:auto}.infoMsg[data-v-5c2a3883]{margin:30px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:center}.infoMsg .title[data-v-5c2a3883]{color:#999;font-size:14px;line-height:30px;min-width:100px}.infoMsg .status[data-v-5c2a3883]{font-size:20px}.infoMsg .left[data-v-5c2a3883]{width:200px;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:200px}.infoMsg .left[data-v-5c2a3883],.infoMsg .right[data-v-5c2a3883]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-direction:normal;height:60px}.infoMsg .right[data-v-5c2a3883]{text-align:center;line-height:30px;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.infoMsg .right .expectBox[data-v-5c2a3883]{width:220px;border-right:1px solid #ccc}.infoMsg .right .expectBox[data-v-5c2a3883]:last-child{border-right:none!important}.infoMsg .right .expectBox.first[data-v-5c2a3883]{width:300px}.wrap[data-v-5c2a3883]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.wrap div[data-v-5c2a3883]{margin-right:20px}

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.b2afc418.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-ac74401c.8a44278d.js


+ 5 - 6
src/views/resetTeaming/components/strudentPayInfo.vue

@@ -190,7 +190,7 @@
                            label="是否开启缴费">
             <template slot-scope="scope">
               <div>
-                {{scope.row.open?'是':'否'}}
+                {{ scope.row.open ? '是' : '否' }}
               </div>
             </template>
           </el-table-column>
@@ -407,15 +407,14 @@ export default {
           this.searchForm.id = this.id;
           this.searchForm.page = this.rules.page;
           this.searchForm.rows = this.rules.limit
-          getmusicGroupPaymentCalenderDetail(this.searchForm).then(res => {
-            if (res.code == 200) {
-              this.rules.total = res.data.total;
-              this.tableList = res.data.rows;
+          getmusicGroupPaymentCalenderDetail(this.searchForm).then(payment => {
+            if (payment.code == 200) {
+              this.rules.total = payment.data.total;
+              this.tableList = payment.data.rows;
               if (this.info.paymentStatus == 1) {
                 this.tableList = this.tableList.map(item => {
                   item.startPaymentDate = this.info.startPaymentDate
                   item.deadlinePaymentDate = this.info.deadlinePaymentDate
-                  item.open = 1;
                   return item;
                 })
               }

Some files were not shown because too many files changed in this diff