sale-client 3.6.293 → 3.6.295

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
@@ -0,0 +1,2 @@
1
+ #Wed May 15 09:49:58 CST 2024
2
+ gradle.version=7.4
Binary file
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.293",
3
+ "version": "3.6.295",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -0,0 +1,51 @@
1
+ <template>
2
+ <div class="auto">
3
+ <validator name='v'>
4
+ <form class="form-horizontal">
5
+
6
+ <div class="row" style="margin-top:1px;">
7
+ <div class="col-sm-8 form-group">
8
+ <label for="f_reason">该用户未签合同请问是否进行签约</label>
9
+ </div>
10
+ </div>
11
+ </form>
12
+ <div style="text-align:right;">
13
+ <button class="button_search button_spacing" @click="confcontor()" >确认</button>
14
+ <button class="button_clear" @click="abolishcontr()" >取消</button>
15
+ </div>
16
+ </validator>
17
+ </div>
18
+ <contract-signing-brain :show="contractShow" @toggle="eticket_toggle" v-ref:contractbill></contract-signing-brain>
19
+ </template>
20
+ <script>
21
+ /**
22
+ *综合业务
23
+ 表具停用组件
24
+ */
25
+ export default {
26
+ title: '表具停用',
27
+ props: ['row'],
28
+ data () {
29
+ return {
30
+ contractShow: false
31
+ }
32
+ },
33
+ ready () {
34
+ },
35
+ methods: {
36
+ eticket_toggle () {
37
+ this.contractShow = false
38
+ },
39
+ confcontor () {
40
+ this.contractShow = true
41
+ this.$refs.contractbill.getContractData(this.row.f_userinfo_id)
42
+ },
43
+ abolishcontr () {
44
+ this.$dispatch('refresh')
45
+ }
46
+ }
47
+ }
48
+ </script>
49
+
50
+ <style>
51
+ </style>
@@ -142,11 +142,11 @@
142
142
  f_third_pay: '0',
143
143
  f_time_type: '按月',
144
144
  f_limit_times: '',
145
- f_time_value: '',
145
+ f_time_value: '0',
146
146
  f_limit_type: '气量',
147
147
  f_limit_style:'',
148
- f_limit_value: 0,
149
- f_limit_amount: 0,
148
+ f_limit_value: '',
149
+ f_limit_amount: '',
150
150
  f_start_date: this.$login.toStandardDateString()
151
151
  },
152
152
  limitshow: false,
@@ -191,12 +191,12 @@
191
191
  this.model = {
192
192
  f_third_pay: this.model.f_third_pay,
193
193
  f_time_type: this.model.f_time_type,
194
- f_limit_times: '',
195
- f_time_value: '',
196
- f_limit_type: '气量',
197
- f_limit_style:'',
198
- f_limit_value: 0,
199
- f_limit_amount: 0,
194
+ f_limit_times: this.model.f_limit_times,
195
+ f_time_value: this.model.f_time_value,
196
+ f_limit_type: this.model.f_limit_type,
197
+ f_limit_style: this.model.f_limit_style,
198
+ f_limit_value: this.model.f_limit_value,
199
+ f_limit_amount: this.model.f_limit_amount,
200
200
  f_start_date: this.$login.toStandardDateString()
201
201
  }
202
202
  console.log('提交限购数据', this.model)
@@ -13,23 +13,10 @@
13
13
  <div v-show="isBusiness" style="height: auto" class="select-overspread">
14
14
  <route v-ref:route></route>
15
15
  </div>
16
- <modal :show.sync="modalContornShow" backdrop="false" width="50%" title="提示信息">
17
- <article slot="modal-body">
18
- <div style="width:98%;margin: auto">
19
- <p>该用户未签合同请问是否进行签约</p>
20
- </div>
21
- </article>
22
- <footer slot="modal-footer" class="modal-footer" style="border: 0">
23
- <button class="button_search" @click="abolishcontr()">取消</button>
24
- <button class="button_search" @click="confcontor()">确认</button>
25
- </footer>
26
- </modal>
27
- <contract-signing :show="contractShow" @toggle="eticket_toggle" v-ref:contractbill></contract-signing>
28
16
  </template>
29
17
 
30
18
  <script>
31
19
  import {HttpResetClass} from 'vue-client'
32
- import Vue from 'vue'
33
20
 
34
21
  let getNewmetermsg = async function (self, row) {
35
22
  self.cardInfo = undefined
@@ -182,7 +169,13 @@ let getBtnsGen = async function (self) {
182
169
  console.log(self.data)
183
170
  console.log('-----------1111------------')
184
171
  if (self.data.f_is_signature !== '是') {
185
- self.modalContornShow = true
172
+ self.operBtns.push({
173
+ name: '合同签名',
174
+ value: {
175
+ 'weight': 0,
176
+ 'routeName': 'contract-sig'
177
+ }
178
+ })
186
179
  }
187
180
  }
188
181