123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <view>
- <form action="" class="planDetailDone" >
-
- <view class="form-item">
- <view class="title">
- <text class="necessary">*</text>
- 上报名称:
- </view>
- <view>市光四村221号楼</view>
- </view>
-
- <view class="form-item">
- <view class="title">
- <text class="necessary">*</text>
- 巡检状态:
- </view>
- <radio-group name="gender" @change="radioChange">
- <label class="margin-right-xs">
- <radio value="2" checked /><text>正常</text>
- </label>
- <label class="margin-right-xs">
- <radio value="3" /><text>异常</text>
- </label>
- <label class="margin-right-xs">
- <radio value="2" checked /><text>供电</text>
- </label>
- <label>
- <radio value="3" /><text>其他</text>
- </label>
- </radio-group>
- </view>
-
- <view class="form-item">
- <view class="title">
- <text class="necessary">*</text>
- 上传图片:
- </view>
-
- <view>151198415.jpg</view>
- </view>
-
- <view class="form-item">
- <view class="title">
- <text class="necessary">*</text>
- 巡检描述:
- </view>
- <view>描述信息</view>
- </view>
-
- </form>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- radioChange(e) {
- console.log('type:' + e.detail.value);
- this.radioOne = e.detail.value;
- },
-
-
-
- }
- }
- </script>
- <style lang="scss">
-
-
- </style>
|