路泰科技体检小程序UI设计新版本
1
wwl
5 天以前 a6cdbcfe28fcc40ebb4919f57d60fb20122e8e57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
    <view>
        <div>
            <span class="drawer4">满意度调查</span>
            <div>
                <el-form v-for="(item, iindex) in intList" :key="iindex">
                    <el-form-item>{{ item.question }}(必填)<br />
                        <!-- <el-radio-group v-for="item4 in item.tjSurveyOptionsList" :key="item4.oid">
                          <el-radio>{{item4.ooption}}</el-radio>
                        </el-radio-group> -->
                        <label v-for="(item5, index) in item.tjSurveyOptionsList" :key="index">
                            <input v-show="item.type == '1'" type="radio" :name="item5.ooption" :value="item5.oid"
                                @click="fn" />{{ item5.ooption }}
                            <el-rate v-show="item.type == '3'" v-model="myscore" show-text></el-rate>
                        </label>
                    </el-form-item>
                </el-form>
            </div>
            <el-button type="primary" size="mini" @click="tijiao">提交</el-button>
        </div>
    </view>
</template>
 
<script>
    import {
      printCode,
    } from "@/api/system/visit";
    export default {
        data() {
            return {
 
            }
        },
        methods: {
            investigation(row) {
                  this.gation = row;
                  this.drawer = true;
                  let mid = "2";
                  printCode(mid).then((response) => {
                    this.intList = response.data;
                  });
                },
        }
    }
</script>
 
<style>
 
</style>