新增兑换任务名称和兑换方式

backup_master_20231211
doublekou 10 months ago
parent cfc712c88b
commit c72aa8a36a

@ -8,12 +8,16 @@
ENV = 'development'
# 接口地址 http://8.130.96.163:8899
VUE_APP_BASE_API = 'http://39.100.77.21:8899'
# 线上
VUE_APP_BASE_API = 'https://baiyee.vip'
# 测试
# VUE_APP_BASE_API = 'http://39.100.77.21:8899'
# VUE_APP_BASE_API = 'http://172.18.0.225:8899'//xy
# # VUE_APP_BASE_API = 'http://172.18.0.228:8899'//ts
# ts
VUE_APP_BASE_API = 'http://172.18.0.228:8899'
#VUE_APP_BASE_API = 'http://172.18.1.8:8899jt'
# VUE_APP_BASE_API = 'http://39.100.77.21:8899'
VUE_APP_BASE_IMG = 'http://39.100.77.21:8899'
# VUE_APP_BASE_IMG = 'https://baiyee.vip'
# VUE_APP_BASE_IMG = 'http://39.100.77.21:8899'
VUE_APP_WS_API = 'wss://baiyee.vip'
# 是否启用 babel-plugin-dynamic-import-node插件

@ -9,7 +9,8 @@ ENV = 'production'
# 如果使用 Nginx 代理后端接口,那么此处需要改为 '/',文件查看 Docker 部署篇Nginx 配置
# 接口地址,注意协议,如果你没有配置 ssl需要将 https 改为 http
VUE_APP_BASE_API = 'http://39.100.77.21:8899'
VUE_APP_BASE_IMG = 'http://39.100.77.21:8899'
VUE_APP_BASE_API = 'https://baiyee.vip'
VUE_APP_BASE_IMG = 'https://baiyee.vip'
# http://39.100.77.21:8899
# 如果接口是 http 形式, wss 需要改为 ws
VUE_APP_WS_API = 'wss://baiyee.vip'

@ -23,6 +23,11 @@
<el-table ref="table" v-loading="crud.loading" :data="crud.data" :header-cell-style="{'text-align':'left'}" style="width: 100%;">
<el-table-column :show-overflow-tooltip="true" prop="companyName" label="公司名称" />
<el-table-column :show-overflow-tooltip="true" prop="taskName" label="任务名称" />
<el-table-column :show-overflow-tooltip="true" prop="deliveryTaskName" label="兑换任务名称" />
<el-table-column :show-overflow-tooltip="true" prop="exchangeType" label="兑换方式">
<template slot-scope="scope">
<span>{{ scope.row.exchangeType===1?'方式一':'方式二' }}</span>
</template></el-table-column>
<el-table-column :show-overflow-tooltip="true" prop="clueNum" label="资源条数" />
<el-table-column :show-overflow-tooltip="true" prop="createTime" width="135" label="创建日期">
<template slot-scope="scope">

Loading…
Cancel
Save