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
| <template>
| <view class="container">
| <view class='initiae-box'>
| <u-form :model="form" ref="uForm">
|
| <u-form-item label-position='top' prop="content" label="指令内容" :required="true">
| <u-input type='textarea' v-model="form.content" placeholder="请输入指令内容" />
| </u-form-item>
|
| <u-form-item label-position='top' 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>
| <view>
| <u-button type="primary" @click="initiateClick">发送</u-button>
| </view>
| <view>
| <u-toast ref="uToast" />
| </view>
| </view>
| </view>
| </template>
|
| <script>
| export default {
| 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'],
| }],
|
| },
| };
| },
| onLoad() {
| console.log(this.$store.state)
| },
| 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[1].value
| this.form.recipientText = e[1].label
| } else {
| this.form.recipient = e[0].value
| this.form.recipientText = e[0].label
| }
|
| },
| initiateClick() {
| 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,
| },
| success: (res) => {
| if (res.data.msg == "操作成功") {
| this.$refs.uToast.show({
| title: '指令下发成功',
| type: 'success',
| url: '/pages/dispatch/dispatch'
| })
| }
| }
| });
| } else {
| console.log('验证失败');
| }
| });
| }
| }
| };
| </script>
|
|
| <style lang="scss">
| .initiae-box {
| padding: 0 30rpx;
| }
| </style>
|
|