diff --git a/packages/wechat/AppAskForm/components/FormList.vue b/packages/wechat/AppAskForm/components/FormList.vue index 80a4301f..43aa1f09 100644 --- a/packages/wechat/AppAskForm/components/FormList.vue +++ b/packages/wechat/AppAskForm/components/FormList.vue @@ -4,27 +4,27 @@ @@ -37,7 +37,8 @@
-

{{ dict.getLabel('questionnaireStatus', item.status) }}

+

+ {{ dict.getLabel('questionnaireStatus', item.status) }}

{{ dict.getLabel('questionnaireType', item.type) }}

{{ item.title }}

@@ -52,49 +53,49 @@
+ type="text" + icon="iconfont iconshare" + @click="showShare(item)" + class="list-item__operate--item" + :disabled="item.status !== '1'"> 分享 + v-if="item.status === '1'" + type="text" + icon="iconfont iconunpublish" + class="list-item__operate--item" + @click="toStop(item.id)"> 停止 + v-else + @click="id = item.id, isShowAdd = true" + type="text" + icon="iconfont iconpublish" + class="list-item__operate--item"> 发布 + @click="showShare(item, true)" + type="text" + icon="iconfont iconpreview" + class="list-item__operate--item"> 预览 + :disabled="item.dataCount === 0" + @click="exportFile(item.id, item.title)" + type="text" + icon="iconfont iconExported" + class="list-item__operate--item"> 导出 + type="text" + icon="iconfont iconMore" + class="list-item__operate--item"> 更多 @@ -109,11 +110,11 @@
+ :visible.sync="isShow" + width="800px" + title="请选择新建项目类型" + @close="currIndex = 0" + @onConfirm="onConfirm">
+ class="ai-dialog__success" + :visible.sync="isShowSuccess" + customFooter + width="800px" + title="">
@@ -167,7 +168,7 @@

可以将生成的二维码或链接分享给居民

- 复制链接 + 复制链接
@@ -182,21 +183,21 @@
+ :visible.sync="isShowPreview" + width="800px" + customFooter + title="预览"> + :visible.sync="isShowAdd" + width="800px" + @close="onClose" + customFooter + title="发布">
@@ -215,12 +216,12 @@
+ v-model="editForm.periodValidityEndTime" + value-format="yyyy-MM-dd HH:mm:ss" + type="datetime" + size="small" + :picker-options="pickerOptions" + placeholder="截止时间">
@@ -271,814 +272,818 @@ diff --git a/packages/wechat/AppAskForm/components/Statistics.vue b/packages/wechat/AppAskForm/components/Statistics.vue index 123a8b54..e3e3ed9f 100644 --- a/packages/wechat/AppAskForm/components/Statistics.vue +++ b/packages/wechat/AppAskForm/components/Statistics.vue @@ -8,10 +8,12 @@ @@ -33,7 +35,8 @@
-
+

{{ item.fieldName }}({{ item.fixedLabel }})

@@ -43,7 +46,8 @@ 条数据
-
+

{{ item.label }}

@@ -51,7 +55,8 @@
-
+
{{ (((item.c || 0) / fieldDataCount[`field_${index}`]) * 100).toFixed(2) }}%
@@ -64,33 +69,35 @@ + class="detail-table__table" + :border="true" + style="margin-top: 4px;" + :tableData="tableData" + :col-configs="colConfigs" + :total="total" + :stripe="false" + :current.sync="search.current" + :size.sync="search.size" + @getList="getList">