阿里云视频点播功能

This commit is contained in:
xiezhijun
2021-04-28 20:48:02 +08:00
parent bab4569b43
commit 90126a3d4c
13 changed files with 324 additions and 15 deletions

View File

@ -49,6 +49,7 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button

View File

@ -83,6 +83,26 @@
/>
</el-select>
</el-form-item>
<el-form-item label="病史体征" prop="physicalSignsId">
<el-select
v-model="queryParams.physicalSignsId"
filterable
clearable
allow-create
default-first-option
placeholder="请选择病史体征"
>
<el-option
v-for="physicalSign in physicalSignsList"
:key="physicalSign.id"
:label="physicalSign.name"
:value="physicalSign.id"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="cyan" icon="el-icon-search" @click="handleQuery"
>搜索</el-button
@ -434,6 +454,7 @@ import ContractDrawer from "@/components/ContractDrawer";
import HeatStatisticsDrawer from "@/components/HeatStatisticsDrawer";
import RecipesPlanDrawer from "@/components/RecipesPlanDrawer";
import CustomerPunchLogDrawer from "@/components/PunchLog/CustomerPunchLog";
import { listPhysicalSigns } from "@/api/custom/physicalSigns";
import { mapGetters } from "vuex";
export default {
@ -483,6 +504,7 @@ export default {
assistantDietitian: null,
afterDietitian: null,
salesman: null,
physicalSignsId: null
},
// 表单参数
form: {},
@ -524,6 +546,8 @@ export default {
return time.getTime() > Date.now();
},
},
//病史体征
physicalSignsList:[]
};
},
created() {
@ -545,6 +569,9 @@ export default {
}
});
this.getList();
listPhysicalSigns().then(response => {
this.physicalSignsList = response.rows;
});
},
computed: {
isPartner() {