Commit 2ad54f65 authored by ww-xxy's avatar ww-xxy

修改报表

parent 1c9f114a
This diff is collapsed.
......@@ -25,6 +25,7 @@
"lodash": "^4.17.21",
"moment": "^2.29.4",
"qs": "^6.10.3",
"v-viewer": "^1.6.4",
"vue": "^2.6.14",
"vue-highlightjs": "^1.3.3",
"vue-router": "^3.5.1",
......
......@@ -41,6 +41,10 @@ Vue.prototype.$codeMap = codeMap;
Vue.prototype.$bus = new Vue();
Vue.config.productionTip = false;
// 图片预约
import Viewer from 'v-viewer'
import 'viewerjs/dist/viewer.css'
Vue.use(Viewer);
new Vue({
router,
store,
......
......@@ -45,14 +45,14 @@
<div class="infoBox">
<span class="infoTitle imgBox">身份证人像面:</span>
<span class="infoContent">
<img v-if="userInfo.z_img" :src="userInfo.z_img" />
<thumbImage v-if="userInfo.z_img" :src="imgBase+'/'+userInfo.z_img" fileType="img" />
<span v-else>--</span>
</span>
</div>
<div class="infoBox">
<span class="infoTitle imgBox">身份证国徽面:</span>
<span class="infoContent">
<img v-if="userInfo.b_img" :src="userInfo.z_img" />
<thumbImage v-if="userInfo.b_img" :src="imgBase+'/'+userInfo.b_img" fileType="img" />
<span v-else>--</span>
</span>
</div>
......@@ -92,8 +92,17 @@
</template>
<script>
import thumbImage from "@/components/image/thumbImage.vue"
export default {
name: "FormDetails",
components:{
thumbImage
},
data(){
return{
imgBase:process.env.VUE_APP_API_PHP_URL
}
},
props: {
visible: {
type: Boolean,
......
......@@ -161,7 +161,7 @@ export default {
{
title: "是否实名认证",
align: "center",
customRender: (text) => "--",
customRender: (text) => text.idcard_IDCardNo?"实名认证":"未实名认证",
// customRender: (text) => text.create_time || "--",
},
{
......
This diff is collapsed.
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