qa-prevention-xgf-app/safetyEnvirSubPackages/pages/inspected/detail.vue

35 lines
818 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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>