|
@@ -87,7 +87,7 @@
|
|
|
<Button v-auth="['export-storeOrder']" class="export" icon="ios-share-outline" @click="exportList"
|
|
|
>导出</Button
|
|
|
>
|
|
|
- <Button style="margin-left: 10px;" v-auth="['export-storeOrder']" class="export" @click="sendAll"
|
|
|
+ <Button style="margin-left: 10px" v-auth="['export-storeOrder']" class="export" @click="sendAll"
|
|
|
>批量发货</Button
|
|
|
>
|
|
|
</div>
|
|
@@ -121,27 +121,28 @@
|
|
|
</div>
|
|
|
</Modal>
|
|
|
<el-upload
|
|
|
- :show-file-list="false"
|
|
|
- :headers="uploadHeaders"
|
|
|
- with-credentials
|
|
|
- :on-success="uploadSuccess"
|
|
|
- v-if="isSend"
|
|
|
- class="upload-demo"
|
|
|
- drag
|
|
|
- :action="uploadAction"
|
|
|
- :multiple="false">
|
|
|
- <i class="el-icon-upload"></i>
|
|
|
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
|
|
- <!-- <div class="el-upload__tip" slot="tip">只能上传jpg/png文件,且不超过500kb</div> -->
|
|
|
-</el-upload>
|
|
|
+ :show-file-list="false"
|
|
|
+ :headers="uploadHeaders"
|
|
|
+ with-credentials
|
|
|
+ :on-success="uploadSuccess"
|
|
|
+ v-if="isSend"
|
|
|
+ class="upload-demo"
|
|
|
+ drag
|
|
|
+ :action="uploadAction"
|
|
|
+ :multiple="false"
|
|
|
+ >
|
|
|
+ <i class="el-icon-upload"></i>
|
|
|
+ <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
|
|
+ <!-- <div class="el-upload__tip" slot="tip">只能上传jpg/png文件,且不超过500kb</div> -->
|
|
|
+ </el-upload>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { mapState, mapMutations } from 'vuex';
|
|
|
-import { putWrite, storeOrderApi,batch_delivery } from '@/api/order';
|
|
|
+import { putWrite, storeOrderApi, batch_delivery } from '@/api/order';
|
|
|
import { exportOrderList } from '@/api/export';
|
|
|
-import {getCookies} from "@/libs/util";
|
|
|
+import { getCookies } from '@/libs/util';
|
|
|
import Setting from '@/setting';
|
|
|
export default {
|
|
|
name: 'table_from',
|
|
@@ -164,8 +165,8 @@ export default {
|
|
|
};
|
|
|
return {
|
|
|
uploadHeaders: {},
|
|
|
- uploadAction: `${Setting.apiBaseURL}/file/upload`,
|
|
|
- isSend:false,
|
|
|
+ uploadAction: `${Setting.apiBaseURL}/file/upload1`,
|
|
|
+ isSend: false,
|
|
|
fromList: {
|
|
|
title: '选择时间',
|
|
|
custom: true,
|
|
@@ -314,21 +315,22 @@ export default {
|
|
|
methods: {
|
|
|
// 上传头部token
|
|
|
getToken() {
|
|
|
- this.uploadHeaders["Authori-zation"] =
|
|
|
- "Bearer " + getCookies("token");
|
|
|
+ this.uploadHeaders['Authori-zation'] = 'Bearer ' + getCookies('token');
|
|
|
},
|
|
|
- uploadSuccess(response, file, fileList){
|
|
|
- console.log(123,response, file, fileList);
|
|
|
- batch_delivery({file:response.data.src}).then(res=>{
|
|
|
- this.$Message.success(res.msg);
|
|
|
- this.isSend=false
|
|
|
- }).catch(err=>{
|
|
|
- console.log(123,err);
|
|
|
- this.$Message.error(err.msg);
|
|
|
- })
|
|
|
+ uploadSuccess(response, file, fileList) {
|
|
|
+ console.log(123, response, file, fileList);
|
|
|
+ batch_delivery({ file: response.data.src })
|
|
|
+ .then((res) => {
|
|
|
+ this.$Message.success(res.msg);
|
|
|
+ this.isSend = false;
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ console.log(123, err);
|
|
|
+ this.$Message.error(err.msg);
|
|
|
+ });
|
|
|
},
|
|
|
- sendAll(){
|
|
|
- this.isSend=!this.isSend
|
|
|
+ sendAll() {
|
|
|
+ this.isSend = !this.isSend;
|
|
|
},
|
|
|
...mapMutations('order', ['getOrderStatus', 'getOrderType', 'getOrderTime', 'getOrderNum', 'getfieldKey']),
|
|
|
getPath() {
|