|
@@ -44,7 +44,7 @@
|
|
</div>
|
|
</div>
|
|
<div class="mui-input-row" v-if="detail.isUpPhoto">
|
|
<div class="mui-input-row" v-if="detail.isUpPhoto">
|
|
<label style="width: 50%"
|
|
<label style="width: 50%"
|
|
- >人脸识别照片<i class="iconfont icon-tishi color4fc5f7" @click="valert"></i
|
|
|
|
|
|
+ >人脸识别照片<i class="iconfont icon-tishi color4fc5f7" @click="valert"></i
|
|
></label>
|
|
></label>
|
|
|
|
|
|
|
|
|
|
@@ -56,7 +56,7 @@
|
|
|
|
|
|
@click="clickMyFile(subForm)"
|
|
@click="clickMyFile(subForm)"
|
|
>
|
|
>
|
|
- <div v-if="!subForm.photo">请上传</div>
|
|
|
|
|
|
+ <div v-if="!subForm.photo"><i style="color: red">*</i>请上传</div>
|
|
<img v-if="subForm.photo" :src="subForm.photo">
|
|
<img v-if="subForm.photo" :src="subForm.photo">
|
|
</button>
|
|
</button>
|
|
<!--请上传-->
|
|
<!--请上传-->
|
|
@@ -483,6 +483,13 @@
|
|
submit(){
|
|
submit(){
|
|
var btnArray = ['否', '是'];
|
|
var btnArray = ['否', '是'];
|
|
var _this = this;
|
|
var _this = this;
|
|
|
|
+
|
|
|
|
+ if(this.detail.isUpPhoto){
|
|
|
|
+ if(!this.subForm.photo){
|
|
|
|
+ mui.toast("请上传人脸识别照片");
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ }
|
|
mui.confirm('确认当操作?', '提示', btnArray, function(e) {
|
|
mui.confirm('确认当操作?', '提示', btnArray, function(e) {
|
|
if (e.index == 1) {
|
|
if (e.index == 1) {
|
|
_this.isLoading = true;
|
|
_this.isLoading = true;
|