Browse Source

付费规则调整

qymljy 1 year ago
parent
commit
0cc836cbe2

+ 1 - 1
src/SManagement/user/pay-orders/index.vue

@@ -9,7 +9,7 @@
                 v-model="param.content.where.condition" @keyup.native.enter="listData(param.content.pageNumber = 1)" @clear="listData(param.content.pageNumber = 1)"
                 size="small" class="input-with-select inline-16 layout_search__panel" clearable>
       </el-input>
-      <tableLayout style="margin-top: 20px" :layout="tablecols" :data="list" :opwidth="200" :custom="true"  height="calc(100vh - 340px)" fixedName="operation">
+      <tableLayout style="margin-top: 20px" :layout="tablecols" :data="list" :opwidth="200" :custom="true"  :height="'calc(100vh - 340px)'" fixedName="operation">
         <template v-slot:customcol="scope">
           <span v-if="scope.column.columnname === 'ispaid'" >
             <span v-if="scope.column.data[scope.column.columnname] == '0'" style="color: #4f7bfd">未付费</span>

+ 4 - 3
src/SManagement/user/pay-orders/modules/add.vue

@@ -84,7 +84,7 @@
           <span>选择付费账号:</span>
         </el-col>
         <el-col :span="24" class="div_top" v-if="sys_payincidence == '1'">
-          <tableLayout ref="account1" :layout="tablecolsAccount" :data="list"  :opwidth="200" :custom="true"  height="240px" fixedName="operation">
+          <tableLayout ref="account1" :layout="tablecolsAccount" :data="list"  :opwidth="200" :custom="true"  :height="'240px'" fixedName="operation">
             <template v-slot:customcol="scope">
               <span v-if="scope.column.columnname === 'operation'" ></span>
               <span v-else-if="scope.column.columnname === 'enddate'">
@@ -100,7 +100,7 @@
           </tableLayout>
         </el-col>
         <el-col :span="24" class="div_top" v-if="sys_payincidence == '2'">
-          <tableLayout ref="account2" :layout="tablecolsMain" :data="list"  :opwidth="200" :custom="true"  height="370px" fixedName="operation">
+          <tableLayout ref="account2" :layout="tablecolsMain" :data="list"  :opwidth="200" :custom="true"  :height="'370px'" fixedName="operation">
             <template v-slot:customcol="scope">
               <span v-if="scope.column.columnname === 'operation'" ></span>
               <span v-else-if="scope.column.columnname === 'enddate'">
@@ -268,8 +268,8 @@ export default {
             this.userLeader = item.userid
           }
         }
-
       })
+      this.userids = []
       this.list.forEach(item=>{
         if (item.checkRow){
           this.userids.push({
@@ -287,6 +287,7 @@ export default {
     },
     /*选择版本*/
     onCheck(val){
+
       this.userLeader = ''
       this.userids = []
       this.versionList.forEach(item=>{

+ 1 - 1
src/SManagement/user/pay-orders/modules/detail.vue

@@ -16,7 +16,7 @@
           <span >付费状态:
              <span v-if="list.ispaid == '0'" style="color: red">未付费</span>
             <span v-else-if="list.ispaid == '3'" style="color: #afb0be">已取消</span>
-              <span v-else>已付费</span>
+              <span v-else style="color: green">已付费</span>
           </span>
 
         </el-col>