|
|
<!--pages/AirportGround/AirportGround.wxml-->
|
|
|
<!--标题部分-->
|
|
|
<view class="container5">
|
|
|
<view class="container">
|
|
|
<view class="one">
|
|
|
机场地面人员使用 (Airport ground staff)
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="container">
|
|
|
<text class="two">欢迎您为民航不安全事件管理系统提供事件信息,请您仔细填写适用条目:</text>
|
|
|
<text class="three">(红色字体为必填项)</text>
|
|
|
</view>
|
|
|
<!--时间选择-->
|
|
|
<view class="container">
|
|
|
<text class="four">事件发生时的当地时间:</text>
|
|
|
<view class="container1">
|
|
|
<text class="five1">时间:</text>
|
|
|
<picker class="choose1" mode="date" value="{{selectedDate}}" bindchange="onDateChange">
|
|
|
<view class="picker">
|
|
|
{{selectedDate}}
|
|
|
</view>
|
|
|
</picker>
|
|
|
<picker class="choose" mode="time" value="{{ selectedTime }}" bindchange="onTimeChange">
|
|
|
<view class="picker">
|
|
|
{{ selectedTime }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
<view class="container1"> <text class="five">时区:</text>
|
|
|
<picker class="choose" mode="selector" range="{{ timezones }}" value="{{ selectedIndex1 }}" bindchange="onTimezoneChange">
|
|
|
<view class="picker">
|
|
|
{{ timezones[selectedIndex1] }}
|
|
|
</view>
|
|
|
</picker></view>
|
|
|
</view>
|
|
|
<!--工作时间-->
|
|
|
<view class="container">
|
|
|
<text class="five">事件发生前您的工作时间:</text>
|
|
|
<view class="container1">
|
|
|
<text class="five1">过去一个月的工作天数:</text>
|
|
|
<view style="width: 35px;"></view>
|
|
|
<input class="input-box" type="text" value="{{inputValue1}}" placeholder="请输入" bindinput="onInput1" />
|
|
|
<text class="five1">天</text>
|
|
|
</view>
|
|
|
<view class="container1">
|
|
|
<text class="five1">过去一星期的工作天数:</text>
|
|
|
<view style="width: 35px;"></view>
|
|
|
<input class="input-box" type="text" value="{{inputValue2}}" placeholder="请输入" bindinput="onInput2" />
|
|
|
<text class="five1">天</text>
|
|
|
</view>
|
|
|
<view class="container1">
|
|
|
<text class="five1">过去24小时的工作时长:</text>
|
|
|
<view style="width: 33px;"></view>
|
|
|
<input class="input-box" type="text" value="{{inputValue3}}" placeholder="请输入" bindinput="onInput3" />
|
|
|
<text class="five1">小时</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--您的执照类型 License:-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five">您的执照类型:</text>
|
|
|
<picker class="choose" mode="selector" range="{{ License }}" value="{{ selectedIndex4 }}" bindchange="onLicense">
|
|
|
<view class="picker">
|
|
|
{{ License[selectedIndex4] }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--工作经历-->
|
|
|
<view class="container">
|
|
|
<text class="five">您的工作经历是:</text>
|
|
|
<view class="container1">
|
|
|
<text class="five1">工作经验:</text>
|
|
|
<view style="width: 125px;"></view>
|
|
|
<input class="input-box" type="text" value="{{inputValue15}}" placeholder="请输入" bindinput="onInput15" />
|
|
|
<text class="five1">年</text>
|
|
|
</view>
|
|
|
<view class="container1">
|
|
|
<text class="five1">在此岗位工作了:</text>
|
|
|
<view style="width: 80px;"></view>
|
|
|
<input class="input-box" type="text" value="{{inputValue16}}" placeholder="请输入" bindinput="onInput16" />
|
|
|
<text class="five1">年</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--事件发生时您的岗位-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five">事件发生时您的岗位:</text>
|
|
|
<picker class="choose" mode="selector" range="{{ position }}" value="{{ selectedIndex2 }}" bindchange="onposition">
|
|
|
<view class="picker">
|
|
|
{{ position[selectedIndex2] }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--事件航空器种类 ACFT:-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five">事件航空器种类:</text>
|
|
|
<picker class="choose" mode="selector" range="{{ ACFT }}" value="{{ selectedIndex5 }}" bindchange="onACFT">
|
|
|
<view class="picker">
|
|
|
{{ ACFT[selectedIndex5] }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--天气条件 Weather:-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five">天气条件:</text>
|
|
|
<picker class="choose" mode="selector" range="{{ weather }}" value="{{ selectedIndex10 }}" bindchange="onweather">
|
|
|
<view class="picker">
|
|
|
{{ weather[selectedIndex10] }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--光线条件和能见度为Light and visibility:-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five">光线条件和能见度为:</text>
|
|
|
<picker class="choose" mode="selector" range="{{ lv }}" value="{{ selectedIndex11 }}" bindchange="onlv">
|
|
|
<view class="picker">
|
|
|
{{ lv[selectedIndex11] }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--事件发生时的飞行阶段 Phase of flight: -->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five">事件发生时的阶段:</text>
|
|
|
<picker class="choose" mode="selector" range="{{ phase }}" value="{{ selectedIndex9 }}" bindchange="onphase">
|
|
|
<view class="picker">
|
|
|
{{ phase[selectedIndex9] }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--涉及车辆(车辆一): -->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five">涉及车辆(车辆一):</text>
|
|
|
<picker class="choose" mode="selector" range="{{ carone }}" value="{{ selectedIndex20 }}" bindchange="oncarone">
|
|
|
<view class="picker">
|
|
|
{{ carone[selectedIndex20] }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--涉及车辆(车辆二):-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five">涉及车辆(车辆二):</text>
|
|
|
<picker class="choose" mode="selector" range="{{ cartwo }}" value="{{ selectedIndex21 }}" bindchange="oncartwo">
|
|
|
<view class="picker">
|
|
|
{{ cartwo[selectedIndex21] }}
|
|
|
</view>
|
|
|
</picker>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--描述事件-->
|
|
|
<view class="container">
|
|
|
<text class="four">请您尽可能完整地描述事件经过:(如事件过程、原因、建议等)</text>
|
|
|
<view class="container3">
|
|
|
<textarea class="scroll-input" value="{{inputValue20}}" placeholder="请输入内容(1000字以内)..." maxlength="1000" bindinput="onInput20"></textarea>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--感谢:-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five1"> 民航不安全事件管理系统欢迎全行业所有人员做安全“吹哨人”!感谢您积极主动参与改善航空安全行动和自愿报告安全风险隐患信息!我们欢迎您本着诚信原则报送有关安全信息,同时建议您留一个有效的联系方式,以方便该信息得到有效处理、应用、反馈和奖励。我们承诺对每一位员工、每一家单位的报告信息严格保密,谢谢!
|
|
|
</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--姓名Name:-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five1">姓名:</text>
|
|
|
<view style="width: 10px;"></view>
|
|
|
<input class="input-box2" type="text" value="{{inputValue21}}" placeholder="请输入" bindinput="onInput21" />
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--电话Tel:-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five1">电话:</text>
|
|
|
<view style="width: 10px;"></view>
|
|
|
<input class="input-box2" type="text" value="{{inputValue22}}" placeholder="请输入" bindinput="onInput22" />
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--E-mail:-->
|
|
|
<view class="container">
|
|
|
<view class="container1">
|
|
|
<text class="five1">邮箱:</text>
|
|
|
<view style="width: 10px;"></view>
|
|
|
<input class="input-box2" type="text" value="{{inputValue23}}" placeholder="请输入" bindinput="onInput23" />
|
|
|
</view>
|
|
|
</view>
|
|
|
<!--提交与重写-->
|
|
|
<view class="container4">
|
|
|
<button class="reset-button" bindtap="onReset">全部重写</button>
|
|
|
<button class="submit-button" bindtap="onSubmit">提交</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
|