MrShi
2024-12-01 a7db7823a897726e3692077729880f24a2c1314c
开发
已修改10个文件
49 ■■■■ 文件已修改
admin/.env 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/.env.production 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/contract/components/addCollectionBill.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/contract/components/terminateLease.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/contract/contractList.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/finance/bull.vue 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/finance/components/bullDetail.vue 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/finance/components/flowingWater.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/finance/payments.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/login.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/.env
@@ -4,10 +4,10 @@
VUE_APP_ROUTER_MODE = 'hash'
# 项目上下文路径
VUE_APP_CONTEXT_PATH = '/admin'
VUE_APP_CONTEXT_PATH = '/fn_admin'
# 接口前缀
VUE_APP_API_PREFIX = '/gateway_interface'
# 项目名称
VUE_APP_TITLE = '租赁平台'
VUE_APP_TITLE = '智慧场馆运维管理系统'
admin/.env.production
@@ -1,4 +1,4 @@
# 生产环境配置
NODE_ENV = 'production'
# VUE_APP_API_URL  = 'http://192.168.0.173/gateway_interface'
# VUE_APP_API_URL  = 'https://dmtest.ahapp.net/gateway_interface'
admin/src/views/contract/components/addCollectionBill.vue
@@ -37,8 +37,7 @@
                                type="daterange"
                                range-separator="至"
                                v-model="form.date"
                                :min-date="new Date(time.startDate)"
                                :max-date="new Date(time.endDate)"
                                :picker-options="pickerOptions"
                                @change="changeDate"
                                start-placeholder="开始日期"
                                end-placeholder="结束日期"
@@ -111,6 +110,7 @@
          billTypeCopy: 0,
          date: []
        },
        pickerOptions: {},
        time: {
          startDate: '',
          endDate: ''
@@ -146,6 +146,14 @@
        this.title = title
        this.time.startDate = time.startDate
        this.time.endDate = time.endDate
        this.pickerOptions = {
          disabledDate(time) {
            // 如果没有后面的 -8.64e7 就是不可以选择今天的
            const beginDate = new Date(time.startDate).getTime() - 8.64e7
            const endDate = new Date(time.endDate).getTime() - 8.64e7
            return beginDate > time.getTime() || endDate < time.getTime()
          }
        }
        this.getCompany()
        this.visible = true
        // 新建
admin/src/views/contract/components/terminateLease.vue
@@ -28,6 +28,7 @@
                            <el-date-picker
                                v-model="form.btDate"
                                type="date"
                                @change="changeBtDate"
                                value-format="yyyy-MM-dd"
                                placeholder="请选择">
                            </el-date-picker>
@@ -268,6 +269,9 @@
        this.title = title
        this.info = info
        this.form.id = info.id
        this.$nextTick(() => {
          this.$refs.form.resetFields()
        })
        this.info.canBackRentBills.forEach(item => {
          this.$set(item, 'receivableFeeCopy', item.receivableFee)
          this.$set(item, 'receivableFee', item.needReceivableFee)
admin/src/views/contract/contractList.vue
@@ -2,7 +2,7 @@
  <div class="main_app">
    <QueryForm v-model="filters" :query-form-config="queryFormConfig" @handleQuery="getList(1)" @clear="clear">
      <template #btns>
        <el-button>导出</el-button>
<!--        <el-button @click="exportData">导出</el-button>-->
      </template>
    </QueryForm>
    <div class="mt10">
@@ -135,10 +135,10 @@
    },
    handleSizeChange (capacity) {
      this.pagination.pageSize = capacity
    },
    exportData () {
    }
  }
}
</script>
<style>
</>
admin/src/views/finance/bull.vue
@@ -9,7 +9,7 @@
      <div class="btns">
        <el-button type="primary" @click="addOpen" icon="el-icon-plus"
          v-permissions="['business:ywpatrolline:create']">新建</el-button>
        <el-button @click="handleDetail" v-permissions="['business:ywpatrolline:create']">导出</el-button>
<!--        <el-button @click="handleDetail" v-permissions="['business:ywpatrolline:create']">导出</el-button>-->
      </div>
    </div>
    <el-table v-loading="loading" :data="list" stripe>
@@ -124,6 +124,11 @@
            label: '客户名称'
          },
          {
            filed: 'contractCode',
            type: 'input',
            label: '合同编号'
          },
          {
            filed: 'status',
            type: 'select',
            label: '账单状态',
admin/src/views/finance/components/bullDetail.vue
@@ -182,7 +182,7 @@
      </div>
    </div>
    <!--  创建流水  -->
    <FlowingWater ref="flowingWater" @success="getDetails" />
    <FlowingWater ref="flowingWater" @success="getDetails" @refresh="Refresh" />
  </GlobalWindow>
</template>
@@ -219,6 +219,9 @@
          this.visible = true
        })
    },
    Refresh () {
      this.$emit('success')
    },
    tabsClick(val) {
      this.activeTabs = val
    },
admin/src/views/finance/components/flowingWater.vue
@@ -144,6 +144,7 @@
              this.visible = false
              this.$tip.apiSuccess('创建成功')
              this.$emit('success')
              this.$emit('refresh')
            })
            .finally(() => {
              this.isWorking = false
admin/src/views/finance/payments.vue
@@ -2,7 +2,7 @@
  <div class="main_app">
    <QueryForm v-model="filters" :query-form-config="queryFormConfig" @handleQuery="getList(1)" @clear="clear" />
    <div class="mt20">
      <el-button v-permissions="['business:ywpatrolline:create']">导出</el-button>
<!--      <el-button v-permissions="['business:ywpatrolline:create']">导出</el-button>-->
    </div>
    <el-table v-loading="loading" :data="list" stripe>
      <el-table-column prop="customerName" label="客户名称" min-width="100" show-overflow-tooltip />
admin/src/views/login.vue
@@ -3,8 +3,8 @@
    <img src="@/assets/images/bg@2x.png" class="main_bg" alt="">
    <div class="login_wrap">
      <div class="login_img">
         <div class="h3">阜宁文体中心</div>
<!--        <div class="h3">智慧场馆运维管理系统</div>-->
<!--         <div class="h3">阜宁文体中心</div>-->
        <div class="h3">智慧场馆运维管理系统</div>
      </div>
      <div class="form_wrap">
        <div class="tabs">