|
|
@@ -145,6 +145,7 @@
|
|
|
<el-table-column label="到期时间" align="center" prop="limitTime" width="180"/>
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180"/>
|
|
|
<el-table-column label="更新时间" align="center" prop="updateTime" width="180"/>
|
|
|
+ <el-table-column v-if="'济南联志健康'==signProjectName" align="center" width="180" label="分公司配置商户号" prop="mchId" />
|
|
|
<!-- <el-table-column label="主机重启时间" align="center" prop="restartTime" width="180" />-->
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="220px">
|
|
|
<template slot-scope="scope">
|
|
|
@@ -732,11 +733,12 @@ import { cateList } from '@/api/his/packageCate'
|
|
|
import { getConfigByKey } from '@/api/system/config'
|
|
|
import { listDept } from '@/api/system/dept'
|
|
|
import { listAll } from '@/api/course/coursePlaySourceConfig'
|
|
|
-
|
|
|
+import{ getSignProjectName } from '@/api/course/qw/courseWatchLog'
|
|
|
export default {
|
|
|
name: 'Company',
|
|
|
data() {
|
|
|
return {
|
|
|
+ signProjectName:"",
|
|
|
redSubmit: false,
|
|
|
//分账参数
|
|
|
revenue:{
|
|
|
@@ -916,6 +918,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
+ getSignProjectName()
|
|
|
+ .then(res=>{
|
|
|
+ this.signProjectName = res.signProjectName;
|
|
|
+ })
|
|
|
+ .catch(res=>{console.log("getSignProjectName Err")})
|
|
|
this.getList()
|
|
|
this.getDicts('sys_company_status').then(response => {
|
|
|
this.statusOptions = response.data
|