diff --git a/pages/index - 副本.vue b/pages/index - 副本.vue
deleted file mode 100644
index 0b444ed..0000000
--- a/pages/index - 副本.vue
+++ /dev/null
@@ -1,438 +0,0 @@
-
-
-
-
- {
- querySelect(v, 'deptId')
- }
- "
- />
- {
- querySelect(v, 'selectWeek')
- }
- "
- />
-
-
-
-
-
-
- 任务数量
-
-
-
- 执法记录
-
-
-
- 企业数量
-
-
-
-
-
-
-
-
- {{ item.name }}
-
-
-
- %
-
-
-
-
-
-
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
- {{ item.name }}
-
-
-
- {{ queryParams.type == 1 ? '天' : '次' }}
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/sub/common/waiting.vue b/sub/common/waiting.vue
index d334a4a..c22485b 100644
--- a/sub/common/waiting.vue
+++ b/sub/common/waiting.vue
@@ -1,5 +1,5 @@
-
+
请选择到期日期
+
+
+
+
{
+ async addEnterpriseProvePhoto(e) {
+ this.prove.form.photo = e.file.map(p => {
console.log(p.url)
return {
...p,
@@ -412,7 +430,7 @@ export default {
})
// 使用promise.all()方法上传到后端做统一接收
await Promise.all(
- this.info.form.photo.map(async (p, i) => {
+ this.prove.form.photo.map(async (p, i) => {
const res = await uploadFile({ name: `file`, filePath: p.url })
return {
...res.data,
@@ -421,7 +439,7 @@ export default {
}
})
).then(res => {
- this.info.form.photo = res
+ this.prove.form.photo = res
console.log('pthoto3', this.info.form.photo)
})
},
@@ -429,9 +447,47 @@ export default {
* 删除图片
* @param {Object} e
*/
- delEnterprisePhoto(e) {
- this.info.form.photo.splice(e.index, 1)
+ delEnterpriseProvePhoto(e) {
+ this.prove.form.photo.splice(e.index, 1)
},
+
+
+ /**
+ * 选择图片并上传
+ * @param {Object} e
+ */
+ async addEnterprisePhoto(e) {
+ this.info.form.photo = e.file.map(p => {
+ console.log(p.url)
+ return {
+ ...p,
+ status: 'uploading',
+ message: '上传中'
+ }
+ })
+ // 使用promise.all()方法上传到后端做统一接收
+ await Promise.all(
+ this.info.form.photo.map(async (p, i) => {
+ const res = await uploadFile({ name: `file`, filePath: p.url })
+ return {
+ ...res.data,
+ status: 'success',
+ message: ''
+ }
+ })
+ ).then(res => {
+ this.info.form.photo = res
+ console.log('pthoto3', this.info.form.photo)
+ })
+ },
+ /**
+ * 删除图片
+ * @param {Object} e
+ */
+ delEnterprisePhoto(e) {
+ this.info.form.photo.splice(e.index, 1)
+ },
+
/**
* 弹出选择器
* @param {String} type 字典类型
@@ -524,7 +580,7 @@ export default {
*/
async handlerInfoApi() {
const data = this.info.form
- data.fileIds = this.info.form.photo.map(p => p.file_id)
+ data.fileIds = this.info.form.photo.map(p => p.id)
data.userId = this.invateId
let enterprise
if (this.info.form.id) {
@@ -571,8 +627,9 @@ export default {
*/
async handlerProveApi() {
let prove
- const data = this.prove.form
+ let data = this.prove.form
data.enterpriseId = this.info.form.id
+ data.files = this.prove.form.photo.map(p => p.id)
if (data.id) {
prove = await updateProve(data)
} else {
diff --git a/sub/task/enforce.vue b/sub/task/enforce.vue
index 36d3394..5309f33 100644
--- a/sub/task/enforce.vue
+++ b/sub/task/enforce.vue
@@ -162,7 +162,7 @@ export default {
...this.form,
status: this.form.state,
feedBack: this.form.advice,
- fileIds: this.form.photo.map(i => i.file_id),
+ fileIds: this.form.photo.map(i => i.id),
correctionTime: new Date(this.form.date).getTime()
}
InspectionsApi.feeback(data).then(res => {