sale-client 3.5.184 → 3.5.186

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.
@@ -6,7 +6,7 @@ const app = express()
6
6
  const compiler = webpack(config)
7
7
 
8
8
  // 自己改了这里不要提交 来回覆盖挺麻烦的
9
- const [local, server] = ['http://127.0.0.1:8080', 'http://192.168.50.4:8400']
9
+ const [local, server] = ['http://192.168.50.4:8400', 'http://192.168.50.4:8400']
10
10
  const port = 8089
11
11
 
12
12
  const proxyTable = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.5.184",
3
+ "version": "3.5.186",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -257,7 +257,7 @@
257
257
  args.condition=` f_orgid='${this.f_filialeids}' and ${args.condition}`
258
258
 
259
259
  await this.model.search(args.condition, this.model)
260
- console.log("res",this.model)
260
+ this.addOrRemove(true)
261
261
  },
262
262
  search () {
263
263
  this.$refs.paged.$refs.cri.search()
@@ -100,7 +100,7 @@
100
100
  :value.sync="model.f_create_start_date"
101
101
  :disabled-days-of-Week="[]"
102
102
  style="width: 60%"
103
- condition="convert(varchar(10),f_createdate,120) >= '{}'"
103
+ condition="f_createdate >= '{}'"
104
104
  :format="'yyyy-MM-dd'"
105
105
  :show-reset-button="reset">
106
106
  </datepicker>
@@ -112,7 +112,7 @@
112
112
  :value.sync="model.f_create_end_date"
113
113
  :disabled-days-of-Week="[]"
114
114
  style="width: 60%"
115
- condition="convert(varchar(10),f_createdate,120) <= '{}'"
115
+ condition="f_createdate <= '{}'"
116
116
  :format="'yyyy-MM-dd'"
117
117
  :show-reset-button="reset">
118
118
  </datepicker>
@@ -124,7 +124,7 @@
124
124
  :value.sync="model.f_send_start_date"
125
125
  :disabled-days-of-Week="[]"
126
126
  style="width: 60%"
127
- condition="convert(varchar(10),f_sendtime,120) >= '{}'"
127
+ condition="f_sendtime >= '{}'"
128
128
  :format="'yyyy-MM-dd'"
129
129
  :show-reset-button="reset">
130
130
  </datepicker>
@@ -136,7 +136,7 @@
136
136
  :value.sync="model.f_send_end_date"
137
137
  :disabled-days-of-Week="[]"
138
138
  style="width: 60%"
139
- condition="convert(varchar(10),f_sendtime,120) <= '{}'"
139
+ condition="f_sendtime <= '{}'"
140
140
  :format="'yyyy-MM-dd'"
141
141
  :show-reset-button="reset">
142
142
  </datepicker>
@@ -259,7 +259,7 @@
259
259
  }
260
260
  // 进行补打
261
261
  try {
262
- if (this.data.id.includes('(')) {
262
+ if ((this.data.id+" ").includes('(')) {
263
263
  this.data.id = this.data.id.replace('(', '')
264
264
  this.data.id = this.data.id.replace(')', '')
265
265
  this.data.id = this.data.id.split(',')[0]