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

fix: bugfix

上级 af7d58c2
...@@ -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=B638EE700AD348B8B432E7DF53A48E87 VUE_APP_TOKEN=26D1BA0C935C4C92BB5BB33EF61D4AD9
...@@ -222,10 +222,9 @@ ...@@ -222,10 +222,9 @@
type="primary" type="primary"
size="small" size="small"
class="btn" class="btn"
@click="callAssistant(scope.row,)" @click="callAssistant(scope.row)"
> >
{{scope.row.consultRoadType == 2 ? '呼叫居民' : '呼叫助诊医生'}} {{ scope.row.consultRoadType == 2 ? '呼叫居民' : '呼叫助诊医生' }}
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
...@@ -250,9 +249,9 @@ ...@@ -250,9 +249,9 @@
</template> </template>
<script> <script>
import { DIAGNOS_LIST_NEW } from '@/utils/GeneralData/diagnosis-list-new'; import { DIAGNOS_LIST_NEW } from '@/utils/GeneralData/diagnosis-list-new';
import TabSet from '@/components/common/tab-set'; import TabSet from '@/components/common/tab-set';
export default { export default {
components: { components: {
TabSet, TabSet,
}, },
...@@ -407,9 +406,9 @@ ...@@ -407,9 +406,9 @@
this.$emit('changeTime', row); this.$emit('changeTime', row);
}, },
// 发起问诊 // 发起问诊
// call(row) { call(row) {
// this.$emit("call", row); this.$emit('call', row);
// }, },
// 设为已完成 // 设为已完成
doneHandle(row) { doneHandle(row) {
this.$emit('doneHandle', row); this.$emit('doneHandle', row);
...@@ -422,9 +421,9 @@ ...@@ -422,9 +421,9 @@
}, },
callAssistant(row) { callAssistant(row) {
this.$emit('callAssistant', row); this.$emit('callAssistant', row);
}
}, },
}; },
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
......
...@@ -70,7 +70,7 @@ module.exports = { ...@@ -70,7 +70,7 @@ module.exports = {
port: 8080, port: 8080,
proxy: { proxy: {
'/proxy': { '/proxy': {
target: 'https://dev-sc.yunqueyi.com/', target: 'https://test1-sc.yunqueyi.com/',
ws: false, ws: false,
changeOrigin: true, changeOrigin: true,
secure: true, secure: true,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册