1
This commit is contained in:
@@ -214,7 +214,7 @@ public class WelfareProject extends BaseModel implements SysHomeConvert {
|
|||||||
sysHomeActivity.setH5Url("/platform/h5/welfare/userSelect/index?id=" + this.getId());
|
sysHomeActivity.setH5Url("/platform/h5/welfare/userSelect/index?id=" + this.getId());
|
||||||
sysHomeActivity.setStartDate(this.getChoiceTimeStart());
|
sysHomeActivity.setStartDate(this.getChoiceTimeStart());
|
||||||
sysHomeActivity.setEndDate(this.getChoiceTimeEnd());
|
sysHomeActivity.setEndDate(this.getChoiceTimeEnd());
|
||||||
sysHomeActivity.setAllowUserSql("select userId from welfare_list where projectId = '" + this.getId() + "' and userId = @userId");
|
sysHomeActivity.setAllowUserSql("select userId from welfare_list where projectId = (select id from welfare_project where id='" + this.getId() + "' and provideMode!=1) and userId = @userId ");
|
||||||
sysHomeActivity.setEnable(true);
|
sysHomeActivity.setEnable(true);
|
||||||
sysHomeActivity.setClassPath(this.getClass().getPackageName() + this.getClass().getName());
|
sysHomeActivity.setClassPath(this.getClass().getPackageName() + this.getClass().getName());
|
||||||
return sysHomeActivity;
|
return sysHomeActivity;
|
||||||
|
|||||||
@@ -79,9 +79,19 @@ layout("/layouts/platform.html"){
|
|||||||
</el-card>
|
</el-card>
|
||||||
</guava>
|
</guava>
|
||||||
<el-dialog :visible.sync="backDialogVisible" title="反馈附件" width="40%" top="2%">
|
<el-dialog :visible.sync="backDialogVisible" title="反馈附件" width="40%" top="2%">
|
||||||
|
|
||||||
|
<el-dialog :visible.sync="backDialogVisible" title="反馈附件" width="40%" top="2%">
|
||||||
|
<el-form v-model="backFormData" ref="backFormRef" label-width="80px">
|
||||||
|
<el-form-item label="反馈附件" prop="files">
|
||||||
<div style="width: 100%; text-align: center">
|
<div style="width: 100%; text-align: center">
|
||||||
<file-preview :files="backFiles" complete_result></file-preview>
|
<file-preview :files="backFiles" complete_result></file-preview>
|
||||||
</div>
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="反馈内容" prop="backText">
|
||||||
|
<el-input v-model="backFormData.backText" type="textarea" :rows="4" max="500" readonly></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-dialog>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -108,7 +118,7 @@ layout("/layouts/platform.html"){
|
|||||||
readType: null
|
readType: null
|
||||||
},
|
},
|
||||||
unionList: [],
|
unionList: [],
|
||||||
unitList: []
|
unitList: [],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {},
|
components: {},
|
||||||
@@ -127,6 +137,9 @@ layout("/layouts/platform.html"){
|
|||||||
this.doSearch()
|
this.doSearch()
|
||||||
},
|
},
|
||||||
viewFiles(row) {
|
viewFiles(row) {
|
||||||
|
this.backFormData = {
|
||||||
|
...row
|
||||||
|
}
|
||||||
this.backFiles = row.backFiles
|
this.backFiles = row.backFiles
|
||||||
this.backDialogVisible = true
|
this.backDialogVisible = true
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -179,7 +179,7 @@ const optionSelect = {
|
|||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24" v-if="projectInfo.signMode === 2">
|
||||||
<el-form-item prop="sign" label="签字">
|
<el-form-item prop="sign" label="签字">
|
||||||
<pc-signature v-model="contactForm.userSign"></pc-signature>
|
<pc-signature v-model="contactForm.userSign"></pc-signature>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
Reference in New Issue
Block a user