Browse Source

图片上传前端逻辑补充

ming 6 months ago
parent
commit
4468f5ed73

+ 1 - 1
src/pages/business/common/projectMange/record/index.vue

@@ -48,7 +48,7 @@
             <u-icon name="info-circle" color="#2979ff" size="18" style="margin-right: 5px"></u-icon>
             <view v-if="timedList.length==1" @click="goTimingPage()">您有1条定时日志将于{{timedList[0].timingTime.slice(0,16)}}发布</view>
 
-            <view v-else  @click="goTimingPage()">有{{timedList.length}}条定时日志将于指定时间发布</view>
+            <view v-else  @click="goTimingPage()">有{{timedList.length}}条定时日志将于指定时间发布</view>
           </view>
       </view>
 

+ 27 - 0
src/pages/business/common/projectMange/write/components/template1.vue

@@ -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];

+ 1 - 0
src/pages/business/common/projectMange/write/insert.vue

@@ -109,6 +109,7 @@ function handleSubmit(type, id) {
           workContents: newData.workContents,
           sendDingTalk: newData.sendDingTalk,
           ccTo: newData.ccTo,
+          imgList: newData.imgList,
         };
 
         state.modalShow = false;