提交 77715393 编写于 作者: xinglee23's avatar xinglee23

Merge branch 'release' of...

Merge branch 'release' of 192.168.110.53:com.pica.cloud.education.frontend/pica-admin-consultation into release
NODE_ENV=development NODE_ENV=development
# baseUrl # baseUrl
BASE_URL=/pica-admin-consultation/ BASE_URL=/consultation/pica-admin-consultation/
# 路由 base # 路由 base
VUE_APP_BASE_ROUTE_URL=/consultation/pica-admin-consultation/ VUE_APP_BASE_ROUTE_URL=/consultation/pica-admin-consultation/
......
...@@ -17,4 +17,4 @@ VUE_APP_IS_LOCAL=true ...@@ -17,4 +17,4 @@ VUE_APP_IS_LOCAL=true
VUE_APP_APPID=wxf4e66242d31c81c2 VUE_APP_APPID=wxf4e66242d31c81c2
#本地token #本地token
VUE_APP_TOKEN=BD84987E12C94A659DA95DE2BF177A76 VUE_APP_TOKEN=D321743AA7464709A42053132F5D2F8D
...@@ -37,11 +37,7 @@ module.exports = { ...@@ -37,11 +37,7 @@ module.exports = {
'spaced-comment': [2, 'always'], // 强制在注释中 // 或 /* 使用一致的空格 'spaced-comment': [2, 'always'], // 强制在注释中 // 或 /* 使用一致的空格
'array-bracket-spacing': [2, 'never'],// 指定数组的元素之间要以空格隔开(, 后面), never参数:[ 之后和 ] 之前不能带空格,always参数:[ 之后和 ] 之前必须带空格 'array-bracket-spacing': [2, 'never'],// 指定数组的元素之间要以空格隔开(, 后面), never参数:[ 之后和 ] 之前不能带空格,always参数:[ 之后和 ] 之前必须带空格
"space-before-blocks": 2, // if/function等的大括号之前需要有空格 "space-before-blocks": 2, // if/function等的大括号之前需要有空格
"vue/script-indent": ["error", 2, { // script标签缩进设置 "vue/script-indent": 'off',
"baseIndent": 1,
"switchCase": 0,
"ignores": []
}],
'no-undef-init': 2,// 禁止将变量初始化为 undefined,保存时会将let a = undefined变成let a 'no-undef-init': 2,// 禁止将变量初始化为 undefined,保存时会将let a = undefined变成let a
'semi': [2, 'always'],//强制结尾必须有分号; 'semi': [2, 'always'],//强制结尾必须有分号;
......
...@@ -92,10 +92,11 @@ export const messageSend = async (data) => { ...@@ -92,10 +92,11 @@ export const messageSend = async (data) => {
// diagnosis-list-new // diagnosis-list-new
export const getCountQuery = async () => { export const getCountQuery = async (params) => {
return request({ return request({
url: '/diagnose/admin/diagnose/countQuery', url: '/diagnose/admin/diagnose/countQuery',
method: 'get', method: 'post',
data: params
}); });
}; };
......
...@@ -963,26 +963,26 @@ ...@@ -963,26 +963,26 @@
</div> </div>
</template> </template>
<script> <script>
import uploadImg from '@/components/editor/upload-img';
import uploadMusic from '@/components/editor/upload-music';
import { import {
TYPE_LIST, diagnoseUpdate,
PAY_LIST, getAdminDiagnose,
SOURCE_LIST, getDiagnoseLog,
STATUS_LIST, getDoctorList,
CAR_LIST, } from '@/api/diagnosis';
SEX_LIST, import uploadImg from '@/components/editor/upload-img';
RELATION_LIST, import uploadMusic from '@/components/editor/upload-music';
D_S_LIST, import {
FOLLW_LIST, CAR_LIST,
} from '@/utils/constants'; D_S_LIST,
import { getBirth } from '@/utils/index'; FOLLW_LIST,
import { PAY_LIST,
getAdminDiagnose, RELATION_LIST,
getDoctorList, SEX_LIST,
getDiagnoseLog, SOURCE_LIST,
diagnoseUpdate, STATUS_LIST,
} from '@/api/diagnosis'; TYPE_LIST,
} from '@/utils/constants';
import { getBirth } from '@/utils/index';
const PAY_TYPE = { const PAY_TYPE = {
1: '自动付款', 1: '自动付款',
...@@ -1519,4 +1519,9 @@ ...@@ -1519,4 +1519,9 @@
} }
} }
} }
/deep/ .el-input.is-disabled .el-input__inner,
/deep/ .el-textarea.is-disabled .el-textarea__inner {
color: #666;
}
</style> </style>
...@@ -70,7 +70,7 @@ module.exports = { ...@@ -70,7 +70,7 @@ module.exports = {
port: 8080, port: 8080,
proxy: { proxy: {
'/proxy': { '/proxy': {
target: 'https://uat-sc.yunqueyi.com/', target: 'https://dev-sc.yunqueyi.com/',
ws: false, ws: false,
changeOrigin: true, changeOrigin: true,
secure: true, secure: true,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册