123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- <script lang="ts" setup>
- import CpmdHeader from '@/components/CpmdHeader.vue';
- import { queryScaleDetailApi } from '@/api/plan'
- import { ref, onMounted } from 'vue'
- import { userInfoStore } from '@/stores'
- import { useRoute, useRouter } from 'vue-router'
- import { userPlanApi, userPlanDetailApi } from '@/api/home';
- const userInfo = userInfoStore();
- const route = useRoute()
- const router = useRouter()
- //测试flag
- const flag = ref<string>('')
- //测试计划ID
- const planId = ref<string>('')
- //测试计划名称
- const planName = ref<string>('')
- //测试任务的类型
- const type = ref<string>('')
- //量表描述
- const detail = ref<string>('')
- //量表理论
- const theory = ref<string>('')
- //量表参考文献
- const reference = ref<string>('')
- //量表名称
- const scaleName = ref<string>('')
- //
- const planObj = ref<any>({})
- const isComplate = ref<string>()
- onMounted(() => {
- //修改 flag
- flag.value = route.params.flag as string;
- planId.value = route.params.planId as string;
- planName.value = route.params.planName as string;
- type.value = route.params.type as string;
- //获取传输过来的测评介绍
- //获取传输过来的类型
- //获取传输过来的flag
- //拿到以后根据根据flag查询
- if (type.value == '0') {
- queryScaleDetail()
- sclStatus()
- }
- })
- //在这个页面设置一下
- //查询scl90的状态是什么
- const sclStatus = async () => {
- //先判断是否是scl90
- //如果是的话---则判断是否状态已完成
- if (flag.value == "20210617140713") {
- //
- let userNo = ''
- //登录的话
- //判断当前是否有后台管理
- userNo = userInfo.userInfo.userNo
- //调用根据用户查询计划的API
- let res: any = await userPlanApi(userNo)
- for (let i = 0; i < res.data.length; i++) {
- if (res.data[i].id = planId.value) {
- planObj.value = res.data[i]
- }
- }
- //将list赋值进去
- planObj.value.list = [];
- let params = {
- planId: planObj.value.id,
- userNo: userInfo.userInfo.userNo
- }
- //调用详细的API
- let temp: any = await userPlanDetailApi(params)
- planObj.value.list = temp.data
- //循环list 查询到量表的状态
- for (let i = 0; i < planObj.value.list.length; i++) {
- if (planObj.value.list[i].flag == '20210617140713') {
- if (planObj.value.list[i].isCompleted == '0') {
- isComplate.value = planObj.value.list[i].isCompleted
- } else if (planObj.value.list[i].isCompleted == '1') {
- //此时应该判断--他后边还有需要做的吗 必做--不显示的量表--如果有状态改为2 --如果没有状态改为1
- let listTmp = []
- for (let j = 0; j < planObj.value.list.length; j++) {
- if (planObj.value.list[j].isDisplayed == '0' && planObj.value.list[j].isAvailable == '1' && planObj.value.list[j].isCompleted == '0') {
- listTmp.push('1')
- }
- }
- if (listTmp.length > 0) {
- isComplate.value = '2'
- } else {
- isComplate.value = '1'
- }
- }
- }
- }
- //得到list
- }
- //如果是1的状态 需要
- //判断当前scl90的状态是什么
- }
- const queryScaleDetail = async () => {
- //根据flag查询量表详情
- let res: any = await queryScaleDetailApi(flag.value)
- scaleName.value = res.data.name;
- detail.value = res.data.description;
- theory.value = res.data.theory;
- //参考文献
- reference.value = res.data.reference.split('//');
- }
- const startText = () => {
- //当;类型是0时、、跳转到量表测试界面
- if (type.value == '0') {
- //开始跳转到scal90测试界面
- router.push({
- name: 'scale',
- params: {
- planId: planId.value,
- planName: planName.value,
- flag: flag.value,
- flagName: scaleName.value,
- isComplate: isComplate.value
- }
- })
- }
- }
- //接受来自计划页面的参数
- //得到需要测试的类型
- //得到需要测试的flag
- //查询量表的描述
- //查询量表的文献
- </script>
- <template>
- <div class="home_header_out" ref="homeHeaderOut">
- <div class=" home_header_inner">
- <CpmdHeader />
- <div style="text-align: center;">
- <!-- <img class="xlts_img" style="margin-top:20px" src="../assets/home/other_text.png" /> -->
- </div>
- </div>
- <div class="kply">
- <div class="kply_inner">
- <div style="padding :20px 40px">
- <div class="cognize_title">
- {{ scaleName }}
- </div>
- <div class="cognize_img_out">
- <!-- <img src="../assets/cognize/c1.png" v-show="true" width=" 100px" height="100px"
- style="margin-right: 20px;" /> -->
- <!-- <img src="../assets/kepu/czscz_default.png" width=" 100px" style="margin-right: 20px;" /> -->
- <!-- <img src="../assets/kepu/czscz_active.png" v-show="true" width=" 100px" height="100px"
- style="margin-right: 20px;" /> -->
- <div class="cognize_des">
- <span class="cpjs">测评介绍:</span>
- <span class="cpjs_detail">{{ detail }}</span>
- </div>
- </div>
- <div class="yl_out">
- <span class="yl">原理:</span>
- <span class="yl_detail">{{ theory }}</span>
- </div>
- <div class=" scale_button">
- <el-row>
- <el-col :span="24" class="scale_button_inner">
- <div class="scale_button_self" @click="startText">开始测试</div>
- </el-col>
- </el-row>
- </div>
- <div class="ckwx">
- <div class="reference_title">参考文献:</div>
- <div v-for="item, index in reference" :key="index" class='reference_cal'>
- <div>[{{ index + 1 }}]</div>
- <div>{{ item }}</div>
- </div>
- </div>
- <!-- <div class=" scale_button">
- <el-row>
- <el-col :span="24" class="scale_button_inner">
- <div class="scale_button_self" @click="startText">开始测试</div>
- </el-col>
- </el-row>
- </div> -->
- </div>
- </div>
- </div>
- </div>
- </template>
- <style lang="scss">
- .cognize_real_out {
- background-color: #b64d4d;
- color: #41348a;
- position: fixed;
- z-index: 100;
- top: 0;
- width: 100vw;
- height: 100vh;
- }
- .home_header_out {
- padding-bottom: 60px;
- width: 100%;
- min-width: 1200px;
- background-image: url('../assets/home/bg_ty.png');
- background-repeat: no-repeat;
- background-size: contain;
- background-color: #B3F1DA; //估计是需要动态
- .home_header_inner {
- min-height: 1;
- left: 0;
- right: 0;
- margin: auto;
- width: 1200px;
- .xlts_img {
- height: 40px;
- }
- }
- .kply {
- width: 100%;
- margin-top: 20px;
- .kply_inner {
- min-height: 500px;
- left: 0;
- right: 0;
- margin: auto;
- width: 860px;
- // padding: 20px 20px;
- background-color: #ffffff;
- border-radius: 40px;
- .yl_out {
- margin-top: 10px;
- letter-spacing: 3px;
- .yl {
- color: #48D68E;
- font-weight: 700;
- font-size: 14px;
- line-height: 24px;
- }
- .yl_detail {
- font-size: 14px;
- letter-spacing: 3px;
- line-height: 24px;
- }
- }
- .ckwx {
- margin-top: 10px;
- .reference_title {
- color: #a9a9a9;
- font-size: 14px;
- }
- .reference_cal {
- display: flex;
- width: 100%;
- color: #a9a9a9;
- font-size: 14px;
- letter-spacing: 3px;
- line-height: 24px;
- }
- }
- .cognize_title {
- font-size: 20px;
- letter-spacing: 3px;
- font-weight: 700;
- margin-bottom: 10px;
- }
- .cognize_title2 {
- font-size: 20px;
- letter-spacing: 3px;
- // font-weight: 700;
- margin-top: 10px;
- margin-bottom: 20px;
- }
- .cognize_img_out {
- display: flex;
- justify-content: center;
- align-items: center;
- .cognize_des {
- .cpjs {
- color: #48D68E;
- font-weight: 700;
- font-size: 14px;
- }
- .cpjs_detail {
- font-size: 14px;
- letter-spacing: 3px;
- line-height: 24px;
- }
- }
- }
- .cognize_video {
- display: flex;
- justify-content: center;
- }
- .pdf_op {
- margin-top: 20px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .pdf_sc {
- display: flex;
- // justify-content: space-between;
- align-items: center;
- cursor: pointer;
- .view {
- margin-left: 10px;
- color: #3E43FF;
- }
- }
- }
- .scale_button {
- margin-top: 30px;
- margin-bottom: 20px;
- .scale_button_inner {
- text-align: center;
- display: flex;
- justify-content: center;
- .scale_button_self {
- border-radius: 12px;
- border: 3px solid #48D68E;
- color: #ffffff;
- background-color: #000000;
- margin-right: 20px;
- padding: 10px 40px;
- cursor: pointer;
- display: flex;
- align-items: center;
- font-size: 16px;
- }
- }
- }
- }
- }
- }
- .home_mid {
- // background-color: blanchedalmond;
- width: 1200px;
- left: 0;
- right: 0;
- margin: auto;
- margin-top: 40px;
- // position: relative;
- .kepu_title {
- text-align: center;
- font-size: 50px;
- color: #111111;
- line-height: 95px;
- // width: 100%;
- // left: 0;
- // right: 0;
- // margin: auto
- }
- .kepu_title_sub {
- margin-top: 30px;
- text-align: center;
- font-size: 28px;
- color: #48D68E;
- line-height: 26px;
- }
- .man1_group {
- margin-top: 60px;
- height: 100%;
- display: flex;
- .man1 {
- position: relative;
- width: 327px;
- // height: 100%;
- // height: 100%
- .man1_img {
- position: absolute;
- bottom: 0;
- /* bottom: 0px; */
- /* height: auto; */
- width: 100%;
- left: 100px
- }
- }
- .des {
- border: #48D68E solid 5px;
- border-radius: 40px;
- padding: 20px;
- letter-spacing: 6px;
- flex: 1;
- .des_inner {
- border: 1px dashed #48D68E;
- border-radius: 40px;
- padding-bottom: 40px;
- padding-top: 30px;
- padding-left: 100px;
- padding-right: 20px;
- letter-spacing: 6px;
- font-weight: normal;
- font-size: 24px;
- color: #333333;
- line-height: 40px;
- }
- }
- }
- .man2_group {
- margin-top: 60px;
- height: 100%;
- display: flex;
- .man2 {
- position: relative;
- width: 327px;
- // height: 100%;
- // height: 100%
- .man2_img {
- position: absolute;
- bottom: 0;
- /* bottom: 0px; */
- /* height: auto; */
- width: 100%;
- left: -100px
- }
- }
- .des2 {
- border: #48D68E solid 5px;
- border-radius: 40px;
- padding: 20px;
- letter-spacing: 6px;
- flex: 1;
- .des2_inner {
- border: 1px dashed #48D68E;
- border-radius: 40px;
- padding-bottom: 40px;
- padding-top: 30px;
- padding-left: 20px;
- padding-right: 100px;
- letter-spacing: 6px;
- font-weight: normal;
- font-size: 24px;
- color: #333333;
- line-height: 40px;
- }
- }
- }
- .get_more {
- text-align: center;
- img {
- width: 300px;
- margin-top: 60px;
- margin-bottom: 60px;
- }
- }
- }
- </style>
|