|
|
|
|
@ -157,6 +157,38 @@
|
|
|
|
|
</view>
|
|
|
|
|
</u-popup>
|
|
|
|
|
|
|
|
|
|
<u-popup v-model="createData.isShow" mode="center" border-radius="14" width="80%" :closeable='true'>
|
|
|
|
|
<view style="max-height: calc(100vh - 200px);overflow-y: auto;">
|
|
|
|
|
<view class="g_flex_c g_h_40 g_fs_16">安全验证</view>
|
|
|
|
|
<view>
|
|
|
|
|
<view>
|
|
|
|
|
<view class="g_flex_row_start">
|
|
|
|
|
<view class="g_flex_1 g_flex_column_center">
|
|
|
|
|
<u-input v-model="createData.code"
|
|
|
|
|
placeholder="请输入"
|
|
|
|
|
type="number"
|
|
|
|
|
maxlength="11"
|
|
|
|
|
style="width: calc(100% - 64px); z-index: 0;background-color: #ededed;border-radius: 6px;margin: 0 auto;padding: 0 16px;"
|
|
|
|
|
></u-input>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="g_flex_none g_flex_column_center g_mr_16">
|
|
|
|
|
<g-button type='primary' size='mini' btnText='获取验证码' @clickBtn='handleSearch'></g-button>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="g_flex_row_center g_p_16">
|
|
|
|
|
<view class="g_flex_row_center" style="width: 50%;">
|
|
|
|
|
<g-button type='default' class="g_w_all" size='small' btnText='取消' @clickBtn='createData.isShow = false'></g-button>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="g_flex_row_center" style="width: 50%;">
|
|
|
|
|
<g-button type='primary' size='small' btnText='确定'></g-button>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="g_h_20"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</u-popup>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
@ -195,6 +227,12 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
applysRecord:[],
|
|
|
|
|
recivesRecord:[],
|
|
|
|
|
createData:{
|
|
|
|
|
isShow:false,
|
|
|
|
|
code:'',
|
|
|
|
|
tel: "",
|
|
|
|
|
telEncrypt: ""
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
@ -220,13 +258,26 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
openApply(){
|
|
|
|
|
let that = this;
|
|
|
|
|
that.modalApplyData = {
|
|
|
|
|
isShow:true,
|
|
|
|
|
tel:'',
|
|
|
|
|
desp:'',
|
|
|
|
|
resultList:[],
|
|
|
|
|
selectResult:''
|
|
|
|
|
}
|
|
|
|
|
that.G.Get(that.api.person_getCreatorTel,{},(createRes)=>{
|
|
|
|
|
console.log('创建人手机号:',createRes)
|
|
|
|
|
that.createData = {
|
|
|
|
|
isShow:true,
|
|
|
|
|
code:'',
|
|
|
|
|
tel: createRes.tel,
|
|
|
|
|
telEncrypt: createRes.telEncrypt
|
|
|
|
|
};
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// that.modalApplyData = {
|
|
|
|
|
// isShow:true,
|
|
|
|
|
// tel:'',
|
|
|
|
|
// desp:'',
|
|
|
|
|
// resultList:[],
|
|
|
|
|
// selectResult:''
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
handleSearch(){
|
|
|
|
|
let that = this;
|
|
|
|
|
|