doum
6 天以前 3f2a7cb1dab1b9dda4a5667675672f171c793987
支付宝支付ddd
已修改3个文件
22 ■■■■ 文件已修改
admin/src/components/business/OperaShopInfoWindow.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/business/driverVerification.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/business/sysParams.vue 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/components/business/OperaShopInfoWindow.vue
@@ -292,6 +292,7 @@
    return {
      activeTab: 'performance',
      storeInfo: {},
      visible:false,
      searchForm: {
        orderNo: '',
        goodsInfo: '',
@@ -312,6 +313,11 @@
    })
  },
  methods: {
    handleDateChange (val) {
      this.searchForm.createStartTime = val ? val[0] : ''
      this.searchForm.createEndTime = val ? val[1] : ''
      this.search()
    },
    open (title, row) {
      this.searchForm.memberId = row.id
      detail(row.id)
admin/src/views/business/driverVerification.vue
@@ -50,7 +50,7 @@
            <span style="color: #13ce66;" v-else >审批通过</span>
          </template>
        </el-table-column>
        <el-table-column label="状态" min-width="80px">
        <!--        <el-table-column label="状态" min-width="80px">
          <template slot-scope="{row}">
            <el-switch
              @change="handleStatusChange($event, row)"
@@ -61,7 +61,7 @@
              :inactive-value="1"
            ></el-switch>
          </template>
        </el-table-column>
                </el-table-column>-->
        <el-table-column label="操作" min-width="100" fixed="right">
          <template slot-scope="{row}">
            <el-button type="text" @click="handleDetail(row)">详情</el-button>
admin/src/views/business/sysParams.vue
@@ -1,7 +1,7 @@
<template>
  <TableLayout>
    <template v-slot:table-wrap>
      <div class="params-container">
      <div class="params-container" :style="' height: '+contentHeight+'px;'">
      <div class="section">
        <h3 class="section-title">司机规则</h3>
        <div class="form-item">
@@ -85,6 +85,7 @@
  components: { TableLayout },
  data () {
    return {
      contentHeight: 600,
      form: {
        autoCancelTime: '',
        autoConfirmReceipt: '',
@@ -108,6 +109,7 @@
  created () {
    this.loadData()
    this.loadUserlist()
    this.contentHeight =  window.innerHeight -110;
  },
  methods: {
    loadUserlist () {
@@ -160,6 +162,14 @@
<style scoped>
.params-container {
  padding: 20px;
  overflow: auto;
  display: block;
}
/deep/ .el-main{
  width: 100%;
//height: 100%;
  overflow-y: auto  !important ;
  height: calc(100% - 94px);
}
.section {
  margin-bottom: 40px;