Commit 2c031fdb by 刘海龙

11

parent 89d5cf2f
......@@ -107,13 +107,15 @@
.smrz .list_hd { font-size: .7rem; color: #333; }
.smrz .list_bd { width: 70%; text-align: right; font-size: .7rem; color: #999; }
.smrz .list_bd::-webkit-input-placeholder { color: #999; }
.smrz .scimgBox { width: 100%; margin-top: .5rem; padding: 0 .7rem; position: relative; height: 5.4rem; }
.smrz .imgItem-L { width: 5.4rem; height: 5.4rem; border-radius: .4rem; position: absolute;left: 0; top: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; }
.smrz .scimgBox { width: 100%; margin-top: .5rem; padding: 0 .7rem; display: flex; align-items: center; }
/* .smrz .imgItem-L { width: 5.4rem; height: 5.4rem; border-radius: .4rem; position: absolute;left: 0; top: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; }
.smrz .imgItem-R { width: 5.4rem; height: 5.4rem; border-radius: .4rem; position: absolute;right: 0; top: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; }
.smrz .imgItem-M { width: 5.4rem; height: 5.4rem; border-radius: .4rem; position: absolute;left: 50%; top: 0; transform: translate(-50%,0); display: flex; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; }
.smrz .imgItemL img { width: 100%; height: 100%; }
.smrz .imgItem-M { width: 5.4rem; height: 5.4rem; border-radius: .4rem; position: absolute;left: 50%; top: 0; transform: translate(-50%,0); display: flex; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; } */
/* .smrz .imgItemL img { width: 100%; height: 100%; }
.smrz .imgItemR img { width: 100%; height: 100%; }
.smrz .imgItemM img { width: 100%; height: 100%; }
.smrz .imgItemM img { width: 100%; height: 100%; } */
.smrz .imgItem { width: 5.4rem; height: 5.4rem; border-radius: .4rem; display: flex; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; }
.smrz .imgItem img { width: 100%; height: 100%; }
.smrz .addTipsimg { width: 1.05rem; height: 1.05rem; }
.smrz .addTips_wz { font-size: .5rem; color: #C45EFF; margin-top: .35rem; }
.smrz .zhengjz { width: 100%; height: 100%; }
......
......@@ -59,18 +59,18 @@
<div v-if="isFile" class="imgItemL" @click="addImg('front_view')">
<img :src="form.front_view ? form.front_view : upload_image">
</div>
<div class="imgItemM" @click="addImg('back_view')">
<div v-if="isFile2" class="imgItemM" @click="addImg('back_view')">
<img :src="form.back_view ? form.back_view : upload_image2">
</div>
<div class="imgItemR" @click="addImg('handset_view')">
<div v-if="isFile3" class="imgItemR" @click="addImg('handset_view')">
<img :src="form.handset_view ? form.handset_view : upload_image3">
</div>
<!-- <input id="file" name="image" type="file" v-show="false" class="upload" accept="image/*" @change="upload"/>
<input id="file2" name="image" type="file" v-show="false" class="upload" accept="image/*" @change="upload"/>
<input id="file3" name="image" type="file" v-show="false" class="upload" accept="image/*" @change="upload"/> -->
<input id="file" name="image" type="file" v-if="isFile" style="display: none;" accept="image/*" @change="upload"/>
<input id="file2" name="image" type="file" style="display: none;" accept="image/*" @change="upload"/>
<input id="file3" name="image" type="file" style="display: none;" accept="image/*" @change="upload"/>
<input id="file2" name="image" type="file" v-if="isFile2" style="display: none;" accept="image/*" @change="upload"/>
<input id="file3" name="image" type="file" v-if="isFile3" style="display: none;" accept="image/*" @change="upload"/>
</div>
<!-- 按钮 -->
......@@ -223,18 +223,20 @@
if (_this.uploadName === 'front_view') {
id = 'file';
saveName = 'auth_' + uid + '_1';
console.log(1111)
_this.isFile = false
}
if (_this.uploadName === 'back_view') {
id = 'file2';
saveName = 'auth_' + uid + '_2';
_this.isFile2 = false
}
if (_this.uploadName === 'handset_view') {
id = 'file3';
saveName = 'auth_' + uid + '_3';
_this.isFile3 = false
}
var loadingIndex = layer.load(2);
_this.isFile = false
$.ajaxFileUpload({
url: './index.php?g=Appapi&m=Auth&a=upload',
secureuri: false,
......@@ -252,16 +254,15 @@
layer.msg(msg);
} else {
if (_this.uploadName === 'front_view') {
console.log(1111)
_this.form.front_view = str.data.url;
_this.isFile = true
}
if (_this.uploadName === 'back_view') {
console.log(22222)
_this.isFile2 = true
_this.form.back_view = str.data.url;
}
if (_this.uploadName === 'handset_view') {
console.log(3333)
_this.isFile3 = true
_this.form.handset_view = str.data.url;
}
_this.checkSubmit();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment