35 lines
818 B
Vue
35 lines
818 B
Vue
<template>
|
||
<view class="content">
|
||
<view class="card">
|
||
<u-cell-group :border="false">
|
||
<u-cell>
|
||
<view slot="title" class="title required">检查标题:</view>
|
||
<view slot="value">
|
||
<view>{{form.INSPECTION_SUBJECT}}现场检查记录</view>
|
||
</view>
|
||
</u-cell>
|
||
<u-cell>
|
||
<view slot="title" class="title required">被检查单位:</view>
|
||
<view>{{ form.INSPECTED_DEPARTMENT_NAMES }}</view>
|
||
</u-cell>
|
||
</u-cell-group>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
form: {
|
||
/** 现场检查记录 */
|
||
INSPECTION_SUBJECT: '',
|
||
/** 被检查单位 */
|
||
INSPECTED_DEPARTMENT_NAMES: '',
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss"></style> |