BUG 25331

This commit is contained in:
aixianling
2021-12-09 18:31:25 +08:00
parent 21730aa629
commit 8110844bd2
2 changed files with 56 additions and 62 deletions

View File

@@ -9,15 +9,15 @@
</template> </template>
<script> <script>
import Tabbar from './components/Tabbar.vue' import Tabbar from './components/Tabbar.vue'
import AddForm from './components/AddForm.vue' import AddForm from './components/AddForm.vue'
import Result from './components/Result.vue' import Result from './components/Result.vue'
export default { export default {
name: 'AppAskForm', name: 'AppAskForm',
appName: '问卷表单管理', appName: '问卷表单管理',
data () { data() {
return { return {
component: 'Tabbar', component: 'Tabbar',
params: {} params: {}
@@ -30,19 +30,19 @@
AddForm AddForm
}, },
onLoad () {
},
mounted () {
},
methods: { methods: {
onChange (e) { onChange(e) {
this.params = e.params this.params = e.params
this.component = e.type this.component = e.type
}, },
emitShow() {
this.injectJWeixin(['sendChatMessage', 'selectEnterpriseContact', 'shareAppMessage', 'shareWechatMessage']).then(() => {
this.$dict.load(['questionnaireStatus', 'questionnaireType', 'questionnaireFieldType'])
})
} }
} }
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@@ -112,16 +112,11 @@ export default {
}, },
created() { created() {
this.$loading() this.$loading()
this.injectJWeixin(['sendChatMessage', 'selectEnterpriseContact']).then(() => {
this.$dict.load(['questionnaireStatus', 'questionnaireType', 'questionnaireFieldType']).then(() => {
this.getList() this.getList()
})
})
}, },
methods: { methods: {
...mapActions(['injectJWeixin', 'wxInvoke']), ...mapActions(['wxInvoke']),
linkTo(url) { linkTo(url) {
this.isShow = false this.isShow = false
@@ -130,7 +125,7 @@ export default {
}) })
}, },
showPopup (item) { showPopup(item) {
if (item.status === '2') { if (item.status === '2') {
this.$confirm('表单已停止发布,请在后台管理系统中查看调查结果', '', { this.$confirm('表单已停止发布,请在后台管理系统中查看调查结果', '', {
showCancel: false showCancel: false
@@ -172,7 +167,6 @@ export default {
this.isShow = false this.isShow = false
} }
if (data.tapIndex === 0 || data.tapIndex === 1) { if (data.tapIndex === 0 || data.tapIndex === 1) {
this.injectJWeixin(['shareAppMessage', 'shareWechatMessage']).then(() => {
if (data.tapIndex === 0) { if (data.tapIndex === 0) {
this.wxInvoke(['shareAppMessage', { this.wxInvoke(['shareAppMessage', {
title: this.info.title, title: this.info.title,
@@ -192,7 +186,6 @@ export default {
this.isShow = false this.isShow = false
}]) }])
} }
})
} }
} }
}) })
@@ -311,6 +304,7 @@ export default {
.form { .form {
height: 100vh; height: 100vh;
overflow: hidden; overflow: hidden;
::v-deep .u-search { ::v-deep .u-search {
margin-bottom: 0 !important; margin-bottom: 0 !important;