智慧保安互联网APP
shuishen
2021-08-13 eaa83986e35d478bdfef55b49941fc6b4b86d95e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<template>
    <view class="container">
        <view class='initiae-box'>
            <u-form :model="form" ref="uForm">
 
                <u-form-item label-width='180' prop="content" label="指令内容" :required="true">
                    <u-input type='textarea' v-model="form.content" placeholder="请输入指令内容" />
                </u-form-item>
                
                <u-form-item label-width='180' prop="recipientText" label="指令接收人" :required="true">
                
                    <u-input v-model="form.recipientText" type="select" placeholder="请选择接收人" :border="false"
                        @click="recipientClick" />
                    <u-select v-model="recipientShow" mode="mutil-column-auto" :list="recipientList"
                        @confirm="recipientConfirm">
                    </u-select>
                
                </u-form-item>
 
                <u-form-item label-width='180' label="指令相关图片" class='imgissue-upload'>
                    <seeImgs :imgs="imgs" :videos="[]" @del="delImg" :type="'imgs'"></seeImgs>
                    <image style="width: 4rem; height: 4rem; display: block;" @tap="takePhoto"
                        src="../../static/images/upload.png" mode=""></image>
                </u-form-item>
 
            </u-form>
            <view>
                <u-button type="primary" @click="initiateClick" style="margin-top: 4%; width: 60%;">发送</u-button>
            </view>
            <view>
                <u-toast ref="uToast" />
            </view>
        </view>
    </view>
</template>
 
<script>
    import seeImgs from '../../components/seeImges/seeImges.vue';
    export default {
        components: {
            seeImgs
        },
        data() {
            return {
                recipientShow: false,
                recipientList: [],
 
                form: {
                    content: '',
                    recipient: '',
                    recipientText: ''
                },
                rules: {
 
                    content: [{
                        min: 5,
                        required: true,
                        message: '指令内容不能少于5个字',
                        trigger: ['change', 'blur'],
                    }],
                    recipientText: [{
                        required: true,
                        message: '请选择接收人',
                        trigger: ['change', 'blur'],
                    }],
                },
                imgs: [],
            };
        },
        onLoad() {},
        onReachBottom() {
 
        },
        mounted() {},
        onReady() {
            this.$refs.uForm.setRules(this.rules);
        },
        methods: {
            recipientClick() {
                uni.request({
                    url: this.$store.state.piAPI + "/blade-system/dept/lazy-tree-user-app?userId=" + this.$store
                        .state
                        .UserData.user_id,
                    method: "get",
                    data: {
 
                    },
                    success: (res) => {
                        this.recipientList = []
                        res.data.forEach(item => {
                            if (item.hasChildren) {
                                this.recipientList.push(item)
                            }
                        })
                        this.recipientShow = true;
                    }
                });
 
            },
            recipientConfirm(e) {
                
                if (e.length == 1) {
                    this.form.recipient = e[0].value
                    this.form.recipientText = e[0].label
                } else if (e.length == 2) {
                    this.form.recipient = e[1].value
                    this.form.recipientText = e[1].label
                } else if (e.length == 3) {
                    this.form.recipient = e[2].value
                    this.form.recipientText = e[2].label
                }
                
            },
            initiateClick() {
                var imgurl = '';
                this.imgs.forEach((item, index) => {
                    if (index == this.imgs.length - 1) {
                        imgurl += item.src
                    } else {
                        imgurl += item.src + ','
                    }
                })
                this.$refs.uForm.validate(valid => {
                    if (valid) {
                        uni.request({
                            url: this.$store.state.piAPI + "/directive/saveDirectiveAndFile",
                            method: "post",
                            data: {
                                // 接收
                                receiveDirectiveIds: this.form.recipient,
                                // 发送
                                sendDirectiveId: this.$store.state
                                    .UserData.user_id,
                                content: this.form.content,
                                url: imgurl
 
                            },
                            success: (res) => {
                                if (res.data.msg == "操作成功") {
                                    this.$refs.uToast.show({
                                        title: '指令下发成功',
                                        type: 'success',
                                        url: '/pages/dispatch/dispatch'
                                    })
                                }
                            }
                        });
                    } else {
                        console.log('验证失败');
                    }
                });
            },
            //图片删除
            delImg(index) {
                this.imgs.splice(index, 1);
            },
            //图片上传
            takePhoto() {
                var that = this;
                uni.chooseImage({
                    count: 3, //可选择数量,默认9
                    sizeType: ['compressed', 'original'], //上传压缩图,原图
                    sourceType: ['album', 'camera'], //从相册选择或从使用相机
                    success: async (res) => {
                        for (var i = 0; i < res.tempFiles.length; i++) {
                            if (res.tempFiles[i].size > 10 * 1024 * 1000) { //上传图片大小限制
                                uni.showToast({
                                    title: "照片大小不能超过10MB",
                                    icon: "none"
                                })
                                return
                            }
                        }
                        var tempFilePath = res.tempFilePaths;
                        // try {
                        uni.showLoading({
                            title: "上传中...",
                            mask: true
                        })
                        var that = this;
                        // 循环调用uni.uploadFile ,因微信小程序只支持单文件上传
                        for (var i = 0; i < tempFilePath.length; i++) {
                            uni.uploadFile({
                                // url: 'https://web.byisf.com/api/blade-jfpts/depl/put-depl', //仅为示例,非真实的接口地址
                                url: this.$store.state.piAPI +
                                    '/blade-resource/oss/endpoint/put-file-app',
                                filePath: tempFilePath[i],
                                name: 'file',
                                formData: {
                                    'user': 'test' // 上传附带参数
                                },
                                success: (data) => {
                                    console.log(data, JSON.parse(data.data).data)
                                    uni.showToast({
                                        title: '上传图片成功!',
                                        duration: 1000
                                    });
                                    // 根据接口具体返回格式   赋值具体对应url
                                    that.imgs.push({
                                        id: i,
                                        src: JSON.parse(data.data).data
                                    })
                                }
                            });
                        }
                    }
                });
            },
        }
    };
</script>
 
 
<style lang="scss">
    .initiae-box {
        padding: 0 30rpx;
    }
</style>