uniapp 运行到 微信开发者工具
报错:
TypeError: $gwx is not a function
原因
<template slot="footer" v-if="item.img">
<image class="item-footer-img":src="item.img" mode="widthFix"></image>
</template>
改成
<template slot="footer" >
<image class="item-footer-img" v-if="item.img" :src="item.img" mode="widthFix"></image>
</template>