123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <template>
- <div class="dianqian martop20">
- <el-radio-group v-model="radio">
- <el-radio :label="3">施工</el-radio>
- <el-radio :label="6">监理</el-radio>
- <el-radio :label="9">专家</el-radio>
- <el-radio :label="12">业主</el-radio>
- </el-radio-group>
- <div class="flexBetween martop20">
- <el-select
- size='mini'
- v-model="value"
- clearable
- placeholder="请选择"
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- <el-select
- size='mini'
- v-model="value"
- clearable
- placeholder="请选择"
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- <el-button size="mini">保存</el-button>
- </div>
- <table
- class="table martop20"
- width='100%'
- border='1px '
- bordercolor="#E5E5E5"
- cellpadding='2px'
- >
- <thead
- cellpadding='2px'
- height='40px'
- >
- <tr>
- <th width='40%'>元素位置</th>
- <th width='40%'>签字岗位</th>
- <th width='20%'>操作</th>
- </tr>
- </thead>
- <tbody height='36px'>
- <tr
- v-for="(item,key) in setInputTable"
- :key="key"
- >
- <td>{{item.id}}</td>
- <td>{{item.id}}</td>
- <td align="center"><span style="color:red;cursor: pointer;">删除</span></td>
- </tr>
- </tbody>
- </table>
- <el-button
- class="martop25"
- style="float:right;"
- type="info"
- size="mini"
- >保存设置</el-button>
- </div>
- </template>
- <script>
- export default {
- data () {
- return {
- radio: '',//
- options: [{
- value: '选项1',
- label: '黄金糕'
- }, {
- value: '选项2',
- label: '双皮奶'
- }, {
- value: '选项3',
- label: '蚵仔煎'
- }, {
- value: '选项4',
- label: '龙须面'
- }, {
- value: '选项5',
- label: '北京烤鸭'
- }],
- value: '',
- setInputTable: [{}],
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .dianqian {
- table {
- color: #101010;
- font-size: 14px;
- }
- }
- </style>
|