|
@@ -65,6 +65,11 @@
|
|
|
@change="realTimeSaving()"
|
|
|
></u-textarea>
|
|
|
</view>
|
|
|
+ <!-- <view class="content-area-item mt10 p10 bg-white">
|
|
|
+ <view class="font14 weight mb10">图片上传</view>
|
|
|
+ <oa-upload :uploadCount="5" :uploadList="form.imageList" :uploadListSrc="'url'" @uploadSuccessChange="uploadSuccessChange" @uploadDeleteChange="uploadDeleteChange"></oa-upload>
|
|
|
+ </view> -->
|
|
|
+
|
|
|
<view class="content-area-item mt10 p10 bg-white">
|
|
|
<view class="font14 weight mb10">抄送到人</view>
|
|
|
<avatarList :userList="userList" @deleteUsers="deleteUsers" />
|
|
@@ -218,6 +223,7 @@ const state = reactive({
|
|
|
isRegularlySend: 0,
|
|
|
timingTime: null,
|
|
|
// reportStatus: null,
|
|
|
+ imageList: [],
|
|
|
},
|
|
|
projectsCheck: [],
|
|
|
projectsList: [],
|
|
@@ -321,6 +327,26 @@ function modalConfirm() {
|
|
|
// realTimeSaving();
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * @图片上传成功回调
|
|
|
+ */
|
|
|
+ function uploadSuccessChange(e) {
|
|
|
+
|
|
|
+ state.form.imageList.push({
|
|
|
+ name: e.name,
|
|
|
+ url: e.url,
|
|
|
+ })
|
|
|
+ realTimeSaving()
|
|
|
+}
|
|
|
+/**
|
|
|
+ * @图片删除回调
|
|
|
+ */
|
|
|
+ function uploadDeleteChange(e) {
|
|
|
+ state.form.imageList = e;
|
|
|
+ realTimeSaving()
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
/** 提交 */
|
|
|
function handleSubmit() {
|
|
|
state.form.sendDingTalk == true ? 1 : 0;
|
|
@@ -349,6 +375,7 @@ watch(
|
|
|
state.userList = [];
|
|
|
state.projectsCheck = [];
|
|
|
state.projectsList = [];
|
|
|
+ state.form.imageList = [];
|
|
|
|
|
|
Object.keys(props.projectList).forEach((key) => {
|
|
|
state.form[key] = props.projectList[key];
|