Merge remote-tracking branch 'origin/dev' into dev
commit
198927a265
|
@ -55,9 +55,6 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="item.ISNORMAL==0 || item.ISNORMAL==1" class="input" >
|
|
||||||
<textarea :disabled="item.OPERATION_TYPE === 1 ? true : false" maxlength="-1" v-model="item.REMARK" placeholder="检查详细描述" :class="item.OPERATION_TYPE === 1 ? 'bgh' : ''" style="border: 1px solid #eeeeee; z-index: 999; height: 50px; padding: 10px;font-size: 12px; width: 100%"></textarea>
|
|
||||||
</view>
|
|
||||||
</radio-group>
|
</radio-group>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -20,10 +20,10 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="cu-form-group margin-top-xs">
|
<view class="cu-form-group margin-top-xs">
|
||||||
<view class="title">人员类型</view>
|
<view class="title">人员类型</view>
|
||||||
<view v-if="forbidEdit" style="color: #cccccc">{{formData.PERSONNEL_TYPE_NAME}}</view>
|
<view v-if="forbidEdit" style="color: #cccccc">{{formData.PERSONNEL_TYPE}}</view>
|
||||||
<picker v-else @change="pickerChangeData($event,'PERSONNEL_TYPE')" disabled :value="dictData.PERSONNEL_TYPE.index" :range="dictData.PERSONNEL_TYPE.list" range-key="NAME">
|
<picker v-else @change="pickerChangeData($event,'PERSONNEL_TYPE')" disabled :value="dictData.PERSONNEL_TYPE.index" :range="dictData.PERSONNEL_TYPE.list" range-key="NAME">
|
||||||
<view class="picker" style="color: #cccccc">
|
<view class="picker" style="color: #cccccc">
|
||||||
{{formData.PERSONNEL_TYPE_NAME?formData.PERSONNEL_TYPE_NAME:'请选择'}}
|
{{formData.PERSONNEL_TYPE?formData.PERSONNEL_TYPE_NAME:'请选择'}}
|
||||||
</view>
|
</view>
|
||||||
</picker>
|
</picker>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
:multiple="true"
|
:multiple="true"
|
||||||
:list="dictData.PERSONNEL_TYPE.list"
|
:list="dictData.PERSONNEL_TYPE.list"
|
||||||
:show-search="false"
|
:show-search="false"
|
||||||
v-model="formData.PERSONNEL_TYPE"
|
v-model="formData.PERSONNEL_TYPE_NAME"
|
||||||
label-key="NAME"
|
label-key="NAME"
|
||||||
value-key="DICTIONARIES_ID"
|
value-key="DICTIONARIES_ID"
|
||||||
placeholder="请选择人员类型"
|
placeholder="请选择人员类型"
|
||||||
|
@ -188,7 +188,7 @@ import ZqsSelect from "../../../../components/zqs-select/zqs-select.vue";
|
||||||
if (name === 'PERSONNEL_TYPE') {
|
if (name === 'PERSONNEL_TYPE') {
|
||||||
this.dictData.PERSONNEL_TYPE.index = e.detail.value;
|
this.dictData.PERSONNEL_TYPE.index = e.detail.value;
|
||||||
this.formData.PERSONNEL_TYPE = this.dictData.PERSONNEL_TYPE.list[this.dictData.PERSONNEL_TYPE.index].DICTIONARIES_ID
|
this.formData.PERSONNEL_TYPE = this.dictData.PERSONNEL_TYPE.list[this.dictData.PERSONNEL_TYPE.index].DICTIONARIES_ID
|
||||||
this.formData.PERSONNEL_TYPENAME = this.dictData.PERSONNEL_TYPE.list[this.dictData.PERSONNEL_TYPE.index].NAME
|
this.formData.PERSONNEL_TYPE_NAME = this.dictData.PERSONNEL_TYPE.list[this.dictData.PERSONNEL_TYPE.index].NAME
|
||||||
}
|
}
|
||||||
// 政治面貌
|
// 政治面貌
|
||||||
if (name === 'POLITICAL_OUTLOOK') {
|
if (name === 'POLITICAL_OUTLOOK') {
|
||||||
|
|
|
@ -20,12 +20,19 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="cu-form-group margin-top-xs">
|
<view class="cu-form-group margin-top-xs">
|
||||||
<view class="title">人员类型</view>
|
<view class="title">人员类型</view>
|
||||||
<view v-if="forbidEdit" style="color: #cccccc">{{formData.PERSONNEL_TYPENAME}}</view>
|
<zqs-select
|
||||||
<picker v-else @change="pickerChangeData($event,'PERSONNEL_TYPE')" disabled :value="dictData.PERSONNEL_TYPE.index" :range="dictData.PERSONNEL_TYPE.list" range-key="NAME">
|
:multiple="true"
|
||||||
<view class="picker" style="color: #cccccc">
|
:list="dictData.PERSONNEL_TYPE.list"
|
||||||
{{formData.PERSONNEL_TYPE.join()}}
|
:show-search="false"
|
||||||
</view>
|
v-model="formData.PERSONNEL_TYPE_NAME"
|
||||||
</picker>
|
disabled
|
||||||
|
label-key="NAME"
|
||||||
|
value-key="DICTIONARIES_ID"
|
||||||
|
placeholder="请选择人员类型"
|
||||||
|
title="选择人员类型"
|
||||||
|
clearable
|
||||||
|
@change="changeSelect($event, 'PERSONNEL_TYPE')"
|
||||||
|
></zqs-select>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 身份证 -->
|
<!-- 身份证 -->
|
||||||
|
|
|
@ -94,7 +94,7 @@ import Apply from "./components/apply.vue"
|
||||||
|
|
||||||
//人员类型
|
//人员类型
|
||||||
PERSONNEL_TYPE: [],
|
PERSONNEL_TYPE: [],
|
||||||
PERSONNEL_TYPENAME: '',
|
PERSONNEL_TYPE_NAME: '',
|
||||||
// 政治面貌
|
// 政治面貌
|
||||||
POLITICAL_OUTLOOK: '',
|
POLITICAL_OUTLOOK: '',
|
||||||
POLITICAL_OUTLOOK_NAME: '',
|
POLITICAL_OUTLOOK_NAME: '',
|
||||||
|
|
Loading…
Reference in New Issue