sale-client 3.6.338 → 3.6.339

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
@@ -1,2 +1,2 @@
1
- #Fri Jul 12 17:16:43 CST 2024
1
+ #Mon Jul 08 09:48:59 CST 2024
2
2
  gradle.version=5.2.1
Binary file
package/SaleClient.iml CHANGED
@@ -1,9 +1,12 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="JAVA_MODULE" version="4">
3
- <component name="NewModuleRootManager">
4
- <output url="file://$MODULE_DIR$/bin" />
2
+ <module external.linked.project.id="SaleClient" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="3.1.1-11" type="JAVA_MODULE" version="4">
3
+ <component name="NewModuleRootManager" inherit-compiler-output="true">
5
4
  <exclude-output />
6
- <content url="file://$MODULE_DIR$" />
5
+ <content url="file://$MODULE_DIR$">
6
+ <excludeFolder url="file://$MODULE_DIR$/.gradle" />
7
+ <excludeFolder url="file://$MODULE_DIR$/build" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
7
10
  <orderEntry type="sourceFolder" forTests="false" />
8
11
  </component>
9
12
  </module>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.338",
3
+ "version": "3.6.339",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -163,7 +163,7 @@ export default {
163
163
  }
164
164
  },
165
165
  ready () {
166
- readyGen(this)
166
+ // readyGen(this)
167
167
  },
168
168
  methods: {
169
169
  loadMeterBooks () {
@@ -180,7 +180,7 @@ export default {
180
180
  },
181
181
  selfSearch (args) {
182
182
  if (!this.orgCondtionStr) {
183
- args.condition = `${args.condition}` + ' and f_orgid = ' + this.$login.f.orgid
183
+ args.condition = `${args.condition}` + ' and f_orgid in ' + `('`+this.$login.f.orgid+`')`
184
184
  } else {
185
185
  args.condition = `${args.condition}` + this.orgCondtionStr
186
186
  }
@@ -104,9 +104,11 @@ export default {
104
104
  }, {resolveMsg: null, rejectMsg: null})
105
105
  this.model = result.data[0]
106
106
  console.log('看看维修情况', result, this.model)
107
- }
108
- if (this.model) {
109
- this.pared = 1
107
+ if (this.model) {
108
+ this.pared = 1
109
+ } else {
110
+ this.pared = 0
111
+ }
110
112
  } else {
111
113
  this.pared = 0
112
114
  }
@@ -93,18 +93,15 @@ export default {
93
93
  console.log(res.data)
94
94
  if (res.data.success) {
95
95
  this.$showMessage(`成功生成短信${res.data.success}条,生成失败${res.data.fail}条`)
96
- // this.$refs.list.search()
97
- this.$refs.message.$refs.paged.$refs.cri.search()
98
- this.$refs.message.model.condition = 'convert(varchar(10),f_create_date,120) = ' + "'" + this.$login.toStandardDateString() + "'"
99
- this.$refs.list.ids = []
100
- this.$refs.message.ids = []
96
+ this.$refs.messagelist.$refs.paged.$refs.cri.search()
97
+ this.$refs.messagelist.ids = []
98
+ } else {
99
+ this.$showMessage(`短信生成失败`)
101
100
  }
102
-
103
101
  }).catch((error) => {
104
- this.$refs.message.$refs.paged.$refs.cri.search()
105
- this.$refs.message.model.condition = 'convert(varchar(10),f_create_date,120) = ' + "'" + this.$login.toStandardDateString() + "'"
106
- this.$refs.list.ids = []
107
- this.$refs.message.ids = []
102
+ this.$showMessage(`短信生成失败`)
103
+ this.$refs.messagelist.$refs.paged.$refs.cri.search()
104
+ this.$refs.messagelist.ids = []
108
105
  })
109
106
  },
110
107
  'success' () {
@@ -91,7 +91,7 @@
91
91
  style="width: 60%"
92
92
  multiple="true"
93
93
  :options='$parent.$parent.residentialArea' placeholder='选择小区'
94
- close-on-select v-el:cc>
94
+ v-el:cc>
95
95
  </v-select>
96
96
  </div>
97
97
  <div class="col-sm-2 form-group">
@@ -125,7 +125,7 @@
125
125
  style="width:60%"
126
126
  multiple="true"
127
127
  :options='$parent.$parent.inputtores' placeholder='抄表员'
128
- close-on-select
128
+
129
129
  v-el:cc></v-select>
130
130
  </div>
131
131
 
@@ -278,7 +278,7 @@ let LogicService = {
278
278
  return Vue.resetpost('rs/logic/messageBatchOperate', data, {resolveMsg: '生成短信成功', rejectMsg: '生成短信失败'})
279
279
  },
280
280
  createCustomMessage (data) {
281
- return Vue.resetpost('rs/customMessage/send', {data: data}, {resolveMsg: '生成短信成功', rejectMsg: '生成短信失败'})
281
+ return Vue.resetpost('rs/customMessage/send', {data: data}, {resolveMsg: null, rejectMsg: null})
282
282
  },
283
283
  createMessageNew (data) {
284
284
  return Vue.resetpost('rs/logic/messageBatchOperateNew', data, {resolveMsg: '生成短信成功', rejectMsg: '生成短信失败'})