sale-client 3.6.312 → 3.6.313
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.
package/package.json
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<div class="row" :class="[config.f_user_phone ? 'highlight' : '']">
|
|
46
46
|
<label class="col-sm-5">客户电话</label>
|
|
47
47
|
<span class="col-sm-7">{{ data ? data.f_user_phone : dafault.f_user_phone }}
|
|
48
|
-
<span v-if="data
|
|
48
|
+
<span v-if="data" @click.stop="changeuserphone"
|
|
49
49
|
class="glyphicon glyphicon-pencil clickchange" title="修正客户电话"></span>
|
|
50
50
|
</span>
|
|
51
51
|
</div>
|
|
@@ -415,7 +415,7 @@ export default {
|
|
|
415
415
|
f_operatorid: this.$login.f.id,
|
|
416
416
|
f_orgid: this.$login.f.orgid,
|
|
417
417
|
f_orgname:this.$login.f.orgs,
|
|
418
|
-
|
|
418
|
+
f_depid: Vue.$login.f.depids,
|
|
419
419
|
f_depname: Vue.$login.f.deps,
|
|
420
420
|
downDate:Util.toStandardTimeString()
|
|
421
421
|
}
|
|
@@ -121,6 +121,11 @@
|
|
|
121
121
|
condition="u.f_usetype = '{}'"
|
|
122
122
|
close-on-select style="width: 60%"></v-select>
|
|
123
123
|
</div>
|
|
124
|
+
<div class="form-group col-sm-3">
|
|
125
|
+
<label class="font_normal_body">防盗卡号</label>
|
|
126
|
+
<input type="text" class="input_search" style="width:60%" v-model="model.f_defendcard" placeholder='防盗卡号'
|
|
127
|
+
condition="f_defendcard = '{}'">
|
|
128
|
+
</div>
|
|
124
129
|
</div>
|
|
125
130
|
</div>
|
|
126
131
|
<div class="form-group col-sm-6" style="float:right;white-space: nowrap;width: auto" >
|
package/src/plugins/jsign.js
CHANGED
|
@@ -160,7 +160,9 @@ function jsign_sign_callback(){
|
|
|
160
160
|
jsign_get_string('picture');
|
|
161
161
|
setTimeout(function(){
|
|
162
162
|
_this.imgstr = dictGetArray['picture']
|
|
163
|
-
_this
|
|
163
|
+
if(_this.imgstr){
|
|
164
|
+
_this.$showAlert('签字完成','success',2000);/*OutputLog(dictGetArray['picture']);*/
|
|
165
|
+
}
|
|
164
166
|
},500);
|
|
165
167
|
// setTimeout(function(){jsign_run_eval(demopath + 'eval.html');OutputLog('已推送评价页,请评价');},1000);
|
|
166
168
|
}
|